ClassTableCommandButtonBase<TClickEventArgs>
Class
The base class for command buttons in other components such as the ListView and the Grid.
Definition
Namespace:Telerik.Blazor.Components.Common.Grid.Buttons
Assembly:Telerik.Blazor.dll
Type Parameters:
TClickEventArgs
Syntax:
cs-api-definition
public abstract class TableCommandButtonBase<TClickEventArgs> : CommandButtonBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable where TClickEventArgs : TableGridBaseCommandEventArgs, new()
Inheritance: objectComponentBaseBaseComponentButtonBaseCommandButtonBaseTableCommandButtonBase<TClickEventArgs>
Derived Classes:
Implements:
Inherited Members
Constructors
TableCommandButtonBase()
Declaration
cs-api-definition
protected TableCommandButtonBase()
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 grid events to handle the CRUD operations.
Declaration
cs-api-definition
[Parameter]
public EventCallback<TClickEventArgs> OnClick { get; set; }
Property Value
EventCallback<TClickEventArgs>
ShowInEdit
Defines whether the button will be shown when the row is in edit mode. Set to false to make it visible only in read mode.
Methods
OnParametersSet()
Declaration
cs-api-definition
protected override void OnParametersSet()
Overrides