Is it possible to add Vertical Scrollbar functionality to a ListRecords widget on a Web Application?(Not a ListBox but ListRecords).
I know how to add the Page Navigation but a Vertical Scrollbar would look much better/simpler in this scenario.
For example, I have a query that will return, at most, 50 records. Just wanted to display 10-15 records (visible) in a fixed height container with a vertical scrollbar.
Thank you.Jeff W.
Hi JeffYou can accomplish this with CSS.
Put a container around your ListRecords, set's a fixed height and add the scroll:
.ContainerVerticalScroll { overflow-y: auto; height: 200px; }
Victor
Goodness!
How easy was that.
Many thanks!!