这是我的代码。
<html>
<body style="height:100%">
<div id="scheduler_here" class="dhx_cal_container" style="width:100%;height:100%">
...
</div>
</body>
</html>
现在我得到了右侧没有滚动条的全屏 dhx 调度程序容器。很好,非常漂亮。但是我添加了一个需要的 div 容器,所以我得到的容器已经把底部切掉了。这是我更新的代码。
<html>
<body style="height:100%">
<div>
...
</div>
<div id="scheduler_here" class="dhx_cal_container" style="width:100%;height:100%">
...
</div>
</body>
</html>
如何获得全月视图容器?