
Solved
How to add timepicker to a field in a matrix type question
Hi everyone,
I am designing a survey where I will ask participants to input start and end time of an activity in a matrix type question and for that I am planning to use the time picker function in java (see this link). However, I cannot figure out how to apply this java code to specific fields in the matrix type question (see the attached image below). Does anyone maybe know how this would be possible?
Thank you very much for your help and suggestions!
!

Best answer by TomG
@DarioKrpan11,
For the 3rd and 4th columns in the Matrix, like this:
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" td.c5 input").flatpickr({enableTime: true, noCalendar: true, dateFormat: "h:i K"});
jQuery("#"+this.questionId+" td.c6 input").flatpickr({enableTime: true, noCalendar: true, dateFormat: "h:i K"});
});
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.