<?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 Extensions Questions in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extensions-Questions/m-p/676230#M2167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i have a few questons about extensions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1:&lt;/P&gt;&lt;P&gt;If i trace how often Paint is called, it seems to be called 2 times, when an app i opened. And once when for each selection.&lt;/P&gt;&lt;P&gt;2:&lt;/P&gt;&lt;P&gt;The inline editing which is done in the Text &amp;amp; Image object, is there an easy way to reuse the code in my extension?&lt;/P&gt;&lt;P&gt;3:&lt;/P&gt;&lt;P&gt;When will QlikMarket for Sense be opened? I very much like to know if its this month, this year or later.&lt;/P&gt;&lt;P&gt;4:&lt;/P&gt;&lt;P&gt;Is there a option to disable content in the extension when in editmode, making sure you cannot click on it, so drag and drop works correctly. It would be similar to put a grey div layer on top of my content. Or is there a way to detect that I'm in edit mode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Sep 2014 09:29:30 GMT</pubDate>
    <dc:creator>tseebach</dc:creator>
    <dc:date>2014-09-11T09:29:30Z</dc:date>
    <item>
      <title>Extensions Questions</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extensions-Questions/m-p/676230#M2167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i have a few questons about extensions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1:&lt;/P&gt;&lt;P&gt;If i trace how often Paint is called, it seems to be called 2 times, when an app i opened. And once when for each selection.&lt;/P&gt;&lt;P&gt;2:&lt;/P&gt;&lt;P&gt;The inline editing which is done in the Text &amp;amp; Image object, is there an easy way to reuse the code in my extension?&lt;/P&gt;&lt;P&gt;3:&lt;/P&gt;&lt;P&gt;When will QlikMarket for Sense be opened? I very much like to know if its this month, this year or later.&lt;/P&gt;&lt;P&gt;4:&lt;/P&gt;&lt;P&gt;Is there a option to disable content in the extension when in editmode, making sure you cannot click on it, so drag and drop works correctly. It would be similar to put a grey div layer on top of my content. Or is there a way to detect that I'm in edit mode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 09:29:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Extensions-Questions/m-p/676230#M2167</guid>
      <dc:creator>tseebach</dc:creator>
      <dc:date>2014-09-11T09:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Extensions Questions</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extensions-Questions/m-p/676231#M2168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding issue 1, please see this thread, we have not a good solution yet:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/607288"&gt;Re: Re: Qlik Sense Desktop, Extension Paint Function called twice&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 11:58:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Extensions-Questions/m-p/676231#M2168</guid>
      <dc:creator>tseebach</dc:creator>
      <dc:date>2014-09-11T11:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Extensions Questions</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Extensions-Questions/m-p/676232#M2169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for being late on the ball. Totally missed this new subsection of community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Not that I'm aware off. And if you could I would doubt it's supported &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Ping Pong &lt;A href="https://community.qlik.com/qlik-users/23711"&gt;Brian Munz&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) Sure, just walk the scope chain. Here is a short stub. Let me know if you need more details.&lt;/P&gt;&lt;P&gt;define([],function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; paint: function($element, layout) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var parentscope = angular.element($element).scope().$parent.$parent;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $element.html(parentscope.editmode ? 'In Edit Mode' : 'Not in Edit mode');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 20:26:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Extensions-Questions/m-p/676232#M2169</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2014-09-30T20:26:06Z</dc:date>
    </item>
  </channel>
</rss>

