<?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 there any way to append a dynamic link to a text box?</title><link>https://community.appian.com/discussions/f/user-interface/30647/is-there-any-way-to-append-a-dynamic-link-to-a-text-box</link><description>There any way to append a dynamic link to a text field? For example, in a Text field with read only mode that contains a lot of characters. I want to truncate the characters and add a link after it that says &amp;quot;Expand&amp;quot; or &amp;quot;Read More&amp;quot;, If they click on it</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Is there any way to append a dynamic link to a text box?</title><link>https://community.appian.com/thread/121852?ContentTypeID=1</link><pubDate>Fri, 17 Nov 2023 07:30:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cdc1ff97-c7ce-4e3d-85c4-43cfaf63b237</guid><dc:creator>Rishu Kumar Gupta</dc:creator><description>&lt;p&gt;Thankyou it&amp;#39;s working&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to append a dynamic link to a text box?</title><link>https://community.appian.com/thread/121851?ContentTypeID=1</link><pubDate>Fri, 17 Nov 2023 07:26:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:466a315e-2bbd-4a74-8f44-796930dcb77e</guid><dc:creator>nasirs4970</dc:creator><description>&lt;p&gt;can you please explain so that I can correct it&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to append a dynamic link to a text box?</title><link>https://community.appian.com/thread/121850?ContentTypeID=1</link><pubDate>Fri, 17 Nov 2023 07:07:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c9387e96-9810-4c44-8d92-9991a5729d5e</guid><dc:creator>Sri Ram Kaja</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/rishukumarg1965"&gt;Rishu Kumar Gupta&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;You cannot add a dynamic link to text field. Thats why use rich text display field and specify label and label position. it will act as text field in readonly mode.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to append a dynamic link to a text box?</title><link>https://community.appian.com/thread/121849?ContentTypeID=1</link><pubDate>Fri, 17 Nov 2023 06:59:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:93db0825-21fa-4a55-a645-a79906178e88</guid><dc:creator>Rishu Kumar Gupta</dc:creator><description>&lt;p&gt;I try above code but it&amp;#39;s not work&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to append a dynamic link to a text box?</title><link>https://community.appian.com/thread/121848?ContentTypeID=1</link><pubDate>Fri, 17 Nov 2023 06:59:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0c6f6d48-ad54-4872-b63c-c37983c39301</guid><dc:creator>Rishu Kumar Gupta</dc:creator><description>&lt;p&gt;Above pattern are related to a!gridfield but i want same scenario with the text field with read only mode.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to append a dynamic link to a text box?</title><link>https://community.appian.com/thread/121847?ContentTypeID=1</link><pubDate>Fri, 17 Nov 2023 06:54:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c434dd7d-d459-41b2-b1b3-a0f1c7fcc2c5</guid><dc:creator>nasirs4970</dc:creator><description>&lt;p&gt;Hii&amp;nbsp;&lt;a class="internal-link view-user-profile" href="/members/rishukumarg1965"&gt;rishukumarg1965&lt;/a&gt;,&lt;br /&gt;As of my knowledge, you can not append a dynamic link to a text field but you can achieve it by using&amp;nbsp;the richTextDisplay Field, hope this will help you&lt;br /&gt;Thankyou&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!TextlengthToshow:10,
  local!a:&amp;quot;jsvsbvjsbvjsbvl  visjdvidsbvlsad dsfdf n dvkmsdvsdkjv dsv dsvdsvn&amp;quot;,
  local!show:len(local!a)&amp;gt;local!TextlengthToshow,
  {
  a!richTextDisplayField(
    value: {
      a!richTextItem(
        text: if(
          local!show,
          left(local!a,local!TextlengthToshow),
          local!a
        )
      ),
      a!richTextItem(
        text: if(
          local!show,
          &amp;quot; More&amp;quot;,
          &amp;quot; Less&amp;quot;
          ),
        link: a!dynamicLink(
          value: not(local!show),
          saveInto: local!show
        )
      )
    }
  )
}
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is there any way to append a dynamic link to a text box?</title><link>https://community.appian.com/thread/121846?ContentTypeID=1</link><pubDate>Fri, 17 Nov 2023 06:43:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:142f3b79-9804-4143-b25d-18f251729e32</guid><dc:creator>Sri Ram Kaja</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/rishukumarg1965"&gt;Rishu Kumar Gupta&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;Please go through this pattern link&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/23.4/more-less.html"&gt;here&lt;/a&gt;. Its already there in pattern&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>