Class MultiSelectEvents<TValue, TItem>
Specifies the MultiSelect Events of the component.
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
MultiSelectEvents<TValue, TItem>
Assembly: Syncfusion.Blazor.dll
Syntax
public class MultiSelectEvents<TValue, TItem> : SfBaseComponent
Type Parameters
Name |
Description |
TValue |
|
TItem |
|
Constructors
MultiSelectEvents()
Declaration
public MultiSelectEvents()
Properties
Blur
Event triggers when the input get focus-out.
Declaration
public EventCallback<object> Blur { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
ChipSelected
Event triggers when the chip selection.
Declaration
public EventCallback<ChipSelectedEventArgs<TItem>> ChipSelected { get; set; }
Property Value
Cleared
Fires after cleared all item using clear icon.
Declaration
public EventCallback<MouseEventArgs> Cleared { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Web.MouseEventArgs> |
|
Created
Triggers when the component is created.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
CustomValueSpecifier
Triggers when the CustomValue is selected.
Declaration
public EventCallback<CustomValueEventArgs<TItem>> CustomValueSpecifier { get; set; }
Property Value
DataBound
Triggers when data source is populated in the popup list.
Declaration
public EventCallback<DataBoundEventArgs> DataBound { get; set; }
Property Value
Destroyed
Triggers when the component is destroyed.
Declaration
public EventCallback<object> Destroyed { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
Filtering
Triggers event,when user types a text in search box.
Declaration
public EventCallback<FilteringEventArgs> Filtering { get; set; }
Property Value
Focus
Event triggers when the input get focused.
Declaration
public EventCallback<object> Focus { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
OnActionBegin
Triggers before fetching data from the remote server.
Declaration
public EventCallback<ActionBeginEventArgs> OnActionBegin { get; set; }
Property Value
OnActionComplete
Triggers after data is fetched successfully from the remote server.
Declaration
public EventCallback<ActionCompleteEventArgs<TItem>> OnActionComplete { get; set; }
Property Value
OnActionFailure
Triggers when the data fetch request from the remote server fails.
Declaration
public EventCallback<Exception> OnActionFailure { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Exception> |
|
OnChipTag
Fires before set the selected item as chip in the component.
Declaration
public EventCallback<TaggingEventArgs<TItem>> OnChipTag { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<TaggingEventArgs<TItem>> |
|
OnClose
Fires when popup close after animation completion.
Declaration
public EventCallback<PopupEventArgs> OnClose { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<PopupEventArgs> |
|
OnOpen
Fires when popup opens before animation.
Declaration
public EventCallback<BeforeOpenEventArgs> OnOpen { get; set; }
Property Value
OnValueRemove
Fires before the selected item removed from the widget.
Declaration
public EventCallback<RemoveEventArgs<TItem>> OnValueRemove { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<RemoveEventArgs<TItem>> |
|
OnValueSelect
Triggers when an item in the popup is selected by the user either with mouse/tap or with keyboard navigation.
Declaration
public EventCallback<SelectEventArgs<TItem>> OnValueSelect { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<SelectEventArgs<TItem>> |
|
Opened
Fires when popup opens after animation completion.
Declaration
public EventCallback<PopupEventArgs> Opened { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<PopupEventArgs> |
|
SelectedAll
Fires after select all process completion.
Declaration
public EventCallback<SelectAllEventArgs<TItem>> SelectedAll { get; set; }
Property Value
ValueChange
Fires each time when selection changes happened in list items after model and input value get affected.
Declaration
public EventCallback<MultiSelectChangeEventArgs<TValue>> ValueChange { get; set; }
Property Value
ValueRemoved
Fires after the selected item removed from the widget.
Declaration
public EventCallback<RemoveEventArgs<TItem>> ValueRemoved { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<RemoveEventArgs<TItem>> |
|
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
Syncfusion.Blazor.SfBaseComponent.OnInitializedAsync()