CakePHP FormHelper - 无法禁用多个复选框
我的观点如下:
echo $form->input('Category', array('multiple' => 'checkbox', 'disabled' => true));
但是,复选框并未被禁用......
I've got the following in my view:
echo $form->input('Category', array('multiple' => 'checkbox', 'disabled' => true));
But, the checkboxes aren't disabled...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试表单助手中的 checkbox() 方法。 API链接:http://api.cakephp.org/class/form-helper #method-FormHelpercheckbox
只需更改您的语法(我认为它只是 FormHelper::input 的包装器,但这应该有效):
如果这不起作用,请发布从您的调用输出的 HTML。
Try the checkbox() method in the form helper. API link: http://api.cakephp.org/class/form-helper#method-FormHelpercheckbox
Just change your syntax (I think it's just a wrapper around the FormHelper::input, but this should work):
If that doesn't work, post the HTML that is output from your call.
我认为你应该将 true 作为字符串传递,例如:
如果这不起作用,请使用
I think you should pass true as string like:
If this doesn't work use