XULTreeView.hasNextSibling Member
Internal.
Syntax
object.hasNextSibling(rowIndex, afterIndex);
Arguments
Argument | Summary |
---|---|
rowIndex | |
afterIndex |
Returns
Remarks
See Also
Source Code
function xtv_hasnxtsib (rowIndex, afterIndex)
{
var row = this.childData.locateChildByVisualRow (rowIndex);
return row.childIndex < row.parentRecord.childData.length - 1;
}