<?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: Show/Hide objects using buttons in the Qlik sense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537354#M108798</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/125565"&gt;@Rsaiq&lt;/a&gt;&amp;nbsp; , You can do it with the help of steps shared by&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/205887"&gt;@N30fyte&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;With the help of Layout container.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Nov 2025 18:09:24 GMT</pubDate>
    <dc:creator>Amit_Prajapati</dc:creator>
    <dc:date>2025-11-26T18:09:24Z</dc:date>
    <item>
      <title>Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537321#M108792</link>
      <description>&lt;P&gt;I have a sheet in a Qlik Sense app that contains KPIs, text objects, tables, and a button labeled &lt;STRONG&gt;"New Data."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I have added navigation to the button so that when a user clicks &lt;STRONG&gt;"New Data,"&lt;/STRONG&gt; it navigates to new sheet that contains a straight table. (This is working fine.)&lt;/P&gt;&lt;P&gt;Now, my requirement is: instead of navigating to a new sheet, can we hide all the objects on the first sheet (such as KPIs, text objects, tables, etc.) and display the straight table that is currently on the new sheet?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 14:17:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537321#M108792</guid>
      <dc:creator>Rsaiq</dc:creator>
      <dc:date>2025-11-26T14:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537322#M108793</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/125565"&gt;@Rsaiq&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the only way to do this is with the Layout Container. You can find this object in Custom Objects -&amp;gt; Qlik Dashboard bundle.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There, you can put different charts and master items ones over the others and show or hide them through the Show Condition. And obviously, the Show Condition can be managed with a button using variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if you have any doubt but I think that, if you can find this object, it is easy to understand how it works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind Regards&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 14:25:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537322#M108793</guid>
      <dc:creator>Daniel_Castella</dc:creator>
      <dc:date>2025-11-26T14:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537341#M108795</link>
      <description>&lt;P&gt;First create a variable to toggle display/hide. I called mine &lt;STRONG&gt;vShowStraightTable&lt;/STRONG&gt;. Set its initial value to &lt;STRONG&gt;1&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Create a button that toggles the value of this variable between 1 and 0: the button action is &lt;STRONG&gt;Set variable value&lt;/STRONG&gt;, the Variable is &lt;STRONG&gt;vShowStraightTable&lt;/STRONG&gt;, the Value is&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;if(vShowStraightTable=1,0,1)&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Create a layout container and drag all your design elements including the straight table into it. For the text/KPIs/tables etc, set the Show condition to &lt;STRONG&gt;vShowStraightTable = 0&lt;/STRONG&gt;. For the straight table, set the Show condition to &lt;STRONG&gt;vShowStraightTable = 1&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Adjust the area of the layout container to fit your sheet, and lay out the various elements as desired.&lt;/P&gt;&lt;P&gt;Click the button to switch the display.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 15:38:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537341#M108795</guid>
      <dc:creator>N30fyte</dc:creator>
      <dc:date>2025-11-26T15:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537354#M108798</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/125565"&gt;@Rsaiq&lt;/a&gt;&amp;nbsp; , You can do it with the help of steps shared by&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/205887"&gt;@N30fyte&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;With the help of Layout container.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 18:09:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537354#M108798</guid>
      <dc:creator>Amit_Prajapati</dc:creator>
      <dc:date>2025-11-26T18:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537422#M108817</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/205887"&gt;@N30fyte&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thanks for you response.&lt;BR /&gt;&lt;BR /&gt;I created a custom design for the first sheet, similar to the attached sample.If I add all the objects into a container, they will not appear as I designed; instead, they will appear in a tabbed format. That is my concern.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;For example, in Sheet 1 (as shown in the attached sample), I have 7 text and image objects, 7 KPIs at the top, followed by 2 more text and image objects, 7 buttons and then 4 straight tables.&lt;BR /&gt;In Sheet 2, I have only a straight table.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;My requirement is that when the user clicks on the Sales button, all the objects in Sheet 1 (as shown in the attached sample) should disappear, and the straight table from Sheet 2 should appear—so that I can have only one sheet.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 12:31:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537422#M108817</guid>
      <dc:creator>Rsaiq</dc:creator>
      <dc:date>2025-11-27T12:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537423#M108818</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/342059"&gt;@Daniel_Castella&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thank you for your response.&lt;BR /&gt;&lt;BR /&gt;I found Layout Container, am working on it.&lt;BR /&gt;&lt;BR /&gt;I will post queries and if i have any issues, it will be very helpful for your help.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 12:38:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537423#M108818</guid>
      <dc:creator>Rsaiq</dc:creator>
      <dc:date>2025-11-27T12:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537425#M108819</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/125565"&gt;@Rsaiq&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try it with a Layout Container (from Custom Objects - Qlik Dashboard Bundle). This gives you the freedom to adjust the size and alignment of the individual charts and tables within it. A Tabbed Container won't do the job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;N&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 12:48:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2537425#M108819</guid>
      <dc:creator>N30fyte</dc:creator>
      <dc:date>2025-11-27T12:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2544351#M109669</link>
      <description>&lt;P&gt;Could you show an example or a screenshot, plz? I could not find a place where such a show/hide condition can be set in an layout container. Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 10:47:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2544351#M109669</guid>
      <dc:creator>laacib</dc:creator>
      <dc:date>2026-03-09T10:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2544356#M109671</link>
      <description>&lt;P&gt;Click the Layout Container.&lt;/P&gt;&lt;P&gt;Under Content, expand the item that you want to show/hide. (Don't edit its properties.)&lt;/P&gt;&lt;P&gt;Type the Show Condition in the box. (Here, the button will be displayed if if the variable vButtonSwitcher is set to 1 and hidden if it is anything else.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="layout container.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/187204iD287904823BDA5A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="layout container.png" alt="layout container.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 11:27:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2544356#M109671</guid>
      <dc:creator>N30fyte</dc:creator>
      <dc:date>2026-03-09T11:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide objects using buttons in the Qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2544360#M109673</link>
      <description>&lt;P&gt;Yes &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It was in front of me all the time but I looked somewhere else. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 11:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Hide-objects-using-buttons-in-the-Qlik-sense/m-p/2544360#M109673</guid>
      <dc:creator>laacib</dc:creator>
      <dc:date>2026-03-09T11:45:42Z</dc:date>
    </item>
  </channel>
</rss>

