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

Hi Peter, We haven’t gotten to documenting that portion of our API yet. But it is definitely on our list of things to do. We absolutely love it that people are going in and just figuring things out. PICKLIST was actually the correct name for the renderer, so i’m not sure what happened when you tried it. To make things more generic, you can use field.metadata.displaytype to get the display type of the field you’re working with. Here’s another version that might work better for you.

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