Class TableCommandButtonBase<TClickEventArgs>
The base class for command buttons in other components such as the ListView and the Grid.
Inheritance
Inherited Members
Namespace: Telerik.Blazor.Components.Common.Grid.Buttons
Assembly: Telerik.Blazor.dll
Syntax
public abstract class TableCommandButtonBase<TClickEventArgs> : CommandButtonBase, IDisposable where TClickEventArgs : TableGridBaseCommandEventArgs, new()
Type Parameters
TClickEventArgs
|
Constructors
TableCommandButtonBase()
Declaration
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
public EventCallback<TClickEventArgs> OnClick { get; set; }
Property Value
Microsoft.AspNetCore.Components.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.
Declaration
public bool ShowInEdit { get; set; }
Property Value
System.Boolean
|
Visible
For internal use.
Declaration
public bool Visible { get; set; }
Property Value
System.Boolean
|
Methods
OnParametersSet()
Declaration
protected override void OnParametersSet()