Examples of invokeBeforeProcessDecodes()


Examples of org.openfaces.component.table.AbstractTable.invokeBeforeProcessDecodes()

        FacesContext context = FacesContext.getCurrentInstance();
        if (id.length() > 0 && (isNumberBasedId(id) || id.startsWith(":")) && parent instanceof AbstractTable) {
            final AbstractTable table = ((AbstractTable) parent);
            if (!isLastComponentInPath) {
                if (preProcessDecodesOnTables)
                    table.invokeBeforeProcessDecodes(context);
                if (preRenderResponseOnTables) {
                    table.invokeBeforeRenderResponse(context);
                    table.setRowIndex(-1); // make the succeeding setRowIndex call provide the just-read actual row data through request-scope variables
                }
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.