DataLudi Grid v.1 > Classes > GridBase

Back  Forward

GridBase.cellStyles  property

데이터셀 단위로 스타일과 편집 관련 속성을 지정할 수 있는 CellStyle 컬렉션이다. 그리드는 이 속성을 통해 하나의 CellStyleCollection 객체를 생성하고 관리한다. 

CellStyleCollection 도움말에서 자세한 설명을 확인할 수 있다. 

Getter
function cellStyles(): CellStyleCollection
Code -1
    $('#setStyle').click(function () {
        if (!grid.cellStyles().exists('style_01')) {
            grid.cellStyles().add('style_01', {
                readOnly: true,
                styles: {
                    background: '#ff00ff'
                }    
            });
        }
    });
See Also
CellStyle
CellStyleCollection
Examples
Cell Styles