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
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class TreeListCommandColumn : CommandColumnBase, IComponent, IHandleEvent, IHandleAfterRender, IColumn, IDisposable, ITreeListColumnMenuColumn, ITableColumnMenuColumn
Inheritance: objectComponentBaseColumnBaseCommandColumnBaseTreeListCommandColumn
Implements:
Inherited Members
Constructors
C#
public TreeListCommandColumn()
Properties
Specifies if the column can be locked from the UI.
C#
[Parameter]
public bool Lockable { get; set; }
Implements:
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: