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

showInsertItem

Method which switches the grid in insert mode and displays the insertion form.

showInsertItem()

Example:

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