Version

isGridADescendent Method

Determines if the passed in grid is a descendent of the passed in row. (a child row island of the row, a grandchild of the row, etc.)
Syntax
ASP.NET Ajax Javascript (Specification) 
function isGridADescendent( 
   row : ContainerGridRow,
   grid : ContainerGrid
) : Boolean;
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfHierarchicalGridUtility.isGridADescendent(ContainerGridRow,ContainerGrid);

Parameters

row
The row that will be looked at to determine if the passed in grid is its descendent .
grid
The grid for which to determine if the passed in row is its ancestor.

Return Value

Returns true is the passed in grid is a descendent of the passed in row, otherwise false.
See Also