Package org.opencustomer.framework.webapp.panel

Examples of org.opencustomer.framework.webapp.panel.Action


       
        html.append("<fieldset class=\"").append(getProperty("block.action")).append("\">");
       
        if(panelEditable)
        {
            Action deleteAction = panel.getAction(Action.Type.DELETE);
            if(deleteAction != null)
            {
                if(panel.getEntity().getId() == null || !deleteAction.isSelectable())
                    renderButton(html,  "doDelete", "button.delete", "button.delete.title.inactive", getProperty("block.action.leftButton"), null, true);
                else
                    renderButton(html, "doDelete", "button.delete", "button.delete.title.active", getProperty("block.action.leftButton"), 'd', false);
            }
           
View Full Code Here

TOP

Related Classes of org.opencustomer.framework.webapp.panel.Action

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.