<?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>I need to put an edit link besides my textbox as after the click on edit link th</title><link>https://community.appian.com/discussions/f/user-interface/2348/i-need-to-put-an-edit-link-besides-my-textbox-as-after-the-click-on-edit-link-th</link><description>I need to put an edit link besides my textbox as after the click on edit link the textbox should be editable. Please let me know how can this be possible?... OriginalPostID-104352 OriginalPostID-104352</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: I need to put an edit link besides my textbox as after the click on edit link th</title><link>https://community.appian.com/thread/8243?ContentTypeID=1</link><pubDate>Thu, 20 Mar 2014 15:23:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e91bf79f-83e7-4c8c-8b78-cf3284a7947d</guid><dc:creator>Michael Tan</dc:creator><description>Here is a SAIL expression which can achieve this:&lt;br /&gt;&lt;br /&gt;=load(&lt;br /&gt;  local!readOnly: true,&lt;br /&gt;  local!text: &amp;quot;&lt;a href="http://www.google.com"&gt;http://www.google.com&amp;quot;,&lt;/a&gt;&lt;br /&gt;  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;a!formLayout(&lt;br /&gt;    label: &amp;quot;SAIL Example: Toggle Read-Only&amp;quot;,&lt;br /&gt;    firstColumnContents: {&lt;br /&gt;       a!checkboxFieldByIndex(&lt;br /&gt;        label: &amp;quot;Read Only?&amp;quot;,&lt;br /&gt;        choiceLabels: {&amp;quot;&amp;quot;},&lt;br /&gt;        value: local!readOnly,&lt;br /&gt;        saveInto: local!readOnly&lt;br /&gt;      ),&lt;br /&gt;  a!textField(&lt;br /&gt;      label: &amp;quot;Sample Link&amp;quot;,&lt;br /&gt;      readOnly: local!readOnly,&lt;br /&gt;      value: local!text,&lt;br /&gt;      saveInto: local!text&lt;br /&gt;    )&lt;br /&gt;&lt;br /&gt;    },&lt;br /&gt;    buttons: a!buttonLayout(&lt;br /&gt;      primaryButtons: a!buttonWidgetSubmit(label:&amp;quot;Submit&amp;quot;)&lt;br /&gt;    )&lt;br /&gt;  )&lt;br /&gt;&lt;br /&gt;  )&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>