Rubric Editor API Events
reset
Fires when the reset method is called.
You would want to be notified about this event firing, because you might want to update your application UI to indicate the rubric has been reset, for example.
Examples
rubricEditor.on('reset', function () {
console.log('rubric has been reset');
});