lastCol = event.getColumn();
Label lbpos = (Label)getFellow("lbpos");
Textbox tbxval = (Textbox)getFellow("tbxval");
CellRangeAddress addr = new CellRangeAddress(lastRow, lastRow, lastCol, lastCol);
Cell cell = Utils.getCell(sheet, lastRow, lastCol);
lbpos.setValue(addr.formatAsString());
tbxval.setValue(cell == null ? "" : Utils.getEditText(cell));
}
void doCellChange(String value){
if(lastRow == -1){