Class GridPageSettings
Inheritance
System.Object
GridPageSettings
Assembly: Syncfusion.EJ2.dll
Syntax
public class GridPageSettings : EJTagHelper
Constructors
GridPageSettings()
Declaration
public GridPageSettings()
Properties
ContentTemplate
To get or set value for ContentTemplate.
Declaration
public MvcTemplate<object> ContentTemplate { get; set; }
Property Value
CurrentPage
Defines the current page number of the pager.
Declaration
public double CurrentPage { get; set; }
Property Value
Type |
Description |
System.Double |
|
EnableQueryString
If enableQueryString
set to true,
then it pass current page information as a query string along with the URL while navigating to other page.
Declaration
public bool EnableQueryString { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
IsComplex
Declaration
protected override bool IsComplex { get; }
Property Value
Type |
Description |
System.Boolean |
|
Overrides
PageCount
Defines the number of pages to be displayed in the pager container.
Declaration
public double PageCount { get; set; }
Property Value
Type |
Description |
System.Double |
|
PageSize
Defines the number of records to be displayed per page.
Declaration
public double PageSize { get; set; }
Property Value
Type |
Description |
System.Double |
|
PageSizes
If pageSizes
set to true or Array of values,
It renders DropDownList in the pager which allow us to select pageSize from DropDownList.
Declaration
public object PageSizes { get; set; }
Property Value
Type |
Description |
System.Object |
|
ParentPropertyName
Declaration
protected override string ParentPropertyName { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Template
Defines the template which renders customized elements in pager instead of default elements.
It accepts either template string or HTML element ID.
Declaration
public string Template { get; set; }
Property Value
Type |
Description |
System.String |
|