is there any way how to get which column of JTable is sorted and what is sort orientation?

Thanks.

link|improve this question
too fuzzy you question is. Details you should give young jedi. – Snicolas Dec 10 '11 at 12:16
3  
And try to read the Javadocs before posting the next time. – a_horse_with_no_name Dec 10 '11 at 12:25
feedback

2 Answers

Use JTable.getRowSorter() to get the RowSorter.

Then call getSortKey(). The SortKey will tell you what you want to know.

link|improve this answer
feedback
  • Go to the API doc for JTable
  • Use the browser text search features to look for "sort"
  • find JTable.getRowSorter()
  • read up the details there.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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