Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Qliksense - URL Parameters to open an app in the same window

Hi,

I am having a qlik sense app (master). I am passing all the selections as parameters to another app(detail) and opening the detail from master.

I want the dashboard to be opened in the same window.

What is the parameter that I can pass in the url to open the app in the same window.

see my url link in one of my app to open another app with all selection intact. (app integration api)

https://<link to our server>/app id/sheet/sheet name/state/analysis/select/Region/EMEA

Can someone help?

Regards

Archana

3 Replies
ErikWetterberg

Hi,

If this is a HTML link, try setting target to _self <a> - HTML | MDN

In JavaScript try updating window.location.

Erik Wetterberg

Anonymous
Not applicable
Author

This is not html link. So target is not working.

APP INTEGRATION API for qlik sense as given below.

https://help.qlik.com/en-US/sense-developer/September2017/Subsystems/APIs/Content/app-integration-ap...

But here we don't see any options to open the url in the same window.

Please help.

ErikWetterberg

If you are doing this in javascript you should set window.location

window.location = 'yourserver/yourproxy/sense/app/......';

Erik Wetterberg