I can think of two possible solutions to the editor transition issue: 1) Provide a boolean "immediate" flag to endEdit(). If true, the editor should not run any transitions but should instead close immediately.
2) Provide a listener argument to endEdit() that will be called when the transition is complete (e.g. TableView.RowEditorListener#editComplete(boolean)). I prefer #2, since #1 would preclude running any kind of transition in these cases. Thoughts? G
