diff options
author | wei <> | 2007-03-30 05:04:30 +0000 |
---|---|---|
committer | wei <> | 2007-03-30 05:04:30 +0000 |
commit | 4f968c045e0d09ab3e4f659743effb5305a963ce (patch) | |
tree | 58d5cb87db43ba87c0a559d411e9d36aa0bd7f3c /framework/Web/UI/ActiveControls/TActiveRadioButtonList.php | |
parent | 70744a98444df0583d76f19d4e399a5cc49349b7 (diff) |
Fixed #507 and update other active controls.
Diffstat (limited to 'framework/Web/UI/ActiveControls/TActiveRadioButtonList.php')
-rw-r--r-- | framework/Web/UI/ActiveControls/TActiveRadioButtonList.php | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveRadioButtonList.php b/framework/Web/UI/ActiveControls/TActiveRadioButtonList.php index 6e3fef6f..52a4b036 100644 --- a/framework/Web/UI/ActiveControls/TActiveRadioButtonList.php +++ b/framework/Web/UI/ActiveControls/TActiveRadioButtonList.php @@ -60,20 +60,11 @@ class TActiveRadioButtonList extends TRadioButtonList implements IActiveControl, } /** - * @return string javascript client-side control class name. - */ - protected function getClientClassName() - { - return 'Prado.WebUI.TActiveRadioButtonList'; - } - - /** - * Registers the javascript code for initializing the active control. + * Override parent implementation, no javascript is rendered here instead + * the javascript required for active control is registered in {@link addAttributesToRender}. */ protected function renderClientControlScript($writer) { - $this->getActiveControl()->registerCallbackClientScript( - $this->getClientClassName(), $this->getPostBackOptions()); } /** @@ -95,7 +86,6 @@ class TActiveRadioButtonList extends TRadioButtonList implements IActiveControl, */ public function raiseCallbackEvent($param) { - var_dump($_POST); $this->onCallback($param); } |