Enabling a Highlighting of Cells on Hover

This article describes how to create a mouse over effect for highlighting a table cell using a background color.

Step-by-Step-Guide

Insert the following code in the "custom.css" of your application. 

dataCells:hover {
    background: rgb(230,230,230) !important;
}

Of course you can change the rgb color values to define the required color or add more styles like a font-family definition.