Enum
TaskBoardColumnButtons

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:

cs-api-definition
[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.

Declaration

cs-api-definition
AddCard = 2

Field Value

TaskBoardColumnButtons

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.

Declaration

cs-api-definition
DeleteColumn = 4

Field Value

TaskBoardColumnButtons

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.

Declaration

cs-api-definition
EditColumn = 1

Field Value

TaskBoardColumnButtons

None

No action buttons are rendered in the column header.

Declaration

cs-api-definition
None = 0

Field Value

TaskBoardColumnButtons

In this article
DefinitionFieldsAddCardDeleteColumnEditColumnNone
Not finding the help you need?
Contact Support