Is there possibility to simply select cell values without double clicking and without disabling block selection?
To enable simple select in the dhtmlxgrid you may try to:
- remove all strings with:
-moz-user-select:none;
-moz-user-select:-moz-none;
in dhtmlxgrid.css
- add
grid.entBox.onselectstart=function(){ return true; };
in the init of the grid.