Hi,
I got a simple page with a schedule on it. In the past the schedule width would be automatically adjusted to the parent container but it doesnt do that and shows a scroll bar instead. Any idea how to fix this?
Best Regards,
Peter
My code:
Hi,
I ran your example but thats giving me exact the same output as my example above (screenshot). I would have expected to see the full day in the screen with very small (width) cells. Except I see a scrollbar (horizontal).
Regards,
Peter
Update:
Once in a while I get this error in the console:
<template>
<div style="width:1000px; padding-left: 15px">
<ejs-schedule ref="ScheduleObj" width='100%' :selectedDate='selectedDate' :timeScale="timeScale" :eventSettings='eventSettings' height='540px'>
<e-views>
<e-view option="TimelineDay"></e-view>
</e-views>
</ejs-schedule>
</div>
</template>
<style>
.e-schedule .e-timeline-view .e-date-header-wrap table col,
.e-schedule .e-timeline-view .e-content-wrap table col {
width: 15px;
}
.e-schedule .e-timeline-view .e-date-header-wrap, .e-schedule .e-timeline-month-view .e-date-header-wrap {
font-size: 8px;
}
</style> |