I'm using TelerikComboBox and came across a problem that when I select a value from the drop-down list and the value changes, the method is not called.
<TelerikComboBox Data="@SuggestedEmployees"
TItem="@CompanyEmployeeDropDownInfoModel"
TValue="string"
TextField="Email"
ValueField="Email"
Placeholder="E-mail"
ClearButton="true"
Filterable="true"
Width="100%"
OnRead="@(OnEmailChanged)"
@bind-Value="@Email"
AllowCustom="true" >
<ItemTemplate Context="newContext">
<strong>@((newContext as CompanyEmployeeDropDownInfoModel).FirstName) @((newContext as CompanyEmployeeDropDownInfoModel).LastName) @((newContext as CompanyEmployeeDropDownInfoModel).PhoneNumber)</strong>
</ItemTemplate>
</TelerikComboBox>
At first, SuggestedEmployees is empty. When user inputs more than 3 symbols, we get list of employees and show it to user. Everything works fine, when user manually input symbols, but when user select target employee from list and email changes, nothing happened, OnRead method doesn't trigger. Any suggestion?