From e7622f08814c6c7a1166addf9bc23c5780bd74b0 Mon Sep 17 00:00:00 2001 From: xue <> Date: Sat, 4 Feb 2006 05:05:03 +0000 Subject: Fixed a bug about performing databind with an empty dataset. --- framework/Web/UI/WebControls/TEditCommandColumn.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/Web/UI/WebControls/TEditCommandColumn.php') diff --git a/framework/Web/UI/WebControls/TEditCommandColumn.php b/framework/Web/UI/WebControls/TEditCommandColumn.php index b0814a1a..8244981b 100644 --- a/framework/Web/UI/WebControls/TEditCommandColumn.php +++ b/framework/Web/UI/WebControls/TEditCommandColumn.php @@ -156,12 +156,12 @@ class TEditCommandColumn extends TDataGridColumn parent::initializeCell($cell,$columnIndex,$itemType); $buttonType=$this->getButtonType()=='LinkButton'?'TLinkButton':'TButton'; if($itemType==='Item' || $itemType==='AlternatingItem' || $itemType==='SelectedItem') - $this->addButtonToCell($cell,'Edit',$this->getUpdateText(),false,''); + $this->addButtonToCell($cell,'Edit',$this->getEditText(),false,''); else if($itemType==='EditItem') { $this->addButtonToCell($cell,'Update',$this->getUpdateText(),$this->getCausesValidation(),$this->getValidationGroup()); $cell->getControls()->add(' '); - $this->addButtonToCell($cell,'Cancel',$this->getUpdateText(),false,''); + $this->addButtonToCell($cell,'Cancel',$this->getCancelText(),false,''); } } -- cgit v1.2.3