Class
TaskBoardCardClickEventArgs<TItem>

The event arguments for the OnCardClick event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

The type of the card data items in CardData.

Syntax:

cs-api-definition
public class TaskBoardCardClickEventArgs<TItem> : EventArgs

Inheritance: objectEventArgsTaskBoardCardClickEventArgs<TItem>

Inherited Members EventArgs.Empty

Constructors

TaskBoardCardClickEventArgs()

Declaration

cs-api-definition
public TaskBoardCardClickEventArgs()

TaskBoardCardClickEventArgs(TItem)

Declaration

cs-api-definition
public TaskBoardCardClickEventArgs(TItem item)

Parameters

item

TItem

Properties

Item

The card data item that was clicked. Use this to identify the card and navigate to a detail view or open a custom dialog.

Declaration

cs-api-definition
public TItem Item { get; set; }

Property Value

TItem