final FormItemIcon blankIcon = createBlankIcon();
final FormItemIcon editIcon = createEditIcon();
// if we are not in edit-mode, we want to show the edit icon, but only if the mouse hovers over us
this.innerForm.addMouseOutHandler(new MouseOutHandler() {
public void onMouseOut(MouseOutEvent event) {
if (!isEditing()) {
EditableFormItem.this.staticItem.setIcons(blankIcon);
EditableFormItem.this.markForRedraw();
}