Package org.openfaces.component.table

Examples of org.openfaces.component.table.Row


    public Cell findTableCell(List customRows) {
        if (tableRowDeclarationIndex == -1) {
            // can be the case for synthetic group header row cells
            return null;
        }
        Row tableRow = (Row) customRows.get(tableRowDeclarationIndex);
        List<Cell> cells = new ArrayList<Cell>();
        List<UIComponent> children = tableRow.getChildren();
        for (UIComponent child : children) {
            if (child instanceof Cell)
                cells.add((Cell) child);
        }
        Cell result = cells.get(tableCellDeclarationIndex);
View Full Code Here


    public List<UIComponent> getA4jSupportComponentsForThisRow(List customRows) {
        if (a4jEnabledRowDeclarationIndexes == null)
            return Collections.emptyList();
        List<UIComponent> result = new ArrayList<UIComponent>();
        for (Integer index : a4jEnabledRowDeclarationIndexes) {
            Row tableRow = (Row) customRows.get(index);
            UIComponent a4jSupport = Rendering.getA4jSupportForComponent(tableRow);
            result.add(a4jSupport);
        }

        return result;
View Full Code Here

TOP

Related Classes of org.openfaces.component.table.Row

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.