CTRL+F and highlight words

Hi,



I have a little problem.



When I’m using CTRL+F in a web page, words are highlighted except in my dhtmlxgrid



Thanks in advance



SK

The grid block all selection to prevent visual problems, but it may be re-enabled back by some modifications
1. In dhtmlxgrid.css locate and erase all occurences of next line
-moz-user-select:none;
2. In grid initialization code add next command
grid.entBox.onselectstart = function(){ return true; };