Class ActionEventArgs<TValue>
Provides event data for actions performed on the Kanban board.
Inheritance
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | The type of data associated with the Kanban actions. |
Remarks
This class encapsulates data related to actions such as adding, changing, and deleting records on the Kanban board.
Constructors
ActionEventArgs()
Declaration
public ActionEventArgs()
Properties
AddedRecords
Gets or sets the added records based on the action.
Declaration
public IEnumerable<TValue> AddedRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TValue> | An enumeration of type |
Cancel
Gets or sets a value indicating whether the action can be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Setting this property to true
cancels the action currently in progress.
ChangedRecords
Gets or sets the changed records based on the action.
Declaration
public IEnumerable<TValue> ChangedRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TValue> | An System.Collections.Generic.IEnumerable<> of the appropriate type |
DeletedRecords
Gets or sets the deleted records based on the action.
Declaration
public IEnumerable<TValue> DeletedRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TValue> | An enumeration of type |
Exception
Gets or sets the failure exceptions if any occur.
Declaration
public Exception Exception { get; set; }
Property Value
Type | Description |
---|---|
System.Exception | An instance of the Exception class representing any exceptions thrown during the action. |
KeyField
Gets or sets the key field of the Kanban board.
Declaration
public string KeyField { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string value used to render the Kanban layout. |
Remarks
The Kanban board uses this key field to organize the layout of cards and lanes.
RequestType
Gets or sets the request type of the current action.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the type of request being performed. |