Here is my code.
<html>
<body style="height:100%">
<div id="scheduler_here" class="dhx_cal_container" style="width:100%;height:100%">
...
</div>
</body>
</html>
Now I got full screen dhx scheduler container without scrollbar in right side.That's fine and very pretty. But I added a div container to be needed so I got the container has cut the bottom side off. Here is my updated code.
<html>
<body style="height:100%">
<div>
...
</div>
<div id="scheduler_here" class="dhx_cal_container" style="width:100%;height:100%">
...
</div>
</body>
</html>
How can I get full month view container?