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
215
Group by column using drag and drop on UltraGrid creates multiple groups "None"
posted

When i create group by on Ultragrid using a column e.g. 'Sector' its created with multiple groups of "None" when the values are null.

The desired behavior should be only one group of "None" and not multiple groups of "None"

Please advice.

Parents
No Data
Reply
  • 65
    Suggested Answer
    posted

    Hi,

     

    Maybe you must to use the GroupByMode property from the Column class, like as this:

    // InitializeRow event

    e.Row.Cells["FieldValue"].Column.GroupByMode = GroupByMode.Text;

     

    You must to set the appropriate enum value.

    Cheers

Children
No Data