cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • See how to interactively organize and restructure data for analysis. Register for May 29 webinar, 2pm US ET.

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