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

A command column of the TelerikTreeList<TItem> 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 TreeListCommandColumn()

Properties

Specifies if the column can be locked from the UI.

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

Implements: ITableColumnMenuColumn.Lockable

Called each time a cell is rendered. Use this to add custom classes to the cell based on its value.

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

Specifies if the column chooser is displayed in the column menu.

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

Implements: ITableColumnMenuColumn.ShowColumnChooser