Hello,
I have 3 levels of grouping as,
Level 1
Level 2
Level 3
Data is populated at run time. Currently I am using one GroupByRowDescriptionMask for all the group rows.
Is it possible to have different GroupByRowDescriptionMask for each group based on levels. That is Level 1 will use value1, Level 2 will use value2 and level 3 will use value 3.
Thanks in advance for any kind of help.
I wanted to know if you were able to solve your issue based on these suggestions or you still need help. Please let me know.
You could do something link the following:
private void ultraGrid1_InitializeGroupByRow(object sender, Infragistics.Win.UltraWinGrid.InitializeGroupByRowEventArgs e)
{
if (e.Row.Column.Index == 0)
e.Row.Description = "col 0";
else e.Row.Description = "not col 0";
}