I have a RadGrid bound to an IList<SomeType>, where SomeType is defined as a struct with two string properties (e.g., A and B). In the Grid, column 0 displays property A and column 1 displays property B. Both properties contain data in mixed case.
The grid sorts the data in a case-sensitive manner, such that "AA" is the first item and "zz" is the last item, and "Music" and "music" are not next to each other:
Is there a way to make the grid perform the sort in a case-insensitive manner? How do people normally handle this situation with the RadGrid? Do I need to do a case-insensitive sort of the data and rebind (AKA "custom sorting")?
Thanks!