<?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 set properties in panel dynamically in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-set-properties-in-panel-dynamically/m-p/1456739#M9330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;i have drop-down list of current objects available on sheet, i want to put mechanism in paint method or property definition section so that measures of that selected object comes on measure section. &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;for example,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot (91).png" class="jive-image image-1" src="/legacyfs/online/188460_Screenshot (91).png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Let's say i selected object Revenue by Product Group. it has dimension - product group &amp;amp; measure - Revenue. and i want that measure &amp;amp; dimension on that tab automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot (92).png" class="jive-image image-2" src="/legacyfs/online/188461_Screenshot (92).png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;I have object ids. how could i do that? please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Dec 2017 12:16:20 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-12-29T12:16:20Z</dc:date>
    <item>
      <title>How to set properties in panel dynamically</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-set-properties-in-panel-dynamically/m-p/1456739#M9330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;i have drop-down list of current objects available on sheet, i want to put mechanism in paint method or property definition section so that measures of that selected object comes on measure section. &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;for example,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot (91).png" class="jive-image image-1" src="/legacyfs/online/188460_Screenshot (91).png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Let's say i selected object Revenue by Product Group. it has dimension - product group &amp;amp; measure - Revenue. and i want that measure &amp;amp; dimension on that tab automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot (92).png" class="jive-image image-2" src="/legacyfs/online/188461_Screenshot (92).png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;I have object ids. how could i do that? please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Dec 2017 12:16:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-set-properties-in-panel-dynamically/m-p/1456739#M9330</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-29T12:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to set properties in panel dynamically</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-set-properties-in-panel-dynamically/m-p/1456740#M9331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was solving a similar problem, trying to reference a current properties in the property definition object. I&lt;SPAN style="font-size: 10pt;"&gt;n the first example in &lt;/SPAN&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/September2018/Subsystems/Extensions/Content/Sense_Extensions/Howtos/custom-dropdown-properties.htm" style="font-size: 10pt;"&gt;these docs &lt;/A&gt;&lt;SPAN style="font-size: 10pt;"&gt;the options field is built from an anonymous function, what the docs don't say is that this function receives the scope object as single parameter, so you can do:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #d4d4d4; background-color: #1e1e1e; font-family: Consolas, 'Courier New', monospace; font-size: 14px;"&gt;&lt;SPAN style="color: #dcdcaa;"&gt;...&lt;BR /&gt;options&lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #569cd6;"&gt;function&lt;/SPAN&gt; (scope) {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(scope.yourCustomProperty)&lt;/P&gt;&lt;P&gt;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you to &lt;A href="https://community.qlik.com/qlik-users/5212"&gt;konrad.mattheis&lt;/A&gt; on the slack channel for pointing me to the answer!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2018 11:36:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-set-properties-in-panel-dynamically/m-p/1456740#M9331</guid>
      <dc:creator>adriennn</dc:creator>
      <dc:date>2018-10-03T11:36:44Z</dc:date>
    </item>
  </channel>
</rss>

