Default Buttons and Multi Select in Datagrids

0
Hi,  In datagrid, I use default button to edit an object by double clicking it, now I need to delete the objects as bulk by multi-selecting it. But when I enable the Multi-select, the functionality of the default button is not working when I double click it. Is there is any way to complete my requirement ? Thank you in advance.
asked
1 answers
1

You can switch out the default mendix button for a microflow button.

The microflow should take a list of whatever entity you're trying to multiselect as a parameter, and delete that list +  refresh. Don't forget to give whichever userroles the button should be available for the access rights to the microflow.

answered