<?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: App reload widget in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1628339#M46745</link>
    <description>&lt;P&gt;No, haven't found a solution.&lt;/P&gt;&lt;P&gt;Current thinking is we need to make an extension that will trigger the reload task for the app.&lt;/P&gt;</description>
    <pubDate>Wed, 25 Sep 2019 22:31:11 GMT</pubDate>
    <dc:creator>rachel_delany</dc:creator>
    <dc:date>2019-09-25T22:31:11Z</dc:date>
    <item>
      <title>App reload widget</title>
      <link>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1605429#M44823</link>
      <description>&lt;P&gt;I'm trying to develop a simple widget for users to be able to reload an app through clicking a button.&lt;/P&gt;&lt;P&gt;The widget is really simple, just using the app.doReload() method.&lt;/P&gt;&lt;P&gt;It works when the app is not published however when the app is published, it appears to work (the data reloads) however once you refresh the page the new data is no longer there.&lt;/P&gt;&lt;P&gt;It appears the app isn't saving after reload, if I add a separate button which invokes the&amp;nbsp;app.doSave() method, it all seems to work. Does anyone know how I can put this all into one button?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 05:48:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1605429#M44823</guid>
      <dc:creator>rachel_delany</dc:creator>
      <dc:date>2019-07-24T05:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: App reload widget</title>
      <link>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1627887#M46717</link>
      <description>&lt;P&gt;Hi Rachel,&lt;/P&gt;&lt;P&gt;Have you found the solution for this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are facing the same problem.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 21:56:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1627887#M46717</guid>
      <dc:creator>avinashjpm</dc:creator>
      <dc:date>2019-09-24T21:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: App reload widget</title>
      <link>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1627928#M46723</link>
      <description>&lt;P&gt;&amp;lt;lui-button ng-click="app.doReload();app.doSave()"&amp;gt;Reload app&amp;lt;/lui-button&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use above it should work.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 06:13:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1627928#M46723</guid>
      <dc:creator>durgesh22</dc:creator>
      <dc:date>2019-09-25T06:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: App reload widget</title>
      <link>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1628337#M46744</link>
      <description>&lt;P&gt;No, I had already tried that but the save does not work on a published app.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 22:29:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1628337#M46744</guid>
      <dc:creator>rachel_delany</dc:creator>
      <dc:date>2019-09-25T22:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: App reload widget</title>
      <link>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1628339#M46745</link>
      <description>&lt;P&gt;No, haven't found a solution.&lt;/P&gt;&lt;P&gt;Current thinking is we need to make an extension that will trigger the reload task for the app.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 22:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1628339#M46745</guid>
      <dc:creator>rachel_delany</dc:creator>
      <dc:date>2019-09-25T22:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: App reload widget</title>
      <link>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1765999#M59254</link>
      <description>&lt;P&gt;this wont work because app.doReload() returns a promise, You need to call a .then on it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;app.doReload().then(function(){
   app.doSave();
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;this will wait for the reload. then do the save once its reloaded.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2020 13:26:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1765999#M59254</guid>
      <dc:creator>peachman</dc:creator>
      <dc:date>2020-12-03T13:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: App reload widget</title>
      <link>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1808941#M65886</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/112177"&gt;@peachman&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where do I have to put your code into the widget HTML?&lt;BR /&gt;&lt;BR /&gt;At the moment I have two buttons:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pwagner_0-1621417131475.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/55248i655B9E908B47EC2F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pwagner_0-1621417131475.png" alt="pwagner_0-1621417131475.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Could you give us an example how the HTML code in the widget should look like?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;BR /&gt;Best regards, Patrick&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 May 2021 09:39:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/App-reload-widget/m-p/1808941#M65886</guid>
      <dc:creator>pwagner</dc:creator>
      <dc:date>2021-05-19T09:39:35Z</dc:date>
    </item>
  </channel>
</rss>

