SMART datagrid v.1 > Classes > RowGroupPanel

Back  Forward

DataLudi.RowGroupPanel.height  property

Pixel unit height of Row grouping panel displayed on the top of grid. 

It will be applied only if specify a value greater than 0. Comparing with minHeight specified greater than 0, the smaller value will be set as the height of panel. 

Defaults to 0.

Getter
function height(): Integer
Setter
function setHeight(value: Integer)
Code -1
    grid.setOptions({
        rowGroup: {
            panel: {
                height: 25
            }
        }
    });
Code -2
    grid.setOptions({
        groupPanel: {
            height: 25
        }
    });
Code -3
    grid.setGroupPanel({
        height: 25
    });
Code -4
    grid.groupPanel().setHeight(25);
See Also
minHeight
Examples
Row Grouping