Hide RowHovering?

Hello

How can i disable in my grid that the row is marked when clicking a cell?

Thank you

You can disable selection with next code line

grid.attachEvent("onBeforeSelect", function(){ return false; })

But i need to select the cell and not the whole row. If i select a cell the row is selected too and i’m not able to see which cell is selected. With your code i can’t select anything.

Thank you

Really no way to disable selection of the whole row so that i can select just a cell :frowning: ?

You can disable the row selection with the above code and enable cell marking mode

dhtmlx.com/docs/products/dhtmlxG … rkers.html

I changed cell background and later disabled row selection with onBeforeSelect and saved the col global with onMouseOver :smiley: works for me

Thank you