<?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>how to show some text along with link in Rich text field display value?</title><link>https://community.appian.com/discussions/f/user-interface/12261/how-to-show-some-text-along-with-link-in-rich-text-field-display-value</link><description>We have requirement like Portal label display value need to convert it into SAIL component. for the richtext field we are using... but how to keep the display value text followed by link.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: how to show some text along with link in Rich text field display value?</title><link>https://community.appian.com/thread/54274?ContentTypeID=1</link><pubDate>Thu, 19 Apr 2018 07:21:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7952c00f-e8c0-4813-a76a-6de3325732ca</guid><dc:creator>ramp</dc:creator><description>Hi Rob,&lt;br /&gt;
&lt;br /&gt;
Thanks for Quick hint. here is the little modified version of the above. is it fine to combined together without using the Side by Side layout. Like&lt;br /&gt;
a!richTextDisplayField(&lt;br /&gt;
  /*label: &amp;quot;Rich Text&amp;quot;,*/&lt;br /&gt;
  /*labelPosition: &amp;quot;ABOVE&amp;quot;,*/&lt;br /&gt;
  value: {&lt;br /&gt;
    a!richTextItem(&lt;br /&gt;
      text: {&lt;br /&gt;
        &amp;quot;For Community access...&amp;quot;,&lt;br /&gt;
        a!richTextItem(&lt;br /&gt;
          text: &amp;quot;Click here:&amp;quot;,&lt;br /&gt;
          link: a!safeLink(&lt;br /&gt;
            label: &amp;quot;community.appian.com&amp;quot;,&lt;br /&gt;
            uri: &amp;quot;&lt;a href="https://community.appian.com/&amp;quot;"&gt;community.appian.com/&amp;quot;&lt;/a&gt;&lt;br /&gt;
          )&lt;br /&gt;
        )&lt;br /&gt;
      }&lt;br /&gt;
    )&lt;br /&gt;
  }&lt;br /&gt;
)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to show some text along with link in Rich text field display value?</title><link>https://community.appian.com/thread/54258?ContentTypeID=1</link><pubDate>Wed, 18 Apr 2018 18:52:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4706d9c9-2f5e-460b-825c-1fac22f70233</guid><dc:creator>Robert Shankin</dc:creator><description>&lt;p&gt;side by side layouts make this easy!&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!sideBySideLayout(
  spacing: &amp;quot;DENSE&amp;quot;,
  items:{
    a!sideBySideItem(
      width: &amp;quot;MINIMIZE&amp;quot;,
      item: a!richTextDisplayField(
        /*label: &amp;quot;Rich Text&amp;quot;,*/
        /*labelPosition: &amp;quot;ABOVE&amp;quot;,*/
        value: {
        a!richTextItem(text:&amp;quot;click here:  &amp;quot;)
        }
      )            
    ),
    a!sideBySideItem(
      width: &amp;quot;MINIMIZE&amp;quot;,
      item:  a!linkField(
        links:{
          a!safeLink(
            label: &amp;quot;community.appian.com&amp;quot;,
            uri: &amp;quot;https://community.appian.com/&amp;quot;
          )
        }
      )           
    )          
  }
)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;This will result as follows:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/13/3326.side_5F00_by_5F00_side.png"&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/3326.side_5F00_by_5F00_side.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>