≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Is there mouseover event for datatable rows
Is there mouseover event for datatable rows
vlutsker
Posts: 14
Questions: 0
Answers: 0
June 2010
edited June 2010
in
General
Hi Allen,
Is there mouseover event available for datatable to highlight rows with different color?
Thank you, Vlad.
Replies
zadro
Posts: 12
Questions: 0
Answers: 0
June 2010
Some simple CSS:
[code]
.dataTables_wrapper tbody tr:hover {
background-color: #FFFF00!important;
cursor: pointer;
* cursor: hand;
}
[/code]
vlutsker
Posts: 14
Questions: 0
Answers: 0
June 2010
Thank you Zadro.
This discussion has been closed.
Replies
[code]
.dataTables_wrapper tbody tr:hover {
background-color: #FFFF00!important;
cursor: pointer;
* cursor: hand;
}
[/code]