I am stuck trying to make Bubbles Date/time picker block specific weekdays like all mondays.
Does anyone have a workable solution?
Edit: just found the solution
- Put the Date/time picker on the page
- Add an empty html element
- Insert the following code in html element:
var $input=$(‘input.date_div.picker__input’).pickadate();
var picker=$input.pickadate(‘picker’);
picker.set(“disable”, [1,4,7]);
Note: picker.set(“disable”, [1,4,7]); 1,4,7 resymbols weekdays 1 is monday, 2 is Tuesday etc.