Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Sandaly KEITA on Feb 19, 2009 08:07
open dhtmlx forum
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
Answer posted by dhxSupport on Feb 19, 2009 08:27
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; };