<!-- 
RSS generated by JIRA (9.4.2#940002-sha1:46d1a51de284217efdcb32434eab47a99af2938b) at Mon Feb 12 03:51:35 CET 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Magnolia - Issue tracker</title>
    <link>https://jira.magnolia-cms.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-uk</language>    <build-info>
        <version>9.4.2</version>
        <build-number>940002</build-number>
        <build-date>19-01-2023</build-date>
    </build-info>


<item>
            <title>[MAGNOLIA-3986] MgnlDynamicTable move functions</title>
                <link>https://jira.magnolia-cms.com/browse/MAGNOLIA-3986</link>
                <project id="10000" key="MAGNOLIA">Magnolia</project>
                    <description>&lt;p&gt;I have created move functions for the MgnlDynamicTable javascript lib. &lt;br/&gt;
The following functions can be added to /mgnl-resources/js-classes/mgnl/controls/DynamicTable.js&lt;/p&gt;

&lt;p&gt;The functions have been tested on &lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Safari 5.1.2 (Win7x64)&lt;/li&gt;
	&lt;li&gt;FF 10 (Win7x64)&lt;/li&gt;
	&lt;li&gt;Chrome 17.0.963.56 (Win7x64)&lt;/li&gt;
	&lt;li&gt;IE 9 (Win7x64)&lt;/li&gt;
	&lt;li&gt;IE 6 &amp;amp; 7 (WinXP, separate in a VM, not with multipleIE)&lt;/li&gt;
&lt;/ul&gt;



&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;&quot;&gt;&lt;b&gt;DynamicTable.js&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-javascript&quot;&gt;
/* ###################################
### Move an &lt;span class=&quot;code-object&quot;&gt;Object&lt;/span&gt; from one index to another. includes savety checks
################################### */

MgnlDynamicTable.&lt;span class=&quot;code-keyword&quot;&gt;prototype&lt;/span&gt;.move = &lt;span class=&quot;code-keyword&quot;&gt;function&lt;/span&gt; (from, to){
    &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;(from == to || from == &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt; || from == &lt;span class=&quot;code-quote&quot;&gt;&apos;undefined&apos;&lt;/span&gt; || to == &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt; || to == &lt;span class=&quot;code-quote&quot;&gt;&apos;undefined&apos;&lt;/span&gt;) {
        &lt;span class=&quot;code-comment&quot;&gt;//&lt;span class=&quot;code-keyword&quot;&gt;do&lt;/span&gt; nothing 
&lt;/span&gt;    } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (from &amp;lt; to) { &lt;span class=&quot;code-comment&quot;&gt;//move down
&lt;/span&gt;        &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; index = from;
        &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; objectToMove = &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.objects[from];
        &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; to = &lt;span class=&quot;code-object&quot;&gt;Math&lt;/span&gt;.min(to, &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.objects.length-1); &lt;span class=&quot;code-comment&quot;&gt;//safety...
&lt;/span&gt;        &lt;span class=&quot;code-keyword&quot;&gt;while&lt;/span&gt;(index &amp;lt; to) {
            &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; nextIndex = index+1;
            &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; nextObject = &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.objects[nextIndex];
            &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.set(index, nextObject);
            index = nextIndex;
        }
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.set(to, objectToMove);
    } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; { &lt;span class=&quot;code-comment&quot;&gt;//move up
&lt;/span&gt;        &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; index = from;
        &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; objectToMove = &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.objects[from]; 
        &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; to = &lt;span class=&quot;code-object&quot;&gt;Math&lt;/span&gt;.max(to, 0); &lt;span class=&quot;code-comment&quot;&gt;//safety...
&lt;/span&gt;        &lt;span class=&quot;code-keyword&quot;&gt;while&lt;/span&gt;(index &amp;gt; to) {
            &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; nextIndex = index-1;
            &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; nextObject = &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.objects[nextIndex];
            &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.set(index, nextObject);
            index = nextIndex;
        }
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.set(to, objectToMove);
    }
}


/* ###################################
### Move an &lt;span class=&quot;code-object&quot;&gt;Object&lt;/span&gt; up
################################### */

MgnlDynamicTable.&lt;span class=&quot;code-keyword&quot;&gt;prototype&lt;/span&gt;.moveUp = &lt;span class=&quot;code-keyword&quot;&gt;function&lt;/span&gt; (index){
    &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.move(index, index-1); 
}


/* ###################################
### Move an &lt;span class=&quot;code-object&quot;&gt;Object&lt;/span&gt; down
################################### */

MgnlDynamicTable.&lt;span class=&quot;code-keyword&quot;&gt;prototype&lt;/span&gt;.moveDown = &lt;span class=&quot;code-keyword&quot;&gt;function&lt;/span&gt; (index){
    &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.move(index, index+1); 
}

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="23265">MAGNOLIA-3986</key>
            <summary>MgnlDynamicTable move functions</summary>
                <type id="2" iconUrl="https://jira.magnolia-cms.com/secure/viewavatar?size=xsmall&amp;avatarId=10891&amp;avatarType=issuetype">New Feature</type>
                                            <priority id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/priorities/neutral.gif">Neutral</priority>
                        <status id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are not closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="2">Won&apos;t Fix</resolution>
                                        <assignee username="pbaerfuss">Philipp B&#228;rfuss</assignee>
                                    <reporter username="sbaur">Stefan Baur</reporter>
                        <labels>
                    </labels>
                <created>Thu, 1 Mar 2012 02:30:41 +0100</created>
                <updated>Tue, 5 Jan 2016 14:29:18 +0100</updated>
                            <resolved>Tue, 5 Jan 2016 14:29:18 +0100</resolved>
                                    <version>4.4.4</version>
                                                    <component>admininterface</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                    <workratio workratioPercent="0"/>
                                    <progress percentage="0">
                                    <originalProgress>
                                                    <row percentage="100" backgroundColor="#89afd7"/>
                                            </originalProgress>
                                                    <currentProgress>
                                                    <row percentage="0" backgroundColor="#51a825"/>
                                                    <row percentage="100" backgroundColor="#ec8e00"/>
                                            </currentProgress>
                            </progress>
                                    <aggregateprogress percentage="0">
                                    <originalProgress>
                                                    <row percentage="100" backgroundColor="#89afd7"/>
                                            </originalProgress>
                                                    <currentProgress>
                                                    <row percentage="0" backgroundColor="#51a825"/>
                                                    <row percentage="100" backgroundColor="#ec8e00"/>
                                            </currentProgress>
                            </aggregateprogress>
                                    <timeoriginalestimate seconds="60">1m</timeoriginalestimate>
                            <timeestimate seconds="60">1m</timeestimate>
                                        <comments>
                            <comment id="56195" author="sbaur" created="Fri, 18 Jan 2013 11:54:15 +0100"  >&lt;p&gt;Going through my reported tickets...&lt;/p&gt;

&lt;p&gt;I realize this is strategically non-important looking at magnolia 5 evolving. &lt;br/&gt;
So I&apos;m fine this is just closed &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.magnolia-cms.com/images/icons/emoticons/smile.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="118886" author="mmuehlebach" created="Tue, 5 Jan 2016 14:29:18 +0100"  >&lt;p&gt;I&apos;m going to close this to set expectations so the issue doesn&apos;t stay open for years with no updates. If the issue is still relevant please feel free to reopen it or better create a new issue for 5.4.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_14166" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Acceptance criteria</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                                    <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge aui-lozenge-complete" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>Empty</span></span></div>
                        ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10111" key="com.atlassian.jira.toolkit:reporterdomain">
                        <customfieldname>Company</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>namics.com</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10031" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 5 Jan 2016 14:29:18 +0100</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_12730" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_14151" key="com.atlassian.jira.toolkit:message">
                        <customfieldname>Docu info</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10061" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comm is not jira-dev</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10071" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last participant</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>mmuehlebach</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_13136" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            8 years, 6 weeks, 5 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10020" key="com.atlassian.jira.toolkit:attachments">
                        <customfieldname>Number of attachments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10150" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname>Number of comments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>mmuehlebach</customfieldvalue>
            <customfieldvalue>pbaerfuss</customfieldvalue>
            <customfieldvalue>sbaur</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
                        <customfieldname>Patch included</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10100"><![CDATA[Yes]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10833" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i00snz:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10244" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4694</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_14145" key="com.intenso.jira.issue-templates:issue-templates-customfield">
                        <customfieldname>Template</customfieldname>
                        <customfieldvalues>
                            


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_15131" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Time in Discovery</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10032" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_10003" key="com.atlassian.jira.plugin.system.customfieldtypes:multiuserpicker">
                        <customfieldname>Visible to</customfieldname>
                        <customfieldvalues>
                                    <customfieldvalue><![CDATA[andrew@vexeddigital.com]]></customfieldvalue>
        <customfieldvalue><![CDATA[dkummer]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            </customfields>
    </item>
</channel>
</rss>