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

How can I set the HTML class attribute to a form <input> using the FormBuilder in Symfony2 ?

I'm wondering something like this:

->add('birthdate', 'date',array(
      'input' => 'datetime',
      'widget' => 'single_text',
      'class' => 'calendar'
 ))

 {{ form_widget(form.birthdate) }}

I want this inputfield with the attribute class set to calendar

share|improve this question

3 Answers

up vote 16 down vote accepted

You can do this from the twig template:

{{ form_widget(form.birthdate, { 'attr': {'class': 'calendar'} }) }}

From http://symfony.com/doc/current/book/forms.html#rendering-each-field-by-hand

share|improve this answer
5  
This really isn't an answer for the question-- the whole point of the FormBuilder is to avoid hand-coding the Twig template. – Acyra Mar 13 '12 at 12:53

You can do it with FormBuilder. Add this to the array in your FormBuilder:

'attr'=> array('class'=>'span2')
share|improve this answer

The answer by Acyra lead the right way if you want to set attributes inside the controller, but has many inaccuracies.

Yes, you can do it directly with the FormBuilder by using the attr attribute (introduced here for the 2.1 version and here for the 2.0) to the array of options as follows:

->add('birthdate', 'date',array(
      'input' => 'datetime',
      'widget' => 'single_text',
      'attr' => array('class'=>'calendar')
 ))

It is not true that the "functionality is broken". It works very well!

It is not true that Symfony2 applies the HTML class attribute to both the label and the input (at least from the 2.1 version).

Moreover, since the attr attribute is an array itself, you can pass any HTML attribute you want to render for the field. It is very helpful if you wanna pass the HTML5 data- attributes.

share|improve this answer
Sf2.1 fixes the error I mentioned; I've updated my answer. – Acyra Nov 25 '12 at 15:21
@Acyra I see... – JeanValjean Nov 25 '12 at 15:24

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.