SMART datagrid v1.4 > Classes > GridStyles
삭제된 행의 셀 배경 등을 그릴 때 사용되는 Fill 객체.
아래 예제처럼 여러가지 방식으로 지정할 수 있다.
// 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'
});