Weird Display of Navigator and Calender
Asked by Triccoteam
6 years ago.
By applying:
nav.titleHeight = "20";
nav.dayHeaderHeight = "20";
and
dp.headerHeight = "20";
dp.allDayEventHeight = "20";
Nav and Cal are looking weird
I'm using version 2019.4.4112.
Code and results are attached for review, maybe I missed something?
Thanks.
Answer posted by Dan Letecky [DayPilot]
6 years ago.
The values should be numbers, not strings:
nav.titleHeight = 20;
nav.dayHeaderHeight = 20;
// and
dp.headerHeight = 20;
dp.allDayEventHeight = 20;
Let me know if it didn't help.
Comment posted by Triccoteam
6 years ago.
That's it. Thank's again. Now everything is fine.
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.