Examples of UIActionLink


Examples of org.alfresco.web.ui.common.component.UIActionLink

     * Action handler called when the enable or disable action is clicked.
     *
     * @param event
     */
    public void setActive(final ActionEvent event) {
        UIActionLink link = (UIActionLink) event.getComponent();

        Map<String, String> params = link.getParameterMap();
        String id = params.get(PARAM_ID);
        String active = params.get(PARAM_ACTIVE);

        final Boolean activeFlag = Boolean.parseBoolean(active);
        final FacesContext fc = FacesContext.getCurrentInstance();
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.