ClassListViewCommandButton
Class
A component that lets you add a command button inside a ListView item for built-in or custom actions. Supports built-in editing commands (Edit/Update/Cancel/Delete) and custom commands via OnClick; routes clicks through the owning ListView to execute CRUD logic.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
cs-api-definition
public class ListViewCommandButton : CommandButtonBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentButtonBaseCommandButtonBaseListViewCommandButton
Implements:
Inherited Members
Constructors
ListViewCommandButton()
Declaration
cs-api-definition
public ListViewCommandButton()
Properties
OnClick
The click handler that will be executed when the button is clicked. For the built-in commands, consider using only the built-in listview events to handle the CRUD operations.
Declaration
cs-api-definition
[Parameter]
public EventCallback<ListViewCommandEventArgs> OnClick { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
cs-api-definition
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides