WorkbookCtrl bookCtrl = getDesktopWorkbenchContext().getWorkbookCtrl();
focusOut = true;
handleCellText();
//move cell focus
Position pos = bookCtrl.getCellFocus();
int row = pos.getRow() + 1;
int col = pos.getColumn();
if (bookCtrl.getMaxrows() <= row) {
row = bookCtrl.getMaxrows() - 1;
}
bookCtrl.focusTo(row, col, true);
}