New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

updateItem

Method which updates the edited table row passed as an argument or the row corresponding to the index passed as an argument. The updated data will be taken from the edit form editors.

updateItem(gridItem) or updateItem(index)
gridItemHTML row object - <tr>The edited row that will be updated.
indexIntegerThe edited row corresponding to the index will be updated.

Example:

JavaScript
function UpdateFirstItem() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.updateItem(masterTable.get_dataItems()[0].get_element());
} 
Not finding the help you need?
Contact Support