/** * @param string label * @param array options from which to choose */ public function __construct($label = NULL, array $items = NULL) { parent::__construct($label, $items); $this->control->type = 'radio'; $this->container = Html::el(); $this->separator = Html::el('br'); }
public function __construct($label = NULL, array $items = NULL) { parent::__construct($label, $items); $this->setOption('type', 'select'); }
public function __construct($label = NULL, array $items = NULL) { parent::__construct($label, $items); $this->setOption('type', 'select'); $this->addCondition(Nette\Forms\Form::BLANK)->addRule([$this, 'isOk'], Nette\Forms\Validator::$messages[self::VALID]); }