<?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>Pop-up</title><link>https://community.appian.com/discussions/f/general/31017/pop-up</link><description>How can we achieve this</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Pop-up</title><link>https://community.appian.com/thread/123619?ContentTypeID=1</link><pubDate>Thu, 04 Jan 2024 06:16:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8556c1c5-0f28-49bc-a289-f666622ab1de</guid><dc:creator>antogladvinj3315</dc:creator><description>&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pop-up</title><link>https://community.appian.com/thread/123618?ContentTypeID=1</link><pubDate>Thu, 04 Jan 2024 06:16:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:50598f8f-2b20-4028-acb9-9f4dad22b6b0</guid><dc:creator>antogladvinj3315</dc:creator><description>&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pop-up</title><link>https://community.appian.com/thread/123617?ContentTypeID=1</link><pubDate>Thu, 04 Jan 2024 06:16:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3b1c0c8c-12ea-44b3-85a2-cb5a575306f7</guid><dc:creator>antogladvinj3315</dc:creator><description>&lt;p&gt;Thanks&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pop-up</title><link>https://community.appian.com/thread/123583?ContentTypeID=1</link><pubDate>Wed, 03 Jan 2024 11:02:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2eab6820-f712-482c-9ec9-c865011635c5</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;Hello&amp;nbsp;&lt;span class="user-name"&gt;&lt;a class="internal-link view-user-profile" href="/members/antogladvinj3315"&gt;antogladvinj3315&lt;/a&gt;,&lt;br /&gt;&lt;br /&gt;You cannot have this kind of menu dropdown with overlapping on the content. What is the requirement or what are you planning to use it for?&lt;br /&gt; If you can elaborate a little more on your design requirement may be we can come up with some ideas.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pop-up</title><link>https://community.appian.com/thread/123582?ContentTypeID=1</link><pubDate>Wed, 03 Jan 2024 10:55:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0de3c3fe-8e76-4421-8a43-3e8735abb2f1</guid><dc:creator>aryan</dc:creator><description>&lt;p&gt;You can&amp;nbsp;consider using record action with style &amp;quot;Menu&amp;quot; if it meets your requirement.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/21.4/ux_record_actions.html"&gt;Docs&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pop-up</title><link>https://community.appian.com/thread/123542?ContentTypeID=1</link><pubDate>Mon, 01 Jan 2024 10:35:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:17869116-4c2f-4592-9d2f-7272e68bfc8a</guid><dc:creator>venkatrea696188</dc:creator><description>&lt;p&gt;Here is the Basic template for your requirement , do the necessary changes&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!localVariables(
    local!click: false,
    local!options: {
      &amp;quot;Properties&amp;quot;,
      &amp;quot;Versions&amp;quot;,
      &amp;quot;Rename&amp;quot;,
      &amp;quot;Download&amp;quot;
    },
    a!cardLayout(
      contents: {
        a!buttonArrayLayout(
          buttons: {
            a!buttonWidget(
              icon: &amp;quot;caret-down&amp;quot;,
              iconPosition: &amp;quot;END&amp;quot;,
              label: &amp;quot;MORE&amp;quot;,
              saveInto: a!save(local!click,not(true)),
              style: &amp;quot;OUTLINE&amp;quot;
            )
          },
          align: &amp;quot;START&amp;quot;,
          marginBelow: &amp;quot;NONE&amp;quot;
        ),
       a!cardLayout( contents: 
         a!forEach(
          items: local!options,
          expression: a!richTextDisplayField(
            value: a!richTextItem(
              text: fv!item,
              link: a!dynamicLink()
            )
          )
        ))
      },
      height: &amp;quot;AUTO&amp;quot;,
      style: &amp;quot;TRANSPARENT&amp;quot;,
      marginBelow: &amp;quot;STANDARD&amp;quot;
    )
  )
}&lt;/pre&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;and one more thing POP UP is not possible for now in appian instead use this &lt;a id="" href="https://appian.rocks/2023/08/14/overlapping-card-layouts/"&gt;https://appian.rocks/2023/08/14/overlapping-card-layouts/&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>