Tagged Questions

6
votes
3answers
557 views

How do I drag and drop a row in a JTable?

How do you setup a JTable to be able to drag a row to a different index in the table. For example if I have 5 rows and I want to drag the 4th row to the 2nd position?
5
votes
4answers
1k views

JTable with a complex editor

I have many custom editors for a JTable and it's an understatement to say that the usability, particularly in regard to editing with the keyboard, is lacking. The main reason for this is that my …
3
votes
4answers
337 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: …
3
votes
2answers
394 views

Is it possible to include JButton in a JTable?

I have a JTable that stores the results of a database query, so far so good. What I want is for the last column in each table to have a clickible JButton that will open the edit screen for the object …
3
votes
2answers
966 views

JTable - drag and drop

OK, this problem is out of my league. I'm trying to implement a GUI widget in swing that allows files to be dropped onto a JTable, and allows the rows of the JTable to be dragged for re-sorting. Think …
3
votes
1answer
262 views

How can I remove a column from a JTable with dragging?

In Outlook I can remove a table column if I drag the column header out of the table. How can I do the same in Java with a Swing JTable? A default drag & drop operation is not possible because …
2
votes
2answers
32 views

iPhone-like JTable

Hello, i want to display a jtable with the feature, that if there is not enough space left on the screen the columns first start to shrink (and display less info) and then start to disappear. The …
2
votes
2answers
134 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 select entrys out of a …
2
votes
2answers
233 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
674 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
2answers
239 views

JAVA - Validation in JTable

I am trying to validate a cell in the JTable as soon as the data is entered. I want to make sure that say the correct code is entered in the code column. Could anyone let me know how to do this …
2
votes
1answer
169 views

How to change default stop edit behavior in jtable

When you edit a cell in an jtable the value is made permanent only if the focus is changed or if one hits enter (for example if you change the cell value from "abc" to "xyz" and close the window the …
2
votes
2answers
120 views

Multiple Strings colored in different way into the same cell of a JTable

Suppose you have a JTable and for each cell you want to display three strings with different color, say value1 (red), value2 (blue), value3 (green). I overrode the getTableCellRendererComponent of …
2
votes
1answer
352 views

Is there any alternative to JTable, that is free and better?

Looking for a free and better alternative to JTable. Found quite a few good ones, but they aren't free. To begin with, I want to be able to select cells diagonally (apart from horizontally and …
2
votes
2answers
307 views

JTable no update when selection

Hi all When I select a row in a JTable, my JTable doesn't get updated anymore. When I don't select a row, the code beneath works as expected. A row is added to the JTable. @Override public void …

1 2 3 4 5 10 next
15 30 50 per page