<?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>add checkbox in a column  of editable grid</title><link>https://community.appian.com/discussions/f/user-interface/30571/add-checkbox-in-a-column-of-editable-grid</link><description>I want a column in an editable grid where I have checkboxes for every cell in that column. User can select yes or no option</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: add checkbox in a column  of editable grid</title><link>https://community.appian.com/thread/121504?ContentTypeID=1</link><pubDate>Thu, 09 Nov 2023 09:45:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:03c4346a-5479-4c50-afed-53b5d8d4ed7d</guid><dc:creator>vikashk7323</dc:creator><description>&lt;p&gt;Hi, you can configure the grid like below&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!data:{
    a!map(
      name: null, tier: null
    )
  },
  {
  a!gridLayout(
    label: &amp;quot;Editable Grid&amp;quot;,
    labelPosition: &amp;quot;ABOVE&amp;quot;,
    headerCells: {
      a!gridLayoutHeaderCell(label: &amp;quot;Name&amp;quot;),
      a!gridLayoutHeaderCell(label: &amp;quot;Choice&amp;quot;)
    },
    columnConfigs: {
      a!gridLayoutColumnConfig(
        width: &amp;quot;NARROW&amp;quot;
      )
    },
    rows: {
      a!forEach(
        items: local!data,
        expression: a!gridRowLayout(
          contents: {
            a!textField(
              label: &amp;quot;Name&amp;quot;,
              value: fv!item.name,
              saveInto: fv!item.name
            ),
            a!checkboxField(
              label: &amp;quot;Check box&amp;quot;,
              value: fv!item.tier,
              saveInto: fv!item.tier,
              choiceLabels: {1,2,3},
              choiceValues: {1,2,3}
            )
          }
          
        )
      )
    },
    addRowLink: a!dynamicLink(
      label: &amp;quot;Add New Customer&amp;quot;,
      saveInto: {
        a!save(local!data,
        append(local!data, local!data))
      }
    ),
    selectionSaveInto: {},
    validations: {},
    shadeAlternateRows: true
  )
}
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: add checkbox in a column  of editable grid</title><link>https://community.appian.com/thread/121494?ContentTypeID=1</link><pubDate>Thu, 09 Nov 2023 06:47:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:309b91b3-767e-4c0e-a440-96f8a089562b</guid><dc:creator>Sri Ram Kaja</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/vijayp6380"&gt;vijayp6380&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can configure the checkbox or dropdown in the same way you configured the text field. Please check&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/23.3/recipe-configure-a-boolean-checkbox.html"&gt;here&lt;/a&gt;&amp;nbsp;to know how to configure checkbox&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: add checkbox in a column  of editable grid</title><link>https://community.appian.com/thread/121493?ContentTypeID=1</link><pubDate>Thu, 09 Nov 2023 06:41:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c6bcec53-4b5a-4913-a617-5c0444c1359d</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;&lt;a id="" href="https://docs.appian.com/suite/help/23.3/recipe-configure-a-boolean-checkbox.html"&gt;https://docs.appian.com/suite/help/23.3/recipe-configure-a-boolean-checkbox.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: add checkbox in a column  of editable grid</title><link>https://community.appian.com/thread/121490?ContentTypeID=1</link><pubDate>Thu, 09 Nov 2023 06:36:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8eedfb34-a8f6-47f2-9327-8250dd7c5679</guid><dc:creator>vijayp6380</dc:creator><description>&lt;p&gt;Thank yo for the reference.&lt;/p&gt;
&lt;p&gt;But, let&amp;#39;s say I have a column called &amp;quot;IsActive&amp;quot; in the editable grid. I have to provide 2 options : true and false to the end user so that they can select whether each user in the grid is active or not.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: add checkbox in a column  of editable grid</title><link>https://community.appian.com/thread/121489?ContentTypeID=1</link><pubDate>Thu, 09 Nov 2023 06:29:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:36c83363-945f-47ac-ae18-c24b0f74bf54</guid><dc:creator>Sri Ram Kaja</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/vijayp6380"&gt;vijayp6380&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;Please go through this interface recipie&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/23.3/recipe-use-selection-for-bulk-actions-in-an-inline-editable-grid.html"&gt;here&lt;/a&gt;. You can do the changes necessary for your requirement&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>