Class TelerikListView<TItem>
The class for the TelerikListView component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikListView<TItem> : GridBase<TItem>, IDisposable, IPagerContainer, IListViewCommandContainer
Type Parameters
TItem
|
Constructors
TelerikListView()
Declaration
public TelerikListView()
Properties
ComponentLoaderContainer
Declaration
public ComponentLoaderContainer ComponentLoaderContainer { get; set; }
Property Value
Telerik.Blazor.Components.Common.Loader.ComponentLoaderContainer
|
EditTemplate
Defines the edit template of the ListView.
Declaration
public RenderFragment<TItem> EditTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment<TItem>
|
EnableLoaderContainer
Defines whether the loading container should be shown when there are long-running operations.
Declaration
public bool EnableLoaderContainer { get; set; }
Property Value
System.Boolean
|
FooterTemplate
HeaderTemplate
Defines the header template of the ListView.
Declaration
public RenderFragment HeaderTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
ListViewSettings
Defines the settings template of the ListView.
Declaration
public RenderFragment ListViewSettings { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
OnCancel
Fires when the Cancel command is executed.
Declaration
public EventCallback<ListViewCommandEventArgs> OnCancel { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<ListViewCommandEventArgs>
|
OnCreate
Fires when the Create command is executed.
Declaration
public EventCallback<ListViewCommandEventArgs> OnCreate { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<ListViewCommandEventArgs>
|
OnDelete
Fires when the Delete command is executed.
Declaration
public EventCallback<ListViewCommandEventArgs> OnDelete { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<ListViewCommandEventArgs>
|
OnEdit
Fires when the Edit command is executed.
Declaration
public EventCallback<ListViewCommandEventArgs> OnEdit { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<ListViewCommandEventArgs>
|
OnRead
Fires when the data source is read. Use this to attach your own sorting, filtering and other logic. Once attached, you must implement all such data source operations here, the Component will no longer perform them for you.
Declaration
public EventCallback<ListViewReadEventArgs> OnRead { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<ListViewReadEventArgs>
|
OnUpdate
Fires when the Update command is executed.
Declaration
public EventCallback<ListViewCommandEventArgs> OnUpdate { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<ListViewCommandEventArgs>
|
Template
Defines the default template of the ListView.
Declaration
public RenderFragment<TItem> Template { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment<TItem>
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
OnAfterRenderAsync(Boolean)
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
System.Boolean
firstRender
|
Returns
System.Threading.Tasks.Task
|
Overrides
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
Overrides
SetFocusedItemIndex(Int32)
Declaration
public void SetFocusedItemIndex(int index)
Parameters
System.Int32
index
|