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

insertItem

Method which inserts new table row to the grid. The new data will be taken from the insertion form editors fields.

insertItem()

Example:

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