<?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 move rows to up and down</title><link>https://community.appian.com/discussions/f/general/30392/editable-grid-move-rows-to-up-and-down</link><description>I want to add this (Move Raws Up and Down ) functionality for the editable grid.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Editable Grid move rows to up and down</title><link>https://community.appian.com/thread/120770?ContentTypeID=1</link><pubDate>Fri, 20 Oct 2023 08:51:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:936aa14f-8caf-438c-8adb-6e7ed8a384de</guid><dc:creator>Gabriele Camilli</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;to Move Up:&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!richTextIcon(
                      icon: &amp;quot;arrow-up&amp;quot;,
                      link: a!dynamicLink(
                        saveInto: {
                          a!save(
                            ri!cdt,
                            a!update(
                              ri!cdt,
                              { local!index - 1, local!index },
                              {
                                fv!item,
                                ri!cdt[max(local!index - 1, 1)]
                              }
                            )
                          )
                        }
                      ),
                      showWhen: not(fv!isFirst)
                    )&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;to Move Down:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;                    a!richTextIcon(
                      icon: &amp;quot;arrow-down&amp;quot;,
                      link: a!dynamicLink(
                        saveInto: {
                          a!save(
                            ri!cdt,
                            a!update(
                              ri!cdt,
                              { local!index + 1, local!index },
                              { fv!item, ri!cdt[local!index + 1] }
                            )
                          )
                        }
                      ),
                      showWhen:not(fv!isLast)
                    )&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Editable Grid move rows to up and down</title><link>https://community.appian.com/thread/120769?ContentTypeID=1</link><pubDate>Fri, 20 Oct 2023 08:36:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:606819ab-0b4b-40e6-a90f-8c887d9c6b88</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;OK. And your ask is?&lt;/p&gt;
&lt;p&gt;&lt;a href="https://stackoverflow.com/help/how-to-ask"&gt;https://stackoverflow.com/help/how-to-ask&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://codeblog.jonskeet.uk/2012/11/24/stack-overflow-question-checklist/"&gt;codeblog.jonskeet.uk/.../&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>