Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Qlikuser09
Creator II
Creator II

2 page mashup for 2 separate apps ( need two separate Selection bar)

Is there a way i could add two separate selection bar for two apps(multipage)

Labels (4)
1 Solution

Accepted Solutions
alex_colombo
Employee
Employee

Hi @Qlikuser09 , yes you can do it. You can load current selections bar from both apps and render in your pages. Anyway, what is the complete requirement here? 

View solution in original post

2 Replies
BenjaminGroff
Contributor III
Contributor III

If you just need to make selections in two separate apps from a mashup you can open multiple apps and then use the variable associated with the open app to make selections.
 
let app1 = qlik.openApp('first-appID', config); //open first app
let app2 = qlik.openApp('second-appID', config); //open second app
 
app1.field("field").select([Array, Of, Selections, Go, Here]) //first app selection
app2.field("field").select([Array, Of, Selections, Go, Here]) //second app selection
alex_colombo
Employee
Employee

Hi @Qlikuser09 , yes you can do it. You can load current selections bar from both apps and render in your pages. Anyway, what is the complete requirement here?