Example #1
0
 public function init($id = '', $value = '', $label = '', $hint = '')
 {
     parent::init($id, $value, $label, 8, $hint);
 }
Example #2
0
 public function init($id = '', $value = '', $label = '', $mask = '(##) ####-####?#', $hint = '')
 {
     parent::init(id, $value, $label, 8, $hint);
 }
Example #3
0
 public function init($name = '', $value = '', $label = '', $hint = '')
 {
     parent::init($name, $value, $label, $size, $hint);
 }
Example #4
0
 public function init($id = '', $value = '', $label = '', $rows = 1, $cols = 20, $hint = '', $validator = null)
 {
     parent::init($id, $value, $label, $cols, $hint, $validator);
     $this->rows = $rows;
     $this->cols = $cols;
 }
Example #5
0
 public function init($name = '', $value = '', $label = '', $action = '', $related = '', $filter = '', $autocomplete = false, $hint = '')
 {
     parent::init($name, $value, $label, 0, $hint);
     $this->setAction($action);
     $this->setContext($filter, $related, $autocomplete);
 }
Example #6
0
 public function init($id = '', $value = '', $label = '', $multiple = true, $text = 'Selecionar Arquivos')
 {
     parent::init($id, $value, $label, '', $hint);
     $this->setText($text);
     $this->setMultiple($multiple);
 }