<?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>Editable Grid</title><link>https://community.appian.com/discussions/f/general/40409/editable-grid</link><description>How to disable all the remaining checkboxes while we select one checkbox in Editable grid ?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Editable Grid</title><link>https://community.appian.com/thread/154560?ContentTypeID=1</link><pubDate>Fri, 08 May 2026 08:49:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2dc6ffa2-fdb6-4112-8784-7e33cc958a1f</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Try this example&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!employees: {
    a!map(id: 1, name: &amp;quot;Ravi&amp;quot;, role: &amp;quot;Developer&amp;quot;),
    a!map(id: 2, name: &amp;quot;Priya&amp;quot;, role: &amp;quot;Tester&amp;quot;),
    a!map(id: 3, name: &amp;quot;Arun&amp;quot;, role: &amp;quot;Manager&amp;quot;)
  },
  local!selectedRow: {},

  a!gridLayout(
    label: &amp;quot;Select Only One Row&amp;quot;,
    headerCells: {
      a!gridLayoutHeaderCell(label: &amp;quot;Name&amp;quot;),
      a!gridLayoutHeaderCell(label: &amp;quot;Role&amp;quot;)
    },
    rows: a!forEach(
      items: local!employees,
      expression: a!gridRowLayout(
        id: fv!item.id,
        contents: {
          a!textField(
            value: fv!item.name,
            readOnly: true
          ),
          a!textField(
            value: fv!item.role,
            readOnly: true
          )
        },
        selectionDisabled: and(
          length(local!selectedRow) &amp;gt; 0,
          not(contains(local!selectedRow, fv!item.id))
        )
      )
    ),
    selectable: true,
    selectionValue: local!selectedRow,
    selectionSaveInto: a!save(local!selectedRow, a!flatten(save!value))
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Editable Grid</title><link>https://community.appian.com/thread/154558?ContentTypeID=1</link><pubDate>Fri, 08 May 2026 07:58:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f76d5b7d-608a-42b3-a249-dccbeb966034</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;With this design if a user selects a checkbox and rest checkboxes are disabled, wont it be an inconvenience that user cannot select another checkbox?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>