I am struggling with understanding what event args to use for the DataGrid EditForm. I appear to either not have the correct OnItemCommand or OnUpdatedCommand in combination with the correct event args. All the examples I have seen do not have good examples of the EditForm and doing the updates in a code behind using a web service.
<radgrid>
<mastertableview>
<columns>
<telerik bound column>
</columns>
<editformsettings>
<formtemplate>
<my form items>
<my button with command name update>
</formtemplate>
</editformsettings>
</mastertableview>
</radgrid>
I have the following in my radgrid:
OnItemCommand="RadgridItem_Update"
In have the following in my code behind:
protected void RadgridItem_Update(object sender, GridCommandEventArgs e)
{
GridEditFormItem myitem = (GridEditFormItem)e.Item;
etc. etc. call web service update.
}
<radgrid>
<mastertableview>
<columns>
<telerik bound column>
</columns>
<editformsettings>
<formtemplate>
<my form items>
<my button with command name update>
</formtemplate>
</editformsettings>
</mastertableview>
</radgrid>
I have the following in my radgrid:
OnItemCommand="RadgridItem_Update"
In have the following in my code behind:
protected void RadgridItem_Update(object sender, GridCommandEventArgs e)
{
GridEditFormItem myitem = (GridEditFormItem)e.Item;
etc. etc. call web service update.
}