Surpress Mendix error dialogs?

0
Hi, Part of one of my apps is used to display information on a monitor (using a Brightsign player pointed at a public accessible page in the app).  I use the microflow timer to refresh the page but when there is a blip in internet loss i get the auto mendix error box popping up on the page which requires a reboot of the brightsign since there is no keyboard or mouse.  Is there something i can put in the page using the HTML/Java Snippet widget to surpress those warnings?  Also, is there something i can do to have the page auto refresh itself cleanly every X minutes? Any ideas are appreciated!
asked
1 answers
0

You could try a snippet of JavaScript that would refresh your page on an error, like this:

mx.onError = function() {mx.reload();}

 

answered