<?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: Extension Object : Javascript error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446643#M1238855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was getting the same error while using D3 library. I was able to fix that by adding these 2 lines at the top of Properties.qvpp file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge" /&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jun 2014 12:50:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-17T12:50:38Z</dc:date>
    <item>
      <title>Extension Object : Javascript error</title>
      <link>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446638#M1238850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am creating an extension object in QlikView 11 to refresh the web page. I am using the following code -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Qva.AddDocumentExtension('QlikView/Examples/Refresh', function () {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function ReloadPage(){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; location.reload();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).ready(function() {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; setTimeout("ReloadPage()", 10000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;}); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I am getting error - "Unable to get value of the property 'prototype': object is null or undefined".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me how to fix this error ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Samir Prasadi&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/Extension-Object-Javascript-error/m-p/446638#M1238850</guid>
      <dc:creator />
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Extension Object : Javascript error</title>
      <link>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446639#M1238851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to change following line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: 'courier new', courier; background-color: #ffffff;"&gt;setTimeout("ReloadPage()", 10000);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: 'courier new', courier; background-color: #ffffff;"&gt;to&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: 'courier new', courier;"&gt;setTimeout(ReloadPage, 10000);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2013 11:21:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446639#M1238851</guid>
      <dc:creator>alex_nerush</dc:creator>
      <dc:date>2013-01-23T11:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Extension Object : Javascript error</title>
      <link>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446640#M1238852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The setTimeout function is now getting called but it is refreshing the page ignoring the "timeout" value of 10000. The refresh rate is approximately 2-3 seconds and page is getting refreshed indefinitely (not once). Any ideas why it is working in this manner and the possible workaround ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Samir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 10:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446640#M1238852</guid>
      <dc:creator />
      <dc:date>2013-01-28T10:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Extension Object : Javascript error</title>
      <link>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446641#M1238853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because when you call ReloadPage your extension's javascript code called each time the page is getting refreshed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Feb 2013 10:55:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446641#M1238853</guid>
      <dc:creator>alex_nerush</dc:creator>
      <dc:date>2013-02-02T10:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Extension Object : Javascript error</title>
      <link>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446642#M1238854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Samir, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had the same error you had but with the Hello World extension : "Unable to get value of the property 'prototype': object is null or undefined"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I managed to get rid of it by naming the folder containing the js and xml the same way it is in Definition.xml under the "Path" attribute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe it's a little bit too late for you (the post is one year old) but since this is the only link the search engines return when you type the error associated with "QlikView" I hope this will help beginners to build their first extensions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 15:31:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446642#M1238854</guid>
      <dc:creator />
      <dc:date>2014-03-31T15:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extension Object : Javascript error</title>
      <link>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446643#M1238855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was getting the same error while using D3 library. I was able to fix that by adding these 2 lines at the top of Properties.qvpp file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge" /&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 12:50:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extension-Object-Javascript-error/m-p/446643#M1238855</guid>
      <dc:creator />
      <dc:date>2014-06-17T12:50:38Z</dc:date>
    </item>
  </channel>
</rss>

