Class
TaskBoardCardPriority

Defines a named priority level for the TelerikTaskBoard<TItem, TColumn>. Add instances to the Priorities list on the board. Each priority is matched against the card's CardPriorityField value to render a colored indicator on matching cards and populate the priority dropdown in the edit dialog.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TaskBoardCardPriority

Inheritance: objectTaskBoardCardPriority

Constructors

TaskBoardCardPriority()

Declaration

cs-api-definition
public TaskBoardCardPriority()

Properties

Color

Required. A CSS color value applied as the colored priority indicator on matching cards. Accepts any valid CSS color: hex ("#cc0000"), named ("red"), or RGB ("rgb(204,0,0)").

Declaration

cs-api-definition
public string Color { get; set; }

Property Value

string

Text

The human-readable label shown in the edit dialog priority dropdown. Falls back to Value when not set.

Declaration

cs-api-definition
public string Text { get; set; }

Property Value

string

Value

Required. The unique priority key matched against each card's CardPriorityField value (e.g. "high", "critical"). Also used as the label in the edit dialog priority dropdown when Text is not set.

Declaration

cs-api-definition
public string Value { get; set; }

Property Value

string