is there anyway to invoke the auto row sorter in a jtable that is created by using

setAutoCreateRowSorter(true);

i'm trying to get it to sort by a default column without the user having to click on on the column header.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted
table.getRowSorter().toggleSortOrder(modelColumnIndex)
link|improve this answer
1  
+1, much easier. – camickr Oct 26 '11 at 14:27
thanks works great – user979490 Oct 26 '11 at 14:34
feedback
TableRowSorter rowSorter = (TableRowSorter) table.getRowSorter();
List<SortKey> keys = new ArrayList<SortKey>();
SortKey sortKey = new SortKey(2, SortOrder.ASCENDING);//column index 2
keys.add(sortKey);
rowSorter.setSortKeys(keys);
rowSorter.sort();
link|improve this answer
curious: setSortKeys is documented to trigger a sort (if the given list is different than the current), no explicit sort() needed - or have you found corner cases where it was? – kleopatra Oct 26 '11 at 14:35
I haven't had problems before. I just didn't read the API correctly and always added the sort :( – camickr Oct 26 '11 at 14:39
feedback

i'm trying to get it to sort by a default column without the user having to click on on the column header.

I think you have to use setSortsOnUpdates(true) method from TableRowSorter class.

link|improve this answer
that's not an answer to the question as I understand it, could be me mis-understanding, though :-) – kleopatra Oct 26 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.