SMART datagrid v1.4 > Classes > GridBase

Back  Forward

DataLudi.GridBase.footer  property

컬럼 푸터 셀들이 표시되는 영역에 대한 설정을 갖는 GridFooter 객체. 

이 객체는 그리드가 초기화될 때 생성된다. 속성 설정 시 기존 객체의 값을 바꾸게 된다. 

Getter
function footer(): GridFooter
Setter
function setFooter(value: Object|GridFooter)
Code -1
    grid.setFooter({
        minHeight: 25,
        resizable: true,
        styles: {
            background: '#3000ff00'
        }
    });
    // 개별 속성 설정
    var footer = grid.footer();
    footer.setMinHeight(25);
    footer.setResizable(false);
See also
GridFooter
header
Examples
Column Footer