Grading API Events
detachitem:complete
Fired when the public method gradingApp.detachItem()
is completed.
You would want to be notified about this event firing, because you might want to update your application UI to indicate that the detaching of the attached Item is complete, for example.
Examples
gradingApp.on('detachitem:complete', function () {
console.log('detachitem complete');
});