Più valori per innescare #stati


18

Come posso avere più valori che attivano gli #stati dell'API Form?

Ad esempio, volevo che questo campo fosse visibile non solo se il valore è 5 (attualmente funziona sotto), ma volevo rendere visibile il campo se i valori sono 3, 4 o 5.

'#states' => array(
    'visible' => array(
       ':input[name="field_star_rating"]' => array('value' => t('5')),
    ),
),

Come nota, ho provato quanto segue e non funziona . Funziona solo se il valore è '4'

'#states' => array(
    'visible' => array(
        ':input[name="field_star_rating"]' => array('value' => t('5')),
        ':input[name="field_star_rating"]' => array('value' => t('4')),
    ),
),

Anche questo non funziona , funziona anche se il valore è '4':

'#states' => array(
    'visible' => array(
        ':input[name="field_star_rating"]' => array('value' => t('5'), 'value' => t('4')),
    ),
),

Risposte:


39

Ecco cosa ti serve:

'#states' => array(
    'visible' => array(
        ':input[name="field_star_rating"]' => array(
            array('value' => t('5')),
            array('value' => t('4'))
        ),
    ),
),

Questo è davvero il modo corretto, quello attuale contrassegnato come corretto è sbagliato. Vedi questo numero per maggiori informazioni: drupal.org/node/735528
Robin

L'API #states ha sicuramente fatto molta strada nel 2011. Contrassegnare come corretto.
Citricguy,

questa è un'ottima risposta, e sono venuto qui da Google, come una dozzina di volte ... sta arrivando una taglia.
AyeshK,

Funziona bene per una visione normale. Dopo aver eseguito qualsiasi 'ajax', ha aggiunto ancora e ancora
Guru,

3

L'unico modo in cui sono riuscito a capire è usare #ajax in D7.

Ecco alcuni consigli utili che avrei voluto sapere prima di iniziare.

  1. #ajax nella forma API è fantastico e vale la pena imparare
  2. #states non supporta OR o XOR (senza patch? http://drupal.org/node/735528 )
  3. DPM ($ form); e var_dump ($ form_state) su una funzione di invio personalizzata non hanno prezzo

Ecco una versione modificata di uno degli esempi AJAX dal modulo degli esempi.

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'];
}

Spero che questo aiuti qualcuno che incontra lo stesso problema :)


Wow! Risposta molto utile amico mio. Sto avvolgendo la testa intorno a un problema con #states e ora ho funzionato, ma #ajax sarebbe ovviamente stato più facile ora che mi hai schiaffeggiato con un indizio. E quel suggerimento di debug come bonus? Mi dispiace, devo pagarti con misero karma. ;)
stefgosselin,

3
 $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),
      ),
    ),
  );

PS Vedi il modulo esempi per ulteriori funzionalità "form_example / form_example_states.inc"

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.