Class ActionBeginEventArgs
Provides information about an OnActionBegin, OnActionBegin event being raised.
Inheritance
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionBeginEventArgs : Object
Constructors
ActionBeginEventArgs()
Declaration
public ActionBeginEventArgs()
Properties
Cancel
Gets or sets whether the current action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnableFullLookup
Gets or sets a value indicating whether the autocomplete component performs a full data lookup using the "equal" operator on pre-bound values.
Declaration
public bool EnableFullLookup { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
When set to true
, the component retrieves all matching data for an autocomplete request, bypassing pre-bound results.
This option is useful when exact matches are required, but be aware that it may impact performance with large datasets.
EventName
Gets the action event name.
Declaration
public string EventName { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Query
Gets or sets the query object value to begin the data.
Declaration
public Query Query { get; set; }
Property Value
Type | Description |
---|---|
Query | A query object that specifies the initial data to be retrieved from the data source. |