Items API Events
test:proctor:goto
Fires when a proctor navigates the assessment to a different Item.
You would want to be notified about this event firing, because you might want to display a message for the learner that their assessment is being remotely controlled, for example.
Examples
itemsApp.on('test:proctor:goto', function () {
console.log('This code executes when a proctor navigates the assessment to a different Item.');
});
Related articles
- The
test:proctor:paused
event, the event that occurs when a proctor pauses the assessment. - The
test:proctor:resumed
event, the event that occurs when a proctor resumes the assessment. - The
test:proctor:save
event, the event that occurs when a proctor saves the assessment. - The
test:proctor:exitAndSubmit
event, the event that occurs when the assessment has been exited and submitted by a proctor. - The
test:proctor:terminated
event, the event that occurs when a proctor terminates the assessment. - See the Live Progress Reporting Demo