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.
Vertical scrolling in the grid is row-based. So if you have a row that is taller than the available area of the grid, you will never be able to scroll parts of it into view.
I have the same problem.
How can we fix this or what 's the workaround for this ?