RadGrid for ASP.NET AJAX

RadControls for ASP.NET AJAX

Property which retrieves the HTML element of the insert item opened inside the grid table view.

get_insertItem()

Example:

CopyJavaScript
function getTableViewInsertItem() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    //gets the HTML object of the insert item opened in the current GridTableView
    var insertedItem = masterTable.get_insertItem();
}