SMART datagrid v.1 > Classes > GridRow
Return from Parent Row to the rows of top level in order as nearest to this grid row as array.
It will return null if there is no parent row.
var row = grid.focusedRow();
if (row) {
var rows = row.getAncestors();
grid.checkRows(rows, true);
}