<?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: Embedding Qlik Sense Business on the fly in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Embedding-Qlik-Sense-Business-on-the-fly/m-p/1852117#M15787</link>
    <description>&lt;P&gt;&lt;SPAN&gt;There are different ways to deploy mashups and web apps depending on where they will be hosted.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This qliksense for developer help page will provide you with more info:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/August2021/Subsystems/Mashups/Content/Sense_Mashups/Howtos/external-mashups-integrate-cloud.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense-developer/August2021/Subsystems/Mashups/Content/Sense_Mashups/Howtos/external-mashups-integrate-cloud.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Oct 2021 20:01:10 GMT</pubDate>
    <dc:creator>Akshesh_Patel</dc:creator>
    <dc:date>2021-10-26T20:01:10Z</dc:date>
    <item>
      <title>Embedding Qlik Sense Business on the fly</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Embedding-Qlik-Sense-Business-on-the-fly/m-p/1852024#M15786</link>
      <description>&lt;P&gt;Hi, I would like to know if I can embed Qlik Sense Business in a custo web platform creating charts on the fly. I have seen documentation about doing this with Qlik Sense Enterprise, but I'm not sure if we can develop that feature with Business version.&lt;/P&gt;
&lt;P&gt;I know iframe integration from Qlik Sense Business is a simple and easy way, but that option is not good for me because users can manipulate the url and access to the filters section (maybe displaying information regarding other users).&lt;/P&gt;
&lt;P&gt;Thanks for your attention.&lt;/P&gt;
&lt;P&gt;Best regards.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:35:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Embedding-Qlik-Sense-Business-on-the-fly/m-p/1852024#M15786</guid>
      <dc:creator>darroyo_telcomu</dc:creator>
      <dc:date>2024-11-15T23:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding Qlik Sense Business on the fly</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Embedding-Qlik-Sense-Business-on-the-fly/m-p/1852117#M15787</link>
      <description>&lt;P&gt;&lt;SPAN&gt;There are different ways to deploy mashups and web apps depending on where they will be hosted.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This qliksense for developer help page will provide you with more info:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/August2021/Subsystems/Mashups/Content/Sense_Mashups/Howtos/external-mashups-integrate-cloud.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense-developer/August2021/Subsystems/Mashups/Content/Sense_Mashups/Howtos/external-mashups-integrate-cloud.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 20:01:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Embedding-Qlik-Sense-Business-on-the-fly/m-p/1852117#M15787</guid>
      <dc:creator>Akshesh_Patel</dc:creator>
      <dc:date>2021-10-26T20:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding Qlik Sense Business on the fly</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Embedding-Qlik-Sense-Business-on-the-fly/m-p/1853176#M15805</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;I have followed the documentation and I have created a mashup (index.html and app.js) that displays the name of my first app in Qlik Sense Business.&lt;/P&gt;
&lt;P&gt;I display the name of the app with this code:&lt;/P&gt;
&lt;P&gt;// open the app, and fetch the layout:&lt;BR /&gt;const app = await global.openDoc(appId);&lt;BR /&gt;const appLayout = await app.getAppLayout();&lt;/P&gt;
&lt;P&gt;// finally, present the app title in your web app:&lt;BR /&gt;titleElement.innerHTML = appLayout.qTitle;&lt;/P&gt;
&lt;P&gt;But when I try to create a chart on the fly with the following code...&lt;/P&gt;
&lt;P&gt;app.visualization.create(&lt;BR /&gt;'barchart',&lt;BR /&gt;[&lt;BR /&gt;"clienteid",&lt;BR /&gt;"=count(distinct gestionid)"&lt;BR /&gt;],&lt;BR /&gt;{&lt;BR /&gt;"showTitles": true,&lt;BR /&gt;"title": "Net scores"&lt;BR /&gt;}&lt;BR /&gt;).then(function(vis){&lt;BR /&gt;vis.show("QV01");&lt;BR /&gt;});&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;... I get the following error: "Error while setting up: TypeError: Cannot read properties of undefined (reading 'create')"&lt;/P&gt;
&lt;P&gt;Maybe I should take another previous step in order to use the app.visualization.create function?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Oct 2021 14:31:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Embedding-Qlik-Sense-Business-on-the-fly/m-p/1853176#M15805</guid>
      <dc:creator>darroyo_telcomu</dc:creator>
      <dc:date>2021-10-28T14:31:37Z</dc:date>
    </item>
  </channel>
</rss>

