RadGrid for ASP.NET AJAX

RadControls for ASP.NET AJAX

Method which updates all edited items in the grid. The new data will be taken from the edit form editors.

updateEditedItems()

Example:

CopyJavaScript
function UpdateEditedGridItems() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.updateEditedItems();
}