Class TreeGridPageSettings
Options for enabling and configuring the paging related operations.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class TreeGridPageSettings : EJTagHelper
Constructors
TreeGridPageSettings()
Declaration
public TreeGridPageSettings()
Properties
CurrentPage
Gets or sets a current page
Declaration
[JsonProperty("currentPage")]
public int CurrentPage { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PageCount
Gets or sets a number of page options show for page navigation
Declaration
[JsonProperty("pageCount")]
public int PageCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PageSize
Gets or sets a number of records per page.
Declaration
[JsonProperty("pageSize")]
public int PageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PageSizeMode
Gets or sets a page size mode for paging
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("pageSizeMode")]
public TreeGridPageSizeMode PageSizeMode { get; set; }
Property Value
Type | Description |
---|---|
TreeGridPageSizeMode |
PrintMode
Gets or sets a mode of print in paging.
Declaration
[JsonProperty("printMode")]
[JsonConverter(typeof(StringEnumConverter))]
public TreeGridPrintMode PrintMode { get; set; }
Property Value
Type | Description |
---|---|
TreeGridPrintMode |
Template
Gets or sets a custom template for paging.
Declaration
[JsonProperty("template")]
public string Template { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TotalRecordsCount
Gets a total numebr of records used in tree grid.
Declaration
[JsonProperty("totalRecordsCount")]
public int TotalRecordsCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |