DHTMLX Docs & Samples Explorer

Row hovering

enableRowsHover allows you to enable/disable hovering row under mouse.

enable hovering
disable hovering

Source
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxgrid.css">
<link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxgrid_dhx_skyblue.css">
<script  src="../../codebase/dhtmlxcommon.js"></script>
<script  src="../../codebase/dhtmlxgrid.js"></script>        
<script  src="../../codebase/dhtmlxgridcell.js"></script>
<style>
.grid_hover {
    background-color:#7FFFD4;
    font-size:20px;
}
</style>
 
 
<table width="600px">
    <tr>
        <td width="50%" valign="top">
            <div id="gridbox" style="width:100%;height:270px;background-color:white;"></div>
        </td>
    </tr>
    <tr>
        <td>
            <a href="#" onClick="mygrid.enableRowsHover(true,'grid_hover')">enable hovering</a><br>
            <a href="#" onClick="mygrid.enableRowsHover(false)">disable hovering</a><br>
            <div id="a_1"></div>
        </td>
    </tr>
</table>
<br>
 
<script>
function doOnRowSelect(id) {
    document.getElementById("a_1").innerHTML = "Selected row: " + id;
}
mygrid = new dhtmlXGridObject('gridbox');
mygrid.setImagePath("../../codebase/imgs/");
mygrid.setHeader("Sales,Book Title,Author,Price,In Store,Shipping,Bestseller,Date of Publication");
mygrid.setInitWidths("50,150,120,80,80,80,80,200");
mygrid.setColAlign("right,left,left,right,center,left,center,center");
mygrid.setColTypes("dyn,ed,ed,price,ch,co,ra,ro");
mygrid.attachEvent("onRowSelect", doOnRowSelect);
mygrid.getCombo(5).put(2, 2);
mygrid.setColSorting("int,str,str,int,str,str,str,date");
mygrid.enableMultiselect(true);
mygrid.init();
mygrid.setSkin("dhx_skyblue");
mygrid.loadXML("../common/grid.xml");
</script>