Hello,
I'm looking to add a calendar to a form that allows a user to select multiple dates (not a date range). Any suggestions?
Thanks!
Question
Question
calendar multiple dates
Replies
You could put a date field in a table or collection and allow the user to pick a single date, then add another row for each date needed. Forms doesn't support selecting multiple dates from a single date field, but you could allow the user to add as many date fields as they need.
That wouldn't work for this scenario. Our employees complete a calendar at the beginning of each year indicating which days they will work. I was hoping I can do something like this.
I think the underlying problem is that you need a way to store the resulting information even if you can get that kind of date picker.
Assuming you had something like your screenshot above, you're still creating multiple date ranges that need to be stored in separate fields.
As Jared mentioned, the best bet would probably be a table or collection with a "start date" and "end date" to which you could add as many rows as needed.
As for "capturing" the dates, you might be able to find a plugin or something that will support it, but the table/collection would probably still be needed to store the values in a meaningful way.
Thank you! I'll give it a shot.