客户端不想在选择表单中滚动,因此我需要增加选择表单的大小。
我试过这个但是仍然无效,我只看到4个输入:
{{ form_widget(filterForm.accomodationFilter1, { attr: { class: 'fancyselect filter type' }, {'size': '10'} }) }}
知道如何做到这一点以及文档在哪里?
由于
答案 0 :(得分:1)
尝试直接在formBuilder中执行:
->add('example', 'choice', array(
'attr' => array('class' => 'fancyselect filter type',
'style' => 'max-width:100px'),
'choices' => 'choices',
)
或者只是使用:
->add('example', 'choice', array(
'attr' => array('class' => 'fancyselect filter type'),
'choices' => 'choices',
'max_length' => 100,
)