Question 1) How to disable specific dates on WixCode. Using the datePicker, I would like to disable the Dates Starting from Today and > 4 days away.
2) Also to disable all dates from 9 Months away.
I know the standard set disable looks like this:
let badDate1 = new Date(2017, 0, 13);
let badDate2 = new Date(2017, 9, 13);
$w("#myDatePicker").disabledDates = [badDate1, badDate2];
So how do I accomplish question 1 & 2. Thanks a Mill.