Hello,
I need a ComboBox that receives data via databinding (Data="@Series"), selects a value in the combobox via C# code (@bind-Value="SelectedSeries") and then executes (OnChange="@OnComboSeriesValueChanged") a function as if a user had selected a value.
But Telerik does not allow double binding to the control. Who is supposed to understand this!? This restriction is unnecessary!!! My use case is quite normal after all.
Not working example "...'ValueChanged' is used two or more times..."
<TelerikComboBox Data="@Series"
OnChange="@MyOnChangeHandler"
ValueChanged="@((string value) => OnComboSeriesValueChanged(value))"
@bind-Value="SelectedSeries"
TItem="string"
TValue="string"
AllowCustom="false"
Filterable="true"
Placeholder="Select a Series."
Width="100%"
@ref="SeriesComboBoxRef">
</TelerikComboBox>
Thanks for your help