SMART datagrid v.1 > Classes > GroupRow
If it is collapsed to not to display child rows, it will be true. 
It is the inverse value of expanded.
    $('#expand').click(function () {
        var group = grid.focusedGroupRow();
        if (group && group.collapsed()) {
            group.setExpanded(true);
        }
    }