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

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:

C#
public class TaskBoardCardClickEventArgs<TItem> : EventArgs

Inheritance: objectEventArgsTaskBoardCardClickEventArgs<TItem>

Inherited Members EventArgs.Empty

Constructors

C#
public TaskBoardCardClickEventArgs()
C#
public TaskBoardCardClickEventArgs(TItem item)
Parameters:itemTItem

Properties

Item

TItem

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

C#
public TItem Item { get; set; }