Hi
I am struggling with a M3 SDK application, which has a list of addresses. When iterating the list using arrow down, I detect row selections an populates Google Map at another screen with window.open:
this.myWindow = window.open(url, 'Route', 'scrollbars=yes,menubar=no,left=100,top=100,width=' + (screen.width * 0.50) + ',height=' + (screen.height * 0.90) + ',resizable=yes,toolbar=no,location=no,status=no');
this.myWindow.blur();
My problem is, that for each window.open the Google Map window takes focus, even though I use this.myWindow.blur(). I want my SDK list to stay in focus. Does anyone have an good idea?