Tuesday, October 7, 2014

Re: get the id's from checkbox list

Oh, and if it did not work as expected, try putting a model name before the "available" in the checkbox.

Let's say that you use the "Tutor" model - the code should look like this:

echo $this->Form->checkbox('Tutor.available.'.$i, array('value' => $id, 'checked' => 0, 'hiddenField'=>false);

or without the $i:
echo $this->Form->checkbox('Tutor.available.', array('value' => $id, 'checked' => 0, 'hiddenField'=>false);

--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.

No comments: