I have checkbox created by Profile2 called field_apply. Then i use hook_form_alter to add a texfield which should be visible when checkbox is checked.
function test_form_alter(&$form, &$form_state, $form_id) {
if($form_id == 'user_register_form') {
$form['profile_test']['test'] = array(
'#type' => 'textfield',
'#title' => 'Test text',
'#states' => array(
'visible' => array(
':input[name="field_apply"]' => array('checked' => TRUE),
),
),
);
}
}
But #states doesn't work. Textfield is still visible even if field_apply is not checked.