SMART datagrid v.1 > Classes > GridRow
Return the list of sibling rows which have the same Parent as this row as array.
$('#checkSiblings').click(function () {
var row = grid.focusedRow();
if (row) {
var rows = row.getSiblings(true);
grid.checkAll(false);
grid.checkRows(rows, true);
}
});