Reputation: 30156
I have an editable JTable
. If a user is editing a cell when the underlying row model is updated the cell editor loses focus.
What's the simplest solution to this?
Upvotes: 1
Views: 351
Reputation: 7943
The simplest solution to this, as @mKorbel noticed, very theoretical question :) is to:
requestFocus()
, example available here.Upvotes: 3