Hello,
I have noticed that the onMouseOver event handler doesn’t get fired when there is a mouse-over on the first row of a grid. I’ve tried this both with groupBy() and a regular table. Here’s a very simple snippet of code:
inventoryGrid.attachEvent("onMouseOver", mouseOverHandler);
function mouseOverHandler(row,col) {
var cellObj = inventoryGrid.cells(row,col);
if (col == TRANSFER_IN_COLUMN) {
cellObj.cell.style.cursor="pointer";
} else {
cellObj.cell.style.cursor="default";
}
}
The cursor changes on all cells for the TRANSFER_IN_COLUMN except the first one!! Here’s my simple grid config.
function initGridConfig (grid) {
grid.enableMultiline(false);
grid.enableRowsHover(true);
grid.enableMarkedCells(false);
grid.enableAutoWidth(true);
grid.enableLightMouseNavigation(false);
grid.enableBlockSelection(false);
}
I’m using IE8 in Compatibility Mode w/dhtmlxSuite 2.5 professional. I don’t have any other events set on the grid. Thank you for your help.
-Doug