<?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: Change the data filter display in JMP19 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/971320#M110539</link>
    <description>&lt;P&gt;It looks like the LineupBox has changed to no longer position both of the 'columns' as each of the V List Boxes for the filters, if you run (obj&amp;lt;&amp;lt;report)[LineupBox(2)]&amp;lt;&amp;lt;get script it produces this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Lineup Box(
	V List Box(
		SpacerBox,
		Border Box(
			Border Box(
				V List Box(
					Border Box(
						Tab Page Box(
							Title( "Region (6)" ),
							Closeable(),
							V List Box(
								V List Box(
									If Box( H List Box( FilterFieldBox ) ),
									V List Box( ListBoxBox )
								)
							)
						)
					),
					Border Box(
						Tab Page Box(
							Title( "POP" ),
							Closeable(),
							V List Box(
								Border Box(
									ScaleBox(
										V List Box(
											FrameBox,
											DFIntMinMaxBox(
												NumberEditBox, NumberEditBox
											)
										)
									)
								)
							)
						)
					)
				)
			)
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You would expect both of the 'Border Box' items to be next in the heirachy after the LineUp Box to line up with the 'Cols'.&lt;BR /&gt;&lt;BR /&gt;If you run (obj&amp;lt;&amp;lt;report)[LineupBox(2)]&amp;lt;&amp;lt;get n cols you can see it is set to the value of '2' that you set as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Ben&lt;/P&gt;</description>
    <pubDate>Tue, 15 Sep 2026 12:28:27 GMT</pubDate>
    <dc:creator>Ben_BarrIngh</dc:creator>
    <dc:date>2026-09-15T12:28:27Z</dc:date>
    <item>
      <title>Change the data filter display in JMP19</title>
      <link>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/968681#M110458</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am currently migrating an application from JMP 18 to JMP 19. In the process, I have noticed a change in behavior (JSL) regarding the Data Filter.&lt;/P&gt;
&lt;P&gt;In the application, I create a data filter with many columns (&amp;gt;10). I had gotten into the habit of changing the data filter’s display using the command &amp;lt;&amp;lt; n col(3) to spread my more than 10 filters across 3 columns (less visually cluttered). In JMP18, this worked (see script below).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;JMP18:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SophieCuvillier_0-1788453752082.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/115360i6186FB53E077223C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SophieCuvillier_0-1788453752082.png" alt="SophieCuvillier_0-1788453752082.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;JMP19:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SophieCuvillier_1-1788453790950.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/115361i9F11DBCE1BB99FB9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SophieCuvillier_1-1788453790950.png" alt="SophieCuvillier_1-1788453790950.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In JMP19, it has no effect... Has anyone else encountered this issue and found a workaround? Having the entire data filter displayed vertically is too cumbersome, yet I’d still like to use JMP’s data filter object, which is very convenient for selection.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Cities.jmp" );
obj = dt &amp;lt;&amp;lt;
Data Filter(
	Add Filter(
		columns( :Region, :POP ),
		Where( :Region == {"C", "N"} )
	),
	Mode( Select( 0 ), Show( 0 ), Include( 1 ) )
);

wait(0.1);

 (obj &amp;lt;&amp;lt; report)[Lineup Box( 2 )] &amp;lt;&amp;lt; ncol(2)
;
Try( (obj &amp;lt;&amp;lt; report)[ListBoxBox( 1 )] &amp;lt;&amp;lt; set size( 200, 150 ) );
Try( (obj &amp;lt;&amp;lt; report)[Framebox( 1 )] &amp;lt;&amp;lt; Frame Size( 200, 20 ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;Thanks in advance !&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2026 16:44:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/968681#M110458</guid>
      <dc:creator>SophieCuvillier</dc:creator>
      <dc:date>2026-09-03T16:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Change the data filter display in JMP19</title>
      <link>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/968738#M110459</link>
      <description>&lt;P&gt;There is at least one post in the JMP community regarding this same change -&amp;gt;&amp;nbsp;JMP19 did change display box structure of filters and how the elements are placed within Lineup box. If I remember correctly there are really no good workarounds and I have built my own filters because of that.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2026 17:41:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/968738#M110459</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-09-03T17:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Change the data filter display in JMP19</title>
      <link>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/971179#M110538</link>
      <description>&lt;P&gt;Hello, thank you for your answer, I have thus add a suggestion in the Wishlist&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Data-Filter-allow-specifying-number-of-columns-for-the-filter/idi-p/971167#M8655" target="_blank"&gt;https://community.jmp.com/t5/JMP-Wish-List/Data-Filter-allow-specifying-number-of-columns-for-the-filter/idi-p/971167#M8655&lt;/A&gt;&amp;nbsp;in the mean time&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 07:25:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/971179#M110538</guid>
      <dc:creator>SophieCuvillier</dc:creator>
      <dc:date>2026-09-15T07:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Change the data filter display in JMP19</title>
      <link>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/971320#M110539</link>
      <description>&lt;P&gt;It looks like the LineupBox has changed to no longer position both of the 'columns' as each of the V List Boxes for the filters, if you run (obj&amp;lt;&amp;lt;report)[LineupBox(2)]&amp;lt;&amp;lt;get script it produces this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Lineup Box(
	V List Box(
		SpacerBox,
		Border Box(
			Border Box(
				V List Box(
					Border Box(
						Tab Page Box(
							Title( "Region (6)" ),
							Closeable(),
							V List Box(
								V List Box(
									If Box( H List Box( FilterFieldBox ) ),
									V List Box( ListBoxBox )
								)
							)
						)
					),
					Border Box(
						Tab Page Box(
							Title( "POP" ),
							Closeable(),
							V List Box(
								Border Box(
									ScaleBox(
										V List Box(
											FrameBox,
											DFIntMinMaxBox(
												NumberEditBox, NumberEditBox
											)
										)
									)
								)
							)
						)
					)
				)
			)
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You would expect both of the 'Border Box' items to be next in the heirachy after the LineUp Box to line up with the 'Cols'.&lt;BR /&gt;&lt;BR /&gt;If you run (obj&amp;lt;&amp;lt;report)[LineupBox(2)]&amp;lt;&amp;lt;get n cols you can see it is set to the value of '2' that you set as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Ben&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 12:28:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-the-data-filter-display-in-JMP19/m-p/971320#M110539</guid>
      <dc:creator>Ben_BarrIngh</dc:creator>
      <dc:date>2026-09-15T12:28:27Z</dc:date>
    </item>
  </channel>
</rss>

