Hi
 
I need a method like stopCellEditing() on my table which forces the table to stop cell editing and call the validation on current editing cell.
The problem is, if i enhance my table which such a call (which would call the client and there call the stopCellEditing() on jtable) the call would be asynchronous.
 
But i need a synchronous stopCellEditing() for code like this:
 
public void saveTable(){
   stopCellEditing();
   saveTableData();
}
 
Can you give me a hint how to achieve this?
 
Thanks in advance
 
Daniel

Reply via email to