Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
340
Vertical scrollbar not showing on single-row grid
posted

I have a grid which contains a single record. The following grid properties are set:

 UseRowLayout = True

RowLayoutLabelPosition = Left

RowLayoutLabelStyle = WithCellData

AllowRowyLayoutColMoving = AllowAll

Scrollbars = Automatic

ScrollBounds = ScrollToLastItem

ScrollStyle = Deferred

This allows me to customize where my cells are displayed within the grid. When the user hovers over the grid the horizontal scrollbar will appear if there are cells out of view horizontally so I can scroll to view them. This is a good thing.

The problem is that the vertical scrollbar does not appear when there are cells out of view vertically. So the only way I can view those cells is to increase the height of the grid.

I also have a grid with multi-rows with the same settings and the scrollbars appear as expected.