From 91372694449c295426cbd19804406736bc327027 Mon Sep 17 00:00:00 2001 From: wei <> Date: Tue, 13 Feb 2007 00:38:07 +0000 Subject: Fix TImageButton bug http://www.pradosoft.com/forum/index.php/topic,6938.new.html --- framework/Web/UI/WebControls/TImageButton.php | 4 ---- 1 file changed, 4 deletions(-) (limited to 'framework') diff --git a/framework/Web/UI/WebControls/TImageButton.php b/framework/Web/UI/WebControls/TImageButton.php index 7a67c8b7..bd974c64 100644 --- a/framework/Web/UI/WebControls/TImageButton.php +++ b/framework/Web/UI/WebControls/TImageButton.php @@ -89,11 +89,8 @@ class TImageButton extends TImage implements IPostBackDataHandler, IPostBackEven $writer->addAttribute('name',$uniqueID); if($this->getEnabled(true)) { - if($this->canCauseValidation()) - { $writer->addAttribute('id',$this->getClientID()); $this->getPage()->getClientScript()->registerPostBackControl('Prado.WebUI.TImageButton',$this->getPostBackOptions()); - } } else if($this->getEnabled()) // in this case, parent will not render 'disabled' $writer->addAttribute('disabled','disabled'); @@ -143,7 +140,6 @@ class TImageButton extends TImage implements IPostBackDataHandler, IPostBackEven { $this->_x=intval($values["{$uid}_x"]); $this->_y=intval($values["{$uid}_y"]); - $this->getPage()->setPostBackEventTarget($this); } return false; } -- cgit v1.2.3