ClassTaskBoardColumnUpdateEventArgs<TColumn>
Class
The event arguments for the OnColumnUpdate event.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TColumn
The type of the column data items in ColumnData.
Syntax:
cs-api-definition
public class TaskBoardColumnUpdateEventArgs<TColumn> : EventArgs
Inheritance: objectEventArgsTaskBoardColumnUpdateEventArgs<TColumn>
Inherited Members
Constructors
TaskBoardColumnUpdateEventArgs()
Declaration
cs-api-definition
public TaskBoardColumnUpdateEventArgs()
TaskBoardColumnUpdateEventArgs(TColumn, TColumn)
Declaration
cs-api-definition
public TaskBoardColumnUpdateEventArgs(TColumn item, TColumn originalItem)
Parameters
item
TColumn
originalItem
TColumn
Properties
IsCancelled
Set to true to discard the changes and restore the column to its original state.
Item
The edited column data item with updated values. Persist this to your data source.
Declaration
cs-api-definition
public TColumn Item { get; set; }
Property Value
TColumn
OriginalItem
A snapshot of the column data item before the user began editing. Use this to compare changes or revert if needed.
Declaration
cs-api-definition
public TColumn OriginalItem { get; set; }
Property Value
TColumn