I've developed a custom subclass of the DatePicker class. Within the update() method, I have implemented logic to disable the prevRepeater if the current month matches the month of the minDate property:
me.prevRepeater.setDisabled(me.minDate && me.activeDate.getMonth() == me.minDate.getMonth());
However, I'm encountering an issue where clicking the prevRepeater to navigate to the previous month triggers an infinite loop of click events, ultimately locking up the datepicker. The only solution I've found is to refresh the page, which is not ideal. Is there a specific detail in the documentation that I may have missed to prevent this problematic behavior?