New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
get_detailTables()
Updated over 6 months ago
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:
JavaScript
function getDetailTables() {
var grid = $find("<%=RadGrid1.ClientID %>");
//get all detail tables in the hierarchy
var detailTablesArray = grid.get_detailTables();
}