// Save the current values
curCallback = callback;
curCellEditInfo = cellEditInfo;
// Get the info about the cell
HTMLTable table = curCellEditInfo.getTable();
int row = curCellEditInfo.getRowIndex();
int cell = curCellEditInfo.getCellIndex();
// Get the location of the cell
Element cellElem = table.getCellFormatter().getElement(row, cell);
int top = DOM.getAbsoluteTop(cellElem);
int left = DOM.getAbsoluteLeft(cellElem);
int width = cellElem.getOffsetWidth();
int height = cellElem.getOffsetHeight();
setPixelSize(width, height);