PHP Class Prado\Web\UI\WebControls\TButton

TButton creates a click button on the page. It is mainly used to submit data to a page. TButton raises two server-side events, {@link onClick OnClick} and {@link onCommand OnCommand}, when it is clicked on the client-side. The difference between these two events is that the event {@link onCommand OnCommand} is bubbled up to the button's ancestor controls. And within the event parameter for {@link onCommand OnCommand} contains the reference to the {@link setCommandName CommandName} and {@link setCommandParameter CommandParameter} property values that are set for the button object. This allows you to create multiple TButton components on a Web page and programmatically determine which one is clicked with what parameter. Clicking on button can also trigger form validation, if {@link setCausesValidation CausesValidation} is true. 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. TButton displays the {@link setText Text} property as the button caption. TButton can be one of three {@link setButtonType ButtonType}: Submit, Button and Reset. By default, it is a Submit button and the form submission uses the browser's default submission capability. If it is Button or Reset, postback may occur if one of the following conditions is met: - an event handler is attached to {@link onClick OnClick} event; - an event handler is attached to {@link onCommand OnCommand} event; - the button is in a non-empty validation group. In addition, clicking on a Reset button will clear up all input fields if the button does not cause a postback.
Since: 3.0
Author: Qiang Xue ([email protected])
Inheritance: extends TWebControl, implements Prado\Web\UI\IPostBackEventHandler, implements Prado\Web\UI\IButtonControl, implements Prado\IDataRenderer
Afficher le fichier Open project: pradosoft/prado Class Usage Examples

Méthodes publiques

Méthode Description
getButtonTag ( ) : TButtonTag
getButtonType ( ) : TButtonType
getCausesValidation ( ) : boolean
getCommandName ( ) : string
getCommandParameter ( ) : string
getData ( ) : string Returns the caption of the button.
getEnableClientScript ( ) : boolean
getIsDefaultButton ( ) : boolean
getText ( ) : string
getValidationGroup ( ) : string
onClick ( $param ) This method is invoked when the button is clicked.
onCommand ( $param ) This method is invoked when the button is clicked.
raisePostBackEvent ( $param ) Raises the postback event.
renderContents ( $writer ) Renders the body content enclosed between the control tag.
setButtonTag ( $value )
setButtonType ( $value )
setCausesValidation ( $value )
setCommandName ( $value )
setCommandParameter ( $value )
setData ( $value ) Sets the caption of the button.
setEnableClientScript ( $value )
setIsDefaultButton ( $value )
setText ( $value )
setValidationGroup ( $value )

Méthodes protégées

Méthode Description
addAttributesToRender ( $writer ) Adds attribute name-value pairs to renderer.
canCauseValidation ( ) : boolean
getClientClassName ( ) : string Gets the name of the javascript class responsible for performing postback for this control.
getPostBackOptions ( ) : array Returns postback specifications for the button.
getTagName ( ) : string
needPostBackScript ( ) : boolean
renderClientControlScript ( $writer ) Renders the client-script code.

Method Details

addAttributesToRender() protected méthode

This overrides the parent implementation with additional button specific attributes.
protected addAttributesToRender ( $writer )

canCauseValidation() protected méthode

protected canCauseValidation ( ) : boolean
Résultat boolean whether to perform validation if the button is clicked

getButtonTag() public méthode

public getButtonTag ( ) : TButtonTag
Résultat TButtonTag the tag name of the button. Defaults to TButtonType::Input.

getButtonType() public méthode

public getButtonType ( ) : TButtonType
Résultat TButtonType the type of the button. Defaults to TButtonType::Submit.

getCausesValidation() public méthode

public getCausesValidation ( ) : boolean
Résultat boolean whether postback event trigger by this button will cause input validation, default is true

getClientClassName() protected méthode

This method overrides the parent implementation.
protected getClientClassName ( ) : string
Résultat string the javascript class name

getCommandName() public méthode

public getCommandName ( ) : string
Résultat string the command name associated with the {@link onCommand OnCommand} event.

getCommandParameter() public méthode

public getCommandParameter ( ) : string
Résultat string the parameter associated with the {@link onCommand OnCommand} event

getData() public méthode

This method is required by {@link \Prado\IDataRenderer}. It is the same as {@link getText()}.
See also: getText
Since: 3.1.0
public getData ( ) : string
Résultat string caption of the button.

getEnableClientScript() public méthode

public getEnableClientScript ( ) : boolean
Résultat boolean whether to render javascript.

getIsDefaultButton() public méthode

public getIsDefaultButton ( ) : boolean
Résultat boolean true if this button is registered as a default button for a panel.

getPostBackOptions() protected méthode

This method is used by framework and control developers.
protected getPostBackOptions ( ) : array
Résultat array parameters about how the button defines its postback behavior.

getTagName() protected méthode

protected getTagName ( ) : string
Résultat string tag name of the button

getText() public méthode

public getText ( ) : string
Résultat string caption of the button

getValidationGroup() public méthode

public getValidationGroup ( ) : string
Résultat string the group of validators which the button causes validation upon postback

needPostBackScript() protected méthode

protected needPostBackScript ( ) : boolean
Résultat boolean whether the button needs javascript to do postback

onClick() public méthode

The method raises 'OnClick' event to fire up the event handlers. If you override this method, be sure to call the parent implementation so that the event handler can be invoked.
public onClick ( $param )

onCommand() public méthode

The method raises 'OnCommand' event to fire up the event handlers. If you override this method, be sure to call the parent implementation so that the event handlers can be invoked.
public onCommand ( $param )

raisePostBackEvent() public méthode

This method is required by {@link IPostBackEventHandler} interface. If {@link getCausesValidation CausesValidation} is true, it will invoke the page's {@link TPage::validate validate} method first. It will raise {@link onClick OnClick} and {@link onCommand OnCommand} events. This method is mainly used by framework and control developers.
public raisePostBackEvent ( $param )

renderClientControlScript() protected méthode

Renders the client-script code.
protected renderClientControlScript ( $writer )

renderContents() public méthode

This overrides the parent implementation with nothing to be rendered for input tags, button tags are rendered normally.
public renderContents ( $writer )

setButtonTag() public méthode

public setButtonTag ( $value )

setButtonType() public méthode

public setButtonType ( $value )

setCausesValidation() public méthode

public setCausesValidation ( $value )

setCommandName() public méthode

public setCommandName ( $value )

setCommandParameter() public méthode

public setCommandParameter ( $value )

setData() public méthode

This method is required by {@link \Prado\IDataRenderer}. It is the same as {@link setText()}.
See also: setText
Since: 3.1.0
public setData ( $value )

setEnableClientScript() public méthode

public setEnableClientScript ( $value )

setIsDefaultButton() public méthode

public setIsDefaultButton ( $value )

setText() public méthode

public setText ( $value )

setValidationGroup() public méthode

public setValidationGroup ( $value )