<?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: how to call window.onload in Qlik extension in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1718012#M12892</link>
    <description>&lt;P&gt;i have done that multiple times,,,but not helping,,, still getting the same error.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chouksey17_0-1591893350005.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/35378iDD492594D52EDCE6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chouksey17_0-1591893350005.png" alt="chouksey17_0-1591893350005.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chouksey17_0-1591893686533.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/35379iC7AEF666501BE6AF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chouksey17_0-1591893686533.png" alt="chouksey17_0-1591893686533.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jun 2020 16:41:47 GMT</pubDate>
    <dc:creator>PriyankaShivhare</dc:creator>
    <dc:date>2020-06-11T16:41:47Z</dc:date>
    <item>
      <title>how to call window.onload in Qlik extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1685111#M12494</link>
      <description>&lt;P&gt;I am currently using a google timeline extension created by&amp;nbsp;&lt;FONT&gt;Kai Hilton-Jones&lt;BR /&gt;and Improved by Tim Payne,Vojta Plzak,&amp;nbsp;Simone Silini called reboot timeline&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;i wanted to hide the bottom axis and created a javascript function&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;function hideTimebar() {
//hide the bottom time bar and main title above
var ab = document.getElementById('defs').nextSibling;
var ac = ab.nextSibling;
ac.style.display = 'none';

var ad = document.getElementsByClassName('qv-object-title qvt-visualization-title')
ad[0].style.display = 'none';
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;i want to call this everytime the page is loaded&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;on a webpage id use window.load but i dont know were to place the call.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;i know the function works because i can call function from IE and it hides the Axis.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Any Help will be appreciated&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:58:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1685111#M12494</guid>
      <dc:creator>anwarbham</dc:creator>
      <dc:date>2024-11-16T02:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to call window.onload in Qlik extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1685327#M12499</link>
      <description>&lt;P&gt;got it working you add it after the google events listener&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;google&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;visualization&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;events&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;addListener&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;chart&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;select&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;function&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;e&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;like below the hideTimebar(); changes the css&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;this goes in the googletimeline.js file if it helps anyone &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;google.visualization.events.addListener(chart, 'select', function(e) {
				var sel = chart.getSelection();
				//console.log('boom');
				tim=sel;
				//sel.forEach(function(val) {
					
					selections[0]=elemNos[sel[0].row]
					self.selectValues(0, selections, true);
				//});
				//chart.setSelection(tim);
				//selections = selections.concat(sel);
			});
			//chart.setSelection([]);
			
				//new listener
			hideTimebar();
			&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 12:17:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1685327#M12499</guid>
      <dc:creator>anwarbham</dc:creator>
      <dc:date>2020-03-17T12:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to call window.onload in Qlik extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1717933#M12888</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;is this extension working for u? .it s giving me invalid visualization now earlier it was working fine for me&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 13:19:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1717933#M12888</guid>
      <dc:creator>PriyankaShivhare</dc:creator>
      <dc:date>2020-06-11T13:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to call window.onload in Qlik extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1717990#M12891</link>
      <description>&lt;P&gt;yes it is make, you might have to reimport it.&amp;nbsp; incase the widget Id changed, its common in Qlik &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 15:30:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1717990#M12891</guid>
      <dc:creator>anwarbham</dc:creator>
      <dc:date>2020-06-11T15:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to call window.onload in Qlik extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1718012#M12892</link>
      <description>&lt;P&gt;i have done that multiple times,,,but not helping,,, still getting the same error.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chouksey17_0-1591893350005.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/35378iDD492594D52EDCE6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chouksey17_0-1591893350005.png" alt="chouksey17_0-1591893350005.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chouksey17_0-1591893686533.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/35379iC7AEF666501BE6AF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chouksey17_0-1591893686533.png" alt="chouksey17_0-1591893686533.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 16:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1718012#M12892</guid>
      <dc:creator>PriyankaShivhare</dc:creator>
      <dc:date>2020-06-11T16:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to call window.onload in Qlik extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1718733#M12900</link>
      <description>&lt;P&gt;google chart is changed.&lt;/P&gt;&lt;P&gt;read the new spec: &lt;A href="https://developers.google.com/chart/interactive/docs/basic_load_libs" target="_blank" rel="noopener"&gt;https://developers.google.com/chart/interactive/docs/basic_load_libs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Now you need this call:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="tag"&gt;&amp;lt;script&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN class="atn"&gt;src&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="atv"&gt;"https://www.gstatic.com/charts/loader.js"&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class="tag"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN class="tag"&gt;&amp;lt;script&amp;gt; &lt;/SPAN&gt;&lt;SPAN class="pln"&gt;google&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;charts&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;load&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str"&gt;'current'&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;,&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;{&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;packages&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;[&lt;/SPAN&gt;&lt;SPAN class="str"&gt;'corechart','table','timechart'&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;]});&lt;SPAN class="tag"&gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;rather then:&lt;/P&gt;&lt;PRE&gt;&amp;lt;script &lt;STRONG&gt;src="https://www.google.com/jsapi"&lt;/STRONG&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN class="pln"&gt;&lt;SPAN class="tag"&gt;&amp;lt;script&amp;gt;&lt;/SPAN&gt;google&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;charts&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;load&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str"&gt;visualization,1&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;,&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;{&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;packages&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;[&lt;/SPAN&gt;&lt;SPAN class="str"&gt;'corechart','table','timechart'&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;]});&lt;SPAN class="tag"&gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Jun 2020 08:48:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-to-call-window-onload-in-Qlik-extension/m-p/1718733#M12900</guid>
      <dc:creator>FabSpa</dc:creator>
      <dc:date>2020-06-15T08:48:47Z</dc:date>
    </item>
  </channel>
</rss>

