diff options
author | ctrlaltca@gmail.com <> | 2011-11-09 12:35:57 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-11-09 12:35:57 +0000 |
commit | 5380a870b799098d7900b1098b4e9930ba71f10e (patch) | |
tree | 8face776f884dd29b6a0ca8216206baa6954c564 /framework/Web/UI/ActiveControls | |
parent | 199ebf217cc4b597fc2044d50ef66b73dc4c5eaf (diff) |
fix #371
Diffstat (limited to 'framework/Web/UI/ActiveControls')
-rw-r--r-- | framework/Web/UI/ActiveControls/TActiveDataGrid.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveDataGrid.php b/framework/Web/UI/ActiveControls/TActiveDataGrid.php index bd32db5e..c4ad9640 100644 --- a/framework/Web/UI/ActiveControls/TActiveDataGrid.php +++ b/framework/Web/UI/ActiveControls/TActiveDataGrid.php @@ -52,10 +52,19 @@ Prado::using('System.Web.UI.WebControls.TCheckBoxColumn'); * @since 3.1.9 */ class TActiveDataGrid extends TDataGrid implements IActiveControl, ISurroundable { -/** - * Creates a new callback control, sets the adapter to - * TActiveControlAdapter. - */ + + /** + * @return string Name of the class used in AutoGenerateColumns mode + */ + protected function getAutoGenerateColumnName() + { + return 'TActiveBoundColumn'; + } + + /** + * Creates a new callback control, sets the adapter to + * TActiveControlAdapter. + */ public function __construct() { parent::__construct(); $this->setAdapter(new TActiveControlAdapter($this)); |