ClassGridCommandColumn
Defines a command column in the grid where you can put buttons for built-in commands like Edit, Save, Delete, Cancel; as well as buttons for custom commands whose OnClick you can handle.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class GridCommandColumn : CommandColumnBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable, IColumn, IGridColumnMenuColumn, ITableColumnMenuColumn
Inheritance: objectComponentBaseColumnBaseCommandColumnBaseGridCommandColumn
Implements:
Inherited Members
Constructors
GridCommandColumn()
Declaration
public GridCommandColumn()
Properties
Lockable
Allows users to lock or unlock this command column using the column menu. Locked columns remain visible when scrolling horizontally.
Declaration
[Parameter]
public bool Lockable { get; set; }
Property Value
Implements
OnCellRender
Fires every time a cell in this command column is rendered. Use this to conditionally apply custom CSS classes or styling to command cells.
Declaration
[Parameter]
public Action<GridCellRenderEventArgs> OnCellRender { get; set; }
Property Value
ShowColumnChooser
Shows the column chooser option in the column menu, allowing users to hide or show columns interactively.
Declaration
[Parameter]
public bool ShowColumnChooser { get; set; }
Property Value
Implements