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
I can implement a setup where I select a start date and then disable prior dates in an end date input, however, if I try and do it with just the year and month setup, it doesn't disable previous months. Example:
I can implement a setup where I select a start date and then disable prior dates in an end date input, however, if I try and do it with just the year and month setup, it doesn't disable previous months. Example:
let startDate = $('.sStartDate').fdatepicker({
startView: 'year',
minView: 'year',
format: "mm/yyyy",
closeButton: true,
closeIcon: '',
})
.on( 'changeDate', function(ev) {
selectedDate = new Date(ev.date);
})
.data('datepicker');
The text was updated successfully, but these errors were encountered: