简体   繁体   中英

Cutom batch actions on sonata admin

I am working with sonata admin bundle of symfony. Is there any way to show Modal on click of OK of batch actions?

For example in this image:

在此处输入图像描述

When I click on Ok after selected elements a modal should open. Is there any custom way of doing this.

I think you can try to overrride the default edit view

# config/packages/sonata_admin.yaml

sonata_admin:
    templates:
        edit:  '@SonataAdmin/CRUD/edit.html.twig'

This @SonataAdmin/CRUD/edit.html.twig is the default edit template used by sonata. You might be able to replace it by whatever you want. Then, adding the modal shouldn't be different than what you might already be used to do in front.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM