我不想用sonata_type_collection制作嵌入表单,
我的模型还可以,在我的嵌入表单中我无法添加行但我有一个问题,嵌入表单的删除按钮不会显示。
protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
->add('date', 'datetime')
->add('title', 'text')
->add('author', 'text')
->add('content', 'textarea')
->add('images', 'sonata_type_collection', [
'required' => true,
'by_reference' => false,
], [
'edit' => 'inline',
'inline' => 'table',
'sortable' => 'position',
]);
}
感谢您的帮助