Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- protected function createComponentForm($name)
- {
- $this[$name] = $form = new Nette\Application\UI\Form;
- $pairs = array('a', 'b', 'c'); // třeba z databáze
- $form->addSelect('one', 'One', $pairs);
- $pairsTwo = $this->model->findBy($form['one']->value); // vytahne zavisle
- // $pairsTwo = array('d', 'e', 'f');
- $form->addSelect('two', 'Two', $pairsTwo);
- }
Advertisement
Add Comment
Please, Sign In to add comment