<?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 Filters Applied but not Appearing in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Filters-Applied-but-not-Appearing/m-p/1557176#M40562</link>
    <description>&lt;P&gt;Wondering if this is another bug with the November 2018 release.&amp;nbsp; This appears to happen randomly but when I apply filters on a sheet the filter selection is not appearing in the filter bar at the top of the sheet.&amp;nbsp; This means there is no way for me to clear a filter without having to close the browser tab and reopen the application.&amp;nbsp; The number of filters selected does not appear to impact this and selecting 1 or 5 different filters produces the same issue.&amp;nbsp; I tried closing the clearing the cache and closing the browser but that did not help.&amp;nbsp; This is with Chrome.&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 06:19:25 GMT</pubDate>
    <dc:creator>bbergstrom</dc:creator>
    <dc:date>2024-11-16T06:19:25Z</dc:date>
    <item>
      <title>Filters Applied but not Appearing</title>
      <link>https://community.qlik.com/t5/App-Development/Filters-Applied-but-not-Appearing/m-p/1557176#M40562</link>
      <description>&lt;P&gt;Wondering if this is another bug with the November 2018 release.&amp;nbsp; This appears to happen randomly but when I apply filters on a sheet the filter selection is not appearing in the filter bar at the top of the sheet.&amp;nbsp; This means there is no way for me to clear a filter without having to close the browser tab and reopen the application.&amp;nbsp; The number of filters selected does not appear to impact this and selecting 1 or 5 different filters produces the same issue.&amp;nbsp; I tried closing the clearing the cache and closing the browser but that did not help.&amp;nbsp; This is with Chrome.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:19:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filters-Applied-but-not-Appearing/m-p/1557176#M40562</guid>
      <dc:creator>bbergstrom</dc:creator>
      <dc:date>2024-11-16T06:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Filters Applied but not Appearing</title>
      <link>https://community.qlik.com/t5/App-Development/Filters-Applied-but-not-Appearing/m-p/2120005#M91230</link>
      <description>&lt;P&gt;Have someone solve this issues in the past?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 13:15:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filters-Applied-but-not-Appearing/m-p/2120005#M91230</guid>
      <dc:creator>tnunes</dc:creator>
      <dc:date>2023-09-19T13:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Filters Applied but not Appearing</title>
      <link>https://community.qlik.com/t5/App-Development/Filters-Applied-but-not-Appearing/m-p/2120092#M91234</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/34060"&gt;@bbergstrom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;check if you hace the following in your script&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;set HidePrefix='_'&amp;nbsp;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://help.qlik.com/en-US/sense/May2023/Subsystems/Hub/Content/Sense_Hub/Scripting/SystemVariables/HidePrefix.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/May2023/Subsystems/Hub/Content/Sense_Hub/Scripting/SystemVariables/HidePrefix.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;in this case, all fields that begin with '_' will not be visible, can be used but not visible.&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;set HidePrefix='_';&lt;BR /&gt;&lt;BR /&gt;LOAD * inline [&lt;BR /&gt;_Product, Store, difference&lt;BR /&gt;productA,StoreA,0&lt;BR /&gt;productA,StoreB,-500&lt;BR /&gt;productA,StoreC,100&lt;BR /&gt;productB,StoreC,-700&lt;BR /&gt;productB,StoreC,-100&lt;BR /&gt;productC,StoreA,200&lt;BR /&gt;];&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_0-1695141848462.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/116603iF0B4523C666649B4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_0-1695141848462.png" alt="RafaelBarrios_0-1695141848462.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if filter by product, the selection will not be visible and i will need to use the global clear to drop the selection&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RafaelBarrios_1-1695141924608.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/116604i33215A2C7B656DC1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RafaelBarrios_1-1695141924608.png" alt="RafaelBarrios_1-1695141924608.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;off course, different version, but clear button should be there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;help users find answers! Don't forget to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#993366"&gt;mark a solution&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;that worked for you &amp;amp; to smash the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#339966"&gt;like button&lt;/FONT&gt;!&amp;nbsp;&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 16:47:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filters-Applied-but-not-Appearing/m-p/2120092#M91234</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2023-09-19T16:47:40Z</dc:date>
    </item>
  </channel>
</rss>

