I want to select an option in the dropdown from the controller. I am trying with the following piece of code:
$form = $this->createForm(new SearchAdvancedType());
$form->get('option')->setData($session->get('option'));
But it is doing nothing in the dropdown. Nothing is selected when the page loads.
To check if the value was well set I print it using:
$form->get('brand')->Data();
and the result was a number (it changes depending of what I choosed in the dropdown before).
I need to know the way to select the value of the dropdown properly.