<?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>One Radio Select</title><link>https://community.appian.com/discussions/f/general/28781/one-radio-select</link><description>I try to selec one radio button with a dinamik link but the value is null in every moment.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: One Radio Select</title><link>https://community.appian.com/thread/113277?ContentTypeID=1</link><pubDate>Thu, 25 May 2023 12:13:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:899a5b8a-838d-44bd-947b-12040feff39f</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;The solution I posted there still works quite nicely &lt;span class="emoticon" data-url="https://community.appian.com/cfs-file/__key/system/emoji/1f937.svg" title="Shrug"&gt;&amp;#x1f937;&lt;/span&gt;&amp;nbsp; The code you&amp;#39;ve pasted here makes fundamental changes to that construct which would prevent it from working in quite the same way.&amp;nbsp; Most notably, the icon for a given row both bases its appearance on, and saves the value of, that row&amp;#39;s identifier - not just a hardcoded &amp;quot;0&amp;quot; or &amp;quot;1&amp;quot; being saved into the row data.&lt;br /&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1685016697238v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll note that saving a value directly into the row data will probably work fine for selecting rows (like you have it), but will NOT be sufficient for making it do a &amp;quot;radio button&amp;quot; style &amp;quot;single select&amp;quot;, i.e. when one row is selected, any other selected row gets de-selected, etc.&amp;nbsp; Using your approach, you&amp;#39;d need to have the saveInto overwrite the &amp;quot;1&amp;quot; value in any other rows while writing a &amp;quot;1&amp;quot; into the current row, for this approach to work.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: One Radio Select</title><link>https://community.appian.com/thread/113272?ContentTypeID=1</link><pubDate>Thu, 25 May 2023 10:15:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c9a2fe0b-adb6-43e9-9732-9b215f5f23a1</guid><dc:creator>sanchitg0002</dc:creator><description>&lt;p&gt;If you are trying to select only a single row then this code differs from the solution Mike gave in the above thread shared by you, change the showWhen condition accordingly.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: One Radio Select</title><link>https://community.appian.com/thread/113271?ContentTypeID=1</link><pubDate>Thu, 25 May 2023 10:09:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a4a91d9e-8868-4459-8a6c-08fcab415546</guid><dc:creator>Andrei Alexandru Mois</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; /*Checkbox*/
                                        a!richTextDisplayField(
                                          value: a!richTextItem(
                                            text: {
                                              a!richTextIcon(
                                                icon: &amp;quot;circle-o&amp;quot;,
                                                link: a!dynamicLink(
                                                  saveInto: {
                                                    a!save(fv!item.notificacion, 1),
                                                    a!save(
                                                      ri!contactos,
                                                      rule!ERYM_ValidarNotificacionContacto(
                                                        listaContactos: ri!contactos,
                                                        idContacto: fv!item.idContacto
                                                      )
                                                    )
                                                  },
                                                  
                                                  
                                                ),
                                                linkStyle: &amp;quot;STANDALONE&amp;quot;,
                                                showWhen: or(
                                                  fv!item.notificacion = 0,
                                                  isnull(fv!item.notificacion)
                                                )
                                              ),
                                              a!richTextIcon(
                                                icon: &amp;quot;dot-circle-o&amp;quot;,
                                                link: a!dynamicLink(
                                                  saveInto: {
                                                    a!save(fv!item.notificacion, 0),
                                                  }
                                                ),
                                                linkStyle: &amp;quot;STANDALONE&amp;quot;,
                                                showWhen: fv!item.notificacion = 1
                                              )
                                            },
                                            size: &amp;quot;MEDIUM&amp;quot;
                                          ),
                                          
                                        ),
                                        
                                        
                                        
/*Expresion Rule*/
a!forEach(
  items: ri!listaContactos,
  expression: if(
    fv!item.idContacto &amp;lt;&amp;gt; ri!idContacto,
    a!update(ri!listaContactos.notificacion, fv!item.idContacto, 1),
    &amp;quot;&amp;quot;
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: One Radio Select</title><link>https://community.appian.com/thread/113270?ContentTypeID=1</link><pubDate>Thu, 25 May 2023 10:03:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d6d22bc6-5aac-416f-b4b5-e68bcbd844f9</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;I am still not clear about the problem. Can you try pasting the code snippet here?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: One Radio Select</title><link>https://community.appian.com/thread/113269?ContentTypeID=1</link><pubDate>Thu, 25 May 2023 09:47:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6a6fa183-bb2d-47ab-9784-85cf4b67eeab</guid><dc:creator>Andrei Alexandru Mois</dc:creator><description>&lt;p&gt;No, this solution do nothing&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: One Radio Select</title><link>https://community.appian.com/thread/113268?ContentTypeID=1</link><pubDate>Thu, 25 May 2023 09:45:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:991c7a89-6652-4ec4-b1ab-7e55c6a50624</guid><dc:creator>Andrei Alexandru Mois</dc:creator><description>&lt;p&gt;No, i try this because i see a example and i try it but i have this problem.&lt;/p&gt;
&lt;p&gt;The expample is this&amp;nbsp;&lt;a href="https://community.appian.com/discussions/f/user-interface/28193/radio-button-in-grid"&gt;community.appian.com/.../radio-button-in-grid&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: One Radio Select</title><link>https://community.appian.com/thread/113265?ContentTypeID=1</link><pubDate>Thu, 25 May 2023 08:57:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:96970472-b326-4a82-8cc8-040083306653</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Is there a specific reason you do not use the selection feature of that grid?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: One Radio Select</title><link>https://community.appian.com/thread/113264?ContentTypeID=1</link><pubDate>Thu, 25 May 2023 08:11:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6066c85a-2ae4-4c42-b752-b0fbebf09d49</guid><dc:creator>sanchitg0002</dc:creator><description>&lt;p&gt;You need to&amp;nbsp;save 1 in fv!item.notificacion in the saveInto of&amp;nbsp;&lt;em&gt;circle-o&lt;/em&gt;&amp;nbsp;a!dynamicLink()&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!save(fv!item.notificacion,1)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>