When I tap on column header to sort it throws System.NotImplementedException: The method or operation is not implemented.
I use the code below
<sfgrid:SfDataGrid x:Name="SfItemsGrid"
Grid.Row="1"
ItemsSource="{Binding Path=Items.DisplayItems}"
SelectedItems="{Binding SelectedItems}"
AutoGenerateColumns="False"
AllowPullToRefresh="True"
AllowResizingColumn="True"
AllowSorting="True"
AllowMultiSorting="True"
ColumnSizer="Auto"
LiveDataUpdateMode="AllowDataShaping"
IsBusy="{Binding IsRefreshing}"
PullToRefreshCommand="{Binding RefreshCommand}"
SelectionMode="Multiple">
<sfgrid:SfDataGrid.Columns>
<sfgrid:GridTextColumn MappingName="FIO" HeaderText="ФИО" HeaderTextAlignment="Center" TextAlignment="Start"/>
<sfgrid:GridTextColumn MappingName="Step" HeaderText="Шаг" HeaderTextAlignment="Center"/>
<sfgrid:GridTextColumn MappingName="Orders.Count" HeaderText="Заказов" HeaderTextAlignment="Center"/>
</sfgrid:SfDataGrid.Columns>
</sfgrid:SfDataGrid>