SMART datagrid v.1 > Classes > RowGroupPanel

Back  Forward

DataLudi.RowGroupPanel.height  property

显示在网格顶部的行分组面板的Pixel单位高度。 

需要指定大于0的值,才会被适用。 相比指定为大于0的minHeight,较小的值将会被设置为面板的高度。 

默认值为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
行分组