Class DialogOpenEventArgs<TValue>
Provides information about the DialogOpen event.
Inheritance
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class DialogOpenEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | The type of data source for the Kanban board. |
Remarks
This class encapsulates the details associated with opening dialogs in the Kanban UI.
Constructors
DialogOpenEventArgs()
Declaration
public DialogOpenEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the dialog open action can be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Use this property to control the opening of dialog boxes.
Data
Gets or sets the data associated with the dialog open event.
Declaration
public TValue Data { get; set; }
Property Value
Type | Description |
---|---|
TValue | An instance of |
Remarks
This property provides access to the specific data linked with the opening dialog operation.
RequestType
Gets or sets the action requested by the dialog.
Declaration
public CurrentAction RequestType { get; set; }
Property Value
Type | Description |
---|---|
CurrentAction | An instance of CurrentAction representing the action type of the dialog request. |
Remarks
This property outlines the intended dialog action, such as adding or editing.