diff options
author | xue <> | 2007-02-05 21:55:51 +0000 |
---|---|---|
committer | xue <> | 2007-02-05 21:55:51 +0000 |
commit | 81b323cf3d27949a5c78d44bd016044be3197b6c (patch) | |
tree | 73b3cb8f214b96237812e33ed4f1b0637172ae53 /framework/Web/UI/WebControls/TCheckBoxColumn.php | |
parent | 0aaa8b5ef02479653c0a532d9249b423ef34c7ca (diff) |
Added renderer feature to TDataGrid.
Diffstat (limited to 'framework/Web/UI/WebControls/TCheckBoxColumn.php')
-rw-r--r-- | framework/Web/UI/WebControls/TCheckBoxColumn.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TCheckBoxColumn.php b/framework/Web/UI/WebControls/TCheckBoxColumn.php index beef3aa1..c70a67c9 100644 --- a/framework/Web/UI/WebControls/TCheckBoxColumn.php +++ b/framework/Web/UI/WebControls/TCheckBoxColumn.php @@ -88,7 +88,6 @@ class TCheckBoxColumn extends TDataGridColumn */
public function initializeCell($cell,$columnIndex,$itemType)
{
- parent::initializeCell($cell,$columnIndex,$itemType);
if($itemType===TListItemType::Item || $itemType===TListItemType::AlternatingItem || $itemType===TListItemType::SelectedItem || $itemType===TListItemType::EditItem)
{
$checkBox=new TCheckBox;
@@ -100,6 +99,8 @@ class TCheckBoxColumn extends TDataGridColumn if($this->getDataField()!=='')
$checkBox->attachEventHandler('OnDataBinding',array($this,'dataBindColumn'));
}
+ else
+ parent::initializeCell($cell,$columnIndex,$itemType);
}
/**
@@ -110,7 +111,7 @@ class TCheckBoxColumn extends TDataGridColumn public function dataBindColumn($sender,$param)
{
$item=$sender->getNamingContainer();
- $data=$item->getDataItem();
+ $data=$item->getData();
if(($field=$this->getDataField())!=='')
$value=TPropertyValue::ensureBoolean($this->getDataFieldValue($data,$field));
else
|