If you need to use JS logic to single out a specific row, the best point of insertion is probably the row callback (fnRowCallback: http://datatables.net/usage/callbacks#fnRowCallback).
If it's not based on JS logic, advanced CSS selectors will still give you some control; for example, the nth-child selector (Googling should reveal tonnes of tutorials).
If you can tell us which row needs to have its background modified and why (in other words, "what is the use case?") we can probably help you out a bit better.
GregP thanks a lot for your kind help.Yesterday only I have implemented that fnDrawCallback.It is working fine now.Thanks a lot versak for ur feedback.
Replies
[code]
table tr td {
background-color: #ff0000;
}
[/code]
If it's not based on JS logic, advanced CSS selectors will still give you some control; for example, the nth-child selector (Googling should reveal tonnes of tutorials).
If you can tell us which row needs to have its background modified and why (in other words, "what is the use case?") we can probably help you out a bit better.