Symfony2.1 (ベータ版) を使用しています。datetime
フォームのフィールドのラベルを表示する方法が見つかりません。
リファレンスには、label
プロパティの痕跡はありません。それはどうしてですか?
Symfony2.1 (ベータ版) を使用しています。datetime
フォームのフィールドのラベルを表示する方法が見つかりません。
リファレンスには、label
プロパティの痕跡はありません。それはどうしてですか?
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
これを試して。私は毎回それを使用し、魅力のように機能します. 多分ドキュメントのバグ?
$builder->add('creation_date', 'date', array(
'label' => 'Creation date',
));