Hello,
I currently use daylpilotjs in pro version. I have a style problematic (CSS).
When i do a fast horizontal scroll, the elements are not loaded in the order which causes a shift of my CSS.
[screen_1]
Would it be possible on page load to load all HTML elements ?
When my page is loaded only the visible part of the elements are loaded :
[screen_2]
When I scroll fast the HTML elements are loaded in the wrong order:
[screen_3]
The first item loaded is not the first in the calendar :
[screen_4]
My CSS :
.scheduler_default_matrix_vertical_line:nth-child(6n) {
background-color: #C0C0C0;
}
.scheduler_default_matrix_vertical_line:nth-child(6n+3) {
background-image:
linear-gradient(45deg, #C0C0C0 25%, transparent 25%),
linear-gradient(-45deg, #C0C0C0 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #C0C0C0 75%),
linear-gradient(-45deg, transparent 75%, #C0C0C0 75%);
background-size: 4px 4px;
background-position: 0 0, 2px 0, 2px -2px, 0px 2px;
}