Appearance
setRowColor(color)
Change the row color.
Scope: TABLE COLUMN
Parameters
| Parameter | Type | Description |
|---|---|---|
| color | string | CSS color. |
Return Value
None
✨ Example
js
((columnName, originalValue, renderedValue, row) => {
setRowColor("blue")
setRowBackgroundColor("green")
setColor("red", "deptno")
setBackgroundColor("yellow", "deptno")
return renderedValue
})