Struct JqGridGroupHeader
Represents options for jqGrid grouping header.
Namespace: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.Options
Assembly: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.dll
Syntax
public struct JqGridGroupHeader
Constructors
JqGridGroupHeader(String, Int32, String)
Initializes new JqGridGroupHeader. The name from colModel from which the grouping header begin, including the same field. The number of columns which are included for this group. The text for this group (can contain HTML tags).
Declaration
public JqGridGroupHeader(string startColumn, int numberOfColumns, string title = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | startColumn | |
System.Int32 | numberOfColumns | |
System.String | title |
Properties
NumberOfColumns
Gets the number of columns which are included for this group.
Declaration
public int NumberOfColumns { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
StartColumn
Gets the name from colModel from which the grouping header begin, including the same field.
Declaration
public string StartColumn { get; }
Property Value
Type | Description |
---|---|
System.String |
Title
Gets the text for this group (can contain HTML tags).
Declaration
public string Title { get; }
Property Value
Type | Description |
---|---|
System.String |