Given this markup:
<TelerikGrid Data="@PrognoseData" EditMode="GridEditMode.Incell" OnUpdate="@OnGridUpdate">
<GridColumns>
<GridColumn Title="Prijs/eenh." Field="PrognoseKostenModel.EenheidId" Width="120px">
<EditorTemplate>
@{
var model = (PrognoseKostenModel)context;
<TelerikDropDownList Data="@_eenheden"
@bind-Value="@model.EenheidId"
TextField="@nameof(PrijsEenheidDto.Sign)"
ValueField="@nameof(PrijsEenheidDto.Id)" >
<DropDownListSettings>
<DropDownListPopupSettings Height="auto"/>
</DropDownListSettings>
</TelerikDropDownList>
}
</EditorTemplate>
<Template>
@{
var model = (PrognoseKostenModel)context;
}
<span>@model.Eenheid</span>
</Template>
</GridColumn>
</GridColumns>
</TelerikGrid>So eg:
1. the initial value is "vkm2"
2. User selects "post" in dropdown
3. Dropdown is automatically closed, but value in grid remains "vkm2"
4. User clicks in different field in same row: OnGridUpdate is fired and value in grid changes to "post"
Any idea how to get OnGridUpdate immediately after the selection in the dropdown?
