Div element disapears after navegation

Hi

I am using the Scheduler component in an environment Angular.

Initially, the timeline view is shown correctly. But when I click in the buttons to go to the previous or next range, a div element disapears. This div has the class dhx_cal_scale_placeholder and is the responsible to show a box shadow below the header.

Thanks in advance

Hello @darioschmidt ,

It looks like a bug, thank you for noticing it. I already sent it to our dev team, and they will work on a fix, unfortunately there is no ETA.

As a workaround, you can add an additional style to the dhx_cal_header element, like follows:

 .dhx_cal_header {
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
}
.dhx_cal_scale_placeholder {
    box-shadow: none;
}

So the shadow won’t disappear on scheduler re-render.

Kind regards,

The workaround works well,
Thanks