Api formlarında varsayılan olarak bir onay kutusunu işaretleme


18

Bir onay kutusunu varsayılan olarak nasıl işaretleyebileceğimi merak ediyorum. Mi #default_valueyanlış nitelik?

 $form['ios'] = array(
            '#title' => t(''),
            '#type' => 'checkboxes',
            '#description' => t(''),
            '#options' => $options,
            '#default_value' => 'checked' // this is not working

        ); 

Çok teşekkürler!

Yanıtlar:


23

Aşağıdaki örneğe bakın ...

$options = array();
$options["1"] = "One";
$options["2"] = "Two";
$options["3"] = "Three";
$options["4"] = "Four";


$form['ios'] = array(
  '#title' => t(''),
  '#type' => 'checkboxes',
  '#description' => t(''),
  '#options' => $options,
  '#default_value' => array("1", "2", "3")
); 

17

Haber mektubu veya şart koşulu gibi tek bir alanınız var, aşağıdaki kodu kullanabilirsiniz

 $form['name']['terms_condition'] = array(
      '#type' =>'checkbox',
      '#title'=>t('Terms and conditions'),
      '#required'=>TRUE,
      '#default_value' =>TRUE, // for default checked and false is not checked
  );

1
Form onay kutusu işaretlenmemiş ancak zorunlu olarak ayarlanmış olarak gönderildiğinde burada ne olur true?
span

1

denedin mi

    $form['ios'] = array(
        '#title' => t(''),
        '#type' => 'checkboxes',
        '#description' => t(''),
        '#options' => $options,
        '#default_value' => array($value) // this is not working

    ); 
    //$value should be the option you want to have 

Oskar

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.