Hi,
How to make a hover CSS class to appear on mouseover of the cell an not the whole grid ??
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”;
});