Question on OnDelete and Deleted events

Hi,

I noticed the following in your SfChip docs. However, OnDelete event callback is not allowed 

ChipEventArgs args

Deleted event works fine with the callback args. OnDelete event works with a method without args.   Am I doing something wrong?  

Thanks

Harshad

<SfChip Selection="SelectionType.Multiple" EnableDelete="true">
    <ChipItems>
        <ChipItem Text="Small"></ChipItem>
        <ChipItem Text="Medium"></ChipItem>
        <ChipItem Text="Large"></ChipItem>
        <ChipItem Text="Extra Large"></ChipItem>
    </ChipItems>
    <ChipEvents OnDelete="@OnChipDelete"></ChipEvents>
</SfChip>

@code {
    private void OnChipDelete(ChipEventArgs args)
    {
        // Write your code here
    }

1 Reply

PK Priyanka Karthikeyan Syncfusion Team July 6, 2026 10:58 AM UTC

Hi Harshad,
Thank you for reaching out to us!
We appreciate you bringing this to our attention. We have investigated the issue based on your code snippet and created a sample using version 33.2.15. We can confirm that the OnDelete event is functioning correctly with the ChipEventArgs parameter.
Please find the sample and video demonstration linked below for your reference:
Resources:
If the issue persists in your environment, we would appreciate it if you could provide the following information to help us diagnose the problem more effectively:
  1. A reproducible sample — A minimal code project that demonstrates the issue
  2. Steps to replicate — Detailed instructions on how to reproduce the problem
  3. Video or screenshot — A visual demonstration of the issue (if available)
  4. Version confirmation — Verification that you are using the latest version of Syncfusion Blazor
These details will enable us to better understand your scenario and provide a prompt resolution.
We're here to help if you have any further questions or concerns!
Regards,
Priyanka K

Loader.
Up arrow icon