Symfony 2.3.25, SonataAdminBundle
If i remove the 'delete' route from my admin by
$collection->clearExcept(array('list'));
in configureRoutes I get no 'batch' column in List View, which is what I want.
But I need the 'delete' action.
When I configureRoutes:
$collection->clearExcept(array('list', 'delete'));
I get the 'batch' column back, which I do not want. I do not want any batch actions or batch columns or anything batch.
I do want a 'Delete' button per row in an Actions column, which I get.
How do I suppress the batch column in list view?