Skip to content

Instantly share code, notes, and snippets.

@DinoChiesa
Created August 4, 2016 19:32
Show Gist options
  • Save DinoChiesa/6c103004f04d5cd62086806d6e9af094 to your computer and use it in GitHub Desktop.
Save DinoChiesa/6c103004f04d5cd62086806d6e9af094 to your computer and use it in GitHub Desktop.
// this will not work
$form['whitelist'] = array(
'#type' => 'checkbox',
'#states' => array(
// uncheck this box when the other checkbox is checked.
'unchecked' => array(
':input[name="blacklist"]' => array('checked' => TRUE),
),
),
);
$form['blacklist'] = array(
'#type' => 'checkbox',
'#states' => array(
// uncheck this box when the other checkbox is checked.
'unchecked' => array(
':input[name="whitelist"]' => array('checked' => TRUE),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment