Definition
Namespace:Telerik.Blazor
Assembly:Telerik.Blazor.dll
Syntax:
C#
[Flags]
public enum TaskBoardCardButtons
Fields
Renders a delete button that removes the card from the board.
When ConfirmDelete is true, a confirmation dialog is shown first.
Requires an OnCardDelete handler to persist deletion.
C#
DeleteCard = 2
Renders an edit button that opens the card in the side edit pane. Requires an OnCardUpdate handler to persist changes.
C#
EditCard = 1
No action buttons are rendered on the card.
C#
None = 0