Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Jason on Jan 05, 2009 22:48
open dhtmlx forum
CSS Bugs in dhtmlXTree and dhtmlXLayout

I've discovered a couple of invalid CSS attributes in both the JS file for dhtmlxWindows and the CSS file for dhtmlLayout.

dhtmlxwindows.js

Line 58

"<div class='dhtmlxWindowMainContent' style='position: absolute;overflow: hidden;width=100%;top: 0px;bottom: 0px;height=100%;left: 0px;right: 0px;'></div>"+

width=100% and height=100%

should be

width:100% ,height:100%

dhtmlxlayout_dhx_blue.css

Line 28: height=33px;
Line 167: height=18px;
Line 214: height=100%;
Line 215: width=18px;
Line 372: height=25;

The first one here actually causes a problem when corrected (the bottom of the layout border disappears) and should be corrected to height:30px;

Just an FYI
Answer posted by Support on Jan 08, 2009 03:31
This is a small IE hacks, not bugs.
Answer posted by Jason on Jan 08, 2009 04:39
Roger that.  Can't build anything these days without a few hacks thrown in :)