2021-07-13 08:59 PM
Let say I define a 'Scroll List Container' in my Screen1 view. Inside the container I insert many items to the point they don't fit to the container view size. Is there anyway we can have scrollbar say on the right of the list and user can move up and down the list?
Solved! Go to Solution.
2021-07-16 05:26 AM
So I learned we can actually achieve this by dragging the scroll list container into scrollable container.
2021-07-14 02:25 AM
Hi,
The scroll list widget does not have that option, but the scrollable container does.
If you do not wish to work with a scrollable container you could try to create a custom scroll list by copying the scroll list code and adding the scroll bar settings based on the one used in scrollable container. Otherwise you can also fake a scrollbar by using a box widget that moves according to where you are in the list.
/Romain
2021-07-14 06:50 AM
Thank you @Romain DIELEMAN , that is unfortunate, I wonder if this is can be point of future improvement?
The thing about using scrollable container; it does not have feature like scroll list which have a template of the list item which can be easily multiplied in user code space.
2021-07-16 05:26 AM
So I learned we can actually achieve this by dragging the scroll list container into scrollable container.
2021-07-22 03:25 AM
How do you achieve that?
2021-07-25 04:22 PM
By inserting the scroll list container into scrollabe container. This can be done by dragging the scroll list container into the scrollable container and you can adjust the scroll list size beyond the scrollable container. Hope it helps