Cara memeriksa kotak centang secara default dalam bentuk api


18

Saya bertanya-tanya bagaimana saya dapat memeriksa kotak centang secara default? Apakah #default_valueatribut yang salah?

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

        ); 

Terima kasih banyak!

Jawaban:


23

Lihat contoh di bawah ini ...

$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

Anda Memiliki Satu Bidang seperti kotak surat Berita atau ketentuan syarat, Anda dapat menggunakan kode di bawah ini

 $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
Apa yang terjadi di sini ketika formulir dikirimkan dengan kotak centang tidak dicentang tetapi harus disetel ke true?
span

1

sudahkah kamu mencoba

    $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

Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.