Hi,
can you please review the example for ComboBox Dynamic Value Binding as per the following
https://blazor.syncfusion.com/documentation/combobox/data-binding/
I found that if I copy the code into my blazor application I get the following error
The component 'ComboBoxEvents' is missing required type arguments. Specify the missing types using the attributes: 'TItem'.
IF I then add the TIem value as follows
<ComboBoxEvents TItem="Countries" TValue="string" ValueChange="onChange"></ComboBoxEvents>
I get the following error
Argument 2: cannot convert from 'method group' to 'EventCallback'
What is needed to implement dynamic binding please,?
Regards,
Jeremy