Hi
I am trying to open a link in a new tab. I am using screen action as a my destination and then using Extended URL. In my extended properties for the link I used target = "_blank". But it is not working. Does anyone have a solution for this.
Hi, use Common\External URL as destination.
Ye Yint wrote:
Yes this works if the link destination is a web screen. But in my case link destionation is a screen action and I have to do this task in the screen action. Anyways I was able to find a solution after many tries. I was able to navigate to a new window from my screen action.I used window.open() java script. In extended properties I have given onclick, and assigned"window.open('MyURL link','blank')". This worked for me.. Thanks all for your answers
For anybody wondering what this actually looks like:
Thanks a lot, this is very helpful
We can also simply Peform the javascript , instead of providing Url to the input , can directly use it in the javascript , It does work this way:
On onclick action - window.open('https://google.com(Your URL)', '_blank');
I am attaching screenshot for reference:
Do not forget to add an input parameter for javascript. Also, when you add URL you must add http first.
Thanks Omar !