First, thanks for an amazing asset

Now, we where implementing a wide number of UITables in our project but somewhere along the line we noticed that the order of items where not as expected (all with "Sorted" enabled). After a lot of digging it just turned out to be the string.Compare you are using, which will not sort in a "human logical order", instead it will sort by ASCII-order (obviously! ><). Since this is rearly what people expect (we where naming our objects in the tables by index), I believe it would be nice to see a "real" sorter.
I found the following dude who (though back in 1997) did his own Alphanum Algorithm (License LGPL = free to use!) which now have been translated into multiple languanges (including C#)
http://www.davekoelle.com/alphanum.htmlSo, without starting to talk about areas I'm not an expert in, I did however implement his comparer and it worked just as expected (will even sort mix, ex: a1, a12, a2 etc., the same way you see stuff in the file-explorer).
So, could this be something to expect in a future update? It takes 10min tops! 
(so I don't have to keep modifying your script

)
Thanks!
Edit.Another one, "well optimized" (not tested, since speed isn't an issue for us)
http://www.dotnetperls.com/alphanumeric-sorting