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/TDropDownListColumn.php | |
parent | 0aaa8b5ef02479653c0a532d9249b423ef34c7ca (diff) |
Added renderer feature to TDataGrid.
Diffstat (limited to 'framework/Web/UI/WebControls/TDropDownListColumn.php')
-rw-r--r-- | framework/Web/UI/WebControls/TDropDownListColumn.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TDropDownListColumn.php b/framework/Web/UI/WebControls/TDropDownListColumn.php index 384a3701..c3428371 100644 --- a/framework/Web/UI/WebControls/TDropDownListColumn.php +++ b/framework/Web/UI/WebControls/TDropDownListColumn.php @@ -255,7 +255,6 @@ class TDropDownListColumn extends TDataGridColumn */
public function initializeCell($cell,$columnIndex,$itemType)
{
- parent::initializeCell($cell,$columnIndex,$itemType);
if(!$this->_dataBound && $this->_listControl->getDataSource()!==null)
{
$this->_listControl->setDataTextField($this->getListTextField());
@@ -284,6 +283,9 @@ class TDropDownListColumn extends TDataGridColumn if($this->getDataTextField()!=='' || $this->getDataValueField()!=='')
$cell->attachEventHandler('OnDataBinding',array($this,'dataBindColumn'));
break;
+ default:
+ parent::initializeCell($cell,$columnIndex,$itemType);
+ break;
}
}
@@ -295,7 +297,7 @@ class TDropDownListColumn extends TDataGridColumn public function dataBindColumn($sender,$param)
{
$item=$sender->getNamingContainer();
- $data=$item->getDataItem();
+ $data=$item->getData();
if(($valueField=$this->getDataValueField())!=='')
$value=$this->getDataFieldValue($data,$valueField);
else
|