<?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>is POP Up possible in Interface</title><link>https://community.appian.com/discussions/f/user-interface/12637/is-pop-up-possible-in-interface</link><description>Hi All, 
 Is there is any possibility for pop up from interface field. 
 I have a requirement, that when I click on link field I should get a pop up. Pop up should contain a form or section. 
 Thanks 
 Pradeep</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: is POP Up possible in Interface</title><link>https://community.appian.com/thread/113888?ContentTypeID=1</link><pubDate>Wed, 07 Jun 2023 12:47:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:45c74acb-9f4f-427b-97fe-af407f471017</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;It&amp;#39;s a 5 year old post.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is POP Up possible in Interface</title><link>https://community.appian.com/thread/113885?ContentTypeID=1</link><pubDate>Wed, 07 Jun 2023 12:40:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67413b51-ca27-415f-a216-8ed024474517</guid><dc:creator>andresmauricioa0001</dc:creator><description>&lt;p&gt;try to use&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;a!recordActionField(&lt;br /&gt; actions: a!recordActionItem(&lt;br /&gt; action: recordType!PF Goal.actions.newGoal&lt;br /&gt; ),&lt;br /&gt; align: &amp;quot;END&amp;quot;&lt;br /&gt; )&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is POP Up possible in Interface</title><link>https://community.appian.com/thread/56475?ContentTypeID=1</link><pubDate>Tue, 12 Jun 2018 05:52:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:aaef3d72-2018-4a66-83c6-2a2ccb2ac153</guid><dc:creator>gurdeeps</dc:creator><description>Hi Pradeep, there is no pop up component in appian but you can go with Ravi&amp;#39;s approach. It should solve your problem.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is POP Up possible in Interface</title><link>https://community.appian.com/thread/56462?ContentTypeID=1</link><pubDate>Mon, 11 Jun 2018 15:08:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:22339a0d-489c-4174-8567-7b8a66f8570f</guid><dc:creator>amitm9</dc:creator><description>There is no Pop-up but workarounds are there as per your requirements, as suggested by others &amp;quot;confirmmessage&amp;quot; on button and &amp;quot;a!startProcessLink&amp;quot;. Thanks&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is POP Up possible in Interface</title><link>https://community.appian.com/thread/56414?ContentTypeID=1</link><pubDate>Mon, 11 Jun 2018 08:55:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bd9562bc-f79f-45e1-8f30-afbfb0362ea8</guid><dc:creator>rommels</dc:creator><description>Hi Pradeep,&lt;br /&gt;
There is no pop up in Appian on click of link, but there is a work around to acheive this functionality&lt;br /&gt;
1 On click of link hide all existing section&lt;br /&gt;
load(&lt;br /&gt;
  local!flag: false(),&lt;br /&gt;
  a!linkField(&lt;br /&gt;
    links: {&lt;br /&gt;
      a!dynamicLink(&lt;br /&gt;
        label: &amp;quot;Link&amp;quot;,&lt;br /&gt;
        value: not(&lt;br /&gt;
          local!flag&lt;br /&gt;
        ),&lt;br /&gt;
        saveInto: local!flag&lt;br /&gt;
      )&lt;br /&gt;
    }&lt;br /&gt;
  ),&lt;br /&gt;
  {&lt;br /&gt;
    if(&lt;br /&gt;
      local!flag = true(),&lt;br /&gt;
      rule!Interface1,&lt;br /&gt;
      rule!Interface2&lt;br /&gt;
    )&lt;br /&gt;
  }&lt;br /&gt;
)&lt;br /&gt;
2 Use a!startProcessLink, it will open an asynchronous process in new tab.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is POP Up possible in Interface</title><link>https://community.appian.com/thread/56410?ContentTypeID=1</link><pubDate>Mon, 11 Jun 2018 07:46:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:684e00a9-1dd8-4baf-9953-86950a903322</guid><dc:creator>Ravi Sam</dc:creator><description>&lt;p&gt;You can use button widget to achieve it (like below)&lt;br /&gt; &lt;br /&gt;a!buttonWidget(&lt;br /&gt;label: &amp;quot;Button&amp;quot;,&lt;br /&gt;confirmheader: &amp;quot;Thanks for clicking&amp;quot;,&lt;br /&gt;confirmmessage: &amp;quot;Click, Okay!&amp;quot;,&lt;br /&gt;saveInto: {},&lt;br /&gt;style: &amp;quot;LINK&amp;quot;,&lt;br /&gt;confirmButtonLabel :&amp;quot;Okay&amp;quot;,&lt;br /&gt;cancelButtonLabel :char(10)&lt;br /&gt;)&lt;/p&gt;
&lt;p&gt;Hope this helps!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is POP Up possible in Interface</title><link>https://community.appian.com/thread/56409?ContentTypeID=1</link><pubDate>Mon, 11 Jun 2018 07:41:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4fce4176-962d-467c-90f3-85db47745980</guid><dc:creator>Sandeep Deshmukh</dc:creator><description>Hi &lt;a href="/members/pradeepg0001"&gt;Pradeep Gudishana&lt;/a&gt; ,&lt;br /&gt;
&lt;br /&gt;
We do not have pop up in Appian. But you can show  new section on click of link with some close button and hide all existing section. It will work like a pop up only. I did same in my current application.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Sandeep&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is POP Up possible in Interface</title><link>https://community.appian.com/thread/56407?ContentTypeID=1</link><pubDate>Mon, 11 Jun 2018 07:12:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6370ebea-c60a-4621-a04f-20f002aa8e62</guid><dc:creator>Vinay Kumar Rai</dc:creator><description>Hi Pradeep,&lt;br /&gt;
&lt;br /&gt;
You can use a!startProcessLink, used to open a new Interface in new TAB&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>