SonataAdminBundle显示带有选项卡的视图

时间:2016-03-29 20:13:27

标签: sonata-admin symfony-sonata

我正在使用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

1 个答案:

答案 0 :(得分:0)

您使用的配置很好,您只需要将您的奏鸣曲版本更新为master,检查此提交中的更改:

https://github.com/sonata-project/SonataAdminBundle/commit/fd1a1596f86bfb4afdafe9767efaa4c787bba6a5

SonataAdminBundle/Resources/views/CRUD/base_show.html.twig已更新。

希望这有帮助。