<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Re-ordering the script list saved to a Data Table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/48531#M27605</link>
    <description>&lt;P&gt;I am running JMP 13.2.1 on 64bit windows and it works fine for me.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2017 01:14:01 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2017-12-13T01:14:01Z</dc:date>
    <item>
      <title>Re-ordering the script list saved to a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/42522#M24700</link>
      <description>&lt;P&gt;I have created a set of scripts for a given data table and I would now like to "re-order" the scripts as they appear in the top left area of the Data Table view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't seem to find anything on the forums or in the Help section to address this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically the scripts are listed in the order they were created/saved.&amp;nbsp; Is there a method for sorting/adjusting the list after creation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for any assistance.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2017 01:06:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/42522#M24700</guid>
      <dc:creator>DVLuna</dc:creator>
      <dc:date>2017-07-26T01:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering the script list saved to a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/42523#M24701</link>
      <description>&lt;P&gt;I am not aware of any simple way to reorder the Table Scripts. &amp;nbsp;However, &amp;nbsp;below is a simple script I put together that will alphabetically sort the scripts in a given data table.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\big class.jmp" );

// Get the list of scripts
names = dt &amp;lt;&amp;lt; Get Table Script Names;

// Setup a list to sort alphabetically
namestosort = names;
Sort List Into( namestosort );

// Pull into a list all of the scripts
dt &amp;lt;&amp;lt; Select Properties( names );
proplist = dt &amp;lt;&amp;lt; Get Selected Properties();

// Pass through the sorted list, deleting each script and
// then resaving it 
For( i = 1, i &amp;lt;= N Items( names ), i++,
	dt &amp;lt;&amp;lt; delete Table Property( namestosort[i] );
	Eval( Parse( "dt&amp;lt;&amp;lt;" || Char( proplist[Loc( names, namestosort[i] )] ) ) );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Jul 2017 02:39:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/42523#M24701</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-07-26T02:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering the script list saved to a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/42527#M24702</link>
      <description>&lt;P&gt;Interactively in JMP you have drag and drop the table scripts to re-order them. &amp;nbsp;YOu have to do a long-click then drag otherwise the drag movement will simply select multiple scripts.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="reorder-jsl.gif" style="width: 204px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6967i3C51016CB7302B2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="reorder-jsl.gif" alt="reorder-jsl.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2017 08:49:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/42527#M24702</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2017-07-26T08:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering the script list saved to a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/42531#M24704</link>
      <description>&lt;P&gt;David,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is exactly what I was trying to figure out!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perfect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2017 09:16:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/42531#M24704</guid>
      <dc:creator>DVLuna</dc:creator>
      <dc:date>2017-07-26T09:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering the script list saved to a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/48530#M27604</link>
      <description>&lt;P&gt;I don't see this working in JMP 13.2.1 (64 bit)&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 00:12:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/48530#M27604</guid>
      <dc:creator>wis</dc:creator>
      <dc:date>2017-12-13T00:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering the script list saved to a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/48531#M27605</link>
      <description>&lt;P&gt;I am running JMP 13.2.1 on 64bit windows and it works fine for me.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 01:14:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/48531#M27605</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-12-13T01:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering the script list saved to a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/48556#M27616</link>
      <description>&lt;P&gt;Well, for whatever reason, it decided to work this morning.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 16:48:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Re-ordering-the-script-list-saved-to-a-Data-Table/m-p/48556#M27616</guid>
      <dc:creator>wis</dc:creator>
      <dc:date>2017-12-13T16:48:32Z</dc:date>
    </item>
  </channel>
</rss>

