Class GridBase<TItem>
Inheritance
Inherited Members
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public abstract class GridBase<TItem> : DataBoundComponent<TItem>, IDisposable
Type Parameters
TItem
|
Constructors
GridBase()
Declaration
protected GridBase()
Properties
Height
Defines the height of the component.
Declaration
public string Height { get; set; }
Property Value
System.String
|
Page
Defines the selected page. Default value is 1. Requires Pageable="true".
Declaration
public virtual int Page { get; set; }
Property Value
System.Int32
|
Pageable
Defines whether the component is pageable.
Declaration
public bool Pageable { get; set; }
Property Value
System.Boolean
|
PageChanged
Fires when the user changes the page.
Declaration
public EventCallback<int> PageChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<System.Int32>
|
PageSize
Defines the page size of the component. Requires Pageable="true".
Declaration
public int PageSize { get; set; }
Property Value
System.Int32
|
TotalCount
The total number of items in the data source. Used when loading data on demand through an event like OnRead for the Grid.
Declaration
public virtual int TotalCount { get; set; }
Property Value
System.Int32
|
Width
Defines the width of the component.
Declaration
public string Width { get; set; }
Property Value
System.String
|
Methods
ShouldRender()
Declaration
protected override bool ShouldRender()
Returns
System.Boolean
|