JTable with a complex editor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T01:49:04Z http://stackoverflow.com/feeds/question/566186 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/566186/jtable-with-a-complex-editor 5 JTable with a complex editor Tom Martin 2009-02-19T16:49:11Z 2009-03-04T20:44:33Z <p>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.</p> <p>The main reason for this is that my editors are always created with a similar (though often more complex) situation to this:</p> <pre><code>@Override public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) { JPanel container = new JPanel(); container.setLayout(new BorderLayout()); container.add(field, BorderLayout.CENTER); field.setText((String) value); container.add(new JButton("..."), BorderLayout.EAST); return container; } </code></pre> <p>I.E a panel with more than one component inside. The actual text editor is a descendant of the component being returned as the editor. So, rendering issues aside, from what I can tell, the JTable is focusing the component that is returned by the <code>getTableCellEditorComponent</code> method so when you press a key with a cell highlighted it passes focus and the key press to the panel, thinking that's the editor.<br /> Is there anyway I can inform JTable that the "real" editor is the JTextfield? Adding a hacky <code>requestFocusInWindow</code> on the correct component is insufficient as the key press won't get passed on.</p> http://stackoverflow.com/questions/566186/jtable-with-a-complex-editor/566730#566730 0 Answer by Barend for JTable with a complex editor Barend 2009-02-19T19:12:52Z 2009-03-04T20:39:38Z <p>If I read your question correctly, you want the user to be able to type into a cell immediately, without activating the cell editor first, i.e., you want whatever keystroke activated the cell to be the first character entered into the text field.</p> <p>My first attempt was to add a propertyChangeListener on the focusOwner property of the KeyboardFocusManager, only to notice that the focus never leaves the JTable. You probably ran into that as well. Time for plan B.</p> <p>I got that "first keypress" thing to work by adding a KeyListener to the table that records the last KeyEvent for the keyPressed() method in an instance field. The getTableCellEditorComponent() method reads the character from there. I also needed that hacky requestFocusInWindow() call you mention if the user is to keep typing any characters after the first one.</p> <p>For my sample app, I created a subclass of JTable that adds a KeyListener to itself. It's a much better idea to make your CellEditor instance implement KeyListener and add that to the regular JTable instead, but I'll leave that to you. </p> <p>Here's your code snippet as I modified it:</p> <pre><code>@Override public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) { JPanel container = new JPanel(); container.setLayout(new BorderLayout()); container.add(field, BorderLayout.CENTER); // Will want to add an instanceof check as well as a check on Character.isLetterOrDigit(char). char keypressed = ((StickyKeypressTable)table).getLastKeyPressed(); field.setText(String.valueOf(keypressed)); container.add(new JButton("..."), BorderLayout.EAST); SwingUtilities.invokeLater(new Runnable() { public void run() { // This needs to be in an invokeLater() to work properly field.requestFocusInWindow(); } }); return container; } </code></pre> <p>As far as nastiness goes this sits somewhere up there with Vogon Poetry, but it should solve your immediate problem.</p> http://stackoverflow.com/questions/566186/jtable-with-a-complex-editor/568666#568666 0 Answer by Peter for JTable with a complex editor Peter 2009-02-20T08:07:17Z 2009-03-04T20:43:45Z <p>I fixed something similar in 2 steps</p> <p>First override the editCellAt from your JTable and call requestFocus after preparing the editor:</p> <pre><code>public boolean editCellAt( int row, int column, EventObject e ) { if ( cellEditor != null &amp;&amp; !cellEditor.stopCellEditing() ) { return false; } if ( row &lt; 0 || row &gt;= getRowCount() || column &lt; 0 || column &gt;= getColumnCount() ) { return false; } if ( !isCellEditable(row, column) ) return false; TableCellEditor editor=getCellEditor(row, column); if ( editor != null &amp;&amp; editor.isCellEditable(e) ) { editorComp=prepareEditor(editor, row, column); if ( editorComp == null ) { removeEditor(); return false; } //aangepast Rectangle rect=getCellRect(row, column, false); if ( datamodel_.useAdaptedEditorRect() ) rect=datamodel_.changeRectangle(rect, editorComp); editorComp.setBounds(rect); add(editorComp); editorComp.validate(); setCellEditor(editor); setEditingRow(row); setEditingColumn(column); editor.addCellEditorListener(this); //NEXT LINE ADDED editorComp.requestFocus(); return true; } return false; } </code></pre> <p>Then overload the requestFocus from your JPanel and make sure your textfield is put as editorComponent:</p> <pre><code>public class EditorPanel extends JPanel { JComponent editorComponent; public boolean isRequestFocusEnabled() { return true; } public void requestFocus() { editorComponent.requestFocus(); } } </code></pre> <p>You can always grab the keyEvent and set it yourself:</p> <pre><code>AWTEvent event = EventQueue.getCurrentEvent(); if ( event instanceof KeyEvent ) { char newSelection = ( (KeyEvent) event).getKeyChar(); int keyCode = ( (KeyEvent) event ).getKeyCode(); editorComponent.requestFocus(); if ( editorComponent instanceof JTextField ) { if ( ( newSelection &gt;= (char) FIRST_ALLOWED_CHAR ) &amp;&amp; ( newSelection != (char) LAST_ALLOWED_CHAR ) ) //comes from DefaultKeyTypedAction ( (JTextField) editorComponent ).setText(Character.toString(newSelection)); if ( keyCode == KeyEvent.VK_BACK_SPACE || keyCode == KeyEvent.VK_DELETE ) ( (JTextField) editorComponent ).setText(""); } } else editorComponent.requestFocus(); </code></pre> http://stackoverflow.com/questions/566186/jtable-with-a-complex-editor/577021#577021 2 Answer by amit.dev for JTable with a complex editor amit.dev 2009-02-23T09:34:09Z 2009-02-23T09:34:09Z <p>Check some related articles <a href="http://jroller.com/santhosh/entry/add_button_to_any_tablecelleditor" rel="nofollow">here</a> and <a href="http://jroller.com/santhosh/entry/keyboard_handling_in_tablecelleditor" rel="nofollow">here</a>.</p> <p>Another <a href="http://blog.palantirtech.com/2007/05/17/jtable-mouseover-editing/" rel="nofollow">good article</a> about JTable editing in general.</p> http://stackoverflow.com/questions/566186/jtable-with-a-complex-editor/612241#612241 0 Answer by RicMax for JTable with a complex editor RicMax 2009-03-04T20:16:18Z 2009-03-04T20:44:33Z <p>I think that I solved it.<br /> To tell you the truth, I don't know what solved the problem, since I'm using a custom editor, a custom renderer and stuff...</p> <p>When a cell is highlighted and I press "abc", the 3 letters go on screen (cell, in this case).</p> <pre><code>grid.addKeyListener(new KeyAdapter() { public void keyTyped(KeyEvent ke) { int l = grid.getSelectedRow(); int c = grid.getSelectedColumn(); grid.editCellAt(l, c); } }); </code></pre> <p>Well... I tried... =)<br /> (I don't know if it's the same because my JTable uses JTextField and JComboBox as editors).</p>