I am using SlickGrid and am wondering if there is a way to set and keep a rows opacity or css styles in general.
For example my rows have a checkbox in them and when the user sets the checkbox to checked then the opacity of the row is set. However when the user then clicks off the row the SlickGrid removes the opacity setting.
One option if anyone knows how to do it is to set the opacity of the row after SlickGrid has done its re-render. this would allow me to use the jQuery below across the entire grid:
$('img[src="slickgrid/images/tick.png"]').parent().parent().css('opacity','0.4');