How to set up default value in symfony2 select box with data from database
Posted
by
user172409255
on Stack Overflow
See other posts from Stack Overflow
or by user172409255
Published on 2012-08-17T04:22:31Z
Indexed on
2013/11/01
3:55 UTC
Read the original article
Hit count: 159
I have this code
->add('user', 'entity', array(
'class' => 'Acme\Entity\User',
'query_builder' => function(EntityRepository $er) use ($options)
{ return $er->createQueryBuilder('u')
->orderBy('u.name', 'ASC');
},
'data' => $option['id']
))
Its not working
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('description')
->add('user', 'entity', array(
'class' => 'Acme\Entity\User',
'query_builder' => function(EntityRepository $er) use ($options) {
return $er->createQueryBuilder('u');
},
'preferred_choices' => array('2')
))
;
}
© Stack Overflow or respective owner