Reports API Events
start
Fires when the learner begins an assessment by clicking the "Start" button on the intro screen when using the live progress report. This report is primarily for monitoring learner progress during proctored assessments. It is updated based on live interactions of learners with their assessments in real time.
You would want to be notified about this event firing to take some action when the learner begins the assessment, for example.
Examples
reportsApp.getReport('my-live-report-id').on('start', function () {
console.log('This code executes when the learner clicks on the "Start" button.');
});
Related articles
- The
show_intro
initialization option in Items API, which controls whether to show an introduction page when the assessment player has loaded.