yes, but I also need to find how to make a custom ...
# tornadofx
b
yes, but I also need to find how to make a custom sorter
r
How do you mean to sort integers and strings together? You have to convert to one or the other, or any comparison is meaningless.
b
I have a dynamic table (coming from queries that can give columns in text or integer or other things)
when they are integers I want to sort them as integers, when they are strings I want to sort them as strings
currently everything arrives as strings
(they are SPARQL queries that the user types in the interface)
something similar to that
I'm trying it right now
h
Couldn't you just use an alphanum sort
b
no because I needed to sort integers. But I found a way to have variable types columns.