The following code doesn't work:

  $form['date'] = array(
    '#title' => 'Date',
    '#type' => 'select',
    '#options' => array(
      'day' => 'Day',
      'week' => 'Week',
      'custom' => 'Custom'
    ),
  );
  $form['date-custom'] = array(
    '#type' => 'date',
    '#title' => 'Custom date',
    '#states' => array(
      'visible' => array(
        'select[name="date"]' => array('value' => 'custom'),
      )
    ),
  );

Comments

strykaizer’s picture

subscribing

Status: Active » Closed (outdated)

Automatically closed because Drupal 7 security and bugfix support has ended as of 5 January 2025. If the issue verifiably applies to later versions, please reopen with details and update the version.