Grading API Events
detachitem:start
Fired when the gradingApp.detachItem() method is called.
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 has started, for example.
Examples
gradingApp.on('detachitem:start', function () {
console.log('detachitem started');
});