示例#1
0
 protected function createComponent($name)
 {
     $control = parent::createComponent($name);
     if ($this->ajaxEnabled && $control instanceof IAjaxAware) {
         $control->enableAjax();
     }
     return $control;
 }
示例#2
0
 /**
  * Iterates over a components.
  * @param  bool    recursive?
  * @param  string  class types filter
  * @return \Iterator
  */
 public function getComponents($deep = FALSE, $filterType = NULL)
 {
     return $this->multiplier->getComponents($deep, $filterType);
 }
 public function offsetUnset($name)
 {
     return $this->multiplier->offsetUnset($name);
 }