วิธีการตรวจสอบช่องทำเครื่องหมายโดยค่าเริ่มต้นในแบบฟอร์ม API


18

ฉันสงสัยว่าฉันจะทำเครื่องหมายในช่องทำเครื่องหมายเป็นค่าเริ่มต้นได้อย่างไร เป็น#default_valueคุณสมบัติที่ผิดหรือเปล่า?

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

        ); 

ขอบคุณมาก!

คำตอบ:


23

ดูตัวอย่างด้านล่าง ...

$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

คุณมีช่องเดียวเช่นจดหมายข่าวหรือเงื่อนไขข้อตกลงคุณสามารถใช้รหัสด้านล่าง

 $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
จะเกิดอะไรขึ้นที่นี่เมื่อฟอร์มถูกส่งมาพร้อมกับช่องไม่ได้ตรวจสอบ แต่ต้องกำหนดให้true?
ช่วงที่

1

คุณลองไหม

    $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 

ออสการ์

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.