Target View - open in new browser tab?

Hello experts,

Is it possible to get a target view to open in a new browser tab?

Currently, it just navigates to the target view in the current tab but it would be handy to be able to keep the existing report and open the target report separately.

Many thanks,
David

Can’t this be achieved by holding the ctrl key while you click the navigation link?

@cw-ch-scott this doesn’t seem to work in UX for any link or menu item, it just keeps navigating in the same window.

Hi,
Here are other approaches you could do for this outcome:

  • Add the target view on the Footer of the Widget, this option open the target view in a new Tab.

  • Use some html with the “a href” tag to create a hyperlink, and use the “target=_blank” option, this will open the target url on a new Tab.

    Example code:
    <a href="http://localhost:8880/Apliqo_Demo/#!/app/a13.v2" target="_blank">Executive Dashboard</a>

    You can add this on Attributes… use it in an extra column on a Grid, or create as a hyperlink on top of the row elements itself.

Hope this helps!

2 Likes

Thanks for the tips @rmazziero, I’ll look into it!

1 Like