New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

updateEditedItems

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

updateEditedItems()

Example:

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