Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a Symfony2 website I'm trying to make a form with 2 (or 3) dropdown lists with a dependency like Country > Region > City. And that city is a field of the element I'm editing with the form. The idea is to fill the lists depending on selections.

I've followed the tutorial with form events here : http://aulatic.16mb.com/wordpress/2011/08/symfony2-dynamic-forms-an-event-driven-approach/ (which is based on webb-on-the-web .com/?p=5)

The issue I have: it all works but when I use the form to edit the element, the city is selected correctly (from DB) but the Country and Region dropdown lists are prefilled and left on 'select a value'. I don't know if it was supposed to work with the tutorial as it is.

The question : how can I make these lists selected? I'm trying to add a POST_SET_DATA event but I can't find a way to select the value in the form field.

Here's the form class : http://pastebin.com/PpWkHxC3 (note that instead of city it's : Field > Topic and topic is a field of a Lesson which the form edits).

share|improve this question

1 Answer

up vote 4 down vote accepted

I almost had it. If anybody else ever needs this here's what needs to be added to make this solution work perfectly when editing an existing item :

class ItemDetailForm extends AbstractType
{
   ...
        $builder->addEventListener(FormEvents::POST_SET_DATA, function (DataEvent $event) use ($refreshTopic) {
            $data = $event->getData();
            $form = $event->getForm();
            if (null === $data) {
                return;
            }

            $form->get('region')->setData($data->getCity()->getRegion());
        });
}

Edit: since symfony 2.1, the POST_SET_DATA event is called before the children are added to the form, causing all the get('region') to raise an exception. The solution is to create this field in the POST_SET_DATA and not in the buildForm() :

        /** @var FormFactory $factory */
        $form->add($factory->createNamed('region', 'entity', null, array(
            'class'=>'AcmeBundle:Region',
            'property_path'=>false,
            'empty_value'=>'Choose a value',
            'required'=>true,
            'label'=>'Region'
        )));

Note that you need to add the $factory to the 'use' of the closure handling the event :

$builder->addEventListener(FormEvents::POST_SET_DATA, function (DataEvent $event) use ($refreshTopic, $factory) {
share|improve this answer
I have a question to you Thomas, I have a similar dropdown dependency in my system. My case is that I create the form and I bind it with other values (the request indeed), how can I set the region data and keep working both when I create the form and I'm not binding it and when I bind the data with the request? – eagleoneraptor Aug 15 '12 at 13:56
Sorry, I really didn't understand that question. :) (mind that the binding of Forms has been improved in 2.1, so you just call bind() and not bindRequest() anymore. – Thomas Oct 7 '12 at 17:10
Hello thomas. I am struggling like hell to do what you did. Unfortunately the tutorial with form events is not anymore there. The link is dead. Could you be son kind and edit your answer so other like me can move forward. That would be really great:) Thank you in advance. Cheers. Marc – Marc Jan 19 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.