Hi,
how can I change the color of the "feedback" after a row has been edited? Is there a CSS rule?
For example here, if you inline edit a row, then the row flashes in yellow.
Thanks!
This question has an accepted answers - jump to answer
Yes, it uses CSS.
table.dataTable tbody tr.highlight { background-color:red !important; }
Should do the job - although there are other classes in the Editor file which are used for styling older versions of DataTables. Search for highlight as the class name in the file to see them all.
highlight
Allan
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
Yes, it uses CSS.
Should do the job - although there are other classes in the Editor file which are used for styling older versions of DataTables. Search for
highlight
as the class name in the file to see them all.Allan