New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
[Flags]
public enum TaskBoardColumnButtons

Fields

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.

C#
AddCard = 2

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.

C#
DeleteColumn = 4

Renders an edit button in the column header that opens the column for editing (title, WIP limit). Requires an OnColumnUpdate handler to persist changes.

C#
EditColumn = 1

No action buttons are rendered in the column header.

C#
None = 0
In this article
DefinitionFieldsAddCardDeleteColumnEditColumnNone
Not finding the help you need?
Contact Support