New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
cancelAll
Updated over 6 months ago
Cancels the edit mode for all grid items that are switched in edit mode prior to the method call.
| cancelAll() |
|---|
Example:
JavaScript
function CancelEditMode() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.cancelAll();
}