Popup does not close using microflow timer widget

1
We want to close a popup page automatically by using the microflow timer, unfortunatily this does not work in Mx 6.8.1 We tried to set the MF timer to 3000 Ms the microflow that closes the page is triggerd but does not close the page. What are we doing wrong here?
asked
2 answers
2

Rom pointed in the right direction. The widget uses the Mx 5 Client parameter style to set the origin, i.e. params.store.caller, see:

https://apidocs.mendix.com/5/client/mx.data.html

You can either change the widget and replace the part: 

store: {
  caller: this.mxform
},

by:

origin: this.mxform,

 

or ask for a code fix on github.

 

answered
0

Strange, I have this same widget working in a popup in 6.9.1. I do have this widget in a user object in the popup screen so that could be the difference.

Regards,

Ronald

 

answered