Hello
I want to note the time of each question. how it take time to response one question. can we note in answers ?
Please guide
Regards
Hello
I want to note the time of each question. how it take time to response one question. can we note in answers ?
Please guide
Regards
Hello,
You can create a quiz as shown in this example - https://surveyjs.io/Examples/Library?id=survey-quiz&platform=jQuery&theme=defaultV2
You can set an overall rime limit as well as time limit per page. If you create a quiz with a single question per page it can fit your case,
Thanks, Serge
SurveyJS Team
Thanks for your response.
i got your point but i want time in answers. at the end of the survey i want to know about how much time to take each question ?
Hello,
You need to subscribe the https://surveyjs.io/Documentation/Library?id=surveymodel#onAfterRenderQuestion and https://surveyjs.io/Documentation/Library?id=surveymodel#onValueChanged events. In the first event handler you can save the time then question becomes visible to user and in the second event you can stop timer and get time user spent to answer a question. In the https://surveyjs.io/Documentation/Library?id=surveymodel#onComplete you can get the answers from the survey.data
property, get previously measured times for each question and combine these data into required resulting JSON.
Thanks, Serge
SurveyJS Team