<?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>Radio Button</title><link>https://community.appian.com/discussions/f/new-to-appian/24087/radio-button</link><description>Hello, 
 I new in appian and a have a trouble with radio button, 
 I have an interface with textfield and rabio button, (name, ID) I need to validate the textfield acccoriding to selecton made in radio button. I mean, If In rabio burron I chosse (name</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Radio Button</title><link>https://community.appian.com/thread/92979?ContentTypeID=1</link><pubDate>Tue, 29 Mar 2022 15:33:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5435c357-b8cd-456a-9f46-e7b930762677</guid><dc:creator>eddym0001</dc:creator><description>&lt;p&gt;Thank, revome is the better solutions&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Button</title><link>https://community.appian.com/thread/92978?ContentTypeID=1</link><pubDate>Tue, 29 Mar 2022 15:31:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bfa98ee9-268d-4ca2-9d6f-46331bb2e417</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Individual options cannot be disabled. Why not just remove them?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Button</title><link>https://community.appian.com/thread/92976?ContentTypeID=1</link><pubDate>Tue, 29 Mar 2022 14:50:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:04e7c11c-1e55-4a93-8646-51bc2d08d3e6</guid><dc:creator>eddym0001</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I have 5 radio button, I need all of them but one of them it has to disable (it &amp;#39;s not work for now), it means that&amp;nbsp; user cannot chosse it, would can I disable one of&amp;nbsp; them, I used the disable checkbox, but all of them are disabled,&lt;/p&gt;
&lt;p&gt;Thank you in advance&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Button</title><link>https://community.appian.com/thread/92854?ContentTypeID=1</link><pubDate>Mon, 28 Mar 2022 11:17:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e6f56222-485c-4c28-b7bf-7227b8b56dfa</guid><dc:creator>eddym0001</dc:creator><description>&lt;p&gt;Thank so much...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Button</title><link>https://community.appian.com/thread/92818?ContentTypeID=1</link><pubDate>Sun, 27 Mar 2022 19:15:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:facfc775-5d89-4b6b-ac17-0daff1bd4f76</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Something like this?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!value,
  local!useName: true,
  {
    a!radioButtonField(
      label: &amp;quot;Radio Buttons&amp;quot;,
      choiceLabels: {&amp;quot;Name&amp;quot;, &amp;quot;ID&amp;quot;},
      choiceValues: {true, false},
      value: local!useName,
      saveInto: local!useName,
    ),
    a!textField(
      label: &amp;quot;Text&amp;quot;,
      value: local!value,
      saveInto: local!value,
      validations: if(
        a!isNotNullOrEmpty(local!value),
        if(
          local!useName,
          if(
            len(stripwith(local!value, &amp;quot;0123456789&amp;quot;)) = len(local!value),
            null,
            &amp;quot;Only characters&amp;quot;
          ),
          if(
            len(stripwith(local!value, &amp;quot;0123456789&amp;quot;)) &amp;lt;&amp;gt; len(local!value),
            null,
            &amp;quot;Only digits&amp;quot;
          )
        ),
        null
      )
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Button</title><link>https://community.appian.com/thread/92817?ContentTypeID=1</link><pubDate>Sun, 27 Mar 2022 15:52:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d7b5d196-48c1-4352-921a-c8d407ef69fe</guid><dc:creator>eddym0001</dc:creator><description>&lt;p&gt;Ans I have the code to do the validations&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>