int row = Integer.parseInt(data[2]);
int col = Integer.parseInt(data[3]);
String clienttxt = data[4];
Sheet sheet = ((Spreadsheet)comp).getSelectedSheet();
if(!Utils.getId(sheet).equals(sheetId)){
return;
}
Cell cell = sheet.getCell(row,col);
//You can call getEditText(), setEditText(), getText().
String text = cell==null?"":cell.getEditText();
StartEditingEvent event = new StartEditingEvent(org.zkoss.zss.ui.event.Events.ON_START_EDITING, comp, sheet,row,col,text,clienttxt);