添加了年份的当前buildForm
->add('year', DateType::class, array(
'label' => 'Select Year',
'widget' => 'choice',
'years' => range(Date('Y'), 2000)
用于自定义月和日属性的小树枝文件(这在以前是有效的)
{{ form_widget(form.year['day'], {'attr':{'style':'display:none'}}) }}
{{ form_widget(form.year['month'], {'attr':{'style':'display:none'}}) }}
It currently displays this image, would like it to display the year only
我试过改变小枝文件,在表单生成器中添加一个类,到目前为止似乎都不起作用。
1条答案
按热度按时间eqfvzcg81#
如果字段只是一个整数,可以直接使用
ChoiceType
,将'choices'
选项设置为年份范围,并配置'choice_label'
选项以使用该值。上面的
YearType
渲染如下: