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

get_editItems()

Property which returns one-dimensional array representing a collection of client-side objects of type GridDataItem that are in edit mode accross all grid tables.

get_editItems()

Example:

function getEditItems() {
    var grid = $find("<%=RadGrid1.ClientID %>");
    //get all edited GridDataItems across all grid tables
    var editedItemsArray = grid.get_editItems();
}
In this article