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?
|
I am using
I am trying to base on model data to set certain checkboxes to checked. How can i do that? | ||||
|
feedback
|
|
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:
is going to generate this:
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). | |||
feedback
|
|
I don't use CakePHP, but according to the docs, it appears as though you should be able to add the option
since that's one of the options of the checkbox function. | |||
|
feedback
|
|
Another way to have a checkbox checked with the "label" right next to it is.
Label can be what ever you want though. example: 21,000-3000, Tire, Human. I am sure you get the idea. | |||
|
feedback
|
| ||||
|
feedback
|
|
Here is a small code snippet from one of my project-
Main key is for selected is | |||
|
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. | ||||
|
feedback
|