I have a requirement where I have to show how much time is left to complete the survey. The JSON has following attributes:
"title": "Semester1",
"showProgressBar": "top",
"showTimerPanel": "top",
"maxTimeToFinish": 300,
"focusFirstQuestionAutomatic": "true",
This shows me "You have spent 27 sec on this page. You have spent 27 sec of 5 min in total."
I want to show you are left with 4 min and 33 sec of 5 min in total OR 4 min and 33 sec left out of 5 min in total
To achieve this I added the below attribute to my JSON:
"showTimerPanelMode": "survey",
And now it only shows - You have spent 2 min 19 sec of 5 min in total.
Can you please advice me which attribute will show me the total time left to complete the survey ?