From fa1bc21a7f5346c702490dffbe3cf3f9940b3cd0 Mon Sep 17 00:00:00 2001 From: xue <> Date: Tue, 6 Dec 2005 18:59:31 +0000 Subject: --- framework/Web/UI/WebControls/TLinkButton.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'framework/Web/UI/WebControls/TLinkButton.php') diff --git a/framework/Web/UI/WebControls/TLinkButton.php b/framework/Web/UI/WebControls/TLinkButton.php index 517a2f8b..d3be1ade 100644 --- a/framework/Web/UI/WebControls/TLinkButton.php +++ b/framework/Web/UI/WebControls/TLinkButton.php @@ -38,9 +38,10 @@ * You can provide an event handler for the {@link onClick Click} event * to programmatically control the actions performed when the submit button is clicked. * - * By default, clicking on a TLinkButton will cause input validation (if any) - * to be performed. You can turn this on or off by setting - * the {@link setCausesValidation CausesValidation} property. + * Clicking on button can trigger form validation, if + * {@link setCausesValidation CausesValidation} is true. + * And the validation may be restricted within a certain group of validator + * controls by setting {@link setValidationGroup ValidationGroup} property. * If validation is successful, the data will be post back to the same page. * You can change the postback target by setting the {@link setPostBackUrl PostBackUrl} * property. @@ -148,7 +149,7 @@ class TLinkButton extends TWebControl implements IPostBackEventHandler } /** - * @return string the command name associated with the OnCommand event. + * @return string the command name associated with the {@link onCommand Command} event. */ public function getCommandName() { @@ -156,7 +157,7 @@ class TLinkButton extends TWebControl implements IPostBackEventHandler } /** - * Sets the command name associated with the OnCommand event. + * Sets the command name associated with the {@link onCommand Command} event. * @param string the text caption to be set */ public function setCommandName($value) @@ -165,7 +166,7 @@ class TLinkButton extends TWebControl implements IPostBackEventHandler } /** - * @return string the parameter associated with the OnCommand event + * @return string the parameter associated with the {@link onCommand Command} event */ public function getCommandParameter() { @@ -173,7 +174,7 @@ class TLinkButton extends TWebControl implements IPostBackEventHandler } /** - * Sets the parameter associated with the OnCommand event. + * Sets the parameter associated with the {@link onCommand Command} event. * @param string the text caption to be set */ public function setCommandParameter($value) -- cgit v1.2.3