// mouse is positioned
// this can only be done when the control is resized, as the
// bounds are set in
// the EditController dependent on the rendered cell
Point mouseLoc = Display.getCurrent().getCursorLocation();
Point tablePos = tableControl.toDisplay(0, 0);
int relativeX = mouseLoc.x - tablePos.x;
int relativeY = mouseLoc.y - tablePos.y;
TableItem item = tableControl.getItem(new Point(relativeX,
relativeY));
if (item != null)