Alexander Slesarenko
Alexander Slesarenko
I have an issue with this too. Solutions like [above comment](https://github.com/alamkanak/Android-Week-View/issues/374#issuecomment-426828861) and [this comment](https://github.com/alamkanak/Android-Week-View/issues/390#issuecomment-285800673) seem more like hacks than good use case for me. Setting adapter would be much better...
I had this problem too, found the following workaround for extracting month: ```js function onMonthChange(date: DateObject | DateObject[] | null, options: any) { if(date){ const formattedMonth = `${date.year}-${date.month.number}` console.log(formattedMonth) }...