Your grid default, on mouse click is select row (yellow background image)
But, how can remove this?
Your grid default, on mouse click is select row (yellow background image)
But, how can remove this?
You may try to use onBeforeSelect event to block the selection.
mygrid.attachEvent("onBeforeSelect", function(new_row,old_row){return false;});
thank’s