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.
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