New to Telerik UI for ASP.NET AJAX? Start a 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:
JavaScript
function UpdateEditedGridItems() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.updateEditedItems();
}