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 __construct($name, $title = '', $align = 'left', $nowrap = false, $width = 0, $visible = true, $options = null, $order = false, $filter = false)
 {
     parent::__construct($title, $align, $nowrap, $width, $visible, $options, $order, $filter);
     $this->name = $name;
 }
Exemplo n.º 3
0
 public function onCreate()
 {
     parent::onCreate();
     $this->align = 'left';
     $this->type = 'link';
 }
Exemplo n.º 4
0
 public function onCreate()
 {
     parent::onCreate();
     $this->type = 'control';
 }
Exemplo n.º 5
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;
 }