DHTMLX / scheduler

GPL version of JavaScript Event Scheduler
https://dhtmlx.com/docs/products/dhtmlxScheduler/
GNU General Public License v2.0
311 stars 110 forks source link

Scheduler rendering issue - Missing calendar boundary #24

Closed themoonraker13 closed 6 years ago

themoonraker13 commented 8 years ago

I've used the dhtmlx scheduler v 4.3.1 in my web application. I've found a UI related issue with the scheduler calendar wherein the left boundary/border (vertical bar) of the calendar is clearly missing or not rendering.

untitled

I've reduced the size of scheduler div to occupy the center portion of the page as seen in the attached screenshot unlike the online demo of scheduler where the scheduler covers the entire page making the outer-edges invisible.

AlexKlimenkov commented 6 years ago

I think it's intended, or at least absence of these borders is consistent between all skins of dhtmlxScheduler. Scheduler is expected to receive borders from the outer container. Or you can add a border to the div where scheduler is initialized, e.g.:

#scheduler_here{
   border: 1px solid #cecece;
}