Tagged Questions
6
votes
2answers
274 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
195 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
1answer
24 views
Refresh JTable when setAutoCreateRowSorter is true
I have written a default table render as follows:
public class CustTableRenderer extends DefaultTableCellRenderer{
@Override
public Component getTableCellRendererComponent(JTable table, ...
1
vote
0answers
153 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
0answers
955 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
86 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
253 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
3answers
416 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
956 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
56 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.