IButton showButton = new IButton();
showButton.setTitle("Show");
showButton.setLeft(40);
showButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
textbox.show();
}
});
IButton hideButton = new IButton();
hideButton.setTitle("Hide");