Hi,
I am applying two group filters in code-behind to a RadGridView. Code : -
I am applying two group filters in code-behind to a RadGridView. Code : -
Dim trackGroupDescriptor As New Telerik.Windows.Data.GroupDescriptor
trackGroupDescriptor.Member = "TrackName"
trackGroupDescriptor.DisplayContent = "Track"
trackGroupDescriptor.SortDirection = ComponentModel.ListSortDirection.Ascending
AllTrackGrid.GroupDescriptors.Add(trackGroupDescriptor)
Dim FeatureGroupDescriptor As New Telerik.Windows.Data.GroupDescriptor
FeatureGroupDescriptor.Member = "FeatureName"
FeatureGroupDescriptor.DisplayContent = "Feature"
FeatureGroupDescriptor.SortDirection = ComponentModel.ListSortDirection.Ascending
AllTrackGrid.GroupDescriptors.Add(FeatureGroupDescriptor)
The problem I am having is that when the grid loads only one single data row appears inside each of the inner (second) group descriptor, while the actual number of rows which should be present is more. Hoever when I remove the column headers from the 'ShowGroupPanel' while application is running and add them once more, I am able to see all the entries properly. Is there something I am missing in the code?
BTW: Tried adding the descriptor from design-side as well, but having the same issue.
Thanks
Anish George