use of hidden field for checkboxes in cakePHP
What is the use of hidden fields for checkbo开发者_运维知识库x in cakePHP??
It's so there's always some data submitted for the field, even if the box is not checked. This becomes especially important if you're using the SecurityComponent. You can turn it off by setting 'hiddenField' => false
as an option.
精彩评论