<?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 API: mounted() and paint() discrepancy in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661792#M12062</link>
    <description>&lt;P&gt;It appears to me to be different elements (a sub-element) to be precise.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-12-31 114025.png" style="width: 506px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26228iCF952141AC6EE7AA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-12-31 114025.png" alt="Annotation 2019-12-31 114025.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The first of which returns the yellow div below and the second returns the green div.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-12-31 114251.png" style="width: 492px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26229iA9DD84180A8F11DC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-12-31 114251.png" alt="Annotation 2019-12-31 114251.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For completeness, here is the code I'm using:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;mounted: function ($element) {
	console.log("mounted");
	console.log($element);
},
		
paint: function ($element) {
	console.log("paint");
	console.log($element);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 31 Dec 2019 16:44:13 GMT</pubDate>
    <dc:creator>BradMazurek</dc:creator>
    <dc:date>2019-12-31T16:44:13Z</dc:date>
    <item>
      <title>Extension API: mounted() and paint() discrepancy</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661782#M12060</link>
      <description>&lt;P&gt;Looking at the documentation for the Extension API's mounted() and paint() methods, both say the following:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;$element&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;jQuery wrapper containing the HTML element where visualization should be rendered.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;but the $element received by each are different. Based upon the documentation, I would expect them to be the same. What am I missing?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:42:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661782#M12060</guid>
      <dc:creator>BradMazurek</dc:creator>
      <dc:date>2024-11-16T03:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Extension API: mounted() and paint() discrepancy</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661783#M12061</link>
      <description>&lt;P&gt;Different wrappers around the same element? Or different elements?&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 16:22:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661783#M12061</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2019-12-31T16:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Extension API: mounted() and paint() discrepancy</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661792#M12062</link>
      <description>&lt;P&gt;It appears to me to be different elements (a sub-element) to be precise.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-12-31 114025.png" style="width: 506px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26228iCF952141AC6EE7AA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-12-31 114025.png" alt="Annotation 2019-12-31 114025.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The first of which returns the yellow div below and the second returns the green div.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-12-31 114251.png" style="width: 492px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/26229iA9DD84180A8F11DC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-12-31 114251.png" alt="Annotation 2019-12-31 114251.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For completeness, here is the code I'm using:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;mounted: function ($element) {
	console.log("mounted");
	console.log($element);
},
		
paint: function ($element) {
	console.log("paint");
	console.log($element);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 16:44:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661792#M12062</guid>
      <dc:creator>BradMazurek</dc:creator>
      <dc:date>2019-12-31T16:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Extension API: mounted() and paint() discrepancy</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661801#M12063</link>
      <description>&lt;P&gt;Interesting. Looks like you are right. I don't use mounted much, in most cases I need the layout, which for some reason is not a parameter to mounted.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 16:56:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Extension-API-mounted-and-paint-discrepancy/m-p/1661801#M12063</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2019-12-31T16:56:25Z</dc:date>
    </item>
  </channel>
</rss>

