Hello
I have a grid that was used for years in 6.2 that always had a vertical scrollbar when accounts shown in grid exceeded certain amount of rows.
after upgrading to 8.2 the scrollbar never appears, and all excess rows are now hidden and i can't seem to be able to bring the scrollbar back.
here is my DisplayLayout definition:
<DisplayLayout BorderCollapseDefault="separate" AllowSortingDefault="OnClient" AutoGenerateColumns="False" HeaderClickActionDefault="SortSingle" Name="TradesGrid" RowSizingDefault="fixed"
RowSelectorsDefault="no" SelectTypeRowDefault="Single" CellClickActionDefault="edit" ScrollBarView="vertical" TableLayout="Fixed" ScrollBar="always" Version="4.00" RowHeightDefault="18" TabDirection="toptobottom">
Instead of setting height directly maybe it'll work better if you use the resize() method off of the grid object?
yep. problem is persisting.
the way i set the grids div height is using javascript
in InitializeGrid( gridName, row )
_tradeManager.Grids.AllocationsGrid.Div = $(gridName + '_div');
_tradeManager.Grids.AllocationsGrid.Div.style.height = '200px';
this still works, and sets the grid to appropriate height.
i am still troubleshooting why scrollbars are hidden.