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
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
@ScottR
I have these conditions and given one of them on the line that is found paints a different color
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 , Could you give me some help to leave a table column like this
thank you very much it worked.