Uses of Interface
org.zkoss.pivot.PivotModel
-
Packages that use PivotModel Package Description org.zkoss.pivot Major classes of ZK Pivottable.org.zkoss.pivot.event Pivottable events.org.zkoss.pivot.impl Implementation of models.org.zkoss.pivot.impl.util Utilities for model implementations and Pivottable.org.zkoss.pivot.util Pivottable related utility classes. -
-
Uses of PivotModel in org.zkoss.pivot
Subinterfaces of PivotModel in org.zkoss.pivot Modifier and Type Interface Description interface
PivotModelExt
An extension ofPivotModel
which specifies control methods, used byPivotFieldControl
.Methods in org.zkoss.pivot that return PivotModel Modifier and Type Method Description PivotModel
Pivottable. getModel()
Returns pivot model.Methods in org.zkoss.pivot with parameters of type PivotModel Modifier and Type Method Description void
Pivottable. setModel(PivotModel model)
Sets the pivot model. -
Uses of PivotModel in org.zkoss.pivot.event
Methods in org.zkoss.pivot.event that return PivotModel Modifier and Type Method Description PivotModel
PivotDataEvent. getPivotModel()
Returns the pivot model which fires the event.Constructors in org.zkoss.pivot.event with parameters of type PivotModel Constructor Description PivotDataEvent(PivotModel model)
All row data in the pivot model has changed, listeners should discard any state that was based on the rows and requery thePivotModel
to get the new row count and all the appropriate values.PivotDataEvent(PivotModel model, int row)
This row of data has been updated.PivotDataEvent(PivotModel model, int firstRow, int lastRow)
The data in rows [firstRow, lastRow] have been updated.PivotDataEvent(PivotModel model, int firstRow, int lastRow, int column)
The cells in column column in the range [firstRow, lastRow] have been updated.PivotDataEvent(PivotModel model, int firstRow, int lastRow, int column, int type)
The cells from (firstRow, column) to (lastRow, column) have been changed. -
Uses of PivotModel in org.zkoss.pivot.impl
Classes in org.zkoss.pivot.impl that implement PivotModel Modifier and Type Class Description class
AbstractPivotModel
A skeletal implementation forPivotModel
class
TabularPivotModel
An implementation of PivotModel, which takes raw data in the form of a two dimensional list. -
Uses of PivotModel in org.zkoss.pivot.impl.util
Constructors in org.zkoss.pivot.impl.util with parameters of type PivotModel Constructor Description DataCellTraverser(PivotModel model, boolean isColOrient, int rowSize, int colSize, PagingInfo pgInfo, boolean open)
HeaderSizeInfo(Pivottable table, PivotRenderer renderer, PivotModel model, boolean isColumnOrient)
-
Uses of PivotModel in org.zkoss.pivot.util
Methods in org.zkoss.pivot.util with parameters of type PivotModel Modifier and Type Method Description static PivotExportContext
Exports. getExportContext(PivotModel model, PivotRenderer renderer, String dataFieldOrient, boolean open, String[] titles)
Return a context for exporting Pivottable informationstatic PivotExportContext
Exports. getExportContext(PivotModel model, PivotRenderer renderer, String dataFieldOrient, boolean open, String[] titles, boolean useRendererForDataCells)
-