up vote 4 down vote favorite
3
share [g+] share [fb]

I am using

$form->input('Model.name', array('multiple'=>'checkbox');

I am trying to base on model data to set certain checkboxes to checked.

How can i do that?

link|improve this question
feedback

6 Answers

cmptrgeekken's solution works for a single checkbox. I'm assuming you're generating a multiple checkboxes, for a HABTM relation or something similar.

You need to pass a array with the values of the elements that are going to be selected to the method, like this:

$options = array(1 => 'ONE', 'TWO', 'THREE');
$selected = array(1, 3);
echo $form->input('Model.name', array('multiple' => 'checkbox', 'options' => $options, 'selected' => $selected));

is going to generate this:

 <div class="input select">
      <label for="ModelName">Name</label>
      <input name="data[Model][name]" value="" type="hidden">

      <div class="checkbox">
           <input name="data[Model][name][]" checked="checked" value="1" id="ModelName1" type="checkbox">
           <label for="ModelName1" class="selected">ONE</label>
      </div>
      <div class="checkbox">
           <input name="data[Model][name][]" value="2" id="ModelName2" type="checkbox">
           <label for="ModelName2">TWO</label>
      </div>
      <div class="checkbox">
           <input name="data[Model][name][]" checked="checked" value="3" id="ModelName3" type="checkbox">
           <label for="ModelName3" class="selected">THREE</label>
      </div>
 </div>

The first and third checkbox checked.

Just remember that you're actually working with a multiple select element that is just displayed as a bunch of checkboxes (Which is IMO better because of the usability).

link|improve this answer
Speaking of usability, I found that a good trick to use when creating multiple-selects is to put a wrapper-div around the options, put a border on it and have css apply overflow: auto; – spelley Dec 26 '09 at 23:14
feedback

I don't use CakePHP, but according to the docs, it appears as though you should be able to add the option 'checked'=>true:

$form->input('Model.name', array('type'=>'checkbox','checked'=>true));

since that's one of the options of the checkbox function.

link|improve this answer
feedback

Another way to have a checkbox checked with the "label" right next to it is.

$form->checkbox('Model.name', array('checked'=>'checked'))?> Label 

Label can be what ever you want though. example: 21,000-3000, Tire, Human. I am sure you get the idea.

link|improve this answer
feedback
<?php  

$subjects = array(1=>'Snow boarding',2=>'Surfing',3=>'Trekking',4=>'Swimming');
$selected_skills = array(0=>2,1=>4);

// For MutiSelect box with selected 
 $form->input('skills_list',array('label' => 'Skills','options' => $subjects,'class' =>'','multiple'=>true,'selected'=> $selected_skills));

//For Multiple checkbox with checked 
$form->input('skills_list',array('label' => 'Skills','options' => $subjects,'class' =>'','multiple'=>'checkbox','selected'=> $selected_skills));
?>
link|improve this answer
feedback

Here is a small code snippet from one of my project-

    $categories = $this->Site->Category->find('list', array('recursive' => -1));
    $this->set(compact('categories'));

    $this->Site->Category->bindModel(array('hasOne' => array('CategoriesSite')));
    $selected = $this->Site->Category->find('list', array(
        'fields' => array('id'),
        'conditions' => array(
            'CategoriesSite.site_id' => $this->data['Site']['id'],
        ),
        'recursive' => 0,
    ));
    $this->set(compact('selected'));

Main key is for selected is 'fields' => array('id')

link|improve this answer
feedback
$options = array(1 => 'ONE', 'TWO', 'THREE');
$selected = array(1, 3);
echo $form->input('Model.name', 
    array( 
        "name"=>$mnus['Aco']['id'],
        "type"=>"select",
        "multiple"=>"checkbox", 
        'options' => $options, 
        'selected' => $selected)
    );

this is the correct way for multiple check box and checked option. I am using this in cake1.3 please recheck once on your code it must work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.