I believe I've uncovered a bug in the way the TemplateView UI sorts custom attributes. We have a custom attribute of the "Integer" type, and when I click on the column to sort (either ascending or descending), it seems to look at the first digit only. That is, it would come up with a sort order as shown below:
9
80
50132
200
1
As you can see, it's seeing the number "9" as being larger than "80", since the first digit is larger. It's almost as if it's being treated as a string and not an Integer. To be fair, this attribute type USED to be "string". I only changed it to "Integer" after I found this behavior in the UI. Could you shed some light on how I could fix this? Thanks!
Jason