If I set the height of the dhx_cal_container to 30% for example (scrollbar appears), the bottom line of the calendar is not shown. I want to place some buttons below the calendar so I can’t use 100% height.
Here’s a small sample:
[code]
dhtmlxScheduler<style type="text/css" media="screen">
html, body {
margin: 0px;
padding: 0px;
height: 100%;
overflow: hidden;
}
.dhx_cal_container
{
width:100%;
height:30%;
}
</style>
<script type="text/javascript">
//<![CDATA[
function loadSched()
{
scheduler.config.first_hour = 1;
scheduler.config.last_hour = 23;
scheduler.init('scheduler_here',null,"week");
}
//]]>
</script>
I attached a screenshot where the first image displays the issue and the second shows what I want to achieve.