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.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeListCommandColumn : CommandColumnBase, IColumn, IDisposable, ITreeListDataColumn, IDataColumn<TreeListCellRenderEventArgs>
Constructors
TreeListCommandColumn()
Declaration
public TreeListCommandColumn()
Properties
OnCellRender
Called each time a cell is rendered. Use this to add custom classes to the cell based on its value.
Declaration
public Action<TreeListCellRenderEventArgs> OnCellRender { get; set; }
Property Value
System.Action<TreeListCellRenderEventArgs>
|