I am attempting to dynamically change the color of a tabulator cell based on its input. My initial approach was to simply try changing the cell's color. After running the following code, here is what I observed:
function testFormatter(cell, formatterParams) {
cell.getElement().style.backgroundColor = "#A6A6DF";
}
This link shows how my table appears after applying the cell formatting
I may respond late, as this marks my first inquiry on StackOverflow and I am unsure about typical response times.