<?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: Column filter above a col list box in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477667#M72201</link>
    <description>&lt;P&gt;Thanks for the quick reply Jim,&lt;/P&gt;&lt;P&gt;Close but not quite, looking for this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shampton82_0-1649456109906.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41632i9A8A4205161F605B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="shampton82_0-1649456109906.png" alt="shampton82_0-1649456109906.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Apr 2022 22:19:26 GMT</pubDate>
    <dc:creator>shampton82</dc:creator>
    <dc:date>2022-04-08T22:19:26Z</dc:date>
    <item>
      <title>Column filter above a col list box</title>
      <link>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477613#M72189</link>
      <description>&lt;P&gt;Is there a way to get the column filter to show up above a col list box?&amp;nbsp; Right now I have to use the Column Dialog window to get it which is annoying as it is not as nice to work with as a new window().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any advice!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:56:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477613#M72189</guid>
      <dc:creator>shampton82</dc:creator>
      <dc:date>2023-06-09T16:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Column filter above a col list box</title>
      <link>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477654#M72193</link>
      <description>&lt;P&gt;is this what you are talking about&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1649453159672.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41627iC78FFD8C4A6991FB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1649453159672.png" alt="txnelson_0-1649453159672.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This example comes from the scripting guide for Col List Box()&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Col List Box Example",
	Col List Box( all, width( 250 ), maxSelected( 1 ) ),
	fontobj = lb = Col List Box()
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Apr 2022 21:27:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477654#M72193</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-04-08T21:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Column filter above a col list box</title>
      <link>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477667#M72201</link>
      <description>&lt;P&gt;Thanks for the quick reply Jim,&lt;/P&gt;&lt;P&gt;Close but not quite, looking for this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shampton82_0-1649456109906.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41632i9A8A4205161F605B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="shampton82_0-1649456109906.png" alt="shampton82_0-1649456109906.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 22:19:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477667#M72201</guid>
      <dc:creator>shampton82</dc:creator>
      <dc:date>2022-04-08T22:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Column filter above a col list box</title>
      <link>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477670#M72204</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16391"&gt;@shampton82&lt;/a&gt;&amp;nbsp;- the box shown above is a FilterColSelector:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/PopAgeGroup.jmp" );
New Window( "Filter Col Selector Example",
	Filter Col Selector( width( 250 ) )
);
&lt;/PRE&gt;
&lt;P&gt;The filter field will only show initially if there are more columns than can be shown.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 23:45:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477670#M72204</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2022-04-08T23:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Column filter above a col list box</title>
      <link>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477690#M72205</link>
      <description>&lt;P&gt;That does not work for JMP14 (the filter is hidden by default for JMP14).&amp;nbsp; You can manually toggle the filter by using the display tree:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/PopAgeGroup.jmp" );
New Window( "Filter Col Selector Example",
	fcs = Filter Col Selector( width( 250 ) )
);
fcs[If Box( 1 )] &amp;lt;&amp;lt; Set( 1 )&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Apr 2022 01:37:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477690#M72205</guid>
      <dc:creator>ErraticAttack</dc:creator>
      <dc:date>2022-04-09T01:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Column filter above a col list box</title>
      <link>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477692#M72207</link>
      <description>&lt;P&gt;I have been using similar method as &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26363"&gt;@ErraticAttack&lt;/a&gt; demonstrated to get "col list box" (filter col selector) to easily get filterable column listing.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("",
	flc = Filter Col Selector(dt, nlines(10)),
	((flc &amp;lt;&amp;lt; Parent) &amp;lt;&amp;lt; Xpath("//IfBox")) &amp;lt;&amp;lt; set(1)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Filter col selector can also be used to create "lazy" filterable list to limit selections from columns, by first creating a data table with column names as the possible options&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt_temp = Open("$SAMPLE_DATA/Big Class.jmp", invisible);

dt_filter = dt_temp &amp;lt;&amp;lt; Split(
	output table("filter table"),
	Split By(:name),
	Split(:name),
	Remaining Columns(Drop All),
	Sort by Column Property,
	invisible
);
Close(dt_temp, no save);

nw = New Window("filterable list", &amp;lt;&amp;lt; modal,
	V List Box(
		fcs = Filter Col Selector(dt_filter, nlines(10)),
		((fcs &amp;lt;&amp;lt; Parent) &amp;lt;&amp;lt; Xpath("//IfBox")) &amp;lt;&amp;lt; set(1),
		H List Box(
			Button Box("OK", sel = fcs &amp;lt;&amp;lt; Get selected),
			Button Box("Cancel")
		)
	);
	
);
Close(dt_filter, no save);
show(sel);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Apr 2022 06:31:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477692#M72207</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-04-09T06:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Column filter above a col list box</title>
      <link>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477748#M72220</link>
      <description>Thanks for all the examples!</description>
      <pubDate>Sat, 09 Apr 2022 16:40:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-filter-above-a-col-list-box/m-p/477748#M72220</guid>
      <dc:creator>shampton82</dc:creator>
      <dc:date>2022-04-09T16:40:40Z</dc:date>
    </item>
  </channel>
</rss>

