summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--framework/Web/UI/WebControls/TListControl.php7
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