Examples of DroppableImpl


Examples of org.olat.core.gui.control.dragdrop.DroppableImpl

   * @param ureq
   */
  protected void doDispatchRequest(UserRequest ureq) {
    if (dragAndDropImpl != null) {
      // a drop is dispatched to the panel
      DroppableImpl di = dragAndDropImpl.getDroppableImpl();
      if (di != null) {
        String dropid = ureq.getParameter("v");
        List accDrags = di.getAccepted();
        for (Iterator it_accdrags = accDrags.iterator(); it_accdrags.hasNext();) {
          Draggable dr = (Draggable) it_accdrags.next();
          DragSource ds = dr.find(dropid);
          if (ds != null) {
            // found!
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.