Items API Events
test:submit
Fires when the assessment submission begins.
You would want to be notified about this event firing, because you might want to display a progress dialog showing the submission status in your application, for example.
Examples
itemsApp.on('test:submit', function () {
console.log('This code executes when the assessment submission begins.');
});
Related articles
- The
test:submit:error
event, the event that occurs when there was an error with the assessment submission. - The
test:submit:success
event, the event that occurs when the assessment was successfully submitted. - The
test:finished:submit
event, the event that occurs when the learner clicks the "Close" button on the outro screen and is redirected to theonsubmit_redirect_url
.