// TF:08/06/2008:LIB-17:If this is a formatted field, we must use the getValue method,
// otherwise we will potentially have formatting errors on masked fields.
if (focusOwner instanceof JFormattedTextField) {
JFormattedTextField formattedField = (JFormattedTextField)focusOwner;
try {
formattedField.commitEdit();
//GK/DK: convert column index to a model index to set value
table.setValueAt(formattedField.getValue(), table.getEditingRow(), table.getEditingColumn());
}
catch (ParseException e) {
_log.error("Unhandled parse exception committing field edit: ", e);