<?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: New Layout Container Flyout Menu in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2412029#M94707</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18235"&gt;@jochem_zw&lt;/a&gt;, and thanks for posting your video which gave me the idea in the first place.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jan 2024 14:28:02 GMT</pubDate>
    <dc:creator>Greg_Oliven</dc:creator>
    <dc:date>2024-01-29T14:28:02Z</dc:date>
    <item>
      <title>New Layout Container Flyout Menu</title>
      <link>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2411567#M94665</link>
      <description>&lt;P&gt;The new layout container provides a cool option for a menu that appears to pop out from the side. I first time I saw this was in a nice post&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18235"&gt;@jochem_zw&lt;/a&gt;&amp;nbsp;made on LinkedIn. Setting out to implement it, I put a button in the upper left corner of my container and had it increment the value assigned to a variable by 1 every time it's clicked:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Greg_Oliven_0-1706321079960.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158481i7CF729F0DDFF63B2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Greg_Oliven_0-1706321079960.png" alt="Greg_Oliven_0-1706321079960.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Then in each of the charts I position underneath my button which I want to be part of my menu, I add this as the show condition:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Greg_Oliven_1-1706321468390.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158482i68A571ED9FF50C4E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Greg_Oliven_1-1706321468390.png" alt="Greg_Oliven_1-1706321468390.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So if the button's variable holds an odd number (which it will every other click), the menu shows. Click again, get an even number, and the menu disappears (the button itself has no show condition - it's always there). This works great, but it has one major liability and I am wondering if anyone has a suggestion for how to overcome it: it's not totally intuitive that to dismiss the menu you have to click the button again. Hitting Escape might feel more intuitive, or just clicking for focus elsewhere on the sheet. Any ideas on how to improve the implementation?&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jan 2024 02:18:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2411567#M94665</guid>
      <dc:creator>Greg_Oliven</dc:creator>
      <dc:date>2024-01-27T02:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: New Layout Container Flyout Menu</title>
      <link>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2411579#M94666</link>
      <description>&lt;P&gt;Hi Greg, I don’t think there is a better solution for this. I would be nice if we had an on hover action, think this would make it a lot easier. About your vMenushow var why not make the action like this: if(vMenushow=1,0,1) so when it is 1 it shows the object.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jan 2024 08:29:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2411579#M94666</guid>
      <dc:creator>jochem_zw</dc:creator>
      <dc:date>2024-01-27T08:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: New Layout Container Flyout Menu</title>
      <link>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2411668#M94673</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;
&lt;P&gt;I usually address this by toggling the button label to inform the user.&amp;nbsp; BTW, a typical expression to toggle the variable state (your button action) would be:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;=not vMenuShow&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Then your button label expression becomes:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;=if(vMenuShow, 'Hide Menu', 'Show Menu')&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;and your chart show condition is simply:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;=vMenuShow&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2024 16:23:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2411668#M94673</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2024-01-28T16:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: New Layout Container Flyout Menu</title>
      <link>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2412029#M94707</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18235"&gt;@jochem_zw&lt;/a&gt;, and thanks for posting your video which gave me the idea in the first place.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 14:28:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2412029#M94707</guid>
      <dc:creator>Greg_Oliven</dc:creator>
      <dc:date>2024-01-29T14:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: New Layout Container Flyout Menu</title>
      <link>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2412030#M94708</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;- much more elegant! And the idea to prompt the user via the button label is a good one, until we get some more web-like hover functionality for this.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 14:29:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/New-Layout-Container-Flyout-Menu/m-p/2412030#M94708</guid>
      <dc:creator>Greg_Oliven</dc:creator>
      <dc:date>2024-01-29T14:29:33Z</dc:date>
    </item>
  </channel>
</rss>

