New to Telerik UI for BlazorStart a free 30-day trial

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

Constructors

C#
public GridCommandColumn()

Properties

Allows users to lock or unlock this command column using the column menu. Locked columns remain visible when scrolling horizontally.

C#
[Parameter]
public bool Lockable { get; set; }

Implements: ITableColumnMenuColumn.Lockable

Fires every time a cell in this command column is rendered. Use this to conditionally apply custom CSS classes or styling to command cells.

C#
[Parameter]
public Action<GridCellRenderEventArgs> OnCellRender { get; set; }

Shows the column chooser option in the column menu, allowing users to hide or show columns interactively.

C#
[Parameter]
public bool ShowColumnChooser { get; set; }

Implements: ITableColumnMenuColumn.ShowColumnChooser