diff options
author | wei <> | 2007-04-02 06:19:55 +0000 |
---|---|---|
committer | wei <> | 2007-04-02 06:19:55 +0000 |
commit | 1ba083b9bf77b334b773b84d4d9e5f44319d17a2 (patch) | |
tree | ab9b36010b61f22019bb99270b3d4c2aa7381ab7 /framework/Web/UI/TControl.php | |
parent | 183b4fefb355d0c607ea4b7cc270035bcc1ffd9e (diff) |
Fixed #585, #586
Diffstat (limited to 'framework/Web/UI/TControl.php')
-rw-r--r-- | framework/Web/UI/TControl.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php index 85770cb4..68e10c6e 100644 --- a/framework/Web/UI/TControl.php +++ b/framework/Web/UI/TControl.php @@ -2089,6 +2089,16 @@ interface IButtonControl * @param TCommandEventParameter event parameter to be passed to the event handlers
*/
public function onCommand($param);
+
+ /**
+ * @param boolean set by a panel to register this button as the default button for the panel.
+ */
+ public function setIsDefaultButton($value);
+
+ /**
+ * @return boolean true if this button is registered as a default button for a panel.
+ */
+ public function getIsDefaultButton();
}
/**
|