I have a JTable with a custom cell editor. The editor implements FocusListener so I can check if the cell's contents is valid if the user clicks away from the cell.
I'd like to use a JOptionPane within focusLost (in the EventDispatchThread) to allow the user to select whether to revert to an old value or accept an adjusted value.
Here's the problem; if the user is editing a cell, then clicks a button away from the table, the button's actionlisteners are alerted before JOptionPane has returned.
This is what I'd like to happen:
- User edits cell
- User clicks button
- Cell detects focus lost
- JOptionPane displayed and user selects action
- JOptionPane closes and cell's value set
- Button's actionListeners called
Instead, this is happening:
- User edits cell
- User clicks button
- Cell detects focus lost
- JOptionPane displayed and user selects action
- Button's actionListeners called
- JOptionPane closes and cell's value set
Is it possible to postpone the button's action events until after the JOptionPane has closed?
From other threads, I've read that JDialog does some magic to ensure event dispatching continues so the Dialog itself can handle events.
SwingUtilities.invokeLater(Runnable). TheRunnableis executed after the end of the current event. – Guillaume Polet Feb 14 at 11:31