Package com.smartgwt.client.widgets

Examples of com.smartgwt.client.widgets.IconButton


    layout.addMember(getAddButton());
    return layout;
  }

  private IconButton getAddButton() {
    IconButton button = new IconButton("Fetch completions from my private endpoint");
    button.setWidth(250);
    button.setShowRollOver(false);
    button.setShowDown(false);
    button.setIcon(Imgs.ADD.get());
    button.addClickHandler(new ClickHandler() {

      @Override
      public void onClick(ClickEvent event) {
        drawEndpointAddDialogue();
      }
View Full Code Here

TOP

Related Classes of com.smartgwt.client.widgets.IconButton

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.