Package gwtquery.plugins.draggable.client.DraggableOptions

Examples of gwtquery.plugins.draggable.client.DraggableOptions.HelperType


    }
  }

  @UiHandler(value = "helperListBox")
  public void onHelperChange(ChangeEvent e) {
    HelperType type = HelperType.valueOf(helperListBox.getValue(helperListBox
        .getSelectedIndex()));

    if (type == HelperType.ELEMENT) {
      GQuery helper = $("<div class=\"myHelper\" style=\"width: 150px;height: 150px;\">I'm a custom helper</div>");
      getOptions().setHelper(helper);
View Full Code Here

TOP

Related Classes of gwtquery.plugins.draggable.client.DraggableOptions.HelperType

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.