RadGrid for ASP.NET AJAX

RadControls for ASP.NET AJAX

Method which cancels the insert action and switches the grid in regular mode.

cancelInsert()

Example:

CopyJavaScript
function SwitchInRegularMode() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.cancelInsert();
}