diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-08-23 16:30:16 +0200 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2014-08-23 16:30:16 +0200 |
commit | d2e6d38dd71101e67457e8f78c1232c3e0294c27 (patch) | |
tree | 652b26f8deffe8a2e1de8ae5203b8e8ec54be942 /framework/Web/UI/WebControls | |
parent | 57987c93c15da02d6e39ab238f0abc40fe11dc4a (diff) |
Revert "Optimization: avoid duplicate creation of T*CheckBoxList, T*RadioButtonList js items"
This reverts commit 606728e5c2fb1dfe2ca2760b9894f5c6d378d9b5.
Diffstat (limited to 'framework/Web/UI/WebControls')
-rw-r--r-- | framework/Web/UI/WebControls/TCheckBoxList.php | 10 | ||||
-rw-r--r-- | framework/Web/UI/WebControls/TRadioButtonList.php | 10 |
2 files changed, 2 insertions, 18 deletions
diff --git a/framework/Web/UI/WebControls/TCheckBoxList.php b/framework/Web/UI/WebControls/TCheckBoxList.php index 94278764..af59545c 100644 --- a/framework/Web/UI/WebControls/TCheckBoxList.php +++ b/framework/Web/UI/WebControls/TCheckBoxList.php @@ -72,7 +72,7 @@ class TCheckBoxList extends TListControl implements IRepeatInfoUser, INamingCont */ protected function createRepeatedControl() { - return new TCheckBoxItem; + return new TCheckBox; } /** @@ -499,11 +499,3 @@ class TCheckBoxList extends TListControl implements IRepeatInfoUser, INamingCont } -class TCheckBoxItem extends TCheckBox { - /** - * Override client implementation to avoid emitting the javascript - */ - protected function renderClientControlScript($writer) - { - } -} diff --git a/framework/Web/UI/WebControls/TRadioButtonList.php b/framework/Web/UI/WebControls/TRadioButtonList.php index 3afe3ec2..bead3582 100644 --- a/framework/Web/UI/WebControls/TRadioButtonList.php +++ b/framework/Web/UI/WebControls/TRadioButtonList.php @@ -47,7 +47,7 @@ class TRadioButtonList extends TCheckBoxList */ protected function createRepeatedControl() { - return new TRadioButtonItem; + return new TRadioButton; } /** @@ -97,11 +97,3 @@ class TRadioButtonList extends TCheckBoxList } } -class TRadioButtonItem extends TRadioButton { - /** - * Override client implementation to avoid emitting the javascript - */ - protected function renderClientControlScript($writer) - { - } -} |