Symfony2: Display Bootstrap Switch Button and get selected values in controller

9.6k Views Asked by At

I want to Implement the following field in symfony2. It has 2 Radio Buttons, and they are styled like Switch using some bootstrap styling.

Example here

above html and bootstrap, snippet displays desired output

<div class="btn-group btn-toggle" data-toggle="buttons">
   <label class="btn btn-primary active">
      <input type="radio" name="options" value="option1"> On
   </label>
   <label class="btn btn-default">
      <input type="radio" name="options" value="option2" checked=""> Off
   </label>
</div>

which outputs

preview of this

for this example to work it requires tag inside tag. but symfony form builder is rendering

<radio>..</radio>
<label></label>

how can I render <radio> tag inside <label> using symfony form builder?

In symfony for checkbox we use this code , but it displays normal radio group,

->add('check', 'choice', array(
                'choices' => array(
                    0 => 'On',
                    1 => 'Off'
                ),
                    'expanded'  => true,
                    'multiple'  => false,
                'data' => 1
            ))
2

There are 2 best solutions below

6
On BEST ANSWER
0
On

in ProjectType.php

  $builder->add('progress', 'choice', array('label'=>'State of the project',
            'expanded' => true,
            'multiple' => false,
            'choices' => array(
                '1'=>'Draft',
                '2'=>'Advanced',
                '3'=>'Final step',
            )));

twig:

            <div class="form-group">
                {{ form_label(form.progress) }}
                <div class="col-sm-9 btn-group" data-toggle="buttons">
                    {% for key,choice in form.progress.vars.choices %}
                    <label class="btn btn-default {% if choice.value == form.progress.vars.value %}active{% endif %}">
                        <input type="radio" id="{{ form.progress.vars.id }}_{{ key }}" {% if choice.value == form.progress.vars.value %}checked{% endif %}
                               autocomplete="off" name="{{ form.progress.vars.full_name }}" value="{{ choice.value }}">
                        {{ choice.label }}
                    </label>
                    {% endfor %}
                </div>
            </div>