New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
get_editItems()
Updated over 6 months ago
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:
JavaScript
function getEditItems() {
var grid = $find("<%=RadGrid1.ClientID %>");
//get all edited GridDataItems across all grid tables
var editedItemsArray = grid.get_editItems();
}