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

get_detailTables()

Property which returns one-dimensional array representing a collection of client-side objects of type GridTableView (all nested grid tables excluding the MasterTableView). The property is read-only.

get_detailTables()

Example:

function getDetailTables() {
    var grid = $find("<%=RadGrid1.ClientID %>");
    //get all detail tables in the hierarchy
    var detailTablesArray = grid.get_detailTables();
}
In this article