RadGrid for ASP.NET AJAX

RadControls for ASP.NET AJAX

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

showInsertItem()

Example:

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