0
votes
2answers
23 views
How do you add a border to a row in a Jtable?
I have a Jtable and I want to highlight a row by adding a border to the row. I have extended a DefaultTableCellRenderer and I figure the work needs to be done in the getTableCellRe …
0
votes
1answer
334 views
How do you remove selected rows from a JTable?
I've tried this:
public void removeSelectedFromTable(JTable from)
{
int[] rows = from.getSelectedRows();
TableModel tm= from.getModel();
while(rows.length>0)
{
((Default …
0
votes
3answers
38 views
Provide additional behavior when editing a cell in JTable
Hi SO'ers,
I am creating a app in Java. I need to provide additional behavior when editing of a cell in a JTable. So ideally this will happen when the cell loses focus after editi …
0
votes
3answers
68 views
java.lang.ArrayIndexOutOfBoundsException: 0 >= 0 attempting to populate JTable
I'm subclassing JTable and using a DefaultTableModel to model my table data. The following class sets up the JTable, and adds one row to the model.
import java.io.File;
import ja …
1
vote
2answers
50 views
swing, show a JList over a editable jTable to select entries to autocomplete the text
Hello World !
I have a JTable with editable cells. Each Cell contains a CarretListener for quick validation of the entered text. But in one special cell you should be able to sele …
0
votes
1answer
48 views
Java: JTable adding and moving columns
Hi, im quite new in Java.
I want to add Columns in a JTable at a specified index.
For this i am using addColumn(..) and then move them with moveColumn(...), this works great at th …
1
vote
6answers
397 views
Footer row in a JTable
What is the best way to put a footer row into a JTable? Does anyone have any sample code to do this?
The only approach I've thought of so far is to put a special row into the tabl …
0
votes
1answer
86 views
how to stop cell editing in JTextPane ,cell editor of JTable
Hi everyone!!
I created JTable with JTextPane as cell editor.I want to stop cell editing and want to do some processing if I pressed enter key in JTextPane .And I also want to use …
0
votes
2answers
41 views
How to force a tooltip to update on a TableCellRenderer, when the text is identical ?
In a Java program, I am using a custom renderer for cells in a JTable.
On this renderer I set a tooltip, for which the content depends on the current cell.
When the values are dif …
0
votes
2answers
54 views
Can a Jtable save data whenever a cell loses focus?
The high level: I have a JTable that the user can use to edit data.
Whenever the user presses Enter or Tab to finish editing, the data is saved (I'm asusming that "saved" really m …
0
votes
1answer
45 views
Creating and using Multiple Filters/Searches using JTable or GlazedLists
I looked up how to use multiple filters on here with a regular table and the answers all pointed to GlazedLists. However, the answers didn't specify how to use it. I was able to g …
0
votes
4answers
80 views
JMS Queue to JTable Update [Now getting exception after changes]
I am writing my own JMS Browser and I am struck at the JTable update of Messages from JMS servers. I have tried AbstractTableModel TableModelListener to make Jtable refresh when th …
1
vote
3answers
836 views
JTable sorting rows in Java 1.5
Is there a simple way to sort rows in a JTable with Java 1.5 (setAutoCreateRowSorter and TableRowSorter appear to be Java 1.6 features)?
3
votes
4answers
270 views
How to keep a single column from being reordered in a JTable?
I have a JTable and I need to be able to reorder the columns. However I want the first column to not be able to be re-ordered. I used the following to enable reordering:
table.get …
0
votes
3answers
86 views
adding a JList to a table and adding the table to a scroll pane
I have created a JList and I want to add it to the table and then add the table to the scroll pane so that both of them will be contained in the scroll pane.
import model.*;
impor …
