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

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:

C#
public class TaskBoardCardPriority

Inheritance: objectTaskBoardCardPriority

Constructors

C#
public TaskBoardCardPriority()

Properties

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)").

C#
public string Color { get; set; }

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

C#
public string Text { get; set; }

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.

C#
public string Value { get; set; }