I's using SlickGrid, and want to add a css class to cells. But my column name includes a white space. Assuming the column name is 'Effort Driven', how can I refer this column?
grid.setCellCssStyles("key_highlight", {
3: {
finish: 'highlight', /* works fine */
'effort driven': 'highlight' /*does NOT work*/
}
});
Thanks.