Symfony (1.2) 多个复选框小部件
我想了解我可以使用什么小部件来生成这样的 html:
<input name="users[]" value="Robert" type="checkbox"> Robert
<input name="users[]" value="Bob" type="checkbox"> Bob
或者也许 symfony 没有那个小部件,我必须自己编写它? 谢谢
I want understand what the widget can I use to generate such html:
<input name="users[]" value="Robert" type="checkbox"> Robert
<input name="users[]" value="Bob" type="checkbox"> Bob
Or perhaps symfony doesn't have that widget and I have to write it myself?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查一下:
http://www.symfony-project.org/forms/1_2/ en/A-Widgets#chapter_a_sub_choice_representations
正如他们所解释的,您可以尝试以下代码:
它将产生以下结果:
(来源:symfony-project.org)
Check this:
http://www.symfony-project.org/forms/1_2/en/A-Widgets#chapter_a_sub_choice_representations
As they explain, you may try this code:
It will produce this:
(source: symfony-project.org)
是的!我找到了!
我找到的小部件是 sfWidgetFormSelectCheckbox
Yeah! I found it!
It is sfWidgetFormSelectCheckbox that widget I find