Have any questions? info@awareindevelopers.com; support@customaware.com

Remove Hover Highlighting of Rows on a Grid

When displaying a Query Grid the default behaviour is that each row that the mouse hovers over is highlighted.

I understand that some find this irritating.

To fix it…. add the two classes below to you Business Space css file. 

You may need to tinker with the colour of the second class to match the alternate row colour of the theme you are using but this works pretty well.

    AwareIM Version: v8

    Dependencies: 

    Where: CSS

    Script: 

    html .k-grid tr:hover {
      backgroundtransparent;
    }
     
    html .k-grid tr.k-alt:hover {
      background#f1f1f1;
    }

    Posted in