Package gwtquery.plugins.draggable.client.DraggableOptions

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


      GWT.log("select element");
      select(currentDraggable, options.getSelectedClassName());
    }

    // select other draggable elements if select options is set
    SelectFunction selectFunction = options.getSelect();
    if (selectFunction != null) {
      GQuery followers = selectFunction.selectElements();
      followers.each(new Function() {
        @Override
        public void f(Element e) {
          DraggableHandler handler = DraggableHandler.getInstance(e);
          if (handler != null) {
View Full Code Here


    DraggableOptions options = getOptions(initialDraggable);

    // deselect automatic selected elements
    // select other draggable elements if select options is set
    SelectFunction selectFunction = options.getSelect();
    if (selectFunction != null) {
      GQuery followers = selectFunction.selectElements();
      for (Element e : followers.elements()) {
        unselect(e);
      }
    }
View Full Code Here

TOP

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

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.