I can successfully trigger the OnUpdate event from a simple GridColumn Field update with Incell editing but not when using an EditorTemplate. Any ideas what I'm doing wrong or missing?
<
TelerikGrid
Data=@ItemsOC
EditMode
=
"@GridEditMode.Incell"
OnUpdate
=
"@UpdateHandler"
>
<
GridColumns
>
<!-- This column DOES NOT trigger OnUpdate when edited. -->
<
GridColumn
Field
=
"Quantity"
Title
=
"EDIT Quantity"
>
<
EditorTemplate
>
@{
ItemToEdit = context as Item;
<
TelerikNumericTextBox
@
bind-Value
=
"@ItemToEdit.Quantity"
Format
=
"F2"
/>
}
</
EditorTemplate
>
</
GridColumn
>
<!-- This column DOES trigger OnUpdate when edited. -->
<
GridColumn
Field
=
"Quantity"
/>
<
GridColumn
Field
=
"Description"
/>
<
GridColumn
Field
=
"Cost"
/>
<
GridColumn
Field
=
"SubTotal"
/>
</
GridColumns
>
</
TelerikGrid
>
Doug