DHTMLX/scheduler

Scheduler rendering issue - Missing calendar boundary

Closed this issue · 1 comments

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.

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;
}