Hi Lexi,
In order to modify the cell’s background, you can use a code like the one below:
$("#jqxgrid").jqxGrid({ source: dataAdapter, columns: [ { text: 'First Name', dataField: 'firstname', width: 100, cellsrenderer: function (row, column, value, defaultHTML) { return '<div style="background: #ff0000; height: 100%; color: white;"><span style="float: left; margin: 4px;">' + value + '</span></div>'; } }, { text: 'Last Name', dataField: 'lastname', width: 100 }, { text: 'Product', dataField: 'productname', width: 180 }, { text: 'Quantity', dataField: 'quantity', width: 80, cellsalign: 'right' }, { text: 'Unit Price', dataField: 'price', width: 90, cellsalign: 'right', cellsformat: 'c2' }, { text: 'Total', dataField: 'total', cellsalign: 'right', minwidth: 100, cellsformat: 'c2' } ]});
Hope this helps you.
Best Wishes,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com