Skip to content
🚀 Rapid Application Development with the App Builder

setRowBackgroundColor(color)

Change the row background color.

Scope: TABLE COLUMN

Parameters

ParameterTypeDescription
colorstringCSS color.

Return Value

None

✨ Example

js
((columnName, originalValue, renderedValue, row) => {

    setRowColor("blue")
    setRowBackgroundColor("green")

    setColor("red", "deptno")
    setBackgroundColor("yellow", "deptno")

	return renderedValue

})