Time field

in Integrations
Time field
in Integrations
Hi everyone,
I'm looking to create a question with a preformatted time field (ex: what time do you arrive at work in the morning?).
What is the simplest method? I found some answers with Flatpickr, or using a field like <input type = time> but I can't really get them to work into the Qualtrics environment despite long searches on this forum.
Thanks for your help
0
Best Answer
-
TomG Raleigh, NCCommunity Member Wizard ✭✭✭✭✭
input type=time doesn't work with Safari, so you should probably avoid it.
Flatpickr should work. Add the flatpickr stylesheet and script to your survey header. Then to your time question:
Qualtrics.SurveyEngine.addOnload(function() { jQuery("#"+this.questionId+" .InputText").flatpickr({ enableTime: true, noCalendar: true, dateFormat: "H:i" }); });
1
Sign In to Comment