[Solved] No OnUpdate event after Dropdown value changes in TelerikGrid having GridEditMode.incell

1 Answer 19 Views
DropDownList Grid
Robert
Top achievements
Rank 1
Iron
Iron
Robert asked on 17 Apr 2026, 01:07 PM

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? 

1 Answer, 1 is accepted

Sort by
0
Accepted
Dimo
Telerik team
answered on 17 Apr 2026, 01:54 PM

Hello Robert,

When using in-cell Grid editing, the Grid OnUpdate event fires when the focus goes outside the edit cell.

If you want to close the edit cell immediately after the user selects a new value from the DropDownList, you can use the Grid state to close edit mode in the OnChange event of the DropDownList. See the KB about programmatic Grid edit mode management.

On a side note, your license has recently expired. Please renew it in order to get technical support from us and be able to post private tickets.

Regards,
Dimo
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
DropDownList Grid
Asked by
Robert
Top achievements
Rank 1
Iron
Iron
Answers by
Dimo
Telerik team
Share this question
or