How to get Mendix to default to a response after a timeout?

0
I have a requirement where if a form/page is presented and if it times out then a default response is taken. I know (roughly) how to do this in JavaScript (http://www.w3schools.com/jsref/metwinsettimeout.asp ). But is there a Mendix way to do this? Incidentally, if there is not then how does one call in to some custom JavaScript?
asked
2 answers
0

Hi Simon,

As Stephen mentioned in comment above you can use 'Microflow Timer widget' and place it on the page that is presented. Further as shown in the widget settings below you can define how often you want to call the microflow and configure other settings. Then create a microflow and add your logic ( whatever response you want to execute if time out occurs).

alt text

answered
0

You can use the idle timer widget from the appstore. It logs out after a configurable time

answered