RadGrid for ASP.NET AJAX

RadControls for ASP.NET AJAX

Property which retrieves the GridDataItem objects of the current table view that are in edit mode.

get_editItems()

Example:

CopyJavaScript
function getTableViewEditedItems() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    //get all edited GridDataItems from the current table view that are in edit mode
    var editedItemsArray = masterTable.get_editItems();
}