Hello Team,
Is there any event that can capture the chip removed event in blazor for multiselect ?
Currently, when I click on the close button(X) in chip, it is not getting removed. That button may not work because, our datasource gets cleared each time user selects an item from the list.
So, I want to know if there is any event that can capture the Chip close?
Note: ChipSelected event works if I click on the chip but not on the close button ("X")
<SfMultiSelect @ref="SelectedMultiSelectedRef" Mode="VisualMode.Box" TValue="List<QuoteOutput>" TItem="QuoteOutput" @bind-Value="@SelectedTrades" AllowFiltering="true" CssClass="mr-2" EnableVirtualization="true">
<SfDataManager AdaptorInstance="@typeof(CustomAdaptor)" Adaptor="Adaptors.CustomAdaptor"></SfDataManager>
<MultiSelectEvents OnValueSelect="OnValueSelected" Cleared="Clearedhandler" TValue="List<QuoteOutput>" TItem="QuoteOutput" OnChipTag="OnChipTagged" ValueChange="@ValueChangeHandler"></MultiSelectEvents>
<MultiSelectFieldSettings Text="Description" Value="Description"></MultiSelectFieldSettings>
</SfMultiSelect>