<?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 How to prevent extension autoreload? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79554#M1236355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;I'd like to make an extension where I can save multiple sets of data as a PDF. To accomplish that, I have to cache data in a QV variable, and select different data sets. But every time I use &lt;STRONG style="background-position: repeat; color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; text-align: left;"&gt;_this.Data.ClearSelections();&lt;/STRONG&gt;, &lt;STRONG style="background-position: repeat; color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; text-align: left;"&gt;_this.Data.SearchColumn(0, email, true);&lt;/STRONG&gt; or &lt;STRONG style="background-position: repeat; color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; text-align: left;"&gt;doc.SetVariable("remainingEntries", JSON.stringify(remaininEntries)); &lt;/STRONG&gt;it reloads the extension and starts over the script, even tho I want to execute something else after changing the selection. Is there a fix to it? Or is there at least a way to save variables without qlikview reloading my extension? The Variable should be able to survive reloads, and should be able to be accessed by other extensions.&lt;/P&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2026-01-26T16:26:21Z</dc:date>
    <item>
      <title>How to prevent extension autoreload?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79554#M1236355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;I'd like to make an extension where I can save multiple sets of data as a PDF. To accomplish that, I have to cache data in a QV variable, and select different data sets. But every time I use &lt;STRONG style="background-position: repeat; color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; text-align: left;"&gt;_this.Data.ClearSelections();&lt;/STRONG&gt;, &lt;STRONG style="background-position: repeat; color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; text-align: left;"&gt;_this.Data.SearchColumn(0, email, true);&lt;/STRONG&gt; or &lt;STRONG style="background-position: repeat; color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; text-align: left;"&gt;doc.SetVariable("remainingEntries", JSON.stringify(remaininEntries)); &lt;/STRONG&gt;it reloads the extension and starts over the script, even tho I want to execute something else after changing the selection. Is there a fix to it? Or is there at least a way to save variables without qlikview reloading my extension? The Variable should be able to survive reloads, and should be able to be accessed by other extensions.&lt;/P&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79554#M1236355</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent extension autoreload?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79555#M1236357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could hold a state with a variable in global state (cache, sessionstorage, window-object) to flag if the extension should do a repaint or not.&lt;/P&gt;&lt;P&gt;Then as a very first logic in your extension you do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(reloadDisabled){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;// else do all the extension stuff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2018 10:12:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79555#M1236357</guid>
      <dc:creator>ThomasGorr</dc:creator>
      <dc:date>2018-06-01T10:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent extension autoreload?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79556#M1236358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply, but I still can't get it working. Return only works in functions, and the Extension reloads anyways, because the Qva.AddExtension(...) gets executed on every change.&lt;/P&gt;&lt;P&gt;You got any other ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2018 11:15:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79556#M1236358</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-08T11:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent extension autoreload?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79557#M1236359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well maybe you could provide your extension code and a QVW here to get more detailled insights of what you're doing. Maybe I could implement the solution for you then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2018 11:42:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79557#M1236359</guid>
      <dc:creator>ThomasGorr</dc:creator>
      <dc:date>2018-06-12T11:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent extension autoreload?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79558#M1236360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Btw.: Have you tried to hold a global variable which is out of scope of Qva.AddExtension(...)? You could implement your cached data there and set a handler inside the Qva.AddExtension(...)-Scope to clear your cache as needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2018 11:44:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79558#M1236360</guid>
      <dc:creator>ThomasGorr</dc:creator>
      <dc:date>2018-06-12T11:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent extension autoreload?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79559#M1236361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you get any solution or workaround to this issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 14:37:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-prevent-extension-autoreload/m-p/79559#M1236361</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-08-21T14:37:48Z</dc:date>
    </item>
  </channel>
</rss>

