wijmo.grid.c1field Namespace > options type : aggregate Option |
Default value: 'none'
Causes the grid to calculate aggregate values on the column and place them in the column footer cell or group header and footer rows. Possible values are: "none", "count", "sum", "average", "min", "max", "std", "stdPop", "var", "varPop" and "custom".
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").c1field("option", "aggregate"); // Set value var newValue; // Type: string $(".selector").c1field("option", "aggregate", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [{ aggregate: "count" }]});