This question is locked. New answers and comments are not allowed.
Hello,
I am having issues with Grid grouping (programatically). It worked fine in the previous version.
Here is the code snippet
.GroupDescriptors
.FirstOrDefault(d => d.Member == groupField);
SortDescriptor sdescriptor = e.DataControl
.SortDescriptors
.FirstOrDefault(d => d.Member == sortField);
Please note that the problem I have is only with GroupDescriptor. SortDescriptor has no errors.
Please help ASAP.
Thanks
Uma
I am having issues with Grid grouping (programatically). It worked fine in the previous version.
Here is the code snippet
GroupDescriptor gdescriptor = e.DataControl
.GroupDescriptors
.FirstOrDefault(d => d.Member == groupField);
SortDescriptor sdescriptor = e.DataControl
.SortDescriptors
.FirstOrDefault(d => d.Member == sortField);
Please note that the problem I have is only with GroupDescriptor. SortDescriptor has no errors.
Please help ASAP.
Thanks
Uma