getAutoPostBack() public method

public getAutoPostBack ( ) : boolean
return 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.
示例#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();
 }