Package ro.fortsoft.wicket.pivot.PivotTableRenderModel

Examples of ro.fortsoft.wicket.pivot.PivotTableRenderModel.GrandTotalValueRenderCell


        if (cell instanceof DataValueRenderCell) {
          tmp = createValueLabel(value.newChildId(), cell.getRawValue(), cell.getPivotField());
          applyRowColSpan(cell, tmp);
          value.add(tmp);
        } else {
          GrandTotalValueRenderCell grandTotalCell = (GrandTotalValueRenderCell) cell;
          tmp = createGrandTotalLabel(value.newChildId(), grandTotalCell.getRawValue(), grandTotalCell.isForRow());
          applyRowColSpan(cell, tmp);
          tmp.add(AttributeModifier.append("class", "grand-total"));
          value.add(tmp);
        }
      }
View Full Code Here

TOP

Related Classes of ro.fortsoft.wicket.pivot.PivotTableRenderModel.GrandTotalValueRenderCell

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.