<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Checkbox inside Hamburger Button</title><link>https://community.appian.com/discussions/f/new-to-appian/21102/checkbox-inside-hamburger-button</link><description>Is it possible to fold options in checkboxField inside Hamburger like button (to have the behavior of dropdown) in Appian?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Checkbox inside Hamburger Button</title><link>https://community.appian.com/thread/82330?ContentTypeID=1</link><pubDate>Fri, 04 Jun 2021 07:25:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:66dc4bd4-0139-4bd5-8d6c-1dbef2cbd140</guid><dc:creator>olalekana0448</dc:creator><description>&lt;p&gt;Thanks a lot, Chris. I will try to implement your suggestions and get back to you. Thank you once again&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Checkbox inside Hamburger Button</title><link>https://community.appian.com/thread/82295?ContentTypeID=1</link><pubDate>Wed, 02 Jun 2021 16:41:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:63c3d975-04fe-41cd-8523-dccbbd5e998f</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;You can combine a!richTextDisplayField() and a!checkboxField() to achieve a similar result, where the checkboxes show under the buttons when clicked.&amp;nbsp; It would require a re-click on the buttons to hide the checkboxes however, vs a javascript type setup where they auto-collapse by clicking elsewhere randomly on the form, or as popups that do not expand the form.&lt;/p&gt;
&lt;p&gt;Some sample code:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="csharp"&gt;a!localVariables(
  local!options: {&amp;quot;Option 1&amp;quot;,&amp;quot;Option 2&amp;quot;,&amp;quot;Option 3&amp;quot;},
  local!data: {
    {visible: false, selected: null},
    {visible: false, selected: null},
    {visible: false, selected: null}
  },
  
  a!forEach(
    items: local!data,
    expression: {
      a!richTextDisplayField(
        labelPosition: &amp;quot;COLLAPSED&amp;quot;,
        value: {
          a!richTextIcon(
            icon: &amp;quot;ellipsis-v&amp;quot;,
            link: a!dynamicLink(
              saveInto: a!save(local!data[fv!index].visible,not(fv!item.visible))
            )
          )
        }
      ),
      a!checkboxField(
        labelPosition: &amp;quot;COLLAPSED&amp;quot;,
        showWhen: fv!item.visible,
        choiceLabels: local!options,
        choiceValues: local!options,
        value: if(
          rule!APN_isEmpty(fv!item.selected),
          null,
          split(fv!item.selected,&amp;quot;;&amp;quot;)
        ),
        saveInto: a!save(local!data[fv!index].selected,joinarray(save!value,&amp;quot;;&amp;quot;))
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>