jdtcn / BlazorDateRangePicker

A Blazor component for choosing date ranges and dates
MIT License
182 stars 35 forks source link

Feature: OnMonthChanged Event #19

Closed rabidhobo closed 4 years ago

rabidhobo commented 4 years ago

Hello,

Currently the DateRangePicker only has the events for OnRangeSelect, OnOpened, OnClosed, and OnCancel. I would like for there to be OnMonthChanged like the Calendar component has so I can pull availability and repopulate the calendar with available dates.

Thanks.

jdtcn commented 4 years ago

Hello,

I've just added OnMonthChanged event. You can access selected calendar's month through LeftCalendar.Month and RightCalendar.Month properties.

rabidhobo commented 4 years ago

Great! Thanks.