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

I'm using Symfony2.1 (beta). I can't find a way to display labels for datetime fields in forms.

In the reference there is no trace of a label property. How can it be?!

share|improve this question
If you're using symfony 2.1, be sure to read the master doc : symfony.com/doc/master/reference/forms/types/datetime.html – AdrienBrault Jul 11 '12 at 23:01
Yes, thank you. By the way there is no trace of labels neither in master doc. – Francesco Jul 11 '12 at 23:42

2 Answers

Try this. I use it every time and works like a charm. Maybe docs bug?

$builder->add('creation_date', 'date', array(
    'label' => 'Creation date',
));
share|improve this answer
This is the first thing I tried. No way. By the way I noticed this issue with datetime fields, I didn't try date fields. – Francesco Jul 11 '12 at 23:39
Setting the "label" option is the correct approach. Do you render your form manually? – Bernhard Schussek Jul 28 '12 at 17:48

You can show the label of a field "myDate" for example like this:

<div>
    {{ form_label(form.myDate, 'Choose a date: (this is the label sentence)') }}
</div>

(Documentation: http://symfony.com/doc/current/book/forms.html)

You can also personalize your form render: http://symfony.com/doc/current/cookbook/form/form_customization.html

share|improve this answer
I'm printing the whole form with {{ form_widget(form) }}. I would avoid to manually print every field for this "bug". – Francesco Jul 11 '12 at 23:41

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.