I set a Grid to have the property FilterMode="@GridFilterMode.FilterMenu" and find that the items in the filter for the column are not ordered ascending. How can I assure that the filter menu list is ordered?
<GridColumn Field="@nameof(PackageRequest.Product)" Title="Product" Width="120px">
<Template>
@{
var item = context as PackageRequest;
@item.Product
}
</Template>
</GridColumn>