Change color of rows in table

Hi guys, I need help. I intend to do the minipulling of the table but via js script. Like I want to paint each line a different color depending on the condition I'm going to apply

example

You can add the condition in the row color field of the table
Screen Shot 2022-05-26 at 12.57.50 PM

@ScottR
I have these conditions and given one of them on the line that is found paints a different color

Capturarif

You don't need write script - remove the if and for each condition you should use a ternary operator within {{ and }}

{{(currentRow.DaysToEnd >= 5 && currentRow.DaysToEnd < 25) ? 'green':' red'}}

where green is for when the condition is true and red if condition is false.

@ScottR: thank you very much it worked.

And if it's to paint just a part or more.

Ex:
Capturar6

@ScottR , Could you give me some help to leave a table column like this

Capturar5

Note how I used the ternary operator


you can use multiple ternary conditions as well

1 Like

thank you very much it worked.