<?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: Partial Reload using app.doReload() in Qlik Sense April 2020 in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Partial-Reload-using-app-doReload-in-Qlik-Sense-April-2020/m-p/1780066#M5761</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I can't run the Reload Button with your both settings. But I can with setting: &amp;lt;lui-button ng-click="app.doReload()"&amp;gt;Reload app&amp;lt;/lui-button&amp;gt;.So how can I do PartialReload?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Feb 2021 08:07:44 GMT</pubDate>
    <dc:creator>mudanhong</dc:creator>
    <dc:date>2021-02-04T08:07:44Z</dc:date>
    <item>
      <title>Partial Reload using app.doReload() in Qlik Sense April 2020</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Partial-Reload-using-app-doReload-in-Qlik-Sense-April-2020/m-p/1718499#M5246</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I am using&amp;nbsp;&lt;/P&gt;&lt;P&gt;Qlik Sense April 2020&lt;BR /&gt;qliksenseserver:13.72.3&lt;/P&gt;&lt;P&gt;I want to do Partial Reload for the data in some app. I found that I can use app.doReload() javascript merthod&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/April2020/Subsystems/APIs/Content/Sense_ClientAPIs/CapabilityAPIs/AppAPI/doReload-method.htm#anchor-2" target="_blank"&gt;https://help.qlik.com/en-US/sense-developer/April2020/Subsystems/APIs/Content/Sense_ClientAPIs/CapabilityAPIs/AppAPI/doReload-method.htm#anchor-2&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;qlik.app.doReload(qMode, qPartial, qDebug)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I created Reload Button as described in the below Video:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=_fgUBRndn30" target="_blank"&gt;https://www.youtube.com/watch?v=_fgUBRndn30&lt;/A&gt;&lt;/P&gt;&lt;P&gt;uses the below in the Button on-click action:&lt;/P&gt;&lt;P&gt;&amp;lt;lui-button ng-click="app.doReload(null,Boolean(true),null)"&amp;gt;Reload app&amp;lt;/lui-button&amp;gt;&lt;/P&gt;&lt;P&gt;The button works properly and reload the data but not partial reload. I know this as I used IsPartialReload() in load script and ofcourse the data itself as depicted in the below load script. The variable&amp;nbsp;LoadType always get Standard and the data of&amp;nbsp;QlikData1.xlsx is only loaded.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LET loadtypevar = IF(IsPartialReload(),'Partial','Standard');&lt;/P&gt;&lt;P&gt;LOAD Now() AS LastLoad AutoGenerate 1;&lt;/P&gt;&lt;P&gt;LOAD '$(loadtypevar)' AS LoadType AutoGenerate 1;&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;Region,&lt;BR /&gt;Sales&lt;BR /&gt;FROM [lib://AttachedFiles/QlikData1.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;ADD ONLY LOAD&lt;BR /&gt;Region,&lt;BR /&gt;Sales&lt;BR /&gt;FROM [lib://AttachedFiles/QlikData2.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:26:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Partial-Reload-using-app-doReload-in-Qlik-Sense-April-2020/m-p/1718499#M5246</guid>
      <dc:creator>ibrahim-maher</dc:creator>
      <dc:date>2021-12-10T20:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload using app.doReload() in Qlik Sense April 2020</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Partial-Reload-using-app-doReload-in-Qlik-Sense-April-2020/m-p/1741767#M5382</link>
      <description>&lt;P&gt;try this:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ng-click="app.doReload(0,true,false)"&lt;BR /&gt;Works fine as partial reload for me&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 19:45:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Partial-Reload-using-app-doReload-in-Qlik-Sense-April-2020/m-p/1741767#M5382</guid>
      <dc:creator>did</dc:creator>
      <dc:date>2020-09-07T19:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload using app.doReload() in Qlik Sense April 2020</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Partial-Reload-using-app-doReload-in-Qlik-Sense-April-2020/m-p/1780066#M5761</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I can't run the Reload Button with your both settings. But I can with setting: &amp;lt;lui-button ng-click="app.doReload()"&amp;gt;Reload app&amp;lt;/lui-button&amp;gt;.So how can I do PartialReload?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2021 08:07:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Partial-Reload-using-app-doReload-in-Qlik-Sense-April-2020/m-p/1780066#M5761</guid>
      <dc:creator>mudanhong</dc:creator>
      <dc:date>2021-02-04T08:07:44Z</dc:date>
    </item>
  </channel>
</rss>

