Symfony (1.2) birden fazla onay kutusu eklendi

1 Cevap php

Ben Widget böyle html oluşturmak için kullanabileceğiniz anlamak istiyorum:

<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

1 Cevap

Check this: http://www.symfony-project.org/forms/1_2/en/A-Widgets#chapter_a_sub_choice_representations

Onlar açıkladığı gibi, bu kodu deneyebilirsiniz:

$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