ClassTelerikListView<TItem>
The class for the TelerikListView component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TItem
Syntax:
public class TelerikListView<TItem> : GridBase<TItem>, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentDataBoundComponent<TItem>GridBase<TItem>TelerikListView<TItem>
Implements:
Inherited Members
Constructors
TelerikListView()
Declaration
public TelerikListView()
Properties
ComponentLoaderContainer
Declaration
public ComponentLoaderContainer ComponentLoaderContainer { get; set; }
Property Value
ComponentLoaderContainer
EditTemplate
Defines the edit template of the ListView.
Declaration
[Parameter]
public RenderFragment<TItem> EditTemplate { get; set; }
Property Value
RenderFragment<TItem>
EnableLoaderContainer
Defines whether the loading container should be shown when there are long-running operations.
Declaration
[Parameter]
public bool EnableLoaderContainer { get; set; }
Property Value
FooterTemplate
Defines the footer template of the ListView.
Declaration
[Parameter]
public RenderFragment FooterTemplate { get; set; }
Property Value
HeaderTemplate
Defines the header template of the ListView.
Declaration
[Parameter]
public RenderFragment HeaderTemplate { get; set; }
Property Value
ListViewSettings
Defines the settings template of the ListView.
Declaration
[Parameter]
public RenderFragment ListViewSettings { get; set; }
Property Value
OnCancel
Fires when the Cancel command is executed.
Declaration
[Parameter]
public EventCallback<ListViewCommandEventArgs> OnCancel { get; set; }
Property Value
OnCreate
Fires when the Create command is executed.
Declaration
[Parameter]
public EventCallback<ListViewCommandEventArgs> OnCreate { get; set; }
Property Value
OnDelete
Fires when the Delete command is executed.
Declaration
[Parameter]
public EventCallback<ListViewCommandEventArgs> OnDelete { get; set; }
Property Value
OnEdit
Fires when the Edit command is executed.
Declaration
[Parameter]
public EventCallback<ListViewCommandEventArgs> OnEdit { get; set; }
Property Value
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
[Parameter]
public EventCallback<ListViewReadEventArgs> OnRead { get; set; }
Property Value
OnUpdate
Fires when the Update command is executed.
Declaration
[Parameter]
public EventCallback<ListViewCommandEventArgs> OnUpdate { get; set; }
Property Value
Template
Defines the default template of the ListView.
Declaration
[Parameter]
public RenderFragment<TItem> Template { get; set; }
Property Value
RenderFragment<TItem>
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides