Hello. I'm using 23.1.4.
I need to open another application in a new tab. I've tried to add a navigation menu entry with this target:
javascript:var x = window.open('https://mi other app', '_blank');
It works, but after clicking if I try to do something in my initial app, it shows a blank page with this url:
https://miurl/apex_authentication.callback?code=....
and forces me to login again. So I tried to add a button in page 0 before navigation bar with
Action=Redirect to URL
Target =javascript:apex.navigation.openInNewWindow('https://mi other app');
but I have the same problem.
How should I do it?
Thanks.