Change formatting of Table Row based on field value

Hi Emily, I am having the same issue Matt did. The render is correctly applying the css class but the table won’t change. Except I used your suggestions for the css selector already. CSS is: table.nx-skootable-data tbody tr.LeadTab_highlighted-row td { background-color: LightCoral; } Snippet is : var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]); skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode; if (field.mode == ‘read’ && value === true) { field.item.element.addClass(“LeadTab_highlighted-row”); }