We have table with list of users. Some user names are all lower case, some all upper case, some mixed case. We can do the initial sort fine using at macro:
[CaseInsensitiveSort(1)]
args = fieldname
definition = eval lowerFieldValue=lower('$fieldname$') \
| sort lowerFieldValue \
| fields - lowerFieldValue
But when a user clicks on the "User Name" header in the table the sort is no longer case insensitive.
↧