Grading API Events
attachitem:start
Fires immediately before the learner's Item with responses and grading UI is added to the page, usually from calling the gradingApp.attachItem()
method.
You would want to be notified about this event firing, because you might want to update your application UI to indicate that the attaching of the Item has started, for example.
Examples
gradingApp.on('attachitem:start', function () {
console.log('attachItem started');
});