highlight a row via API?
highlight a row via API?
Freedy
Posts: 33Questions: 5Answers: 0
Hi,
How can I highlight a row via API? when I try $( dt.row( somerow ).nodes() ).addClass( 'Highlight_inUse' ) nothing
hanppends, but if I use $( dt.column( somerow ).nodes() ).addClass( 'Highlight_inUse' ) the column gets highlighted?
Thanks,
Thomas
This discussion has been closed.
Replies
Highlight selected row:
https://datatables.net/extensions/select/examples/initialisation/simple.html
Hi,
I need to be able to highlight a row, selected to not.
Likely you will need to prioritize the
.Highlight_inUse
class. Something like this maybe (changemyTable
to the ID of your table):Kevin