How to search for Event Action (for example: Save Changes) which is called when user interacts with an event (for example: On Click)

0
https://docs.mendix.com/refguide/on-click-event Some widgets for example Button, Text box, Container have events like On Enter, On Leave, On Change, On Click etc. and each of these events have multiple actions like Show a page, Call a microflow, Save Changes, Delete etc. I want to search in my project all the places where a specific action for example Delete is called.  
asked
1 answers
0

I don't know a way to do that exact use case, but you can do the following:

 

With Ctrl-Shift-F you can use Find Advanced and select at Search For ‘Actions in microflows ...’.

You can lookup all places an entity is deleted.

In this way you find the places where the delete is triggered.

answered