<?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>Hyperlinking to open a Interface by Button</title><link>https://community.appian.com/discussions/f/user-interface/36868/hyperlinking-to-open-a-interface-by-button</link><description>I want be hyperlink by button to open a interface of the same project Interface in same tab. Please provide me complete code how to link by one interface Button to open another interface. Thanks &amp;amp; regards</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Hyperlinking to open a Interface by Button</title><link>https://community.appian.com/thread/138961?ContentTypeID=1</link><pubDate>Thu, 01 Aug 2024 07:41:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e6174bf1-0da5-4f24-bf38-1c037c3d2a80</guid><dc:creator>Prasanta Paul</dc:creator><description>&lt;p&gt;You can use card layout and there in the link option you can configure a!safeLink. In that link component you can see the parameter URL. Place your required interface&amp;#39;s url in that option.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hyperlinking to open a Interface by Button</title><link>https://community.appian.com/thread/138899?ContentTypeID=1</link><pubDate>Wed, 31 Jul 2024 10:30:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:283795c5-9e97-482d-ba67-0d2df4b7e67c</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;You can display interfaces on a conditional basis.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!selectedPage:3,
  {
    a!buttonArrayLayout(
      buttons: {
        a!buttonWidget(
          label: &amp;quot;Teachers&amp;quot;,
          value: 1,
          saveInto: local!selectedPage,
          showWhen: not(contains(local!selectedPage,1))
        ),
        a!buttonWidget(
          label: &amp;quot;Student form&amp;quot;,
          value: 2,
          saveInto: local!selectedPage,
          showWhen: not(contains(local!selectedPage,2))
        ),
        a!buttonWidget(
          label: &amp;quot;Back home&amp;quot;,
          value: 3,
          saveInto: local!selectedPage,
          showWhen: not(contains(local!selectedPage,3))
        )
      }
    ),
    choose(
      local!selectedPage,
      a!sectionLayout(
        contents: a!richTextDisplayField(
          label: &amp;quot;Replace this component with your first interface&amp;quot;
        )
      ),
      a!sectionLayout(
        contents: a!richTextDisplayField(
          label: &amp;quot;Replace this component with your Second interface&amp;quot;
        )
      ),
      a!sectionLayout(
        contents: a!richTextDisplayField(
          label: &amp;quot;Replace this component with your Third interface&amp;quot;
        )
      )
    )
  }
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Re-adjust the code according to your requirement. I would ask what does the student for show?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hyperlinking to open a Interface by Button</title><link>https://community.appian.com/thread/138898?ContentTypeID=1</link><pubDate>Wed, 31 Jul 2024 10:15:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3fd73579-b3be-49a0-84f3-fa855796d4bb</guid><dc:creator>farhanalam</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/Buttons.png" /&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have these two button at my interface by which I want hyperlink to open another interface by clicking these button.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hyperlinking to open a Interface by Button</title><link>https://community.appian.com/thread/138897?ContentTypeID=1</link><pubDate>Wed, 31 Jul 2024 10:11:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5cc3bdf5-25d9-460d-b9bd-b11cbfcc62f2</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;You cannot do that using button.&lt;/p&gt;
&lt;p&gt;But what is the interface that you want to open? Is it a record Summary? Below is a code for opening external link. you can replace it with a!recordLink() if you are talking about opening a summary interface.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/*external URL*/
{
  a!cardLayout(
    contents: {
      a!richTextDisplayField(
        labelPosition: &amp;quot;COLLAPSED&amp;quot;,
        value: {
          &amp;quot;Open Link&amp;quot;
        }
      )
    },
    link: a!safeLink(
      label: &amp;quot;Safe Link&amp;quot;,
      uri: &amp;quot;https://community.appian.com/discussions&amp;quot;,
      openLinkIn: &amp;quot;SAME_TAB&amp;quot;
    ),
    height: &amp;quot;AUTO&amp;quot;,
    style: &amp;quot;TRANSPARENT&amp;quot;,
    marginBelow: &amp;quot;STANDARD&amp;quot;
  )
}

/*Record Link*/
{
  a!cardLayout(
    contents: {
      a!richTextDisplayField(
        labelPosition: &amp;quot;COLLAPSED&amp;quot;,
        value: { &amp;quot;Open Link&amp;quot; }
      )
    },
    link: a!recordLink(
      recordType: &amp;quot;Your record Type&amp;quot;,
      identifier: &amp;quot;Primary_key_field&amp;quot;,
      openLinkIn: &amp;quot;SAME_TAB&amp;quot;
    ),
    height: &amp;quot;AUTO&amp;quot;,
    style: &amp;quot;TRANSPARENT&amp;quot;,
    marginBelow: &amp;quot;STANDARD&amp;quot;
  )
}
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hyperlinking to open a Interface by Button</title><link>https://community.appian.com/thread/138895?ContentTypeID=1</link><pubDate>Wed, 31 Jul 2024 09:54:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f07b6bb0-c49f-4bde-aac2-67e164dfc7e5</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Can you describe in more detail what you want to achieve?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>