This question is locked. New answers and comments are not allowed.
I have the following XAML :
As far as grouping is concerned this is working fine but the problem is the group descriptor isn't showing any text. Image attached.
Update:
VMData is composite type as below:
In View model :
<telerik:RadGridView.GroupDescriptors><telerik:GroupDescriptor Member="{Binding DataContext.VMData.GroupingData,RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}" SortDirection="Ascending" /></telerik:RadGridView.GroupDescriptors>As far as grouping is concerned this is working fine but the problem is the group descriptor isn't showing any text. Image attached.
Update:
VMData is composite type as below:
[DataContract] public class CompositeType { string groupingData; [DataMember] public string GroupingData { get { return groupingData} set { groupingData= value; } }}In View model :
private CompositeType _vMData= new CompositeType (); public CompositeType VMData { get { return _vMData; } set { _vMData= = value; } }