<?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>Issue with Edit and Delete Row Actions in Editable Grid</title><link>https://community.appian.com/discussions/f/user-interface/40026/issue-with-edit-and-delete-row-actions-in-editable-grid</link><description>I am loading data from an Excel sheet into an Editable Grid. I added Edit and Delete buttons for each row, but the actions are not functioning as expected. Could someone guide me on how to fix this or share the correct approach? 
 I</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Issue with Edit and Delete Row Actions in Editable Grid</title><link>https://community.appian.com/thread/152805?ContentTypeID=1</link><pubDate>Tue, 16 Dec 2025 07:56:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4cbdfe28-3bd1-450c-8544-756929e73a8e</guid><dc:creator>rahulk9545</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1765871503654v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;div&gt;My whole Editable Grid is editable even without an Edit icon, and the Edit/Delete icons are also not displaying.&amp;nbsp;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue with Edit and Delete Row Actions in Editable Grid</title><link>https://community.appian.com/thread/152801?ContentTypeID=1</link><pubDate>Tue, 16 Dec 2025 06:52:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e8227845-c5a3-4d3d-9bb2-767a40b40dd5</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Compact() returns text array but local!readOnly needs integers, breaking delete logic and row indexing.&lt;br /&gt;Replace line 211 with&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!save(
  local!readOnly,
  tointeger(
    reject(
      fn!isnull(_),
      a!forEach(
        items: local!readOnly,
        expression: if(
          fv!item &amp;lt; local!rowIndex,
          fv!item,
          if(fv!item = local!rowIndex, null, fv!item - 1)
        )
      )
    )
  )
)
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Replace line number 157 with&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;not(a!isNullOrEmpty(wherecontains(local!rowIndex, local!readOnly)))&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>