<?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>Just want to open a link in a New tab</title><link>https://community.appian.com/discussions/f/general/30452/just-want-to-open-a-link-in-a-new-tab</link><description>Can we open a dynamic link in a new tab or is there any way to open in new tab</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Just want to open a link in a New tab</title><link>https://community.appian.com/thread/121018?ContentTypeID=1</link><pubDate>Sun, 29 Oct 2023 21:22:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1faddf75-49cb-4472-ba9d-4d2654e6fd34</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Was this reply written by ChatGPT or something?&amp;nbsp; There has never been an &amp;quot;attributes&amp;quot; parameter for a!dynamicLink() and, at the risk of parroting Stefan who&amp;#39;s 100% right, nothing like what was shown here would actually do anything.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Just want to open a link in a New tab</title><link>https://community.appian.com/thread/121009?ContentTypeID=1</link><pubDate>Sat, 28 Oct 2023 07:10:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1793a4ab-c9f4-462f-9572-f2a937d88742</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Sorry to be this direct, but this is complete nonsense!&lt;/p&gt;
&lt;p&gt;The documentation says: &amp;quot;Defines a link that triggers updates to one or more variables. Links can be used in charts, grids, hierarchy browsers, images, link fields, milestones, pickers, and rich text.&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/23.3/Dynamic_Link_Component.html"&gt;https://docs.appian.com/suite/help/23.3/Dynamic_Link_Component.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Back to the initial question. As we just learned, a dynamic link does not navigate the user anywhere. Please help us to understand what you want to achieve, and I am sure we find a good solution for it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Just want to open a link in a New tab</title><link>https://community.appian.com/thread/121007?ContentTypeID=1</link><pubDate>Sat, 28 Oct 2023 02:56:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:329dd223-821f-4423-9f3e-7c74b0e7aaf2</guid><dc:creator>srikanthreddy9369</dc:creator><description>&lt;p&gt;&lt;span&gt;To open a dynamic link in a new tab, you can use the HTML &amp;quot;target&amp;quot; attribute. You would need to modify the code you provided to include this attribute. Here&amp;#39;s how you can do it:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;  label: &amp;quot;Ticket Id&amp;quot;,
  value: a!richTextDisplayField(
    value: a!richTextItem(
      text: fv!row.issueId,
      link: a!dynamicLink(
        saveInto: {
          a!save(local!selectedTicketId, fv!row.issueId),
          a!save(local!showDetailsPage, true()),
          a!save(ri!showLinkedIssues, true()),
          a!save(ri!newShowDetailsPage, false())
        },
        linkStyle: &amp;quot;STANDALONE&amp;quot;,
        attributes: {
          target: &amp;quot;_blank&amp;quot;  /* This opens the link in a new tab */
        }
      )
    )
  )
)
&lt;/pre&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;By adding the &amp;quot;target&amp;quot; attribute with the value &amp;quot;_blank,&amp;quot; the link will open in a new browser tab or window when clicked.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>