SMART datagrid v1.4 > Classes > RowGroup

Back  Forward

DataLudi.RowGroup.headerTextCallback  property

그룹 헤더에 표시될 텍스트를 리턴하는 콜백 함수. 

function (group:GroupRow):String;

이 값이 설정되면 headerStatement 속성은 무시된다. 

기본값은 null.

Getter
function headerTextCallback(): Function
Setter
function setHeaderTextCallback(value: Function)
Code -1
    grid.rowGroup().setHeaderTextCallback(function (group) {
        var fld = group.groupField();
        var row = group.firstLeaf();
        var v = row ? row.getData(fld) : undefined;
        return dsMain.getFieldName(fld) + ': ' + v + ' - ' + group.descendantCount() + ' rows.';
    });
See Also
headerStatement
Statement 개요
Examples
행 그룹핑