cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. ET on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Buldozer
Level II

freeze H List in the report

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!!!!

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)))
			),
			<<Set Auto Stretching(1, 1)
		)
	)
);

jthi_0-1713376531437.png

 

-Jarmo

View solution in original post

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)))
			),
			<<Set Auto Stretching(1, 1)
		)
	)
);

jthi_0-1713376531437.png

 

-Jarmo
Buldozer
Level II

Re: freeze H List in the report

Thanks!!!

Recommended Articles