Row Selected

hi,

I have a simple dhmtlxgrid .

Onrow select the css for the row is getting changed,
How to disable the selected row feature?

Unfortunately the styles of the selected rows cannot be disabled without code modifications.
You may disable the select functionality at all using the following code:

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