SMART datagrid v1.4 > Classes > GridStyles

Back  Forward

DataLudi.GridStyles.inactiveBackground  property

삭제된 행의 셀 배경 등을 그릴 때 사용되는 Fill 객체. 

아래 예제처럼 여러가지 방식으로 지정할 수 있다. 

Getter
function inactiveBackground(): Fill
Setter
function setInactiveBackground(value: String|Fill)
Code -1
    // solid fill
    column.styles().setInactiveBackground('#3300ff00');
    // solid fill
    column.styles().setInactiveBackground('#00ff00');
    // rgba
    column.styles().setInactiveBackground('rgba(255, 254, 253, 0.5)');
    // linear gradient
    column.styles().setInactiveBackground('linear,#ffffff,#f0f0f0,90');
    // or
    column.setStyles({
        inactiveBackground: '#ff0000',
        inactiveColor: '#00ff00'
    });
See Also
Fill
inactiveColor
background
색 설정
Grid 스타일 개요
Examples
컬럼 스타일
컬럼 동적 스타일