我想了解我可以使用什么小部件来生成这样的 html:
<input name="users[]" value="Robert" type="checkbox"> Robert
<input name="users[]" value="Bob" type="checkbox"> Bob
或者也许 symfony 没有那个小部件,我必须自己写?谢谢
我想了解我可以使用什么小部件来生成这样的 html:
<input name="users[]" value="Robert" type="checkbox"> Robert
<input name="users[]" value="Bob" type="checkbox"> Bob
或者也许 symfony 没有那个小部件,我必须自己写?谢谢
检查这个: 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)
是的!我找到了!我找到的小部件是sfWidgetFormSelectCheckbox