Package org.openfaces.component.table

Examples of org.openfaces.component.table.Scrolling


        if (headerOrFooter == null)
            return null;
        HeaderCell cell = new HeaderCell(null, headerOrFooter, cellTag, null);

        int colSpan;
        Scrolling scrolling = tableStructure.getScrolling();
        if (scrolling == null)
            colSpan = columns.size();
        else {
            colSpan = 1;
            if (tableStructure.getLeftFixedCols() > 0)
View Full Code Here


        tabbedPane.getChildren().add(new SubPanel(
                Components.createOutputText(context, "Element Inspector"),
                elementProperties
        ));
        elementProperties.setStyle("width: 100%; height: 100%;");
        elementProperties.getChildren().add(new Scrolling());
        elementProperties.getChildren().add(new ColumnResizing());
        elementProperties.setVerticalGridLines("1px solid gray");
        Column col1 = new Column();
        col1.setStyle("width: 150px");
        col1.setHeader(Components.createOutputText(context, "Property"));
View Full Code Here

        addButton(context, toolbar, "pauseLog", "Pause");


        DataTable logTable = (DataTable) Components.createChildComponent(
                context, panelGrid, DataTable.COMPONENT_TYPE, "log");
        Scrolling scrolling = new Scrolling();
        logTable.getChildren().add(scrolling);
        logTable.getChildren().add(new ColumnResizing());
        if (Environment.isExplorer())
            logTable.setStyle("width: 100%");
        else
View Full Code Here

TOP

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

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.