SMART datagrid v.1 > Classes > RowGroupPanel

Back  Forward

DataLudi.RowGroupPanel.minHeight  property

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

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

默认值为20.

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