RadControls for ASP.NET AJAX
Method which inserts new table row to the grid. The new data will be taken from the insertion
form editors fields.
Example:
CopyJavaScript
function AddNewItem() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.insertItem();
}