<?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>Remove text field</title><link>https://community.appian.com/discussions/f/user-interface/11475/remove-text-field</link><description>Hi all, 
 In the interface i&amp;#39;m using button to remove the text field. But it&amp;#39;s not getting can anyone help me out. 
 
 
 Warm Regards 
 Narmada.P</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50563?ContentTypeID=1</link><pubDate>Fri, 01 Dec 2017 15:59:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:60477fc1-9c4c-4b5a-8a28-6c26ba61e050</guid><dc:creator>bhushanc</dc:creator><description>Yup, Totally Agree, you cannot remove a it but instead can hide it.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50541?ContentTypeID=1</link><pubDate>Fri, 01 Dec 2017 09:11:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1c369ff1-bb8c-4755-bbf5-2705012c9b9a</guid><dc:creator>lokeshk</dc:creator><description>instead this use,&lt;br /&gt;
load(&lt;br /&gt;
  local!toHide:true,&lt;br /&gt;
  local!buttonVal,&lt;br /&gt;
  a!formLayout(&lt;br /&gt;
    contents:{&lt;br /&gt;
    a!textField(&lt;br /&gt;
      label:&amp;quot;First Name&amp;quot;,&lt;br /&gt;
      showWhen:if(local!toHide=true,true,false)&lt;br /&gt;
    ),&lt;br /&gt;
    a!buttonLayout(&lt;br /&gt;
      primaryButtons:{&lt;br /&gt;
        a!buttonWidget(&lt;br /&gt;
          label:&amp;quot;Submit&amp;quot;,&lt;br /&gt;
          value:true,&lt;br /&gt;
          saveInto:{&lt;br /&gt;
            local!buttonVal,&lt;br /&gt;
            a!save(&lt;br /&gt;
             local!toHide,&lt;br /&gt;
             false&lt;br /&gt;
            )&lt;br /&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: Remove text field</title><link>https://community.appian.com/thread/50535?ContentTypeID=1</link><pubDate>Fri, 01 Dec 2017 05:03:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:41454303-df8c-467b-8064-ce1139966ac2</guid><dc:creator>Narmada</dc:creator><description>a!formLayout(&lt;br /&gt;
contents: {&lt;br /&gt;
a!textField(&lt;br /&gt;
label: &amp;quot;textfiled&amp;quot;,&lt;br /&gt;
showWhen: not(&lt;br /&gt;
ri!value = true()&lt;br /&gt;
)&lt;br /&gt;
)&lt;br /&gt;
},&lt;br /&gt;
buttons: a!buttonLayout(&lt;br /&gt;
secondaryButtons: a!buttonWidget(&lt;br /&gt;
label: &amp;quot;submit&amp;quot;,&lt;br /&gt;
saveInto: ri!value,&lt;br /&gt;
value: true()&lt;br /&gt;
)&lt;br /&gt;
)&lt;br /&gt;
)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50521?ContentTypeID=1</link><pubDate>Thu, 30 Nov 2017 11:43:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5b98325d-802f-4d05-b9ed-dc5683193b47</guid><dc:creator>yamunar0001</dc:creator><description>Can you please share the code  if it is okay?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50520?ContentTypeID=1</link><pubDate>Thu, 30 Nov 2017 11:33:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2e19969a-e6f2-4b09-ac93-b7d43a9569a6</guid><dc:creator>Narmada</dc:creator><description>Thank you my problem solved&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50519?ContentTypeID=1</link><pubDate>Thu, 30 Nov 2017 11:22:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:98f5e248-03bb-4008-bac8-95126d058822</guid><dc:creator>yamunar0001</dc:creator><description>Hi Narmada,&lt;br /&gt;
As per my understanding, your question is like, click on the button, text component has to hide right ? if it is correct follow the code&lt;br /&gt;
&lt;br /&gt;
a!formLayout(&lt;br /&gt;
  contents: {&lt;br /&gt;
    a!textField(&lt;br /&gt;
      label: &amp;quot;textfiled&amp;quot;,&lt;br /&gt;
      showWhen: not(&lt;br /&gt;
        ri!value = true()&lt;br /&gt;
      )&lt;br /&gt;
    )&lt;br /&gt;
  },&lt;br /&gt;
  buttons: a!buttonLayout(&lt;br /&gt;
    secondaryButtons: a!buttonWidget(&lt;br /&gt;
      label: &amp;quot;submit&amp;quot;,&lt;br /&gt;
      saveInto: ri!value,&lt;br /&gt;
      value: true()&lt;br /&gt;
    )&lt;br /&gt;
  )&lt;br /&gt;
)&lt;br /&gt;
 let me know if you have different scenario.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50518?ContentTypeID=1</link><pubDate>Thu, 30 Nov 2017 11:22:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5656caf8-a3a9-4906-bab9-48099106d4eb</guid><dc:creator>Jayapriya Muthu</dc:creator><description>&lt;p&gt;You can use editable grid for this requirement. Check the attached image&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/13/TextField-Grid.png"&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/TextField-Grid.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50517?ContentTypeID=1</link><pubDate>Thu, 30 Nov 2017 11:15:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3c827de1-24cd-4321-8fc2-fec47119e65a</guid><dc:creator>Narmada</dc:creator><description>a!buttonArrayLayout(&lt;br /&gt;
            a!buttonWidget(&lt;br /&gt;
              label: &amp;quot;Remove&amp;quot;,&lt;br /&gt;
              value: fv!index,&lt;br /&gt;
              saveInto: {&lt;br /&gt;
                a!save(local!records, remove(local!records, fv!index))&lt;br /&gt;
              },&lt;br /&gt;
              showWhen:not( fv!isLast )&lt;br /&gt;
            )&lt;br /&gt;
          )&lt;br /&gt;
&lt;br /&gt;
When i&amp;#39;m using grid,remove button working. But when i&amp;#39;m using foreach loop using index i&amp;#39;m trying to remove text component it is displaying index address on that particular text component.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50515?ContentTypeID=1</link><pubDate>Thu, 30 Nov 2017 10:57:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:87636224-3c09-481b-8b0b-c2236b048f6c</guid><dc:creator>Narmada</dc:creator><description>I just want to remove single Text Component by using button&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Remove text field</title><link>https://community.appian.com/thread/50514?ContentTypeID=1</link><pubDate>Thu, 30 Nov 2017 10:50:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b68468d1-cf02-4715-baed-3f652f2f0abc</guid><dc:creator>Jayapriya Muthu</dc:creator><description>Hi Narmada,&lt;br /&gt;
&lt;br /&gt;
Could you please explain your use case&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>