Change table row color based on condition of another table

I ended up just adding a query to run after a status update is made on my work orders to update my main ticket table. The main ticket table has a hidden checkbox column 'all_tasks_complete' that i use to change the color of the row.

{{ currentSourceRow.all_tasks_complete ? '#bdfed7' : '' }}

1 Like