Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /**
  2. * Implements hook_form_FORM_ID_alter().
  3. */
  4. function MODULENAME_form_CONTENTTYPENAME_node_form_alter(&$form, &$form_state) {
  5. $form['text_field']['#states'] = array(
  6. 'visible' => array(
  7. ':input[name="radio_field"]' => array('value' => 'value_of_textfield_option'),
  8. ),
  9. );
  10.  
  11. $form['integar_field']['#states'] = array(
  12. 'visible' => array(
  13. ':input[name="radio_field"]' => array('value' => 'value_of_integarfield_option'),
  14. ),
  15. );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement