diff options
| author | xue <> | 2006-08-27 23:26:55 +0000 | 
|---|---|---|
| committer | xue <> | 2006-08-27 23:26:55 +0000 | 
| commit | c1937cccd0985e86e247287faa9ac60870feecd7 (patch) | |
| tree | 95ec7083c7be815184c74cd8aa27d02a69d2ea77 /framework/Web/UI/WebControls/TCheckBoxColumn.php | |
| parent | 887da1b3668499821f046665b461aeadb0a9fb2e (diff) | |
Merge from 3.0 branch till 1350.
Diffstat (limited to 'framework/Web/UI/WebControls/TCheckBoxColumn.php')
| -rw-r--r-- | framework/Web/UI/WebControls/TCheckBoxColumn.php | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TCheckBoxColumn.php b/framework/Web/UI/WebControls/TCheckBoxColumn.php index 4df1e695..d7fac8cf 100644 --- a/framework/Web/UI/WebControls/TCheckBoxColumn.php +++ b/framework/Web/UI/WebControls/TCheckBoxColumn.php @@ -28,6 +28,15 @@ Prado::using('System.Web.UI.WebControls.TCheckBox');   * TCheckBoxColumn will display an enabled checkbox provided the cells are
   * in edit mode. Otherwise, the checkboxes will be disabled to prevent from editting.
   *
 + * The checkbox control in the TCheckBoxColumn can be accessed by one of
 + * the following two methods:
 + * <code>
 + * $datagridItem->CheckBoxColumnID->CheckBox
 + * $datagridItem->CheckBoxColumnID->Controls[0]
 + * </code>
 + * The second method is possible because the checkbox control created within the
 + * datagrid cell is the first child.
 + *
   * @author Qiang Xue <qiang.xue@gmail.com>
   * @version $Revision: $  $Date: $
   * @package System.Web.UI.WebControls
 @@ -87,6 +96,7 @@ class TCheckBoxColumn extends TDataGridColumn  				$checkBox->setEnabled(false);
  			$cell->setHorizontalAlign('Center');
  			$cell->getControls()->add($checkBox);
 +			$cell->registerObject('CheckBox',$checkBox);
  			if($this->getDataField()!=='')
  				$checkBox->attachEventHandler('OnDataBinding',array($this,'dataBindColumn'));
  		}
  | 
