Package org.eclipse.nebula.widgets.nattable.summaryrow

Examples of org.eclipse.nebula.widgets.nattable.summaryrow.SummaryRowLayer


            this.selectionLayer = new SelectionLayer(this.columnHideShowLayer);
            this.viewportLayer = new ViewportLayer(this.selectionLayer);

            if (summaryRowOnTop) {
                // create a standalone SummaryRowLayer
                SummaryRowLayer summaryRowLayer = new SummaryRowLayer(
                        this.bodyDataLayer, configRegistry, false);
                // configure the SummaryRowLayer to be rendered standalone
                summaryRowLayer.setStandalone(true);
                summaryRowLayer.addConfiguration(
                        new ExampleSummaryRowGridConfiguration(this.bodyDataLayer.getDataProvider()));

                CompositeLayer composite = new CompositeLayer(1, 2);
                composite.setChildLayer(SUMMARY_REGION, summaryRowLayer, 0, 0);
                composite.setChildLayer(GridRegion.BODY, this.viewportLayer, 0, 1);
View Full Code Here

TOP

Related Classes of org.eclipse.nebula.widgets.nattable.summaryrow.SummaryRowLayer

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.