I have a RadGrid with a numbers column that is filterable and sortable. While the column's datatype is set to integer, there is no filtering function for contains. It is just set for 'exact'. The way I figured out how to get around this is to change the column's datatype to a string. The filtering then functions perfectly.
The sorting, however, breaks. If the numbers have different lengths, it raises an issue.
Here's a quick example: You have three numbers: 100, 70, 400.
Sorting ascending as per integer column: 70, 100, 400.
Sorting ascending as per string column: 100, 400, 70.
Is there a way for me to have the filtering capabilities of a string column while preserving the sorting of the integer column?
The sorting, however, breaks. If the numbers have different lengths, it raises an issue.
Here's a quick example: You have three numbers: 100, 70, 400.
Sorting ascending as per integer column: 70, 100, 400.
Sorting ascending as per string column: 100, 400, 70.
Is there a way for me to have the filtering capabilities of a string column while preserving the sorting of the integer column?