Class GridCommandColumn
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.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GridCommandColumn : CommandColumnBase, IDisposable, IGridCommandColumn, IColumn, IGridColumnMenuColumn, ITableColumnMenuColumn, IGridDataColumn, IDataColumn<GridCellRenderEventArgs>
Constructors
GridCommandColumn()
Declaration
public GridCommandColumn()
Properties
Lockable
Specifies if the column can be locked from the UI.
Declaration
public bool Lockable { get; set; }
Property Value
System.Boolean
|
Implements
OnCellRender
Called each time a cell is rendered. Use this to add custom classes to the cell based on its value.
Declaration
public Action<GridCellRenderEventArgs> OnCellRender { get; set; }
Property Value
System.Action<GridCellRenderEventArgs>
|
ShowColumnChooser
Specifies if the column chooser is displayed in the column menu.
Declaration
public bool ShowColumnChooser { get; set; }
Property Value
System.Boolean
|