Package org.springmodules.xt.ajax.action

Examples of org.springmodules.xt.ajax.action.RemoveElementAction


        return response;
    }
   
    public AjaxResponse removeElement(AjaxActionEvent event) {
        // Create an ajax action for removing the element:
        RemoveElementAction action = new RemoveElementAction("toRemove");
       
        // Create a concrete ajax response:
        AjaxResponse response = new AjaxResponseImpl();
        // Add the action:
        response.addAction(action);
View Full Code Here

TOP

Related Classes of org.springmodules.xt.ajax.action.RemoveElementAction

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.