Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Brad Konia on Aug 19, 2008 15:20
open dhtmlx forum
Grid doesn't display in Safari

Please look at the following page:

http://www.modelscope.com/browse_cams.php

In FireFox and IE, the grid displays fine. However, in Safari, the row is not displayed.

Can you help me fix this?
Answer posted by Support on Aug 20, 2008 02:42
Because of used styling ( global css rule which affects elements in grid ) width of container differs in FF and Safari - as result unwanted scroller occurs. 
You can try to add next command to the grid init
   grid.enableAutoWidth(true)

or fully disable h-scroll by 
  grid.objBox.style.overflowX="hidden"
Answer posted by Brad Konia on Aug 20, 2008 02:57
The second method you suggested worked. Thanks!