Okay so I have tried to do as you suggested but it doesn't seem to be working.
With this code the calendar is still showing Mon, Tue, ... in the headers.
The hoverWidth is correctly changed to 250 so the autochild properties must be applied somehow.
Code:
CalendarView monthView = new CalendarView(){ @Override public String getFieldTitle(String fieldId) { return "Test"; } }; monthView.setHoverWidth(250); calendar.setAutoChildProperties("monthView", monthView);
The hoverWidth is correctly changed to 250 so the autochild properties must be applied somehow.
Comment