If we add more GroupDescriptors to the collection. Only the first group will be displayed.
This is our code :
Do we still have to do something extra or is this not supported yet?
Kind regards,
Kim
This is our code :
var descriptor1 = new GroupDescriptor(new[]{ new SortDescriptor("Country", ListSortDirection.Ascending) });var descriptor2 = new GroupDescriptor(new[]{ new SortDescriptor("User", ListSortDirection.Ascending) });radListView1.EnableGrouping = true;radListView1.ShowGroups = true;radListView1.GroupDescriptors.Add(descriptor1 );radListView1.GroupDescriptors.Add(descriptor2 );Do we still have to do something extra or is this not supported yet?
Kind regards,
Kim