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

cancelInsert

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

cancelInsert()

Example:

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