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:
C#
public class TaskBoardColumnUpdateEventArgs<TColumn> : EventArgs
Inheritance: objectEventArgsTaskBoardColumnUpdateEventArgs<TColumn>
Inherited Members
Constructors
C#
public TaskBoardColumnUpdateEventArgs()
C#
public TaskBoardColumnUpdateEventArgs(TColumn item, TColumn originalItem)
Properties
Set to true to discard the changes and restore the column to its original state.
C#
public bool IsCancelled { get; set; }
Item
TColumn
The edited column data item with updated values. Persist this to your data source.
C#
public TColumn Item { get; set; }
OriginalItem
TColumn
A snapshot of the column data item before the user began editing. Use this to compare changes or revert if needed.
C#
public TColumn OriginalItem { get; set; }