Hi Remco, did you manage to find a solution for this.
I would like just to hide the message from appearing.
EDIT: Use this javascript to hide the connection error popup
if ( window.connectionErrorOveride != true ) {
window.connectionErrorOveride = true;
var oldTranslate = mx.ui.translate ;
mx.ui.translate = function(t, e, n, i) {
if ( e == "connection_error" ) {
return null;
} else {
return oldTranslate.apply(this, arguments);
}
}
}