Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
155
Can we use GroupByRowDescriptionMask for each group
posted

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.

Parents
  • 71886
    Offline posted

    Hello,

    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";

             }

Reply Children
No Data