I have this code in version 18.2
<SfListBox ID="pdfMissingBills" DataSource="@_pdfMissingBills" TValue="string[]" TItem="string">
<ListBoxSelectionSettings Mode="Syncfusion.Blazor.DropDowns.SelectionMode.Single"></ListBoxSelectionSettings>
<ListBoxEvents TValue="string[]" ValueChange="@ShowSupplierInvoice"></ListBoxEvents>
</SfListBox>
private async Task ShowSupplierInvoice(ListBoxChangeEventArgs args)
{
var file = ((JArray)args.Value).ToObject<List<string>>()?.FirstOrDefault();
}
This is not working after updating to Version 18.3, can you let me know what changes I need to make?
Many thanks, Stuart