SmartGWT version - 6.0p build date - 2020-06-11
Browser - Google Chrome version-83.0.4103.9
In Calendar widget, date chooser shows only years from 1995 to 2020 only. Not able to move the year to 2021 when I click on single right arrow button.
Code to create Calendar Widget:
Calendar calendar = new Calendar();
calendar.setDisableWeekends(false);
calendar.setShowAddEventButton(false);
calendar.setCanEditEvents(true);
calendar.setEventAutoArrange(true);
calendar.setEventOverlap(true);
calendar.setEventOverlapPercent(5);
calendar.setEventOverlapIdenticalStartTimes(true);
calendar.setShowQuickEventDialog(false);
calendar.setShowOtherDays(false);
Do I have to set any other property to show years beyond 2020? Could you please share sample code for that?
Thanks in advance.
Browser - Google Chrome version-83.0.4103.9
In Calendar widget, date chooser shows only years from 1995 to 2020 only. Not able to move the year to 2021 when I click on single right arrow button.
Code to create Calendar Widget:
Calendar calendar = new Calendar();
calendar.setDisableWeekends(false);
calendar.setShowAddEventButton(false);
calendar.setCanEditEvents(true);
calendar.setEventAutoArrange(true);
calendar.setEventOverlap(true);
calendar.setEventOverlapPercent(5);
calendar.setEventOverlapIdenticalStartTimes(true);
calendar.setShowQuickEventDialog(false);
calendar.setShowOtherDays(false);
Do I have to set any other property to show years beyond 2020? Could you please share sample code for that?
Thanks in advance.
Comment