How to numeric sort string values on a filter in a table layout?
Let's say there is a String property mapped to a column on the table layout which has value - 1 ABC, 10 ABC, 2 ABC, 3 ABC.
When the filtering option is enabled and the filter icon is clicked, it does a String sort and displays the list as
1 ABC
10 ABC
2 ABC
3 ABC
Let's say there is a String property mapped to a column on the table layout which has value - 1 ABC, 10 ABC, 2 ABC, 3 ABC.
When the filtering option is enabled and the filter icon is clicked, it does a String sort and displays the list as
1 ABC
10 ABC
2 ABC
3 ABC
Is there a way to have numeric sorting instead of String sort so that the filter list is displayed as:
1 ABC
2 ABC
3 ABC
10 ABC