<?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 qlik backend api in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131218#M1855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to call backend api in qlik mashup ?&lt;/P&gt;&lt;P&gt;In extensions it is available with &lt;STRONG&gt;this &lt;/STRONG&gt;inside paint and controller. But not able to get it in mashup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Oct 2018 11:22:17 GMT</pubDate>
    <dc:creator>satyaprakash</dc:creator>
    <dc:date>2018-10-03T11:22:17Z</dc:date>
    <item>
      <title>qlik backend api</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131218#M1855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to call backend api in qlik mashup ?&lt;/P&gt;&lt;P&gt;In extensions it is available with &lt;STRONG&gt;this &lt;/STRONG&gt;inside paint and controller. But not able to get it in mashup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2018 11:22:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131218#M1855</guid>
      <dc:creator>satyaprakash</dc:creator>
      <dc:date>2018-10-03T11:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: qlik backend api</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131219#M1856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;What do you want the backend API for? It's really part of the extension framework, and you can do most of the stuff with other APIs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik Wetterberg&lt;/P&gt;&lt;P&gt;&lt;A href="https://extendingqlik.upper88.com/" title="https://extendingqlik.upper88.com/"&gt;https://extendingqlik.upper88.com/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2018 17:05:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131219#M1856</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2018-10-03T17:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: qlik backend api</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131220#M1857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have built pivot table using visualization API. In pivot, expand and collapse functionality currently I am providing. I also need to provide collapse left ( in back end API) for rows and columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other api, using which this can be done?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2018 17:17:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131220#M1857</guid>
      <dc:creator>satyaprakash</dc:creator>
      <dc:date>2018-10-03T17:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: qlik backend api</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131221#M1858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The visualization you get from the visualization API has a model with expand and collapse methods, try those.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;P&gt;app.visualization.get('xxx').then(function(vis){ //also works with visualization.create&lt;/P&gt;&lt;P&gt; vis.model.expandLeft('/qHyperCubeDef',row,col,false);&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume you would want to do this on a click somewhere, but you need to save a reference to the visualization object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The documentation for this method is &lt;A href="https://help.qlik.com/en-US/sense-developer/April2018/apis/EngineAPI/services-GenericObject-ExpandLeft.html"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik Wetterberg&lt;/P&gt;&lt;P&gt;&lt;A href="https://extendingqlik.upper88.com/" title="https://extendingqlik.upper88.com/"&gt;https://extendingqlik.upper88.com/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 07:54:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131221#M1858</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2018-10-04T07:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: qlik backend api</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131222#M1859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 15:18:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/131222#M1859</guid>
      <dc:creator>satyaprakash</dc:creator>
      <dc:date>2018-10-12T15:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: qlik backend api</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/2025353#M17929</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/37745"&gt;@satyaprakash&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to call backend api in qlik mashup ?&lt;/P&gt;
&lt;P&gt;In extensions it is available with &lt;STRONG&gt;this &lt;/STRONG&gt;inside paint and controller. But not able to get it in mashup.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Satya&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hi, why can't I get &lt;STRONG&gt;this&lt;/STRONG&gt; in the controller?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 09:07:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/qlik-backend-api/m-p/2025353#M17929</guid>
      <dc:creator>xunziheng</dc:creator>
      <dc:date>2023-01-13T09:07:34Z</dc:date>
    </item>
  </channel>
</rss>

