How can I specify the order in which groups are displayed in the RadListView? The control is automatically sorting my groups alphabetically (regardless of the order in which my items of a specific group are added to my collection), which I really don't want. In fact, my goal is to always have the groups in a specific order that cannot be re-ordered, and I want to specify this order explicitly. That is, it's not an ascending or descending order, but an arbitrary one that I specify.
Here's my XAML:
<telerikDataControls:RadListView x:Name="listView" ItemsSource="{Binding Path=Items}" ItemTemplateSelector="{StaticResource Key=itemDataSelector}" GroupHeaderTemplate="{StaticResource Key=headersTemplate}"> <telerikDataControls:RadListView.GroupDescriptors> <telerikListView:PropertyGroupDescriptor PropertyName="Name"/> </telerikDataControls:RadListView.GroupDescriptors> <telerikDataControls:RadListView.HeaderTemplate> <DataTemplate> <Label Text="..." FontSize="Title" FontAttributes="Bold" HorizontalOptions="Fill" HorizontalTextAlignment="Center" /> </DataTemplate> </telerikDataControls:RadListView.HeaderTemplate> <telerikDataControls:RadListView.FooterTemplate> <DataTemplate> <Label Text="..." HorizontalOptions="Fill" HorizontalTextAlignment="Center"/> </DataTemplate> </telerikDataControls:RadListView.FooterTemplate></telerikDataControls:RadListView>
I'm using Telerik UI for Xamarin 2020.1.218.1, Xamarin Forms 4.5.0.530.
