Hi Stefan,
thanks for that great component! I have one problem I am not able to solve by my own. What I try is the following:
I would like to have calendar that only shows a time frame like hours between 08:00 am and 05:00 pm, that works fine. But I also try to expand the default “blocksize” from by default 00:30 minutes to 00:15 minutes. what I have tried is that:
calendar = FullCalendarBuilder.create().build();
calendar.setLocale(Locale.GERMANY);
calendar.setTimezone(myTimezone);
calendar.setFirstDay(DayOfWeek.MONDAY);
calendar.changeView(CalendarViewImpl.TIME_GRID_WEEK);
calendar.setNowIndicatorShown(true);
calendar.setMinTime(LocalTime.of(8, 0));
calendar.setMaxTime(LocalTime.of(17, 0));
calendar.setHeightAuto();
calendar.setSnapDuration("00:15");
add(calendar);
Everything else works fine only changeing SnapDuration is not shown correct. Any suggestions?
thanks
Using Vaadin 14.1.0 and calendar 2.0.0
PJM