In my application I need to set a class of the <td> element for all cells in the grid. If done at the column level via column.attributes = {class: 'myClass'} everything works great. Unfortunately I need to do this on a per-cell basis. Specifically different cells in the same column will have different classes applied to the <td> element based on the bound data object. Is there a way to set attributes on per-cell basis, or is there an alternative approach to achieving my goal?
Thanks a lot.