Exemplo n.º 1
0
 public function init($field = '', $title = '', $align = 'left', $nowrap = false, $width = 0, $visible = true, $options = null, $order = false, $filter = false)
 {
     parent::init($title, $align, $nowrap, $width, $visible, $options, $order, $filter);
     if ($field) {
         $this->setField($field);
     }
 }
Exemplo n.º 2
0
 public function init($title = '', $action = '', $width = 0, $visible = true, $options = null, $order = false, $filter = false)
 {
     parent::init($title, null, false, $width, $visible, $options, $order, $filter);
     $this->action = $action;
     $this->options = $options;
 }
Exemplo n.º 3
0
 public function init($control, $title = '', $align = 'left', $nowrap = false, $width = 0, $visible = true)
 {
     parent::init($title, $align, $nowrap, $width, $visible);
     $this->baseControl = $control;
 }
Exemplo n.º 4
0
 public function init($attribute, $title = '', $align = 'left', $nowrap = false, $width = 0, $visible = true, $options = null, $order = false, $filter = false)
 {
     parent::init($title, $align, $nowrap, $width, $visible, $options, $order, $filter);
     $this->attribute = $attribute;
 }