I'm facing an issue with the sorting action inside a column in the Grid. The current behavior of the sorting shows the records without taking into account the lowercase characters instead of showing the records in a case-insensitive order, it displays them this way (Images attached).
Do you have any idea how I can fix this? My expected result is to have the records ordered without considering whether the characters are uppercase or lowercase.
<SFDataGrid @[email protected]
TItem="TestModel"
[email protected]
AllowPaging=true>
<DataGridColumns>
<DataGridColumn IconClass="fas fa-user-alt"
Action=@((userAccess) => BindingContext.OpenDetail(userAccess ?? new()))
Field=@nameof(TestModel.DisplayName) />
<DataGridColumn Field=@nameof(AccessProfileModel.Description) />
</DataGridColumns>
</SFDataGrid>
Kind Regards.