SMART datagrid v1.4 > Classes > RowGroupPanel

Back  Forward

DataLudi.RowGroupPanel.minHeight  property

그리드 상단에 표시되는 Row grouping 패널의 픽셀 단위 최소 높이. 

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
Row Grouping