Change grid row style on row hover

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>

https://snippet.dhtmlx.com/fdnee57d

1 Like