blob: 7ded7c322efa14bf639039f444db4b4afc3da9ea (
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
|
<?php
/**
* TActiveDatePicker class file
*
* @author Bradley Booms <Bradley.Booms@nsighttel.com>
* @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\ActiveControls
*/
namespace Prado\Web\UI\ActiveControls;
/**
* TActiveDatePickerClientScript class.
*
* Client-side date picker event {@link setOnDateChanged OnDateChanged}
* can be modified through the {@link TActiveDatePicker::getClientSide ClientSide}
* property of a date picker.
*
* The <tt>OnDateChanged</tt> event is raise when the date picker's date
* is changed.
* The formatted date according to {@link TDatePicker::getDateFormat DateFormat} is sent
* as parameter to this event
*
* @author Fabio Bas <ctrlaltca[at]gmail[dot]com>
* @package Prado\Web\UI\ActiveControls
* @since 3.2.1
*/
class TActiveDatePickerClientScript extends TCallbackClientSide
{
/**
* Javascript code to execute when the date picker's date is changed.
* @param string javascript code
*/
public function setOnDateChanged($javascript)
{
$this->setFunction('OnDateChanged', $javascript);
}
/**
* @return string javascript code to execute when the date picker's date is changed.
*/
public function getOnDateChanged()
{
return $this->getOption('OnDateChanged');
}
}
|