Categories | Question details Back To List | ||
:: DHX Grid :: How to make a hover CSS class to appear on mouseover of the cell Hi, How to make a hover CSS class to appear on mouseover of the cell an not the whole grid ?? Answer posted by Support on Dec 12, 2008 05:21 can be done as var last=""; mygrid.attachEvent("onMouseOver",function(id,ind){ if (last) last.className=""; last=mygrid.cells(id,ind).cell; last.className="hover"; }); |