Prado\Web\UI\WebControls\TTextBox::getAutoPostBack PHP Méthode

getAutoPostBack() public méthode

public getAutoPostBack ( ) : boolean
Résultat boolean a value indicating whether an automatic postback to the server will occur whenever the user modifies the text in the TTextBox control and then tabs out of the component. Defaults to false.
    public function getAutoPostBack()
    {
        return $this->getViewState('AutoPostBack', false);
    }

Usage Example

Exemple #1
0
 /**
  * @return boolean whether change of the content should cause postback. Return false if EnableVisualEdit is true.
  */
 public function getAutoPostBack()
 {
     return $this->getEnableVisualEdit() ? false : parent::getAutoPostBack();
 }