imgButton.setWidth(QUERY_BUTTON_WIDTH);
imgButton.setSrc(icon);
imgButton.setShowRollOver(false);
imgButton.setShowDown(false);
imgButton.setShowOverCanvas(false);
imgButton.addClickHandler(clickHandler);
imgButton.getElement().getStyle().setPosition(Position.ABSOLUTE);
imgButton.getElement().getStyle().setTop(QUERY_BUTTON_POS_TOP, Unit.PX);
imgButton.getElement().getStyle().setRight(QUERY_BUTTON_POS_RIGHT, Unit.PX);
imgButton.setCursor(com.smartgwt.client.types.Cursor.POINTER);
Scheduler.get().scheduleDeferred(new Command() {