Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class MultiSelectEvents<TValue, TItem>

    Show / Hide Table of Contents

    Class MultiSelectEvents<TValue, TItem>

    Specifies the MultiSelect Events of the component.

    Inheritance
    System.Object
    MultiSelectEvents<TValue, TItem>
    Namespace: Syncfusion.Blazor.DropDowns
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class MultiSelectEvents<TValue, TItem> : OwningComponentBase
    Type Parameters
    Name Description
    TValue

    Specifies the value type.

    TItem

    Specifies the type of MultiSelectEvents.

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<ChipSelectedEventArgs<TItem>>

    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>

    Closed

    Triggers after the popup has been closed.

    Declaration
    public EventCallback<ClosedEventArgs> Closed { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<ClosedEventArgs>

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<CustomValueEventArgs<TItem>>

    DataBound

    Triggers when data source is populated in the popup list.

    Declaration
    public EventCallback<DataBoundEventArgs> DataBound { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<DataBoundEventArgs>

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<FilteringEventArgs>

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<ActionBeginEventArgs>

    OnActionComplete

    Triggers after data is fetched successfully from the remote server.

    Declaration
    public EventCallback<ActionCompleteEventArgs<TItem>> OnActionComplete { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<ActionCompleteEventArgs<TItem>>

    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

    Triggers before the popup is closed. If you cancel this event, the popup remains opened.

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<BeforeOpenEventArgs>

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<SelectAllEventArgs<TItem>>

    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
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<MultiSelectChangeEventArgs<TValue>>

    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

    ComponentDispose(Boolean)

    Declaration
    protected void ComponentDispose(bool disposing)
    Parameters
    Type Name Description
    System.Boolean disposing
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved