<?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 Variable number of Dimensions and Measures in an extension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354370#M1239873</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to add, remove and reorder dimensions and expressions ? It would be very handy....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Apr 2012 09:11:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-04-17T09:11:58Z</dc:date>
    <item>
      <title>Variable number of Dimensions and Measures in an extension</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354369#M1239871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With QlikView 11 SR1 we have added improved support for extensions with a variable number of Dimensions and Measures in your extension. If you want the user to be able to add Dimensions and Measures to your extension you use the &lt;STRONG&gt;Multiple&lt;/STRONG&gt; attribute of &lt;STRONG&gt;Dimension&lt;/STRONG&gt; and &lt;STRONG&gt;Measure&lt;/STRONG&gt; tag. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This might look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Dimension Multiple="" Label="Dimensions:" TargetName="Dimension" Initial="" /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Expression Multiple="" Label="Expressions:" TargetName="Expression" Initial="" /&amp;gt;&lt;/P&gt;&lt;P&gt;As a result you will get something like this property dialog:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Extension1.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/13046_Extension1.png" /&gt;&lt;/P&gt;&lt;P&gt;The user will then be able to add Dimensions and Measures with the plus button, remove them with the minus, and edit the definition. You don't have to use both: if you want your extension to support a variable number of Dimensions but only one Measure, you put the attribute just on the &lt;STRONG&gt;Dimension&lt;/STRONG&gt; tag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your javascript code must of course take into account that you do not now how many columns you have. A simplified version:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var rowIx = 0; rowIx &amp;lt; this.Data.Rows.length; rowIx++) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var row = this.Data.Rows[rowIx];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html += '&amp;lt;tr&amp;gt;';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var colIx =0; colIx &amp;lt; row.length; colIx++){&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; html += '&amp;lt;td&amp;gt;'+row[colIx].text+'&amp;lt;/td&amp;gt;';&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html += '&amp;lt;/tr&amp;gt;';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've attached a very small example of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In QlikView 11 SR1 you also get improved possibilities to set up the ordering of dimensions. If the user clicks the cogwheel icon, she will get this dialog:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Extension2.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/13047_Extension2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you find this useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik&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/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354369#M1239871</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Variable number of Dimensions and Measures in an extension</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354370#M1239873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to add, remove and reorder dimensions and expressions ? It would be very handy....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2012 09:11:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354370#M1239873</guid>
      <dc:creator />
      <dc:date>2012-04-17T09:11:58Z</dc:date>
    </item>
    <item>
      <title>Variable number of Dimensions and Measures in an extension</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354371#M1239875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plus and minus-buttons are used for add and remove. If you press the arrow button on the left you can drag the dimension or measure up and down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2012 09:57:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354371#M1239875</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2012-04-17T09:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Variable number of Dimensions and Measures in an extension</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354372#M1239877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I wanted to ask: "Is there a way to add, remove and reorder dimensions and expressions&lt;STRONG&gt; using the javascript API &lt;/STRONG&gt;?"&lt;/P&gt;&lt;P&gt;I am working on an extension which requires expressions to have a specific format to work properly, and since there is no way to do something like that in the qvpp I hide those settings from the properties page and provide a wizard which sets the expressions using Layout.SetProperty(...). I am looking for a way to set the number of measures from the javascript (right now there are something like 7 measures defined in definition.xml, and I just get the data for the Nth first columns, which is a waste of bandwidth and processing power, but I did not manage to find a clever way to achieve that).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2012 11:40:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354372#M1239877</guid>
      <dc:creator />
      <dc:date>2012-04-17T11:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Variable number of Dimensions and Measures in an extension</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354373#M1239879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for sharing the technique on how to add multiple measures in the Qlikview Extension object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Is there a way to change the label of the dimensions / measures when the multiple attribute is added on the Dimension and Measurement tags ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Can we add a More button which shows up a panel and allows us to modify the properties for the added dimensions / expressions ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Aug 2013 21:51:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354373#M1239879</guid>
      <dc:creator />
      <dc:date>2013-08-03T21:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Variable number of Dimensions and Measures in an extension</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354374#M1239881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/jgeorge"&gt;jgeorge&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you found a solution regarding adding dimensions and expressions using JavaScript?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 08:07:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354374#M1239881</guid>
      <dc:creator>alex_nerush</dc:creator>
      <dc:date>2013-11-19T08:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Variable number of Dimensions and Measures in an extension</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354375#M1239883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a custom qvpp, let's say "MyProperties.qvpp", add the following line in the definition.xml&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;PropertiesPage&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;Version&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;11&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;File&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"MyProperties.qvpp"&lt;SPAN style="color: blue;"&gt; /&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then add the following code at the appropriate position in the MyProperties.qvpp file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-grid_container accordion-shadow-enabler&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-bar-chart-header-clickable&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop_listheader:.Chart.Dimension&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;Dimensions&lt;SPAN style="color: blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;ul&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;list:.Chart.Dimension&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-dyn-sortable&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;sortable-dimensions&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;data-list-type&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;sortable-dimensions&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;li&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;ui-state-default prop-sortable-list-li&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;chart-dimension&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;TabSource:.:ChartTableDimensionFoldout.qvpp&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;span&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-sortable-list-arrow-position&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;list_movehandle:&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;span&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-sortable-width-239px&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop_dynamicDropdown:.Field&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-sortable-right-width-28px&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-sortable-width-28px&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;sortable-list-item-close-button&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;propicontype&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;delete-row&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop_buttonjqui:.Remove&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;li&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;ul&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-bar-chart-header-clickable&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop_listheader:.Chart.Expression&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;Expressions&lt;SPAN style="color: blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;ul&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;list:.Chart.Expression&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-dyn-sortable&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;sortable-measurements&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;data-list-type&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;sortable-measurements&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;li&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;ui-state-default prop-sortable-list-li&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;chart-measurement&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;TabSource:.:ChartTableMeasurementFoldout.qvpp&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;span&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-sortable-list-arrow-position&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;list_movehandle:&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;span&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-sortable-width-239px&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop_editexpression:.0.Definition&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-sortable-right-width-28px&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-sortable-width-28px&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;sortable-list-item-close-button&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;propicontype&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;delete-row&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop_buttonjqui:.0.Remove&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;li&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;ul&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-grid_clear prop-grid_prepend-11 prop-grid_span-4 prop-grid_standard-height prop-less-more-button&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;button&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-grid_button prop-grid_span-4 prop-more-less-button&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;foldOutMenuButton:&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;barchart&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;More...&lt;SPAN style="color: blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;button&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;button&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;prop-grid_button prop-grid_span-4 prop-more-less-button&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;avq&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;foldOutMenuButton:&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;barchart&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red;"&gt;isless&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;true&lt;/SPAN&gt;"&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;Less..&lt;SPAN style="color: blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;button&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color: #a31515;"&gt;div&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 16:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354375#M1239883</guid>
      <dc:creator>Stefan_Walther</dc:creator>
      <dc:date>2013-11-19T16:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Variable number of Dimensions and Measures in an extension</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354376#M1239885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stefan! Thanks for help... but my question was about &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;adding and removing dimensions and expressions&lt;/SPAN&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; using the javascript API (for Extension Object).&lt;/STRONG&gt; I've found solution and have shared the idea:&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; &lt;A _jive_internal="true" href="https://community.qlik.com/thread/99395"&gt;http://community.qlik.com/thread/99395&lt;/A&gt; . &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;There is a new question: how can i determine the number of dimensions and expression from an Extension Object's code (using JavaScript)?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p.s. By the way, you have a great blog!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Nov 2013 19:36:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-number-of-Dimensions-and-Measures-in-an-extension/m-p/354376#M1239885</guid>
      <dc:creator>alex_nerush</dc:creator>
      <dc:date>2013-11-19T19:36:40Z</dc:date>
    </item>
  </channel>
</rss>

