When I group by a column, and get say three values grouped by, is it possible to expand a value and scroll without having the group by value header row scroll (or any of the group by value rows)?Thanks.
Hello sunibla,
I believe that you are looking for the 'Fixed' property on the grid rows. So you could try the following code in order to achieve the desired behavior:
private void ultraGrid1_InitializeGroupByRow(object sender, Infragistics.Win.UltraWinGrid.InitializeGroupByRowEventArgs e) { e.Row.Fixed = true; }
Please let me know if this meets your requirements.
I finally got around to this and your suggestion fixes the rows, however, there are some weird behaviors and the grid does not seem to handle this correctly. For instance, repositioning group columns or inserting new groupby columns before existing ones does not re-group the rows correctly. Adding new columns also causes related problem of grouping. When expanding some of the grouped rows, some of the other grouped rows disappear.
See attached images in word doc to see problem.
Thanks.