template @it_group_header
그룹 Header의 기본 템플릿이다.
See Also
Template
{
name: '@it_group_header',
description: "Group header template",
props: {
},
template: {
layout: "hlinear",
children: [{
value: "${@group_field;Group value}",
tag: "field"
}, {
value: ": ",
tag: "colon"
}, {
value: "${@group_value}",
style: {
fontWeight: 'bold'
},
tag: "value"
}]
},
collapsed: {
layout: "hlinear",
children: [{
value: "${@group_field;Group value}",
tag: "field"
}, {
value: ": ",
tag: "colon"
}, {
value: "${@group_value}",
style: {
fontWeight: 'bold'
},
tag: "value"
}, {
space: '*'
}, {
value: "${@row_count}",
tag: "count"
}, {
value: " rows.",
tag: "rows"
}]
}
}