How to delete an event on by one

0
I have used a list view that contains all the event for my app. I am curious how to delete each event separately? Thank you
asked
1 answers
0

To delete individual events in Mendix:

  1. Create a microflow for deletion.
  2. Add a delete button or icon to each event in the list view.
  3. Configure the button/icon to execute the deletion microflow.
  4. Bind the button/icon to the specific event entity for that row.
  5. Test the app, and users will be able to delete events by clicking the associated buttons/icons.

 

 

answered