Hi!
I use a timeline view and my events have wrong width.
As you can see start position is right (12:15), but stop position is wrong, it must be 13:15, but looks like 13:07.
Any ideas?
Thanks a lot!
Hi!
I use a timeline view and my events have wrong width.
As you can see start position is right (12:15), but stop position is wrong, it must be 13:15, but looks like 13:07.
Any ideas?
Thanks a lot!
Hi,
the component expects that inner DOM elements will have a default ‘box-sizing’ mode. If box-sizing it is set to “border-box”, some sizes may mismatch.
Try adding following css to the page, does it fixes the issue?
.dhx_cal_navline div, .dhx_cal_header, .dhx_cal_header div, .dhx_cal_data div, .dhx_cal_light, .dhx_cal_light div {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}