diff options
author | wei <> | 2006-06-09 07:41:18 +0000 |
---|---|---|
committer | wei <> | 2006-06-09 07:41:18 +0000 |
commit | c3404ca887eb20dbf7e3b8d4118d87f4cf39f31e (patch) | |
tree | 7aad322f619578b09445509760acb43cf5a70bab /framework/Web/UI/WebControls | |
parent | e95d096064de94c948e4398f5183afaccf522ffa (diff) |
Update datepicker and link button.
Diffstat (limited to 'framework/Web/UI/WebControls')
-rw-r--r-- | framework/Web/UI/WebControls/TLinkButton.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TLinkButton.php b/framework/Web/UI/WebControls/TLinkButton.php index bca4a8f6..b25f602b 100644 --- a/framework/Web/UI/WebControls/TLinkButton.php +++ b/framework/Web/UI/WebControls/TLinkButton.php @@ -83,7 +83,8 @@ class TLinkButton extends TWebControl implements IPostBackEventHandler, IButtonC if($this->getEnabled(true))
{
//create unique no-op url references
- $nop = "#".$this->getClientID();
+ //$nop = "#".$this->getClientID();
+ $nop = "javascript:;//".$this->getClientID();
$writer->addAttribute('href', $nop);
$this->getPage()->getClientScript()->registerPostBackControl('Prado.WebUI.TLinkButton',$this->getPostBackOptions());
}
|