Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
paulcalvet
Partner - Specialist
Partner - Specialist

iFrame in Mashup - Keep selection

Hello,

I developp a mashup in Qlik Sense which is connected to App "MyApp"

I want to integrate an iFrame in this application, this iFrame is connected to "MyApp" too.

So I integrate this code in my mashup :

<section class="section-3" ng-app="showApp" ng-controller="summary">

<div class="row-fluid">

<iframe src='https://qual.qliksense.seb.com/single/?appid=3cd6a622-8247-4a7f-accb-b902f953e96e&sheet=4a0db322-550...' style='border:none;width:100%;height:100%;margin-top:6%'></iframe>

</div>

</section>

The problem is that Qlik Sense open 2 sessions and when I select something in the mashup, the selection is not applied in the iFrame.

Do you know if is it possible ?

The aim is to accelerate the development, I want to integrate sheet in my mashup with iFrame and not objects.

Thanks !

Labels (3)
1 Reply
Jeffrey_Goldberg
Employee
Employee

Hi there,

For the iframe you need to pass in the selections using the selection query string parameter. See the doc here: https://help.qlik.com/en-US/sense-developer/November2019/Subsystems/APIs/Content/Sense_ClientAPIs/si...

As for your two sessions that is a bit perplexing. If you are trying to embed more than one iframe on a page you will want to use the identity parameter as well to assign a shared value for both iframes . This will instruct Qlik to use the same session.

Jg