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
Lets say I have an event scheduling app for corporate meetings. I want the Manager user to indicate which days of the week they are available for a meeting, then I want to show the DatePicker to the Employee user with only those days available as inputs.
I know that the min/max dates are passed to the component as HTML data attributes.
However, this feature might be better served by JS API. I am uncertain about the specific implementation that would be better, but also I have no preference
The text was updated successfully, but these errors were encountered:
makes it such that only "allowed" options can be passed down to the underlying component, walling-off the ones that aren't explicitly documented (but still available).
Would be nice to just pass the entire _options object and give full access to the underlying https://github.com/mymth/vanillajs-datepicker options.
Lets say I have an event scheduling app for corporate meetings. I want the Manager user to indicate which days of the week they are available for a meeting, then I want to show the DatePicker to the Employee user with only those days available as inputs.
This is similar to min/max date: #417
The difference is that the range of available dates might not be a continuous segment of days in a row.
You may imagine something similar to Calendly scheduling calendar:
https://calendly.com
I know that the min/max dates are passed to the component as HTML
dataattributes.However, this feature might be better served by JS API. I am uncertain about the specific implementation that would be better, but also I have no preference
The text was updated successfully, but these errors were encountered: