기본 동적 스타일 객체.
하나의 callback이나 판정식과 판정식을 통과하면 적용되는 스타일 목록으로 구성된다.
grid.setColumns([{
name: "category",
fieldName: "category",
width: 100,
styles: { textAlignment: "far" },
dynamicStyles: [{
expression: "value not ilike '%Damage%'",
styles: {
"background": "#1100ff00"
}
}],
header: { text: "Category" }
},
...
]);
grid.setColumns([{
name: "category",
fieldName: "category",
width: 100,
styles: { textAlignment: "far" },
dynamicStyles: [{
callback: function (scope) {
return !scope.value() || !scope.value().match(/Damag/i);
},
styles: {
"background": "#1100ff00"
}
}],
header: { text: "Category" }
},
...
]);