Search Results

2
votes

Selection overridden by formatter.

Quick and dirty workaround is to use EventQueue.invokeLater from your focusListener. EventQueue.invokeLater(new Runnable(){ public void run() { yourTextField.selectAll();} }); …
2
votes

Problems running Swing application with IDEA 8M1

Ask your question directly on the IDEA website. They always react fast and the problem you have is probably either fixed or documented. …
3
votes

Adding rows to a JTable

If you use the default table model for a JTable then you can add rows with following code if ( dest+1 < table.getRowCount()-1 ) ( (DefaultTableModel) table.getModel() ).ins …
0
votes

How to focus on JTextField within a table.

Did you try the editcellat without the requestfocus ? also make sure that you override/implemenet to return true /** * Returns true. * @param anEvent an event …
1
vote

Java event handlers

Its one of the correct ways to do it. You are using anonymous listeners but there is an alternatif nicely explained on …
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 …
2
votes

Reading HTML file to view in JEditorPane

Orange is not working because its not a default html word http://www.handleidinghtml.nl/d …
0
votes

Where to look to get started with making an animated clock with Swing in Java?

http://www.jhlabs.com/java/layout/index.html provides a ClockLayout layoutmanager …
1
vote

Is it possible to use Enter as Tab without inheriting JTextField or mass-adding key listeners?

you can probably use http://java.sun.com/products/jfc/tsc/special_report/kestrel/keybindings.ht …
1
vote

Efficient TableModel implementation

When implementing a TableModel you need to consider 2 things 1) creating and manipulating the model 2) rendering your table The first is alot less important performance wise …
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 …
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 …