Drupal - Multiple Values to Trigger #states
Here's what you need:
'#states' => array(
'visible' => array(
':input[name="field_star_rating"]' => array(
array('value' => t('5')),
array('value' => t('4'))
),
),
),
Only way I could figure is to use #ajax in D7.
Here are a few helpful tip's I wish I would have known before starting.
- #ajax in the form API is awesome and worth learning
- #states does not support OR or XOR (Without a patch? http://drupal.org/node/735528 )
- dpm($form); and var_dump($form_state) on a custom submit function are priceless
Here is a modified version of one of the AJAX examples from the examples module.
function plugin_autotextfields($form, &$form_state) {
$form['star_rating'] = array(
'#type' => 'select',
'#title' => t('Star Rating'),
'#options' => array('_none' => '- select -', 5 => '5 Star', 4 => '4 Star', 3 => '3 Star', 2 => '2 Star', 1 => '1 Star'),
'#ajax' => array(
'callback' => 'plugin_autotextfields_callback',
'wrapper' => 'textfields',
'effect' => 'fade',
),
);
$form['textfields'] = array(
'#title' => t("Fieldset Name"),
'#prefix' => '<div id="textfields">',
'#suffix' => '</div>',
'#type' => 'fieldset',
'#description' => t('Where the field will be placed'),
);
if (!empty($form_state['values']['star_rating']) && $form_state['values']['star_rating'] == 5) {
$form['textfields']['review'] = array(
'#type' => 'textfield',
'#title' => t('Message if 5 stars'),
);
} else if (!empty($form_state['values']['star_rating'])) {
$form['textfields']['review'] = array(
'#type' => 'textfield',
'#title' => t('Message if not 5 stars'),
);
}
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Click Me'),
);
return $form;
}
function omfg_autotextfields_callback($form, $form_state) {
return $form['textfields'];
}
I hope this helps someone that runs into the same problem :)
$form['student_type'] = array(
'#type' => 'checkboxes',
'#options' => array(
'high_school' => t('High School'),
'undergraduate' => t('Undergraduate'),
'graduate' => t('Graduate'),
),
'#title' => t('What type of student are you?')
);
// High school information.
$form['high_school']['tests_taken'] = array(
'#type' => 'textfield',
'#title' => t('What standardized tests did you take?'),
'#states' => array(
'visible' => array( // action to take.
':input[name="student_type[high_school]"]' => array('checked' => TRUE),
':input[name="student_type[undergraduate]"]' => array('checked' => TRUE),
':input[name="student_type[graduate]"]' => array('checked' => FALSE),
),
),
);
P.S. See the examples module for more features "form_example/form_example_states.inc"