diff options
author | xue <> | 2006-06-19 03:29:40 +0000 |
---|---|---|
committer | xue <> | 2006-06-19 03:29:40 +0000 |
commit | 6f88bcae87f8ff5cd188690f17656736d279d580 (patch) | |
tree | c7ee41fbf0166eb5011e8811518c810765a99330 | |
parent | bf41d24477d0d13f2bdb1cc87f645ef9f1f4de7b (diff) |
Fixed #241.
-rw-r--r-- | framework/Web/UI/WebControls/TListControl.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TListControl.php b/framework/Web/UI/WebControls/TListControl.php index f85cc741..eba45232 100644 --- a/framework/Web/UI/WebControls/TListControl.php +++ b/framework/Web/UI/WebControls/TListControl.php @@ -124,10 +124,13 @@ abstract class TListControl extends TDataBoundControl /**
* Gets the name of the javascript class responsible for performing postback for this control.
- * This method overrides the parent implementation.
+ * Derived classes may override this method and return customized js class names.
* @return string the javascript class name
*/
- abstract protected function getClientClassName();
+ protected function getClientClassName()
+ {
+ return 'Prado.WebUI.TListControl';
+ }
/**
* @return array postback options for JS postback code
|