SMART datagrid v.1 > Classes > GroupRow
Return the child row which has the same childIndex as parameter index within group.
var group = grid.focusedRow();
if (group instanceof GroupRow) {
var row = group.getChild(0);
grid.setFocusedRow(row, true);
}