You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per the Calendar Documentation, if the props selectOtherMonths is set to true, adjacent months greyed out date should be selectable. I have found out that it is not working. After initial investigation, I have found out following defect in code.
In the function getNextMonthAndYear, else condition should be updated as below: else { m = month + 1; y = year; }
In function onDateSelect, selectOtherMonths should be called as a props.
I have tested locally with my application. It looks working. But I request somebody familiar with the code base to fix it up.
Abu
The text was updated successfully, but these errors were encountered:
As per the Calendar Documentation, if the props selectOtherMonths is set to true, adjacent months greyed out date should be selectable. I have found out that it is not working. After initial investigation, I have found out following defect in code.
else { m = month + 1; y = year; }
I have tested locally with my application. It looks working. But I request somebody familiar with the code base to fix it up.
The text was updated successfully, but these errors were encountered: