HosipLan

Untitled

Nov 23rd, 2012
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. $form->addRadioList('type')->setItems(array(1, 2, 3));
  2. $form->addText('first');
  3. $form['type']
  4.     ->addConditionOn($form['type'], $form::IS_IN, array(1, 2))
  5.     ->toggle($form['first']->htmlId)
  6.  
  7. $form->addText('second');
  8. $form['type']
  9.     ->addConditionOn($form['type'], $form::EQUALS, 2)
  10.     ->toggle($form['second']->htmlId)
Advertisement
Add Comment
Please, Sign In to add comment