我想了解我可以使用哪些小部件来生成这样的html:
<input name="users[]" value="Robert" type="checkbox"> Robert
<input name="users[]" value="Bob" type="checkbox"> Bob
或许symfony没有那个小部件,我必须自己编写? 感谢
答案 0 :(得分:3)
检查一下: 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)
答案 1 :(得分:0)
呀!我找到了! 我找到的小部件是 sfWidgetFormSelectCheckbox