SMART datagrid v1.4 > Classes > TreeOptions

Back  Forward

DataLudi.TreeOptions.footerDisplayCallback  property

트리행의 Footer를 표시할 것인 지를 리턴하는 콜백 함수. 

    function (row:TreeRow): Boolean;

이 콜백함수에서 true를 리턴한 행에서만 Footer가 표시된다. footerLevels 속성으로 레벨들을 지정할 수도 있는데, 이 속성이 지정되면 footerLevels는 무시된다. 

기본값은 null.

Getter
function footerDisplayCallback(): Function
Setter
function setFooterDisplayCallback(value: Function)
Code -1
    tree.setTreeOptions({
        footerDisplayCallback: function (row) {
            return row.level() == 1;
        }
    });
See Also
footerLevels
footerStyles
트리 개요
Examples
Tree Row Footer
Hello Tree