AllowClear on DropDownDataGrid issue

I have a possible issue with the DropDownDataGrid when setting all 3 of the following properties:

  • AllowClear="true"

  • bind-SelectedItem

  • Change

    <RadzenDropDownDataGrid FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
    AllowClear="true"
    AllowFiltering="true"
    Data="@_suppliers"
    TextProperty="Name" ValueProperty="Name"
    Style="margin-bottom: 20px; width:400px;" @bind-
    SelectedItem="currentSupplier" TValue="string" Change="GetInvoices">

When clicking the "Clear" cross to remove the selected item, the Change event fires however the Object that is bound to the component is still set. It is like the Change event fires before the Clear happens?

Better use @bind-Value similar to our examples.

that wont allow me to bind to the actual object though which is what i was hoping to do?