Tagged Questions

6
votes
2answers
227 views

Sorting double values in JTable

I have found quite a few questions related to this but I haven't found a simple solution to my issue though. I can't find a way to make my JTable sort Double values properly. I extended ...
2
votes
3answers
181 views

JTable Sorting based on hidden column

I would like to sort JTable rows based on one hidden column. Say I have a JTable like this column1 column2 val1 val2 Now I have a one more column3 which is hidden and I dont want to show. ...
1
vote
0answers
107 views

Change row color in Swing JTable after sorting rows

We are using a JTable which displays data along with Status (New, Processed, Closed). Each status row has a different color which is achieved by overloading prepareRenderer() of JTable. Now we need ...
0
votes
3answers
69 views

Is it possible to invoke the auto row sorter in a jtable

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 ...
0
votes
1answer
72 views

Why won't my TableRowFilter filter?

I'm trying to filter a JTable using a TableRowFilter . It works for me on a simple example , but I can't seem to get it to work on the real thing. The filter is called , the logs are printed - but I ...
0
votes
2answers
2k views

Removing rows from a DefaultTableModel with a RowSorter attached doesn't remove last row

I'm somewhat new to Java, and especially new to tables, and I'm having a bit of trouble with one particular task. I have a JTable that uses a custom table model that extends DefaultTableModel, and ...
0
votes
2answers
903 views

JTable RowFilter

Is is possible to some how get the index of the selection corresponding to the non filtered table? After the table is filter using a regexFilter. JTable getSelectedRow returns the index of the ...
-2
votes
2answers
46 views

Java - JTable - how to get which column is sorted and sort orientation?

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