<?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: One click filter? (Like dynamic set of buttons) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502592#M103475</link>
    <description>&lt;P&gt;Hi &lt;BR /&gt;we can create buttons in Qlik that apply selections to a field. These buttons can be styled and customized to look like a "button set." However, as you noted, this approach isn't scalable for large datasets or dynamically changing values because updating the buttons manually is time-consuming and error-prone.&lt;/P&gt;
&lt;P&gt;I think your suggestion is both relevant and practical for improving usability in Qlik!&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jan 2025 08:28:21 GMT</pubDate>
    <dc:creator>diegozecchini</dc:creator>
    <dc:date>2025-01-23T08:28:21Z</dc:date>
    <item>
      <title>One click filter? (Like dynamic set of buttons)</title>
      <link>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502580#M103473</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Is it possible to make the filter pane act like a dynamic set of buttons?&lt;/P&gt;
&lt;P&gt;If there is no current solution to this, it is a suggestion to Qlik which should be relatively easy to implement.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Details:&amp;nbsp;&lt;BR /&gt;As far as I have seen there is no way to tell the filter pane to have single choice and one click. We had a set of buttons initially, because there was a few primary choices. However this doesn't scale, Updating buttons requires a lot of clicking, copying and pasting, and there is a risk to forget one of the updates (either the value chosen or the text shown on the button).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My first assumption was that filter pane should solve this, but it seems this will require two clicks to make a choice. It doesn't seem much but it is double amount of clicks for what is the normal start for most people, so it affects usability in a very core area.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My suggestion is to extend filter pane with a new selection: "Button set", which simply drops the "lock/cancel"-function. A sub set of this could be "single choice" or "toggle".&amp;nbsp;&lt;BR /&gt;The filter pane already works like button set with toggle if I simply ignore the final confirmation, so it shouldn't be too hard to make this work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 08:13:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502580#M103473</guid>
      <dc:creator>oddgeir</dc:creator>
      <dc:date>2025-01-23T08:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: One click filter? (Like dynamic set of buttons)</title>
      <link>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502592#M103475</link>
      <description>&lt;P&gt;Hi &lt;BR /&gt;we can create buttons in Qlik that apply selections to a field. These buttons can be styled and customized to look like a "button set." However, as you noted, this approach isn't scalable for large datasets or dynamically changing values because updating the buttons manually is time-consuming and error-prone.&lt;/P&gt;
&lt;P&gt;I think your suggestion is both relevant and practical for improving usability in Qlik!&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 08:28:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502592#M103475</guid>
      <dc:creator>diegozecchini</dc:creator>
      <dc:date>2025-01-23T08:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: One click filter? (Like dynamic set of buttons)</title>
      <link>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502629#M103482</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/139065"&gt;@oddgeir&lt;/a&gt;&amp;nbsp; ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try the workaround using the variable input&amp;nbsp; and some basic css stylying .&lt;/P&gt;
&lt;P&gt;- Create a variable using the variable editor&amp;nbsp; or load script - (vDimValue )&lt;/P&gt;
&lt;P&gt;- Create a variable input object in the sheet , with variable as vDimValue , 'show as dropdown' and&amp;nbsp; the values as dynamic .&lt;/P&gt;
&lt;P&gt;- use&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;concat({1}distinct [Field1],' |',[Field1])&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;to get the values dynamically assigned to the variable input. This would give you all distinct values for Field1 as dropdown.&lt;/P&gt;
&lt;P&gt;- Update the expression to filter the data set : &lt;STRONG&gt;&lt;EM&gt;sum({&amp;lt;Field1 ={'$(vDimValue)'}&amp;gt;} Income)&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;As the variable values are dynamic , this would work with your data reduction as well .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;css for styling, can be customised.&lt;/P&gt;
&lt;P&gt;.qv-object-qlik-variable-input .qv-inner-object&lt;BR /&gt;{&lt;BR /&gt;background-color : transparent !important;&lt;BR /&gt;flex-direction: row;&lt;BR /&gt;padding: 0px;&lt;BR /&gt;}&lt;BR /&gt;.qv-object-qlik-variable-input .qv-inner-object .lui-select&lt;BR /&gt;{color: #ffffff;&lt;BR /&gt;background-color: #253038;}&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 11:24:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502629#M103482</guid>
      <dc:creator>premacharya0903</dc:creator>
      <dc:date>2025-01-23T11:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: One click filter? (Like dynamic set of buttons)</title>
      <link>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502726#M103496</link>
      <description>&lt;P&gt;I believe the single click option is already available when you uncheck "Show selection toolbar" in the Listbox properties.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rwunderlich_0-1737659286416.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/176824iA94F8A2FD09D4C7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rwunderlich_0-1737659286416.png" alt="rwunderlich_0-1737659286416.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 19:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502726#M103496</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2025-01-23T19:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: One click filter? (Like dynamic set of buttons)</title>
      <link>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502787#M103502</link>
      <description>&lt;P&gt;That seems like excactly what I am looking for. To bad that is not available in my version&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="oddgeir_1-1737701973308.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/176839i8D0C532B0C1A3BD1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="oddgeir_1-1737701973308.png" alt="oddgeir_1-1737701973308.png" /&gt;&lt;/span&gt;&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="oddgeir_0-1737701837150.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/176838i3504831CDFF6A486/image-size/medium?v=v2&amp;amp;px=400" role="button" title="oddgeir_0-1737701837150.png" alt="oddgeir_0-1737701837150.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 06:59:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502787#M103502</guid>
      <dc:creator>oddgeir</dc:creator>
      <dc:date>2025-01-24T06:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: One click filter? (Like dynamic set of buttons)</title>
      <link>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502790#M103504</link>
      <description>&lt;P&gt;Thank you for your suggestion. I'll try to get time to look into this solution some time soon, and se if this solves my way. Right now I just wanted to share what I believe is lack of ways to do this an easy way, and for this time I guess the cost/benefit favours just doing the manual update.&lt;/P&gt;
&lt;P&gt;If I understand your approach correctly this requires me to update&amp;nbsp;&lt;EM&gt;all&amp;nbsp;&lt;/EM&gt;relevant expressions to use alternate set. I'm not sure updating all expressions on all my pages lowers neither effort nor risk. My mail objective was to scale single click selections in a neat and tidy way. By introducing variables, alternate sets and css styling it seems to add some complexity to the matter. I'm not saying it's not a possible way, just that it requires a bit more than a feature selection.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 07:16:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2502790#M103504</guid>
      <dc:creator>oddgeir</dc:creator>
      <dc:date>2025-01-24T07:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: One click filter? (Like dynamic set of buttons)</title>
      <link>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2503127#M103567</link>
      <description>&lt;P&gt;That release will be end-of-support in August of this year, so maybe you can get an upgrade &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 16:23:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/One-click-filter-Like-dynamic-set-of-buttons/m-p/2503127#M103567</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2025-01-27T16:23:33Z</dc:date>
    </item>
  </channel>
</rss>

