<?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>Hi Team, I am facing an issue while using radio buttons in editable gridLay</title><link>https://community.appian.com/discussions/f/user-interface/5653/hi-team-i-am-facing-an-issue-while-using-radio-buttons-in-editable-gridlay</link><description>Hi Team, I am facing an issue while using radio buttons in editable gridLayout. Radio button selections are not getting refreshed, we have tried attached code snippet. As per my observation, when I try to display the local!itemsToken array in From Layout</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Hi Team,&lt;br /&gt;I am facing an issue while using radio buttons in editable gridLay</title><link>https://community.appian.com/thread/21482?ContentTypeID=1</link><pubDate>Mon, 17 Aug 2015 06:20:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:99ee4a1a-be01-4f82-851b-43a3db8953f3</guid><dc:creator>praveenj</dc:creator><description>If the radio button value is part of local!items array (say boolean variable isActive) then you can use something like this below. &lt;br /&gt;    a!radioButtonField(&lt;br /&gt;      label: &amp;quot;select &amp;quot; &amp;amp; ri!index,&lt;br /&gt;      choiceLabels: {&amp;quot;Yes&amp;quot;, &amp;quot;No&amp;quot;},&lt;br /&gt;      choiceValues: {true(), false()},&lt;br /&gt;      value: ri!items[ri!index].isActive,&lt;br /&gt;      saveInto: ri!items[ri!index].isActive&lt;br /&gt;    )&lt;br /&gt;&lt;br /&gt;We can help if you provide more info on what you are trying to achieve.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hi Team,&lt;br /&gt;I am facing an issue while using radio buttons in editable gridLay</title><link>https://community.appian.com/thread/21474?ContentTypeID=1</link><pubDate>Sun, 16 Aug 2015 19:51:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d0688ff6-dde1-429c-bf07-1838fa28639c</guid><dc:creator>Stefan Helzle</dc:creator><description>I think using the itemsToken array does not work that way. What do you intent to do? Using radiobuttons to allow the user to select a single item only? For that you would need a separate boolen array. I have no working code, but this could be a start&lt;br /&gt;&lt;br /&gt;a!radioButtonField(&lt;br /&gt;      label: &amp;quot;select &amp;quot; &amp;amp; ri!index,&lt;br /&gt;      choiceLabels: {&amp;quot;&amp;quot;},&lt;br /&gt;      choiceValues: {true()},&lt;br /&gt;      value: index(ri!selectedBooleanArray, ri!index, false),&lt;br /&gt;      saveInto: {&lt;br /&gt;        a!save(ri!selectedBooleanArray, updatearray({}, ri!index, true)),&lt;br /&gt;      }&lt;br /&gt;    ),&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>