I use TelerikGrid, and in it I do grid grouping.
new GroupDescriptor()
{
Member = "workItemViewModel.WorkItemGroupId",
DisplayContent = "Application",
MemberType = typeof(string)
}Grouping is working, but I need to see text "Application", but I see "workItemViewModel.WorkItemGroupId" instead.
How to fix it?