Class JqGridGroupingView
Class which represents options for jqGrid grouping view.
Inheritance
Namespace: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.Options
Assembly: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.dll
Syntax
public class JqGridGroupingView : object
Constructors
JqGridGroupingView()
Initializes a new instance of the JqGridGroupingView class.
Declaration
public JqGridGroupingView()
Properties
Collapse
Gets or sets the value indicating if the groups should be initially collapsed.
Declaration
public bool Collapse { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ColumnShow
Gets or sets the array of values for every level indicating if the column on which we group is visible.
Declaration
public bool[] ColumnShow { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean[] |
DataSorted
Gets or sets the value indicating if the group names should be added to request SortingName
Declaration
public bool DataSorted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Fields
Gets or sets the array of names from ColumnsModels on which jqGrid will group. Each value represents separate level (jqGrid supports only one level at this time).
Declaration
public string[] Fields { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
FormatDisplayFieldCallbacks
Gets or sets the array of callbacks for formatting group display values.
Declaration
public string[] FormatDisplayFieldCallbacks { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
IsInTheSameGroupCallbacks
Gets or sets the array of callbacks which allow "not exact" grouping.
Declaration
public string[] IsInTheSameGroupCallbacks { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
MinusIcon
Gets or sets the icon (form UI theme images) that will be used if the group is expanded.
Declaration
public string MinusIcon { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Orders
Gets or sets the array of initial sort orders for every level.
Declaration
public JqGridSortingOrders[] Orders { get; set; }
Property Value
Type | Description |
---|---|
JqGridSortingOrders[] |
PlusIcon
Gets or sets the icon (form UI theme images) that will be used if the group is collapsed.
Declaration
public string PlusIcon { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Summary
Gets or sets the values for every level indicating if the summary (footer) row for that level is enabled.
Declaration
public bool[] Summary { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean[] |
SummaryOnHide
Gets or sets the value indicating if summary row is visible when the group is collapsed.
Declaration
public bool SummaryOnHide { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Texts
Gets or sets the array of grouping headers texts for every level.
Declaration
public string[] Texts { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |