SMART datagrid v.1 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.footer  property

Group Footer row which belongs to this row. 

Defaults to null.

Getter
function footer(): GroupFooter
Code -1
    var row = grid.focusedRow();
    if (row instanceof GroupRow) {
        var footer = row.footer();
        grid.setFocusedRow(footer, true);
    }
See Also
GroupFooter
Examples
Row Grouping