From what I can gather from reading the documentation about the styling of a grid, I understand that in order to read, say, the background color of a grid column header cell (say for column 0), I need to set up the javascript as follows:
var thisColor = $(‘#jqxgrid.jqx-grid-column-header:eq(0)’).css(‘background-color’);
When I look at the returned value of thisColor, it comes back as ‘undefined’. So, clearly I am missing something in the script.
Any guidance on what I should be doing will be really appreciated!
Many thanks,
Alastair
PS: (I also want to be able to read the background color of a selected grid cell.)