Tagged Questions

6
votes
3answers
523 views

How to implement dynamic GUI in swing

First of all, apologies for posting something perhaps a bit excessively specific, but I'm not very experienced with Swing, and can't seem to find good examples that fit my needs. So I'm trying to ...
4
votes
2answers
296 views

How to mark JTable cell input as invalid?

If I take a JTable and specify a column's classtype on it's model as follows: DefaultTableModel model = new DefaultTableModel(columnNames, 100) { @Override public Class<?> ...
4
votes
3answers
1k views

JTable cell editor number format

I need to show numbers in jTable with exact 2 decimal places. To accomplish this I have created a custom cell editor as: public class NumberCellEditor extends DefaultCellEditor { public ...
4
votes
3answers
6k 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 ...
3
votes
1answer
61 views

How to notify a TableCellEditor that a table row is deleted?

I try to implement a TableCellEditor that conains some fields and a delete-button. It works good, but whe the row is deleted, the content in the deleted cell (rendered with TableCellEditor) is not ...
3
votes
2answers
109 views

How to have JTable staying on the edited cell

If someone edit the cell content of a JTable and press enter, the content is modified and the table selection moves to the next row. Is that possible to forbid the JTable to go to the next row after ...
3
votes
2answers
180 views

JTable Cell Update doesn't work

In my application I have use a java table which is similar to this example. My problem is when I change a value of a cell (even in above example) the data model doesn't get updated until I click on a ...
3
votes
1answer
293 views

Why is cancelCellEditing() not called when pressing escape while editing a JTable cell?

I have an editable JTable and have set a DefaultCellEditor like so: colModel.getColumn( 1 ).setCellEditor( new DefaultCellEditor( txtEditBox ) { // ... @Override public ...
3
votes
3answers
1k views

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

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. When the ...
2
votes
1answer
62 views

Get the row of the TableCellRenderer on itemStateChanged

I have a custom TableCellRenderer (ValueRenderer) for a JTable, the cell is a Checkbox. I have attached an ItemListener to the valueRenderer to listen to the checkbox's state change ...
2
votes
2answers
62 views

Cell won't update after an action is called in the cell editor

I'm using a table with a cell renderer which allows me to place a button "x" in each cell with a value so that i can delete the value of the cell by pressing the button. The cell editor assigns the ...
2
votes
3answers
111 views

How can I get the component at the mouse click position, when using a TableCellEditor?

I use a custom TableCellRenderer with multiple JFormattedTextField in the table cells. I use the same component as TableCellEditor. Now I need to know in what JFormattedTextField the user clicked, and ...
2
votes
1answer
78 views

JPanel as TableCellEditor disappearing

I've made a custom TableCellRenderer that displays a JPanel. When the JPanel contains interactive elements I want those to work too, so I made a custom TableCellEditor. It works, but there is some ...
2
votes
1answer
164 views

actionPerformed on JButton as TableCellEditor incorrectly invoked on MouseDown

I'm trying to use a JButton as TableCellRenderer and TableCellEditor for my JTable. In my test scenario I have 5 rows which each shows a JButton as Renderer and Editor (different button instances for ...
2
votes
2answers
129 views

JTable - cell editor is not high enough to fit the text

I'm using standart JTable with standart cell editor to edit string values. On some platforms, when cell editor is opened, text doesn't fit in it and part of the text is cut. For example "_" symbol is ...
2
votes
1answer
961 views

Problem getting focus when use JPanel as JTable cell editor

I have a cell editor that contains a little button that can be double clicked on to bring up an edit dialog, and then a textfield that can be used to edit the value inline (the popup is required to ...
2
votes
2answers
892 views

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

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
2answers
311 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 ...
1
vote
1answer
52 views

How can I select a table row with a single click using a custom TableCellEditor?

I have a JTable with a custom TableCellRenderer and a custom TableCellEditor. By default, the first click on a table row switch from renderer to editor and the second click select the row. Is there ...
1
vote
3answers
81 views

How to do JTable on cellchange select all text

i have seen some example of doing it but i still can't understand and not able to implement it. What i want to do is on cell change (focus), the next selected cell will have all the text selected, ...
1
vote
2answers
118 views

Custom TableCellEditor showing previous entry on add

In the example below I have a JTable a JList and two JButtons (add and remove). In the list are 6 items (Strings) when one clicks the add button a selected value is added to the table. The Strings in ...
1
vote
1answer
233 views

JTable loses focus after editing with compound JPanel cell editor

I have a cell editor that is composed of several components on a JPanel. When my custom cell editor stops editing, the table loses focus instead of transfering focus to the next cell. Here's a ...
1
vote
3answers
99 views

Custom cell editor can't accomodate text in Nimbus Look and Feel

I want to validate user input in a table cell, and I use the Nimbus Look and Feel. Here is the code of a cell editor that validates integer input: WholeNumberField It extends JTextField and adds ...
1
vote
2answers
279 views

JComboBox as a Custom TableCellEditor

I have a table. Changes on that table update database. One column is edited by a JComboBox in that table. Clicks to any cell in that column fires a tableChanged event. However it needs to be fired ...
1
vote
2answers
41 views

Cell editor not exiting when row is deleted

I have a JTable with a several columns, one of which is has a custom renderer to display 3 buttons in a JPanel as well as a custom editor to allow them to be clickable. One of the buttons sends a ...
1
vote
2answers
217 views

Default Cell Editor Class Query?

This is how my JTable is reconstructed from the serialized data: table = new JTable(){ public boolean isCellEditable(int arg0, int arg1) { return true; } }; ...
1
vote
2answers
73 views

Problem in obtaining the focus of JTable?

This is the scenario: I have a JTable of nxn. In the Col(0) of each cell, have a slider with two thumbs each for min and max,two JTextField to represent min and max. Whenever i click for first time ...
1
vote
1answer
179 views

How do I get the CellRow when there is an ItemEvent in the JComboBox within the cell

I have a JTable with a column containing a JComboBox. I have an ItemListener attached to the JComboBox which acts upon any changes. However, ItemListener does not have a method for obtaining the Row ...
1
vote
1answer
172 views

Swing JTable reset TableCellEditor

JComboBox in TableCellEditor remember last selected value among different rows and even different TableModels. For example select a value on one row, then go to another row, start cell editing and ...
1
vote
1answer
112 views

JComboBox not opening in a jTable

I have created a table where in a cell of each row a combo box is displayed. I have used the following two classes as cell editor and cell renderer respectively. Somehow when the table is displayed, ...
1
vote
2answers
753 views

Use JSpinner like JTable cell editor

i'm using a JSpinner like a table cell editor, i have one annoying problem: The cell remains in NON-editable mode until i click into it, for NON-editable i mean that i can't write into it(it has ...
1
vote
1answer
74 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 ...
0
votes
1answer
46 views

How do I resize the height of a JTable row as the user types?

I have an editable JTable. As the user types, if the text is longer than the width I need the height to grow. I have set linewrap to true, but it only changes the height after the user presses ...
0
votes
2answers
69 views

TableModelListener

I am making a student record application... I want a column in it which is editable. I have attached table model listener on table and on that column i m saving all the updating values ...
0
votes
1answer
95 views

Trouble with TableCellRenderer , trying to add a JLabel(image) in JTable Cell

Here is my piece of code - class ButtonCellRenderer extends AbstractCellEditor implements TableCellRenderer,TableCellEditor,MouseListener{ JTable table; JLabel rendererLabel ; ...
0
votes
1answer
219 views

adding JComboBox to a jTable with specific data per row

I am trying to add a JComboBox to the last column of my JTable. The JComboBox isn't for editing purposes but for traversing the JTable itself. Each row can have 0-many elements that need to go in the ...
0
votes
1answer
224 views

JTable , Celleditor , how do i startCellEditing?

I have JTable and couple of Cells as rows ( only 1 column ) that have Textboxes On Double Clicking a particular Cell , user can edit the cell But i have a separate Edit button part of application ...
0
votes
2answers
305 views

How to store multiple values in a JTable row as a JCombobox

Hashmap contains key and value(result of parsing an XML). Hashmap contains things in the way that key is a string and value is a vector. A key may have single value in the vector or mutiple values in ...
0
votes
1answer
184 views

Table Cell Editor in a calendar

I'm making a calendar in Eclipse and I want to able to edit the cells, adding events etc. Right now, I can write stuff in the cells, but it doesn't look pretty. I figure I need a table cell editor, ...
0
votes
1answer
251 views

JSpinner Update

I creates a dataTable and cellEditor form one column. This column is simple jSpinner. I have the following problem. When I enter some value in the spinner and select the another row, the value in the ...
0
votes
2answers
473 views

Losing first character in JTable panel based cell editor

I have a cell editor that contains a little button and then a textfield that can be used to edit the value inline I use setSurrendersFocusOnKeystroke(true) and a focus listener in order to allow a ...
0
votes
1answer
471 views

Focus traversal within components in a Cell Editor

i´m trying to make easy edit to a table thas uses a custom component for displaying info. Each Cell hast 3 data texts. What i want is: if a cell gets focus, start editing the 1st value. while ...
0
votes
3answers
598 views

Provide additional behavior when editing a cell in JTable

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 some post ...
0
votes
1answer
276 views

Strange blinking of cell on selection with custom Cell Editor

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 am ...
0
votes
2answers
152 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 ...