- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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!!!!
This post originally written in German and has been translated for your convenience. When you reply, it will also be translated back to German.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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)))
),
<
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: freeze H List in the report
Thanks!!!