Can I highlight the background of a cell in a table?

Hi Peter, This should get you a little closer to what you’re looking to do.

var field = arguments[0], value = arguments[1]; skuid.ui.fieldRenderers.INTEGER[field.mode](field,value); field.element.css({'background-color':'red','min-height':'30px'}); 

At first I was thinking you could access the actual td element from the snippet through the jQuery.parent() function, but since at this point in the code it hasn’t been appended to the dom, I don’t think that’s possible.