SMART datagrid v1.4 > Classes > GridStyles

Back  Forward

DataLudi.GridStyles.booleanFormat  property

데이터셀에 Boolean 필드의 값을 표시할 때 사용되는 문자열 변환 형식. 

콜론(:)이나 세미콜론(;)으로 false, true, undefined인 경우의 변환 문자열들을 지정한다. 지정되지 않은 값은 각각 "false", "true", ""로 변환되어 표시된다. 

Getter
function booleanFormat(): String
Setter
function setBooleanFormat(value: String)
Code -1
    column.styles().setBooleanFormat('아니오;예;모름');
    // undefined 부분은 지정하지 않아도 된다.
    column.styles().setBooleanFormat('미지급;지급');
See Also
textFormat
datetimeFormat
numberFormat
스타일 개요
Examples
BooleanValue
Column Styles