if (aph != null){
JTable table = (JTable)aph.getObject();
// TF:27/9/07:Row and columns will be 1-based, and we need them to be 0-based
int row = ((ParameterHolder)ev.getParameter("row")).getInt()-1;
int col = ((ParameterHolder)ev.getParameter("column")).getInt()-1;
table.requestFocusInWindow();
if (table.getCellEditor()!= null)
table.getCellEditor().cancelCellEditing();
table.changeSelection(row, col, false, false);
//FormattedCellEditor ed = (FormattedCellEditor)table.getCellEditor(row, col);
table.editCellAt(row, col);