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
740
expand grouped rows
posted

 

as I can do to expand the grouped rows at runtime.

 

Every time I load my data grid appears with contracted groups.

 

if someone could help me. thanks

 

Parents
  • 20872
    Verified Answer
    Offline posted

    Hello Carlos,

    If you would like to have every group by row expanded you could handle InitializeGroupByRow event of the UltraGrid and set the Expanded property of any GroupBy row to true like:

        private void ultraGrid1_InitializeGroupByRow(object sender, InitializeGroupByRowEventArgs e)
            {
                e.Row.Expanded = true;
            }

    If you have any other questions please feel free to let me know.

     

Reply Children