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
isDisabled: function (date, mode) {
console.log('checking if the date is disabled');
const day = date.getDate();
if (day == 29 || day == 30 || day == 31) {
return true;
}
return false;
},
I'm trying to disable the date that has day greater than 28 but it is not working...?
The text was updated successfully, but these errors were encountered:
I'm trying to disable the date that has day greater than 28 but it is not working...?
The text was updated successfully, but these errors were encountered: