New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
cancelInsert
Updated over 6 months ago
Method which cancels the insert action and switches the grid in regular mode.
| cancelInsert() |
|---|
Example:
JavaScript
function SwitchInRegularMode() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.cancelInsert();
}