Created
August 4, 2016 19:32
-
-
Save DinoChiesa/6c103004f04d5cd62086806d6e9af094 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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