Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
228 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
182 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 ...
1
vote
2answers
777 views

After adding a TableRowSorter adding values to model cause java.lang.IndexOutOfBoundsException: Invalid range

After adding a TableRowSorter to a table and its corresponding model any corresponding adds specifically at firetabletablerowsinserted cause exceptions. It is clear from testing that the GetRowCount() ...
1
vote
0answers
920 views

Updating a JTable after using RowFilter

I was able to attach a filter to the GraphTable (which is extended from the JTable). I was trying out a sample filter which filters all the rows starting with the letter "A". final ...
0
votes
3answers
71 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
238 views

TableRowSorter and RowFilter in java 1.4

I'm actually in a middle of a small problem. I have discovered that TableRowSorter and RowFilter are not included in Java 4. All of our clients are using Java 1.4.2_08 and it's not convenient for us ...
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
3answers
394 views

Sorting Long integers with Java TableRowSorter

I'm have a table that handles large numbers, and I want it to be sorted. The table has no problem displaying the numbers, but TableRowSorter seems to treat the numbers as Integers, thus sorting large ...
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
905 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.