Quantcast
Channel: Forms
Viewing all articles
Browse latest Browse all 3

Setting a default choice field selection in Symfony2

$
0
0

Make sure you used array.
And define the default value using "data" attribute like :

...
...
->add('select_type', 'choice', array('choices' => array('1' => 'Value 1',
'2' => 'Value 2',
.....
...... ,),
'multiple' => true,
'expanded' => true,
'data' => array(2),
))
....
.....


Viewing all articles
Browse latest Browse all 3