我正在使用SontaAdminBundle,我想在标签上整理我的节目动作。
protected function configureShowFields(ShowMapper $showMapper)
{
$showMapper
->tab('Infos personnelles')
->with('Beneficiary', array('class' => 'col-lg-6'))
->add('email')
->add('firstname')
->add('lastname')
->add('civility')
->add('dateOfBirth')
->add('enabled')
->add('address')
->end()
->end()
->tab('projects')
->with('projects')
->add('title')
->add('statusLabel')
->end()
->end();
}
但它没有用。是否有其他配置要做。
THX
答案 0 :(得分:0)
您使用的配置很好,您只需要将您的奏鸣曲版本更新为master,检查此提交中的更改:
https://github.com/sonata-project/SonataAdminBundle/commit/fd1a1596f86bfb4afdafe9767efaa4c787bba6a5
SonataAdminBundle/Resources/views/CRUD/base_show.html.twig
已更新。
希望这有帮助。