0

Symfony2.1 (ベータ版) を使用しています。datetimeフォームのフィールドのラベルを表示する方法が見つかりません。

リファレンスには、labelプロパティの痕跡はありません。それはどうしてですか?

4

3 に答える 3

1

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

于 2012-07-11T23:10:21.263 に答える
1

これを試して。私は毎回それを使用し、魅力のように機能します. 多分ドキュメントのバグ?

$builder->add('creation_date', 'date', array(
    'label' => 'Creation date',
));
于 2012-07-11T23:08:23.143 に答える