Class DdtChangeEventArgs<T>
Defines the change event of the DropDownTree component.
Inheritance
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class DdtChangeEventArgs<T> : Object
Type Parameters
Name |
---|
T |
Constructors
DdtChangeEventArgs()
Declaration
public DdtChangeEventArgs()
Properties
Action
Gets whether the action is select or unselect in the Dropdown Tree component
Declaration
public DdtAction Action { get; }
Property Value
Type | Description |
---|---|
DdtAction | An enumeration value of type DdtAction representing the action, which can be either select or unselect. |
Cancel
Gets or sets whether the current action should be cancelled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
CurrentValue
Gets the current updated value of the component.
Declaration
public T CurrentValue { get; }
Property Value
Type | Description |
---|---|
T | The current selected value. |
IsInteracted
Gets a value indicating whether the event was triggered by user interaction.
Declaration
public bool IsInteracted { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
NodeData
Gets the selected item as a list from the data source.
Declaration
public NodeData NodeData { get; }
Property Value
Type | Description |
---|---|
NodeData | An object of type |
PreviousValue
Gets the previous selected values of the component.
Declaration
public List<T> PreviousValue { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> | The previous selected values. |