Hello,
if you have OnValueRemove and OnValueSelect event set for multiselect dropdown with checkboxes which are grouped. If you uncheck group checkbox OnValueRemove does not trigger callback. OnValueSelect callback works fine. Is this some sort of bug or missing feature?
Sorry dont know how to put as a code block.
<SfMultiSelect @bind-Value="SelectedUniqueIds" DataSource="@AllCategoryTradeItems" EnableGroupCheckBox="true" TValue="Guid[]" TItem="CategoryTradeItem" AllowFiltering="true" FilterType="FilterType.Contains" Placeholder="Select trade items" FloatLabelType="Syncfusion.Blazor.Inputs.FloatLabelType.Always" Mode="@VisualMode.CheckBox" ShowSelectAll="true" FilterBarPlaceholder="Search category or trade item" PopupHeight="600px">
<MultiSelectFieldSettings GroupBy="Category" Value="UniqueId" Text="WorkTypeCategory"></MultiSelectFieldSettings>
<MultiSelectEvents OnValueRemove="@OnValueRemove" OnValueSelect="@OnValueSelect" TValue="Guid[]" TItem="CategoryTradeItem" />
</SfMultiSelect>
void OnValueSelect(SelectEventArgs
void OnValueRemove(RemoveEventArgs
hello, this works fine. You need to group items and then unckeck the group item (to uncheck all items in the group)
it should trigger event foreach item in that category but it does not