09-24-2021 04:49 AM
Hi
Im using 3 different string tables but i would like to use one common scroll bar to move vertically.
Any ideas?
Thanks
Solved! Go to Solution.
09-16-2021 09:21 AM
I having trouble linking multiple tables together with the scroll bar? i need these tables to scroll together
could anyone help
09-24-2021 06:42 AM
Create your own scrollbar.
Set it's min\max\page size so it matches the table data (min 0, max the size, page the nr of visible cells).
Catch it's value change event, and set the top left cell of the tables to the scrollbar's value..
09-24-2021 07:28 AM - edited 09-24-2021 07:30 AM
Like this.
If you want a horizontal scrollbar, it should be pretty easy to adapt.
Added benefit: The native scrollbars allow scrolling beyond the content, which is usually just silly...
09-27-2021 02:03 AM
Thank you