Hi Lee,
You can add an action button on the datagrid, and set the selection type to single select, and then in the microflow, use the parameter of the object, and then delete it and refresh.
THis way, the selected object will only be deleted.
Let me know, if you face any issues,
Hope it helps!
In your DataGrid settings you need to set the option 'Selection mode' to Single selection. Then, if you add a button with a Microflow action in the Data Grid control bar, you can use a single object parameter and add a delete action for that object. If you include a refresh in the delete action you will see it removed in the client as well
Hi Lee,
Adding some screenshots to support the above answers.
Single-Selection: Go to the General Section of the Data grid and select the selection mode to Single Selection.
2. Right-click on the Place next to Edit button and add an action button; select Delete object in the OnClick Action; and make sure you have the Delete Objects checkbox enabled in the Entity Settings.
3. Add an Action button by following the above steps and selecting the on-click action event to call a microflow and create a new microflow. The microflow will now have an object as a parameter; if not present, you can add it manually from the toolbar above. Add the Delete object activity from the toolbox and select the object ( the one that passed a Microflow Parameter) and then also select the Refresh in Client option in the Delete Objects Activity.
ATB!!