I’m trying to add time selection to my calendar question. I’d really appreciate any help to solve this problem.
- I need help in making the time selection display on the calendar
- Then limit the range of time to specific hours of the day.
This is the JS I have for my question
------------------------------------------------------------------------------------------------------------------------
Qualtrics.SurveyEngine.addOnload(function()
{
jQuery("#"+this.questionId+" .InputText").flatpickr({
minDate: new Date().fp_incr(3) ,
dateFormat: "d/m/Y"});
});
I also would like to set up an email trigger that sends out 3 days after the date selected in the survey to remind users to submit another form.
Any help would be much appreciated.