Class DxGridSummary
Configures the filter row.
Inheritance
Namespace: Emby.Web.GenericEdit.Elements.DxGrid
Assembly: Emby.Web.GenericEdit.dll
Syntax
public class DxGridSummary
Properties
groupItems
Specifies items of the group summary.
Declaration
public List<DxGridSummaryGroupItem> groupItems { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DxGridSummaryGroupItem> |
Remarks
The group summary provides a synopsis of a group of data. Groups of data are formed in the process of grouping. The group summary contains several items. Each item displays a value that is a product of applying an aggregate function to a group of data.
To specify the items of the group summary, declare an array of objects, each of which contains at least two fields: column and summaryType. The column field specifies the identifier of the column that provides data for an aggregate function. The summaryType specifies the aggregate function to be applied.
recalculateWhileEditing
Specifies whether to recalculate summaries while a user edits data.
Declaration
public bool? recalculateWhileEditing { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
skipEmptyValues
Specifies whether or not to skip empty strings, null and undefined values when calculating a summary.
Declaration
public bool? skipEmptyValues { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Remarks
Specified in the summary object, this option affects all summaries in the grid. In addition, the same option can be specified for an individual summary. It will override the global setting.