blob: 42f499766b0d8c5ed3a2583a2c267e13fb3482bd (
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
68
69
70
|
<?php
class TEventTriggeredCallback extends TTriggeredCallback
{
/**
* @return string The client-side event name the trigger listens to.
*/
public function getEventName()
{
return $this->getViewState('EventName', '');
}
/**
* Sets the client-side event name that fires the callback request.
* @param string The client-side event name the trigger listens to.
*/
public function setEventName($value)
{
$this->setViewState('EventName', $value, '');
}
/**
* @param boolean true to prevent/stop default event action.
*/
public function setPreventDefaultAction($value)
{
$this->setViewState('StopEvent', TPropertyValue::ensureBoolean($value), false);
}
/**
* @return boolean true to prevent/stop default event action.
*/
public function getPreventDefaultAction()
{
return $this->getViewState('StopEvent', false);
}
/**
* @return array list of timer options for client-side.
*/
protected function getTriggerOptions()
{
$options = parent::getTriggerOptions();
$name = preg_replace('/^on/', '', $this->getEventName());
$options['EventName'] = strtolower($name);
$options['StopEvent'] = $this->getPreventDefaultAction();
return $options;
}
/**
* Registers the javascript code for initializing the active control.
* @param THtmlWriter the renderer.
*/
public function render($writer)
{
parent::render($writer);
$this->getActiveControl()->registerCallbackClientScript(
$this->getClientClassName(), $this->getTriggerOptions());
}
/**
* @return string corresponding javascript class name for TEventTriggeredCallback.
*/
protected function getClientClassName()
{
return 'Prado.WebUI.TEventTriggeredCallback';
}
}
?>
|