SMART datagrid v1.4 > Classes > RowGroup

Back  Forward

DataLudi.RowGroup.expanderStyles  property

그룹 expander를 표시할 때 사용되는 스타일셋

그룹 expander는 병합 모드의 병합 셀이나, 그룹 헤더에 그룹을 펼치고 닫는 아이콘 버튼이다. expanderVisibletrue일 때 표시된다. 

Getter
function expanderStyles(): GridStyles
Setter
function setExpanderStyles(value: GridStyles)
Code -1
    // expander를 흰색으로 그린다.
    grid.setOptions({
        rowGroup: {
            expanderStyles: {
                shapeColor: '#fff'
            }
        }
    });

그리드 스타일 시트를 통해서 지정할 수도 있다. 

Code -2
    // 그리드 loadStyles 에서 지정할 수도 있다.
    grid.loadStyles({
        rowGroup: {
            expander: {
                shapeColor: '#fff'
            }
        }
    });
See Also
expanderVisible
levelIndent
mergeMode
GridStyles
그리드 스타일 시트
Examples
행 그룹핑
병합 모드 행 그룹핑