0
votes
1answer
34 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 …
0
votes
2answers
28 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
28 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
21 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
51 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 …
0
votes
1answer
50 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
59 views
How to Copy the contents with line breaks from a JTable to Excel with line breaks included
Hai
I have an application in which I have a JTable with line breaks(pressing Enter key while editing) included in each and every cell.The problem is when I copy the contents from m …
1
vote
1answer
74 views
Problem while copying JTable contents into Excel
I have a Standalone application in which I am trying to copy contents of JTable into Excel with line breaks included in my cells of JTable. I have used wrapping using "\"" to my ce …
0
votes
3answers
40 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 …
0
votes
2answers
46 views
Changing the size of columns in a JTable.
I am creating a GUI program and I need a table with different sized columns. How do I change it so that the 1st column is smaller than the 2nd and 3rd column?
0
votes
1answer
27 views
Empty model, empty table
I have a JTable as a viewer of a model that I have created. I can insert and remove columns and rows from this model. The problem is that when my model reaches size 0, i.e., no dat …
0
votes
1answer
40 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 Defau …
0
votes
1answer
31 views
Single click in a drag and drop JTable
Hi Everyone,
Sorry if this was asked before, I googled everywhere with no luck.
Here's my problem: I'd like to drag and drop rows within a JTable. I cannot get it to work without …
0
votes
2answers
25 views
creating a clickable table
I want to create a table where I can click the numbers (1.1, 1.2 etc) under the display tab so that another window will pop up showing the cell details. How should I go about this? …
0
votes
0answers
31 views
In Groovy SwingBuilder, how do I attatch a closure to a JTable that fires when a cell is selected?
I have a JTable being constructed via Groovy's SwingBuilder. I'd like to attach a closure to the table that fires when a cell is selected, but I can't seem to find the right hook. …
