EnumTaskBoardColumnButtons
Defines the action buttons that can be rendered in each column header. Combine values using the bitwise OR operator to show multiple buttons. Use None to hide all column action buttons. Configure the default for all columns via Buttons. Override per column using ColumnButtonsField.
Definition
Namespace:Telerik.Blazor
Assembly:Telerik.Blazor.dll
Syntax:
[Flags]
public enum TaskBoardColumnButtons
Fields
AddCard
Renders an add button in the column header that adds a new card to this column. Requires an OnCardCreate handler to persist the new card.
DeleteColumn
Renders a delete button in the column header that removes the entire column from the board.
When ConfirmDelete is true, a confirmation dialog is shown first.
Requires an OnColumnDelete handler to persist deletion.
EditColumn
Renders an edit button in the column header that opens the column for editing (title, WIP limit). Requires an OnColumnUpdate handler to persist changes.
None
No action buttons are rendered in the column header.