コード例 #1
0
ファイル: Form.php プロジェクト: janusnic/23copperleaf
 /**
  * Ensure fields are defined and form widgets are registered so they can
  * also be bound to the controller this allows their AJAX features to
  * operate.
  * @return void
  */
 public function bindToController()
 {
     $this->defineFormFields();
     parent::bindToController();
 }
コード例 #2
0
ファイル: ReportContainer.php プロジェクト: idxos/portfolio
 /**
  * Ensure report widgets are registered so they can also be bound to 
  * the controller this allows their AJAX features to operate.
  * @return void
  */
 public function bindToController()
 {
     $this->defineReportWidgets();
     parent::bindToController();
 }