cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

freeze H List in the report

Buldozer
Level II

Hi community, i am wandering if the following is possible in JSL

I have a V list that includes two columns

1. Filter window in the Data

2. Hlist with many charts

the charts require me to scroll right to review them all

i would like to conitnue to see the filter window even if i scroll far to the right

(sort of like freeze columns in Excel, so the wanted column will be seen all the time)

Is this possible in JSL?

thanks!!!!

This post originally written in German and has been translated for your convenience. When you reply, it will also be translated back to German.

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: freeze H List in the report

You can most likely organize your content in such a way that the filter stays in place. One option could be to wrap your H List box with H Scroll Box

Names Default To Here(1);
New Window("Example",
	Outline Box("Picker",
		H Scroll Box(
			Size(200),
			H List Box(
				H List Box(Text Box("Label:"), Text Edit Box(Char(213))),
				H List Box(Text Box("Label:"), Text Edit Box(Char(213))),
				H List Box(Text Box("Label:"), Text Edit Box(Char(213))),
				H List Box(Text Box("Label:"), Text Edit Box(Char(213))),
				H List Box(Text Box("Label:"), Text Edit Box(Char(213)))
			),
			<
2 REPLIES 2
jthi
Super User

Re: freeze H List in the report

You can most likely organize your content in such a way that the filter stays in place. One option could be to wrap your H List box with H Scroll Box

Names Default To Here(1);
New Window("Example",
	Outline Box("Picker",
		H Scroll Box(
			Size(200),
			H List Box(
				H List Box(Text Box("Label:"), Text Edit Box(Char(213))),
				H List Box(Text Box("Label:"), Text Edit Box(Char(213))),
				H List Box(Text Box("Label:"), Text Edit Box(Char(213))),
				H List Box(Text Box("Label:"), Text Edit Box(Char(213))),
				H List Box(Text Box("Label:"), Text Edit Box(Char(213)))
			),
			<

This post originally written in German and has been translated for your convenience. When you reply, it will also be translated back to German.

Buldozer
Level II

Re: freeze H List in the report

Thanks!!!