<?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: Qlik sense extension load data without dimension in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870215#M2983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Erik, thanks for the additional insight, to clarify, basically my extension need to display a map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When user click on a point in map, it is suppose to get information from the data model based on the click source.&lt;/P&gt;&lt;P&gt;(E.g. I click on eiffel tower, it will display opening hours, height, description, how to get there, etc.)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;These information are loaded currently into my data model.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to display these information, I can add each of these data as individual dimension&lt;/P&gt;&lt;P&gt;(e.g. opening hours - 1 dimension, height - 1 dimension, description - 1 dimension, etc)&lt;/P&gt;&lt;P&gt;This is do able but there are too many dimensions to be added (we got like 20+ information to display).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As such, we would like to be able to retrieve information directly from the app data model without going through dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;qListObjectDef and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;qHyperCubeDef does work but they will add that 20+ dimensions to my extensions.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I need to find a way to get data without using dimensions.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Jun 2015 11:53:49 GMT</pubDate>
    <dc:creator>bryan_sng</dc:creator>
    <dc:date>2015-06-04T11:53:49Z</dc:date>
    <item>
      <title>Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870207#M2975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way I can access data from the app data model without using dimensions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand I can access data via layout.qHyperCube.qDataPages[0] if I add the necessary dimensions in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried initialproperties such as the following but could not find it anywhere in the layout variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define([], function () {&lt;/P&gt;&lt;P&gt;&amp;nbsp; return {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; version: 1.0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; qHyperCubeDef: {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qDimensions: ['mytestproperty1', 'mytestproperty2'],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qMeasures: [],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qInterColumnSortOrder: [],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qInitialDataFetch: [{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qWidth: 3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qHeight: 400&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;&amp;nbsp; };&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you guys have any advice? Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 09:56:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870207#M2975</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-05-28T09:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870208#M2976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a method called "GetTableData" for apps that might be what you are looking for. It allows you to access data directly from the loaded tables without going through hypercubes or list objects. You can find more information here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/sense/en-us/developer/#../Subsystems/EngineAPI/Content/Classes/AppClass/AppClassGetTableDataMethod.htm" title="http://help.qlik.com/sense/en-us/developer/#../Subsystems/EngineAPI/Content/Classes/AppClass/AppClassGetTableDataMethod.htm"&gt;http://help.qlik.com/sense/en-us/developer/#../Subsystems/EngineAPI/Content/Classes/AppClass/AppClassGetTableDataMethod.…&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 13:29:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870208#M2976</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2015-05-29T13:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870209#M2977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at &lt;A href="https://help.qlik.com/sense/en-us/developer/index.html#../Subsystems/Workbench/Content/CodeExamples/horizlist-extension-example.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CCode%2520examples%7C_____4" title="https://help.qlik.com/sense/en-us/developer/index.html#../Subsystems/Workbench/Content/CodeExamples/horizlist-extension-example.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CCode%2520examples%7C_____4"&gt;https://help.qlik.com/sense/en-us/developer/index.html#../Subsystems/Workbench/Content/CodeExamples/horizlist-extension-…&lt;/A&gt; which shows you how to use a listobject def instead of a hypercube.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also in your snippet you can't just pass in a string. You would pass in a NxDimension struc, you can see which properties you can set here &lt;A href="https://help.qlik.com/sense/en-us/developer/index.html#../Subsystems/EngineAPI/Content/GenericObject/PropertyLevel/HyperCubeDef.htm#NxDimension" title="https://help.qlik.com/sense/en-us/developer/index.html#../Subsystems/EngineAPI/Content/GenericObject/PropertyLevel/HyperCubeDef.htm#NxDimension"&gt;https://help.qlik.com/sense/en-us/developer/index.html#../Subsystems/EngineAPI/Content/GenericObject/PropertyLevel/HyperCubeDef.htm#NxDimension&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it would be something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14329126780813799" jivemacro_uid="_14329126780813799" modifiedtitle="true"&gt;
&lt;P&gt;"qDimensions": [{&lt;/P&gt;
&lt;P&gt; "qDef": "FieldName",&lt;/P&gt;
&lt;P&gt;&amp;nbsp; "qNullSuppression": true&lt;/P&gt;
&lt;P&gt;}, {&lt;/P&gt;
&lt;P&gt; "qDef": "FieldName2",&lt;/P&gt;
&lt;P&gt; "qNullSuppression": true&lt;/P&gt;
&lt;P&gt;}]&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 15:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870209#M2977</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2015-05-29T15:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870210#M2978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm both sounds like viable solution, let me give it a shot and see which suits me better, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 01:01:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870210#M2978</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-02T01:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870211#M2979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hmm I been trying out the &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;GetTableData method but could not find the method within the app.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Am I doing it wrong?&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; paint: function($element, layout) {&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var app = qlik.currApp();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp; console.log(app.getTableData); // this is undefined&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 10:26:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870211#M2979</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-04T10:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870212#M2980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm this does work but alas it will add the specified dimensions into the extension properties panel -&amp;gt; dimension section. So I guess its like some sort of predefined dimension rather than manually adding dimension in. Ultimately though, there are still many dimensions in the extension properties which our client do not want. I guess I may have to try out more in depth with Øystein Kolsrud solution, do you have any insight regarding why I could not find &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;GetTableData method in the app object as replied above?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 10:48:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870212#M2980</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-04T10:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870213#M2981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like that engine API method is not exposed in the API you are using. I'll see if there is a workaround for it and get back to you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 10:50:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870213#M2981</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2015-06-04T10:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870214#M2982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bryan,&lt;/P&gt;&lt;P&gt;I'm not totally sure what you are after. You could do this by setting up the field you want one or several qListObjectDef in your initialProperties in the extension. This is what Horizontal Listbox does, and many other extensions. If you want the user to be able to select the field in the properties panel, you should add a property panel definition like in Horizontal Listbox too. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other way available to you is to use the qlik library and the method &lt;A href="http://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/BuildingWebsites/API/Methods/createList-method.htm"&gt;createList&lt;/A&gt;. To use that in an extension you first need to get a reference to the current app with the call&lt;A href="http://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/BuildingWebsites/API/Methods/currApp-method.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CAPI%2520reference%7CQlik%2520Sense%2520Mashups%2520API%2520reference%7Cqlik%7C_____2"&gt; qlik.currApp(this)&lt;/A&gt;. Note that if you use this method, the callback function you provide for the createList method will be called not only once, but every time data changes (that is when the user makes a selection). If you need sveral lists, you can call createList multiple times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not want to be notified any more of selection changes you should use the method &lt;A href="http://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/BuildingWebsites/API/Methods/destroySessionObject-method.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CAPI%2520reference%7CQlik%2520Sense%2520Mashups%2520API%2520reference%7Cqlik.app%7C_____8"&gt;destroySessionObject&lt;/A&gt;. The id you should use would be in the createList reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 11:22:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870214#M2982</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2015-06-04T11:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870215#M2983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Erik, thanks for the additional insight, to clarify, basically my extension need to display a map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When user click on a point in map, it is suppose to get information from the data model based on the click source.&lt;/P&gt;&lt;P&gt;(E.g. I click on eiffel tower, it will display opening hours, height, description, how to get there, etc.)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;These information are loaded currently into my data model.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to display these information, I can add each of these data as individual dimension&lt;/P&gt;&lt;P&gt;(e.g. opening hours - 1 dimension, height - 1 dimension, description - 1 dimension, etc)&lt;/P&gt;&lt;P&gt;This is do able but there are too many dimensions to be added (we got like 20+ information to display).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As such, we would like to be able to retrieve information directly from the app data model without going through dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;qListObjectDef and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;qHyperCubeDef does work but they will add that 20+ dimensions to my extensions.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I need to find a way to get data without using dimensions.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 11:53:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870215#M2983</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-04T11:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870216#M2984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm, I did something similar for my Google Maps extensions.&lt;/P&gt;&lt;P&gt;You could perhaps even get away with just having a single expression?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the expression you could just build up a html formatted string and insert that into your popup.&lt;/P&gt;&lt;P&gt;Example: ='Location: ' &amp;amp; Only(LocationName) &amp;amp; '&amp;lt;br&amp;gt;' &amp;amp; 'Value: ' &amp;amp; Sum(Value)&lt;BR /&gt;It will then calculate all those values for you for that single dimensional value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2015 14:05:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870216#M2984</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2015-06-04T14:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870217#M2985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Feels like &lt;A href="http://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/BuildingWebsites/API/Methods/createCube-method.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CAPI%2520reference%7CQlik%2520Sense%2520Mashups%2520API%2520reference%7Cqlik.app%7C_____5"&gt;createCube&lt;/A&gt; is the way to go. It allows you to send in a number of dimensions and measures, just make sure that you set the qWidth in &lt;SPAN style="color: #000000; font-family: Consolas, Monaco, 'Andale Mono', monospace; font-size: 12px; background-color: #f9f9f9;"&gt;qInitialDataFetch high enough. Since you only want to get the data once, and not set up a subscription, you should call destroySessionObject once you have got what you want.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you would call the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;qlik.currApp(this) (you could do this only once and save the app object)&lt;/LI&gt;&lt;LI&gt;make sure selection state is what you want, possibly make a selection&lt;/LI&gt;&lt;LI&gt;createCube&lt;/LI&gt;&lt;LI&gt;in the callback from createCube: destroySessionObject&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 11:57:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870217#M2985</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2015-06-05T11:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870218#M2986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That does sound like a viable solution! However by adding that single dimension expression, since it is not link to my other dimensions in the data model, it cause my datapage qMatrix to increase expotentially. Do you have any advice on how to overcome this issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 01:43:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870218#M2986</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-08T01:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870219#M2987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This solution looks very promising as indeed I am now able to retrieve data without specifying dimension in my extension. There is a catch now as you mentioned, I need to set the qInitialDataFetch high enough. However the information that I need to retrieve is about 8000+ records. I read elsewhere that qlik sense initial data load seems to cap at around 1000 records. The following URL: &lt;A href="https://community.qlik.com/thread/157624"&gt;How to use Backend API from Mashups?&lt;/A&gt; poster does have the same problem as me but with no solution, do you guys have any?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, is there anyway to get only a single record based on a criteria? Since my requirement for this case is to display building information given a building id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 02:26:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870219#M2987</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-08T02:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870220#M2988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good that you are moving forward!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you could try something like:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14337633698943762 jive_text_macro" jivemacro_uid="_14337633698943762"&gt;
&lt;P&gt;app.field("BUILDID").selectValues(["110033445566"],false,true);&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;before you create the hypercube to get the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 11:36:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870220#M2988</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2015-06-08T11:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870221#M2989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm, I tried the selectValues method and a little bit strange, it's working 90% of the time (90% of the time it retrieve data based on my criteria, 10% of the time it retrieve all 8000+ records). Below is an extract of my codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var datas = [];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var app = qlik.currApp(this);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.field("building_id").selectValues([41838777],false,true);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.createCube({&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qDimensions: qDimensions,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qMeasures: [],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qInitialDataFetch: [{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qWidth: 10,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qHeight: 500&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, function(reply) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.each(reply.qHyperCube.qDataPages[0].qMatrix, function(key, value) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datas.push(value);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.destroySessionObject(reply.qInfo.qId);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(datas); // 90% filtered, 10% full&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Additionally, I realise what selectValues does is selecting that criteria in qlik sense current selection.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I'm just thinking if I already have some selections from other components, i would probably be retrieving data based on the combined criteria. Hmm, is there a way to create an app such that it does not use the current app to retrieve the data but using a temporary app instead so that I will not be messing with the current app selection?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 03:30:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870221#M2989</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-09T03:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870222#M2990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There is a timing issue here apparently. Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;app.field(...).selectValues(...).&lt;STRONG&gt;then(function(){&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; app.createCube(...);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;});&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should fix that problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, it would affect selection state. You could restore it with app.back() after you get the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another possible solution (which I haven't tried, so I can not promise you that it works) is using an alternate state. You could create it with app.addAlternateState and then use it both when you get the field and when you create the cube.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 12:21:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870222#M2990</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2015-06-09T12:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870223#M2991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Erik, you did it! addAlternateState was the way to go.&lt;/P&gt;&lt;P&gt;I am now able to get data from the data model without using dimension.&lt;/P&gt;&lt;P&gt;Here is an extract of my working codes in case any one have the same issue as me.&lt;/P&gt;&lt;P&gt;Once again, totally appreciate your help on this issue, thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; getBackendData( [ 'building_id', 'product_name' ], 'building_id', [ 1234567 ] ).done(function(datas) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var match = datas[0];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(match); // this contains building id and product name information&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; function getBackendData(dimensions, fieldName, fieldValues) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var qDimensions = [];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.each(dimensions, function(index, dimension) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qDimensions.push({ qDef : { qFieldDefs : [dimension] } });&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;&amp;nbsp; var datas = [];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var deferred = $.Deferred();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var alternateStateName = 'demo123832'; // some unique name would be good here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var app = qlik.currApp();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.addAlternateState(alternateStateName).then(function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.field(fieldName, alternateStateName).selectValues(fieldValues, false, true).then(function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.createCube({&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qStateName: alternateStateName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qDimensions: qDimensions,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qMeasures: [],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qInitialDataFetch: [{&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; qWidth: 10,&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; qHeight: 500&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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; }, function(reply) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.each(reply.qHyperCube.qDataPages[0].qMatrix, function(key, value) {&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; datas.push(value);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.destroySessionObject(reply.qInfo.qId).then(function() {&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; app.removeAlternateState(alternateStateName);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; deferred.resolve(datas);&lt;/P&gt;&lt;P&gt;&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; });&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;&amp;nbsp; return deferred;&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. thanks to all other contributors too!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 05:03:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870223#M2991</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-10T05:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870224#M2992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Alexander, hmm u mention that you have done google maps extension before, just wondering are you able to capture snapshot and retains the current state of the map (like zoom level, feature selection, etc)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 09:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870224#M2992</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-11T09:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870225#M2993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Currently I only do markers/clusters but yes and sort of &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;My map scales to the appropriate zoom level to fit the available markers. So if a user snapshots a map with some data selected then the map will zoom to fit those markers in a story.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 09:56:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870225#M2993</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2015-06-11T09:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik sense extension load data without dimension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870226#M2994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm just to confirm, let's assume that you have a marker at USA, then you pan the map to Europe and do a snapshot, can I assume that when you view the snapshot in a story, you will still be looking at USA?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 11:16:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-sense-extension-load-data-without-dimension/m-p/870226#M2994</guid>
      <dc:creator>bryan_sng</dc:creator>
      <dc:date>2015-06-11T11:16:41Z</dc:date>
    </item>
  </channel>
</rss>

