Hello, thank you very much for the very useful component. I was wondering if it would be possible to select a date or date range programmatically (as if it had been clicked). Thank you!
Managed to select a date programmatically by using the following js code:
calendar.getElement().executeJs("this.calendar.select(new Date($0,$1,$2))", date.getYear(), date.getMonthValue() - 1, date.getDayOfMonth());
Cool, thanks for providing the solution :)