How to stop default alert message in datagrid button?

0
I have a datagrid and added few buttons, like "Add", "Edit", "Process" etc. Without selecting any row if I click "Edit" button, then it will send an alert "No row selected". But, my process button process data from entity, not from datagrid. So, how to stop the alert message as I ant to process without selecting any row in datagrid.
asked
2 answers
1

As Wieke Bouten says, simply delete the input parameter from that microflow, and the button will work with no selection.

answered
0

What kind of parameter does the MF for "Process" receive: object or list?

I noticed at 6.10.3 when not selecting a row in the datagrid it passed all objects in the grid to a MF that receives a list.

Perhaps this may work for you and you could ignore the received list.

answered