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
Constructors
C#
public TaskBoardCardClickEventArgs()
C#
public TaskBoardCardClickEventArgs(TItem item)
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; }