Hi,
I'm using a grid with auto-generated columns. Datasource is assigned to the grid at run time (assigned a datatable).
I'm using scroll wth frozen columns:
<
Scrolling AllowScroll="True" UseStaticHeaders="true" FrozenColumnsCount="7" />
There is a large number of columns, i.e. 100+ (a lot of data). I also assigned column width in code at ColumnCreated time.
The grid displays perfectly. It displays about 26 columns at any given time with first 7 frozen. So, when the grid first displays, one can see columns 1 through 7 (frozen) and 8 through 25 When I click to the right of the scrollbar, I expect to see columns 1 through 7 (frozen) and 26 through 43. Instead, the grid would display 1 through 7 and 35 through 52, essentially skipping some columns. Not good from a user's standpoint.
What would account for this odd behavior? Would hidden columns cause this? I appreciate any advise.
Thanks.
Barry