Class
TreeListCommandColumn

The class for the command column of the treelist 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:

cs-api-definition
public class TreeListCommandColumn : CommandColumnBase, IComponent, IHandleEvent, IHandleAfterRender, IColumn, IDisposable, ITreeListColumnMenuColumn, ITableColumnMenuColumn

Inheritance: objectComponentBaseColumnBaseCommandColumnBaseTreeListCommandColumn

Implements: IColumnIComponentIDisposableIHandleAfterRenderIHandleEventITableColumnMenuColumnITreeListColumnMenuColumn

Inherited Members CommandColumnBase.CommandsCommandColumnBase.ShowColumnMenuCommandColumnBase.VisibleInColumnChooserCommandColumnBase.ChildContentColumnBase.OnInitialized()ColumnBase.SetParametersAsync(ParameterView)ColumnBase.OnParametersSetAsync()ColumnBase.OnAfterRender(bool)ColumnBase.Dispose()ColumnBase.ParentColumnColumnBase.TitleColumnBase.HeaderClassColumnBase.WidthColumnBase.MinResizableWidthColumnBase.MaxResizableWidthColumnBase.VisibleColumnBase.ReorderableColumnBase.ResizableColumnBase.LockedColumnBase.IdColumnBase.ColumnsCollectionComponentBase.BuildRenderTree(RenderTreeBuilder)ComponentBase.OnInitializedAsync()ComponentBase.OnParametersSet()ComponentBase.StateHasChanged()ComponentBase.ShouldRender()ComponentBase.OnAfterRenderAsync(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)

Constructors

TreeListCommandColumn()

Declaration

cs-api-definition
public TreeListCommandColumn()

Properties

Lockable

Specifies if the column can be locked from the UI.

Declaration

cs-api-definition
[Parameter]
public bool Lockable { get; set; }

Property Value

bool

Implements ITableColumnMenuColumn.Lockable

OnCellRender

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

Declaration

cs-api-definition
[Parameter]
public Action<TreeListCellRenderEventArgs> OnCellRender { get; set; }

Property Value

Action<TreeListCellRenderEventArgs>

ShowColumnChooser

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

Declaration

cs-api-definition
[Parameter]
public bool ShowColumnChooser { get; set; }

Property Value

bool

Implements ITableColumnMenuColumn.ShowColumnChooser