Package org.springmodules.xt.ajax.action.prototype.scriptaculous

Examples of org.springmodules.xt.ajax.action.prototype.scriptaculous.Draggable


        return response;
    }
   
    public AjaxResponse enableDnD(AjaxActionEvent event) {
        // Make the draggable:
        Draggable action1 = new Draggable("draggable");
        action1.addOption("revert", true);
        // Add the droppable:
        AddDroppable action2 = new AddDroppable("droppable");
        action2.addOption("onDrop", "function(draggable, droppable) { showAlertOnDrop(draggable, droppable); }");
       
        // Create a concrete ajax response:
View Full Code Here

TOP

Related Classes of org.springmodules.xt.ajax.action.prototype.scriptaculous.Draggable

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.