Dear Guru!
There exist some problem with fixed column's headers in UltraGrid.
This works fine:
DisplayLayout.Override.FixedHeaderIndicator = Infragistics.Win.UltraWinGrid.FixedHeaderIndicator.Default;DisplayLayout.UseFixedHeaders = true;But if one set RowLayoutStyle to GroupLayout
band.RowLayoutStyle = RowLayoutStyle.GroupLayout;
"fixed header" icon dissapears from grid and it become impossible to fix grid's columns.
Thanks in advance
Fixed headers are not supported in ColumnLayout or GroupLayout mode.
Desired functionality is to provide user with possibility to fix columns which are not in group (band.Columns[column].RowLayoutColumnInfo.ParentGroup == null) and to fix group itself (not columns in group) also.
Thanks.