<?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: Make non selectable extension selectable in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750433#M2344</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karl,&lt;/P&gt;&lt;P&gt;A small update on the code snippet. In Sense 1.0 'others' (-3) was not selectable in an extension, but from Sense 2.0 it is, so now you could instead do:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14417918023414093 jive_text_macro" jivemacro_uid="_14417918023414093" modifiedtitle="true"&gt;
&lt;P&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;//total (-1) is not selectable&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;if&lt;/SPAN&gt;(&lt;SPAN style="color: #458383;"&gt;dim&lt;/SPAN&gt;.&lt;SPAN style="color: #660e7a; font-weight: bold;"&gt;qElemNumber &lt;/SPAN&gt;!== -&lt;SPAN style="color: #0000ff;"&gt;1&lt;/SPAN&gt;) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #458383;"&gt;html &lt;/SPAN&gt;+= &lt;SPAN style="color: #008000; font-weight: bold;"&gt;"class='selectable' data-value='" &lt;/SPAN&gt;+ &lt;SPAN style="color: #458383;"&gt;dim&lt;/SPAN&gt;.&lt;SPAN style="color: #660e7a; font-weight: bold;"&gt;qElemNumber &lt;/SPAN&gt;+ &lt;SPAN style="color: #008000; font-weight: bold;"&gt;"'"&lt;BR /&gt;&lt;/SPAN&gt;}&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;Erik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Please mark the appropriate replies as correct or helpful so our team and other members know that your question has been answered to your satisfaction.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Sep 2015 09:45:02 GMT</pubDate>
    <dc:creator>ErikWetterberg</dc:creator>
    <dc:date>2015-09-09T09:45:02Z</dc:date>
    <item>
      <title>Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750426#M2337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I'm trying to modify a non selectable extension (sunburst zoomable D3) to selectable by adding the js code:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; $element.html(html);&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; $element.find('.selectable').on('qv-activate', function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(this.hasAttribute("data-value")) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var value = parseInt(this.getAttribute("data-value"), 10), dim = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.selectValues(dim, [value], true);&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(this).toggleClass("selected");&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from&amp;nbsp; &lt;A href="https://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/CodeExamples/ext_peoplechart.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CCode%2520examples%7C_____4" title="https://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/CodeExamples/ext_peoplechart.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CCode%2520examples%7C_____4"&gt;https://help.qlik.com/sense/en-us/developer/&lt;/A&gt;&lt;A __default_attr="null" __jive_macro_name="null" class="jive_macro jive_macro_null" data-objecttype="null" href="https://community.qlik.com/"&gt;WikipediaInsert Wikipedia Link&lt;/A&gt;&lt;A href="https://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/CodeExamples/ext_peoplechart.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CCode%2520examples%7C_____4" title="https://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/CodeExamples/ext_peoplechart.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CCode%2520examples%7C_____4"&gt;https://help.qlik.com/sense/en-us/developer/#../Subsystems/Workbench/Content/CodeExamples/ext_peoplechart.htm%3FTocPath%3DQlik%2520Sense%2520Workbench%7CCode%2520examples%7C_____4&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The source is the sunburst zoomable D3&amp;nbsp; &lt;A href="https://github.com/brianwmunz/QlikSenseD3ZoomableSunburst" title="https://github.com/brianwmunz/QlikSenseD3ZoomableSunburst"&gt;brianwmunz/QlikSenseD3ZoomableSunburst · GitHub&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That extension works fine but does not set the selections within Sense (current selection bar) done with mouse clicks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The matter is that it seems there is no way to transform the clickable areas into selectable ones - if I debug the code, the&amp;nbsp;&amp;nbsp;&amp;nbsp; $element.find('.selectable').on('qv-activate', function()&amp;nbsp; is not "triggered".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.selectable belongs to standard client.css but it seems is ignored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have an idea on how to make these areas selectable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FMa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 15:41:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750426#M2337</guid>
      <dc:creator />
      <dc:date>2014-11-14T15:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750427#M2338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to set the class selectable to the element and add the qElemNumber to data-value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the people chart example look at this section:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_14169019966227285 jive_macro_code" jivemacro_uid="_14169019966227285"&gt;
&lt;P&gt;$.each(qData.qMatrix, function(key, row) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if(row.length &amp;gt; 1) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; //dimension is first, measure second&lt;/P&gt;
&lt;P&gt;&amp;nbsp; var dim = row[0], meas = row[1];&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if(dim.qIsOtherCell) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; dim.qText = layout.qHyperCube.qDimensionInfo[0].othersLabel;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp; html += '&amp;lt;div title="' + dim.qText + ':' + meas.qText + '"';&lt;/P&gt;
&lt;P&gt;&amp;nbsp; //negative elementnumbers are not selectable&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if(dim.qElemNumber &amp;gt; -1) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; html += "class='selectable' data-value='" + dim.qElemNumber + "'"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp; html += '&amp;gt;';&lt;/P&gt;
&lt;P&gt;&amp;nbsp; html += "&amp;lt;div class='label'&amp;gt;" + dim.qText + "&amp;lt;/div&amp;gt;";&lt;/P&gt;
&lt;P&gt;&amp;nbsp; html += "&amp;lt;div class='bar' style='width:" + Math.round(w * (meas.qNum / vmax )) + "px;'&amp;gt;&amp;nbsp;&amp;lt;/div&amp;gt;";&lt;/P&gt;
&lt;P&gt;&amp;nbsp; html += "&amp;lt;/div&amp;gt;";&lt;/P&gt;
&lt;P&gt;&amp;nbsp; }&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you figured that out you need to modifiy the click function. I would start with a less complex example like making the simple table extension selectable or/and implement a D3 graph as an extension. &lt;/P&gt;&lt;P&gt;D3noob has alot of examples with tutorials.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.d3noob.org/" title="http://www.d3noob.org/"&gt;D3.js Tips and Tricks&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://bl.ocks.org/d3noob" title="http://bl.ocks.org/d3noob"&gt;http://bl.ocks.org/d3noob&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 08:04:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750427#M2338</guid>
      <dc:creator />
      <dc:date>2014-11-25T08:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750428#M2339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't study this extension in particular, but I'll share two "generic" ways to go :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) First you have to backup each dimension value id in your D3 data, i.e :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var qMatrix = layout.qHyperCube.qDataPages[0].qMatrix;&lt;/P&gt;&lt;P&gt;var dataD3 = qMatrix.map( function(d) {return {&lt;/P&gt;&lt;P&gt;&amp;nbsp; // Retrieve needed hypercube data here&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;"dimensionid":d[0].qIsOtherCell ? null : d[0].qElemNumber&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you have to setup d3 element class and data-value :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;.attr("class", "selectable")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;.attr("data-value",function(d) {return d.dimensionid})&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Another way to go is to handle selections with D3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add &lt;STRONG&gt;"selected":0&lt;/STRONG&gt; to your D3 data, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add click event handler on your D3 element : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;.on("click", clickHere)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally handle visual feedback and sense selection in your handler : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;function clickHere(d) {&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; if ( d.dimensionid != null ) {&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; d.selected = 1-d.selected;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; d3.select(this).style("fill", d.selected ? "#52cc52" : "lightgrey");&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var value = d.dimensionid, dim = 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.selectValues(dim, [value], true);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; } &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 18:29:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750428#M2339</guid>
      <dc:creator>yblake</dc:creator>
      <dc:date>2014-11-25T18:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750429#M2340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning Francesco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were you able to contribute an upgrade to &lt;A href="https://community.qlik.com/qlik-users/23711"&gt;Brian Munz&lt;/A&gt;'s Zoomable Sunburst extension based on Karl's and/or Yves' tips?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would also be quite interested to see a new version of this nice extension object be made available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Nov 2014 17:12:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750429#M2340</guid>
      <dc:creator>pgrenier</dc:creator>
      <dc:date>2014-11-27T17:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750430#M2341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you,&amp;nbsp; I'll try to integrate and you (all) will be informed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FMa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 11:01:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750430#M2341</guid>
      <dc:creator />
      <dc:date>2014-11-28T11:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750431#M2342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/3629"&gt;yblake&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm following #2 and I didn't quite understand what you meant by this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where would I put this line? D3 data wasn't intuitive enough &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;2) Another way to go is to handle selections with D3.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;add "selected":0 to your D3 data,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;---- This line here&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;add click event handler on your D3 element :&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 17:20:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750431#M2342</guid>
      <dc:creator>balexbyrd</dc:creator>
      <dc:date>2015-09-08T17:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750432#M2343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will find a link to a very simple extension that illustrates this in this thread :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/834201"&gt;selectValues extension API do not unselect last selected value&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The extension and test application can be downloaded from :&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/yblake/d3click" title="https://github.com/yblake/d3click"&gt;yblake/d3click · GitHub&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, as noticed in the thread, there is a bug since Sense 2.0.x using D3 click event when you try to clear the last selected value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this may help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 08:28:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750432#M2343</guid>
      <dc:creator>yblake</dc:creator>
      <dc:date>2015-09-09T08:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750433#M2344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karl,&lt;/P&gt;&lt;P&gt;A small update on the code snippet. In Sense 1.0 'others' (-3) was not selectable in an extension, but from Sense 2.0 it is, so now you could instead do:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14417918023414093 jive_text_macro" jivemacro_uid="_14417918023414093" modifiedtitle="true"&gt;
&lt;P&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;//total (-1) is not selectable&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;if&lt;/SPAN&gt;(&lt;SPAN style="color: #458383;"&gt;dim&lt;/SPAN&gt;.&lt;SPAN style="color: #660e7a; font-weight: bold;"&gt;qElemNumber &lt;/SPAN&gt;!== -&lt;SPAN style="color: #0000ff;"&gt;1&lt;/SPAN&gt;) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #458383;"&gt;html &lt;/SPAN&gt;+= &lt;SPAN style="color: #008000; font-weight: bold;"&gt;"class='selectable' data-value='" &lt;/SPAN&gt;+ &lt;SPAN style="color: #458383;"&gt;dim&lt;/SPAN&gt;.&lt;SPAN style="color: #660e7a; font-weight: bold;"&gt;qElemNumber &lt;/SPAN&gt;+ &lt;SPAN style="color: #008000; font-weight: bold;"&gt;"'"&lt;BR /&gt;&lt;/SPAN&gt;}&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;Erik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Please mark the appropriate replies as correct or helpful so our team and other members know that your question has been answered to your satisfaction.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 09:45:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750433#M2344</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2015-09-09T09:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Make non selectable extension selectable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750434#M2345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same here, others is now select table, so you could do just:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;var dataD3 = qMatrix.map( function(d) {return {&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; // Retrieve needed hypercube data here&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;"dimensionid": d[0].qElemNumber&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;});&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Erik&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Please mark the appropriate replies as correct or helpful so our team and other members know that your question has been answered to your satisfaction.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 09:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Make-non-selectable-extension-selectable/m-p/750434#M2345</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2015-09-09T09:47:56Z</dc:date>
    </item>
  </channel>
</rss>

