Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Hi,
If this is a HTML link, try setting target to _self <a> - HTML | MDN
In JavaScript try updating window.location.
Erik Wetterberg
This is not html link. So target is not working.
APP INTEGRATION API for qlik sense as given below.
But here we don't see any options to open the url in the same window.
Please help.
If you are doing this in javascript you should set window.location
window.location = 'yourserver/yourproxy/sense/app/......';
Erik Wetterberg