diff options
Diffstat (limited to 'framework/Web/UI/JuiControls/TJuiControlOptions.php')
-rw-r--r-- | framework/Web/UI/JuiControls/TJuiControlOptions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/JuiControls/TJuiControlOptions.php b/framework/Web/UI/JuiControls/TJuiControlOptions.php index 2836c5ec..7fd0b321 100644 --- a/framework/Web/UI/JuiControls/TJuiControlOptions.php +++ b/framework/Web/UI/JuiControls/TJuiControlOptions.php @@ -117,7 +117,7 @@ class TJuiControlOptions foreach($this->_control->getValidEvents() as $event) if($this->_control->hasEventHandler('on'.$event)) - $ret[$event]=new TJavaScriptLiteral("function( event, ui ) { Prado.JuiCallback(".TJavascript::encode($this->_control->getUniqueID()).", ".TJavascript::encode($event).", event, ui, this); }"); + $ret[$event]=new TJavaScriptLiteral("function( event, ui ) { Prado.JuiCallback(".TJavaScript::encode($this->_control->getUniqueID()).", ".TJavaScript::encode($event).", event, ui, this); }"); return $ret; } |