blob: 3dfd14d5df48e08fac6c5b75edaedcfe102808e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<?php
/**
* TSlider class file.
*
* @author Christophe Boulain <Christophe.Boulain@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\WebControls
* @since 3.1.1
*/
namespace Prado\Web\UI\WebControls;
/**
* TSliderClientScript class.
*
* Client-side slider events {@link setOnChange OnChange} and {@line setOnMove OnMove}
* can be modified through the {@link TSlider:: getClientSide ClientSide}
* property of a slider.
*
* The current value of the slider can be get in the 'value' js variable
*
* The <tt>OnMove</tt> event is raised when the slider moves
* The <tt>OnChange</tt> event is raised when the slider value is changed (or at the end of a move)
*
* @author Christophe Boulain <Christophe.Boulain@gmail.com>
* @package Prado\Web\UI\WebControls
* @since 3.1.1
*/
class TSliderClientScript extends TClientSideOptions
{
/**
* Javascript code to execute when the slider value is changed.
* @param string javascript code
*/
public function setOnChange($javascript)
{
$code=TJavascript::quoteJsLiteral("function (value) { {$javascript} }");
$this->setFunction('onChange', $code);
}
/**
* @return string javascript code to execute when the slider value is changed.
*/
public function getOnChange()
{
return $this->getOption('onChange');
}
/* Javascript code to execute when the slider moves.
* @param string javascript code
*/
public function setOnSlide($javascript)
{
$code=TJavascript::quoteJsLiteral("function (value) { {$javascript} }");
$this->setFunction('onSlide', $code);
}
/**
* @return string javascript code to execute when the slider moves.
*/
public function getOnSlide()
{
return $this->getOption('onSlide');
}
}
|