Version

getNextCell Method

Gets the next cell visual cell.
Syntax
ASP.NET Ajax Javascript (Specification) 
function getNextCell( 
   cell : GridCell
) : GridCell;
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfHierarchicalGridUtility.getNextCell(GridCell);

Parameters

cell
The cell from which to calculate the next cell.

Return Value

The next visual cell from the given cell. This is the cell to the right of the passed in cell. If the passed in cell object is the last visual cell on the row, then this will be the first cell in the next row of the Infragistics.Web.UI.ContainerGrid if the row of the passed in cell does not have any child row islands or is collapsed, if the row does have visible child row islands than the next cell will be the first cell in the first child row island.
See Also