I am using backbone and backgrid.
I want to make some backgrid cells non editable and highlight them.
And i am looking for a simple css property over those cells.
But unfortunately backgrid does not impose any specific class to the non editable cells.
This is the rendered one backgrid row itself from backgrid website : http://backgridjs.com/ and we know id field is non editable here :
<tr>
<td class="integer-cell">1</td>
<td class="string-cell">Afghanistan</td>
<td class="integer-cell">25,500,100</td>
<td class="number-cell">0.36</td>
<td class="date-cell">2013-01-01</td>
<td class="uri-cell"><a tabindex="-1" href="http://en.wikipedia.org/wiki/Afghanistan" title="http://en.wikipedia.org/wiki/Afghanistan" target="_blank">http://en.wikipedia.org/wiki/Afghanistan</a></td>
</tr>
Now how do i achieve the same??