Time field | XM Community
Solved

Time field

  • 10 June 2020
  • 1 reply
  • 38 views

Userlevel 3
Badge +10
  • QPN Level 2 ●●
  • 75 replies

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 but I can't really get them to work into the Qualtrics environment despite long searches on this forum.
Thanks for your help

icon

Best answer by TomG 11 June 2020, 14:13

View original

1 reply

Userlevel 7
Badge +27

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"
});
});

Leave a Reply