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!!!!
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)
)
)
);
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)
)
)
);
Thanks!!!