Hello,
How can we hide prev/next arrows on the compact calendar.
I see there is
setShowControls method , but setting that method to false will hide previousButton , nextButton as well as the month/year.
Thanks.
How can we hide prev/next arrows on the compact calendar.
Code:
calendar.setShowDayView(false);
calendar.setShowWeekView(false);
calendar.setShowOtherDays(false);
calendar.setShowDayHeaders(false);
calendar.setShowDatePickerButton(false);
calendar.setShowAddEventButton(false);
calendar.setDisableWeekends(false);
calendar.setShowDateChooser(false);
calendar.setCanCreateEvents(false);
setShowControls method , but setting that method to false will hide previousButton , nextButton as well as the month/year.
Thanks.
Comment