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

cancelAll

Cancels the edit mode for all grid items that are switched in edit mode prior to the method call.

cancelAll()

Example:

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