How can I change the row text style when the mouse is over a row and then get it back to normal when the mouse leaves the row?
You may apply the css to your row. Like:
<style>
.dhx_grid-row:hover .dhx_grid-cell {
color: red
}
</style>
1 Like