Hello,
I've just migrated a Windows Store App to a UWP and I encounter the following issue:
Error The name "PropertyGroupDescriptor" does not exist in the namespace "using:Telerik.UI.Xaml.Controls.Grid".
Has something changed in the implementation of the Group and sort descriptions?
The bold markup below fails after the migration:
<telerikGrid:RadDataGrid Visibility="Collapsed" Grid.Row="1" SelectionChanged="dataGrid_SelectionChanged" GridLinesVisibility="Horizontal" x:Name="dataGrid" AutoGenerateColumns="False" UserFilterMode="Disabled" UserEditMode="None" UserSortMode="Single" SelectionMode="Single" SelectionUnit="Row">
<telerikGrid:RadDataGrid.GroupDescriptors>
<telerikGrid:PropertyGroupDescriptor PropertyName="ModelIdentCode" />
</telerikGrid:RadDataGrid.GroupDescriptors>
<telerikGrid:RadDataGrid.SortDescriptors>
<telerikGrid:PropertySortDescriptor PropertyName="ModelIdentCode" SortOrder="Ascending"/>
..............
Regards