我正在使用symfony表单在admin部分中添加一个输入。到目前为止,我一直在像这样使用它们:
$this
->form
->add('placeholder', 'text', array(
'property_path' => 'options[attr][placeholder]',
));
但是我想使使用bootstrap collapse
的“非技术”同事无法访问3个输入字段,所以我决定使用ButtonType
:
$this
->form
->add('extendedCenas', ButtonType::class, array(
'attr' => array('class' => 'collapse'),
));
但是,如何在单击按钮时显示引导HTML和输入字段呢?也许是专用树枝?