Tagged Questions

2
votes
2answers
222 views

Java Swing : changing JTree selection while editingstopCellEditing() : how to get stopCellEditing() called before TreeListeners:valueChanged?

Hi, regarding to earlier question How to stop editing with DefaultCellEditor when a separate JBtton is pressed and Sun Bug 4724980: JTable: Add API to control what happens to edits when table loses …
2
votes
3answers
622 views

Making a JTable cell editable - but *not* by double clicking.

I am trying to add a column to a JTable with the following behaviour (similar to Windows Explorer and similar shells): The cell can be clicked once to select it, as usual. The cell can be …
2
votes
3answers
386 views

How to stop editing with DefaultCellEditor when a separate JBtton is pressed

Hi, I got a table with a custom TableCellEditor (extending DefaultCellEditor) with a JFormattedTextField as the editor component. Now I got problem: when I press a separate button while editing. …
1
vote
1answer
15 views

Mutually Exclusive CellEditors in JTable

I currently have a problem whereby editing the contents of one cell in a JTable alters the content of another; two of the columns are mutually exclusive. They are both checkboxes. At the moment, if I …
1
vote
2answers
145 views

Error Dialog Not Being Destroyed

I am working on a project that is using a JTable to display, among other things, a column of dates. We needed validation for the user input for dates, so I have implemented a combination of masking …
0
votes
3answers
50 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 editing. Depending upon …
0
votes
1answer
68 views

Strange blinking of cell on selection with custom Cell Editor

Hi. I am new to working with JTables and having trouble with getting my custom JTable editor to work properly. I have a number of custom panels with lists and buttons. To renderder them in a cell I …
0
votes
2answers
56 views

reusing TableCellEditor objects…

So I have lots of tables and lots of cell editors, with lots of stuff in them. I figured I should be reusing them, not doing new() every time since the whole thing is set …