<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: QS mashups and preserving selections in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766533#M2407</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you have different pages with different objects, and want to drive selections from ex: page 1 to all other objects inclusively page 2 etc ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- add selection bar to page 1 :&lt;/P&gt;&lt;P&gt;app.getObject( 'your_element_id', 'CurrentSelections' );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- add all objects on all pages width workbench&lt;/P&gt;&lt;P&gt;- modify all your different pages config object to use the same identity:&lt;/P&gt;&lt;P&gt;var config = {&lt;/P&gt;&lt;P&gt;&amp;nbsp; host: window.location.hostname,&lt;/P&gt;&lt;P&gt;&amp;nbsp; prefix: "/",&lt;/P&gt;&lt;P&gt;&amp;nbsp; port: window.location.port,&lt;/P&gt;&lt;P&gt;&amp;nbsp; isSecure: window.location.protocol === "https:",&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; identity : "[U_ID]"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so now any changes in page1.html will also affect page2.html.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I got it right this time,&lt;/P&gt;&lt;P&gt;aiham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Mar 2015 13:33:54 GMT</pubDate>
    <dc:creator>Aiham_Azmeh</dc:creator>
    <dc:date>2015-03-09T13:33:54Z</dc:date>
    <item>
      <title>QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766530#M2404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have several html pages where I use QS objects from single document. What I want is to preserve/transfer selections which I make on one page to another page. What is the best/correct way to do it? Is it some setting or I need to invoke API. Any samples would be much helpful. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 11:46:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766530#M2404</guid>
      <dc:creator>d_pranskus</dc:creator>
      <dc:date>2015-03-09T11:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766531#M2405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Darius,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understood you well, you want to from a Single Object page be able to influence selections in another Single Object selection page!?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do that with the identity parameter (&lt;A href="http://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/BuildingWebsites/Overview/single-configurator.htm?Highlight=single" title="http://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/BuildingWebsites/Overview/single-configurator.htm?Highlight=single"&gt;http://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/BuildingWebsites/Overview/single-configurato…&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;by passing the same identity to all your Single Object pages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example: &lt;/P&gt;&lt;P&gt;let's say you have 2 iframes on different pages&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;iframe src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://[YOUR_SERVER]/single?appid=[YOUR_APP_ID]&amp;amp;obj=[OBJECT_1]" rel="nofollow"&gt;http://[YOUR_SERVER]/single?appid=[YOUR_APP_ID]&amp;amp;obj=[OBJECT_1]&lt;/A&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;&amp;amp;identity=[U_ID]&lt;/STRONG&gt;&lt;/SPAN&gt;" frameborder="0"&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;iframe src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://" rel="nofollow"&gt;http://&lt;/A&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;[YOUR_SERVER]/single?appid=[YOUR_APP_ID]&amp;amp;obj=[OBJECT_2]&lt;STRONG&gt;&amp;amp;identity=[U_ID]&lt;/STRONG&gt;&lt;/SPAN&gt;" frameborder="0"&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by adding the identity=[some_id] parameter to both, you will be able to reflect selections from the first object to the second one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope It will help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aiham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 12:56:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766531#M2405</guid>
      <dc:creator>Aiham_Azmeh</dc:creator>
      <dc:date>2015-03-09T12:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766532#M2406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Aiham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is really helpful. What I want is to embed any number of objects on the html, which includes charts and lists and have one selection box. I was doing it through workbench by placing some divs with ids on&amp;nbsp; thye page and then replacing them by actual QS ojects in the Javascript code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems that embedding single objects with URL is much simpler but I need to figure out how to have single current selection box on a page for several embedded objects&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;. I know that I can add current selection boxes to all of them. But how to have single one.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 13:16:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766532#M2406</guid>
      <dc:creator>d_pranskus</dc:creator>
      <dc:date>2015-03-09T13:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766533#M2407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you have different pages with different objects, and want to drive selections from ex: page 1 to all other objects inclusively page 2 etc ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- add selection bar to page 1 :&lt;/P&gt;&lt;P&gt;app.getObject( 'your_element_id', 'CurrentSelections' );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- add all objects on all pages width workbench&lt;/P&gt;&lt;P&gt;- modify all your different pages config object to use the same identity:&lt;/P&gt;&lt;P&gt;var config = {&lt;/P&gt;&lt;P&gt;&amp;nbsp; host: window.location.hostname,&lt;/P&gt;&lt;P&gt;&amp;nbsp; prefix: "/",&lt;/P&gt;&lt;P&gt;&amp;nbsp; port: window.location.port,&lt;/P&gt;&lt;P&gt;&amp;nbsp; isSecure: window.location.protocol === "https:",&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; identity : "[U_ID]"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so now any changes in page1.html will also affect page2.html.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I got it right this time,&lt;/P&gt;&lt;P&gt;aiham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 13:33:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766533#M2407</guid>
      <dc:creator>Aiham_Azmeh</dc:creator>
      <dc:date>2015-03-09T13:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766534#M2408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do that by embedding current selections as iframe &amp;amp; URL and not by javascript?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 13:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766534#M2408</guid>
      <dc:creator>d_pranskus</dc:creator>
      <dc:date>2015-03-09T13:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766535#M2409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With no object, not really; but...&lt;/P&gt;&lt;P&gt;I do not recommend that : - you can always create an "empty" extension and after saving it to your app, in single object add current selection with &amp;amp;opt=currsel (and identity parameter) then use it in an iframe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why I do not recommend it:&lt;/P&gt;&lt;P&gt;- The use of many iframes will be limited in certain browsers since Qlik Sense uses web-sockets, so for example for Internet Explorer users you will have a limit of maximum 6 connections == 6 iframes. &lt;/P&gt;&lt;P&gt;- It will have a huge impact in your page loading performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aiham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 14:08:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766535#M2409</guid>
      <dc:creator>Aiham_Azmeh</dc:creator>
      <dc:date>2015-03-09T14:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766536#M2410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 14:56:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766536#M2410</guid>
      <dc:creator>d_pranskus</dc:creator>
      <dc:date>2015-03-09T14:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766537#M2411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;It must be the correct answer, I included the identity parameter in the js code, but when I select something on a page it appears in Current Selections page, but if I reload page, it is gone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I need to use that parameter identity somewhere or just in config?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What could be a problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 15:34:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766537#M2411</guid>
      <dc:creator>d_pranskus</dc:creator>
      <dc:date>2015-03-09T15:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766538#M2412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Darius,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think it's possible to have persistent selections without having a bookmark.&lt;/P&gt;&lt;P&gt;You may find more insights in this thread : &lt;A href="https://community.qlik.com/thread/145576"&gt;Current selections lost when loading new page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aiham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 07:02:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766538#M2412</guid>
      <dc:creator>Aiham_Azmeh</dc:creator>
      <dc:date>2015-03-10T07:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766539#M2413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After reading several posts on this topic, is it the conclusion that it is not possible to preserve the selections when moving between different html pages in a mashup?&amp;nbsp; If so, that is really disappointing.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Qlik - is there anyway to improve this as the mashup idea is really being embraced by users?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2016 12:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766539#M2413</guid>
      <dc:creator>pnowicki</dc:creator>
      <dc:date>2016-07-04T12:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766540#M2414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="j-post-avatar" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="j-post-author" style="font-weight: inherit; font-style: inherit; font-size: 0.9em; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-size: 11.7px; font-family: inherit;"&gt;&lt;A href="https://community.qlik.com/people/maxim1500"&gt;maxim1500&lt;/A&gt; &lt;SPAN class="icon-status-icon icon-partner" style="margin: 0 0 0 4px; font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit;" title="Partner"&gt;&lt;/SPAN&gt; &lt;/STRONG&gt;7 juil. 2016 13:05 &lt;SPAN class="font-color-meta-light j-thread-replyto" style="padding: 0 0 0 3px; font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit; color: #a9a9a9;"&gt;(&lt;A _jive_internal="true" class="font-color-meta-light localScroll" href="https://community.qlik.com/thread/217329?sr=stream#1041910" style="font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit; color: #a9a9a9;" title="Ouvrir le message"&gt;en réponse à Maxime Dumas &lt;SPAN class="icon-status-icon icon-partner" style="margin: 0 0 0 4px; font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit;" title="Partner"&gt;&lt;/SPAN&gt;&lt;/A&gt;)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I talked with people at Qlik about this, and they recommanded using a single page (one session) and destroying the model whenever you change "page" (in Angular, for example) or you hide the divs (if you do it yourself). That way, you won't get reduced performances.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;We were using iframes and their guess was that we used to many sessions, and that Qlik Server would drop the sessions after a while.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Here is the code to disconnect charts before hidding them. If you have many, you could keep a collection and close the model for each chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13pt; font-family: Courier; color: #2e2e31;"&gt;var modelRef;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt; &lt;/P&gt;&lt;OL style="font-weight: inherit; font-style: inherit; font-family: inherit; list-style-type: lower-alpha;"&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13pt; font-family: Courier; color: #2e2e31;"&gt;app.getObject(&amp;lt;elemId&amp;gt;, &amp;lt;objId&amp;gt;).then(function(model) {&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="color: #2e2e31; font-size: 13pt; font-style: inherit; font-family: Courier; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; modelRef = model;&lt;/SPAN&gt;&lt;SPAN style="color: #2e2e31; font-size: 13pt; font-style: inherit; font-family: Courier; font-weight: inherit;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2e2e31; font-size: 13pt; font-style: inherit; font-family: Courier; font-weight: inherit;"&gt;//then when you want to close it&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13pt; font-family: Courier; color: #2e2e31;"&gt;modelRef.close();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13pt; font-family: Courier; color: #2e2e31;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13pt; font-family: Courier; color: #2e2e31;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13pt; font-family: Courier; color: #2e2e31;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13pt; font-family: Courier; color: #2e2e31;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;An other possibilities is to create a bookmark before leave the first tab ( or first mashup page), apply this bookmark (it's the last bookmark) when you load the second mashup page and remove this bookmark.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13pt; font-family: Courier; color: #2e2e31;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2016 07:18:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766540#M2414</guid>
      <dc:creator />
      <dc:date>2016-07-11T07:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766541#M2415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Darius,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are also planning for Mashup app and want to host our app to server which don't have Qlik Sense install.&lt;/P&gt;&lt;P&gt;Can you please send me some doc/ links where I can get started and code about how to get session ID for a particular user and pass it to QLik Sense server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would appreciate you help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2016 15:33:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766541#M2415</guid>
      <dc:creator />
      <dc:date>2016-07-11T15:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766542#M2416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I plan on converting to the single page idea.&amp;nbsp; But this is a workaround.&amp;nbsp; I was hoping for Qlik to address the root cause and provide a solution to the problem.&amp;nbsp; You should be able to pass selections from one .html to another without having to perform the div hiding gymnastics of the single page concept.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, in Qlikview you can pass selections in hyperlinks from one Qlikview report to another by modifying the url and adding the selections at the end.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2016 07:01:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766542#M2416</guid>
      <dc:creator>pnowicki</dc:creator>
      <dc:date>2016-07-15T07:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766543#M2417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which you also can in QS&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/sense-developer/3.0/Subsystems/APIs/Content/AppIntegrationAPI/app-integration-api.htm" title="http://help.qlik.com/en-US/sense-developer/3.0/Subsystems/APIs/Content/AppIntegrationAPI/app-integration-api.htm"&gt;App Integration API ‒ Qlik Sense&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2016 10:38:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766543#M2417</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2016-07-15T10:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766544#M2418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't believe this works with extensions, can you give an example? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried something like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://QlikSenseServer/extension1/mashup1/mashup1.html/field1/selection1" rel="nofollow" target="_blank"&gt;https://QlikSenseServer/extension1/mashup1/mashup1.html/field1/selection1&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2016 13:25:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766544#M2418</guid>
      <dc:creator>pnowicki</dc:creator>
      <dc:date>2016-07-15T13:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766545#M2419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aiham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Our Company as well , We Created Mashup with Multiple Page . To Create a Mashup we used a Single Configurator&lt;/P&gt;&lt;P&gt;IFrame Option. Am facing a Same issue that selection made on one page is not showing on another page . I tried your &lt;/P&gt;&lt;P&gt;given Suggestion on that . and i tried like this Way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;iframe src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://qap" rel="nofollow" target="_blank"&gt;https://qap&lt;/A&gt;&lt;SPAN&gt; server name/single?appid=cd2908ab-e2ab-4742-ac45-45753bcaf468&amp;amp;sheet=FbXVP&amp;amp;identity=1234&amp;amp;opt=currsel" frameborder="0"&amp;gt;&amp;lt;/iframe&amp;gt; ----&amp;nbsp; Page 1 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;iframe src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://" rel="nofollow" target="_blank"&gt;https://&lt;/A&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;qap server name&lt;/SPAN&gt;/single?appid=cd2908ab-e2ab-4742-ac45-45753bcaf468&amp;amp;sheet=AnsXty&amp;amp;identity=1234&amp;amp;opt=currsel" frameborder="0"&amp;gt;&amp;lt;/iframe&amp;gt; ------ Page 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But its not helping anything. Can you suggest me anything on this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2016 13:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766545#M2419</guid>
      <dc:creator>brijeshvma</dc:creator>
      <dc:date>2016-07-15T13:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766546#M2420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brijesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The real issue with multipage-mashup is actually the reloading part =&amp;gt; so if you have a mashup (or a Sense sheet) open on in a browser on a single tab, by making selections then reloading the page, you will lose all your selections -- and the reason is obvious: the websocket (communicatinig to the app(s)) is closed and on reload newly created, so you will get a new session thathas nothing to do with the previous one. It's a WAD (Works As Designed), and practically an other software found in the wild works like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The solution/workaround: &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A - [the recommended one] instead of a multipage-reload mashup, try to build you mashup as a "single page", without reloading your app on navigation - can be done with angular routing, location.# parsing etc...&lt;/P&gt;&lt;P&gt;B - [the hack] on[window]beforeunload create/save a bookmark with the actual selections, which can be applied on the new freshly opened page. AFAIK (I think), this is how it is done in QlikView, but I really do not recommend this approach; it's a hack, and probably not something that you want to have in production.&lt;/P&gt;&lt;P&gt;C - [the real workaround] do not open the new pages in the same tag; use target="_blank" or window.open(URL,'_blank') =&amp;gt; this way your websocket connection will still be reusable in that browser, and the user will be able to keep his selections between pages&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Conclusions:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In your case I will definitively go for solution C, it will be the easiest to implement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Considerations:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- identity: It feels like the identity parameter is a little bit misunderstood - the purpose of "identity" is to keep the users using the same session in an isolated scope, not altering the shared session - passing selections from session to session will not be solved by it.&lt;/P&gt;&lt;P&gt;- keeping selections between newly created sessions: at R&amp;amp;D we are trying to find a solution for solving this issue, it's under investigation - and I hope that soon we will be able to provide it to you .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;aiham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2016 21:00:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766546#M2420</guid>
      <dc:creator>Aiham_Azmeh</dc:creator>
      <dc:date>2016-07-15T21:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766547#M2421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thibaut,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've converted to a single page mashup, but did not choose angular, just implemented the div hiding and # target setup. I am now having performance problems since I load all objects all the time.&amp;nbsp; I'm trying to implement your code example to only have the current objects open when I need them.&amp;nbsp; I have a .js code that performs actions whenever the page is changed, I can use the trigger in this code to initiate the open/close of the objects.&amp;nbsp; Is it possible to detect which objects are currently open and close all those before manually getting the new objects for the target page?&amp;nbsp; Any additional coding examples would be helpful.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jul 2016 13:15:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766547#M2421</guid>
      <dc:creator>pnowicki</dc:creator>
      <dc:date>2016-07-19T13:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766548#M2422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't use this method, I keep my multi-pages mashups.&amp;nbsp; I&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; create a bookmark before leave the first tab, apply this bookmark and remove it.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 12:31:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766548#M2422</guid>
      <dc:creator />
      <dc:date>2016-07-20T12:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: QS mashups and preserving selections</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766549#M2423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FYI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've updated my mashup and implemented the modelRef code from above.&amp;nbsp; I'm not sure if I'm actually destroying the objects as I haven't seen a&amp;nbsp; noticeable performance improvement.&amp;nbsp; Here is the code I've implemented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var tabs = true;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var flag1 = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;var modelRef;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var app = qlik.openApp("xxxxxxxxxxxxxx", config);&lt;/P&gt;&lt;P&gt;&amp;nbsp; app.getObject('CurrentSelections','CurrentSelections');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (tabs) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(document).ready(function () {&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(".view").hide();&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(window).on("hashchange", function() {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //destoy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; destroyQlikObjects(flag1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var hash = window.location.hash;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (hash === "") {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; window.location.hash = $("ul.nav li:first-child").children().attr("href");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("ul.nav li").removeClass("active");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("ul.nav li").find('a[href="' + hash + '"]').parent().addClass("active");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(".view").hide();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(hash).show();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qlik.resize();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(window).scrollTop(0);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; updateBreadcrumbs(hash);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; updateQlikObjects(hash);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(window).trigger('hashchange');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; function updateQlikObjects(hash) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if (hash == "#EBBIT") {&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; flag1 = 1;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; //EBBIT Summary Objects&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; app.getObject('QV1-1','HduqPNJ')&lt;STRONG&gt;.then(function(model){modelRef = model;});&lt;/STRONG&gt; //Change Date&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; app.getObject('QV1-2','BaPBR').then(function(model){modelRef = model;}); //Report as of:&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; app.getObject('QV1-3','typMcue').then(function(model){modelRef = model;}); //KPI box - T Ebbit Global&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; app.getObject('QV1-4','FrDerNe').then(function(model){modelRef = model;}); //KPI box - T-1 EBBIT Global&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (hash == "#NetRev") {&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; flag1 = 1;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; //Net Rev Objects&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; app.getObject('QV2-1','mtTkRbU').then(function(model){modelRef = model;}); //KPI box - T-1 Net Revenue Global&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; app.getObject('QV2-2','VepYmCk').then(function(model){modelRef = model;}); //KPI box - MTD Net REvenue Global&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; app.getObject('QV2-3','BayF').then(function(model){modelRef = model;}); //KPI box - YTD Net Revenue Global&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; app.getObject('QV2-4','fJcQAFu').then(function(model){modelRef = model;}); //Bar Chart - Moving Averages&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; function destroyQlikObjects(flag1) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(flag1 == 1) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;modelRef.close();&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 14:07:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QS-mashups-and-preserving-selections/m-p/766549#M2423</guid>
      <dc:creator>pnowicki</dc:creator>
      <dc:date>2016-07-26T14:07:03Z</dc:date>
    </item>
  </channel>
</rss>

