Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Jason on Jan 03, 2009 21:06
open dhtmlx forum
Windows on Firefox get stuck

I am having some problems with the latest (2.0) version of dhtmlxwindows.

On Firefox (v 3.02) a simple page rendering a single window (without a viewport) results in the window getting stuck at the top of the page. I can drag the window left and right, but not down into the body of the page.

The following HTML demonstrates (hope this comes out ok):

<html>
<head>
    <title>FF Test</title>
    <link rel="stylesheet" type="text/css" href="../../codebase/dhtmlxwindows.css">
    <link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxwindows_dhx_blue.css">
    <script src="../../codebase/dhtmlxcommon.js"></script>
    <script src="../../codebase/dhtmlxwindows.js"></script>
</head>
<body>
<script>
    var dhxWins = new dhtmlXWindows();
    dhxWins.setImagePath("../../codebase/imgs/");
    var w1 = dhxWins.createWindow("w1", 10, 10, 320, 240);
    w1.setText("dhtmlxWindow #1");
</script>
</body>

Test this on FF3 and you will see what I mean.

Thanks.
Answer posted by Support on Jan 08, 2009 05:26
Ad the following style:

html, body { height: 100%; }
Answer posted by Jason on Jan 08, 2009 05:41
Thanks