Symfony (1.2) 多个复选框小部件

发布于 2024-08-16 05:00:42 字数 229 浏览 2 评论 0原文

我想了解我可以使用什么小部件来生成这样的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别理我 2024-08-23 05:00:42

检查一下:
http://www.symfony-project.org/forms/1_2/ en/A-Widgets#chapter_a_sub_choice_representations

正如他们所解释的,您可以尝试以下代码:

$w = new sfWidgetFormChoice(array(
  'expanded' => true,
  'multiple' => true,
  'choices'  => array('A week of symfony', 'Call the expert', 'Community'),
));

它将产生以下结果:
多选带复选框
(来源: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:

$w = new sfWidgetFormChoice(array(
  'expanded' => true,
  'multiple' => true,
  'choices'  => array('A week of symfony', 'Call the expert', 'Community'),
));

It will produce this:
multiple select with checkboxes
(source: symfony-project.org)

长不大的小祸害 2024-08-23 05:00:42

是的!我找到了!
我找到的小部件是 sfWidgetFormSelectCheckbox

Yeah! I found it!
It is sfWidgetFormSelectCheckbox that widget I find

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文