Search Results

0
votes

JTable with a complex editor

I fixed something similar in 2 steps First override the editCellAt from your JTable and call requestFocus after preparing the editor: public boolean editCellAt( int row, int …
1
vote

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

You will have to make your own cellEditor and ovveride public boolean isCellEditable( EventObject e ) You can distinguish between single and double click with the …
0
votes

jTable grid lines for selected rows

Did you implement your own cellrenderer ? If you did make sure you still set a border in your public Component getTableCellRendererComponent(...) method …
0
votes

Manipulating fields in the jTable Java

The way i would do it is to override public void setValueAt(Object aValue, int rowIndex, int columnIndex); from your TableModel. The setValue method get called b …
1
vote

Adding an Icon to JTable by overriding DefaultTableCellRenderer

For better performance reasons JTable reuses the same label for each cell it renders. This means you need to set both text and icon each time you change it. The same goes for fonts, backgro …
1
vote

Provide additional behavior when editing a cell in JTable

i achieved that type of behaviour by overriding stopCellEditing ( i use a custom implementation of AbstractCellEditor ) public boolean stopCellEditing() { String s = (String) getCel …