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

Examples of org.springmodules.xt.ajax.action.prototype.HideElement


        return response;
    }
   
    public AjaxResponse hideElement(AjaxActionEvent event) {
        // Create an ajax action for hiding an element:
        HideElement action = new HideElement("toHide");
       
        // 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.prototype.HideElement

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.