Microflow Events

-1
Hi, Which event type should we use when you want an input widget to trigger a microflow when it changes from ‘no selection’ to a specific selection?  
asked
1 answers
-3

Hi Nisha,

Your question is not completely clear to me. Do you want to trigger a microflow when a user typed something in a textbox that was empty before? Perhaps you can use an on change event here. This will trigger a microflow when you changed a field when leaving the widget (see https://docs.mendix.com/refguide/on-click-event for more info).

In this microflow you can check the whether the previous value was empty. To do this, you can for example retrieve the object from the db (which contains the old value of the entity). Same counts for dropdowns and other input widgets.

answered