I'm using a Kendo grid, razor style, in an MVC application, binding to an ajax data source.
Products in the grid can be one of two types, and I want to apply different styles (background color, bold text, indent) to the different types of rows. I've seen examples using the ClientRowTemplate property, but I don't want to set the entire template for all the cells, as many columns already have their own templates. Isn't there a mechanism to just set a css class on a row based on data from the item it's bound to?
Thanks in advance.