Author API Events
render:item
Fires after an Item has finished rendering, including any Questions or Features it contains.
You would want to be notified about this event firing, because you might want to take some action when the Item has loaded and rendered, for example.
Examples
authorApp.on('render:item', function (event) {
console.log('This code executes when the Item has rendered.');
});
Related articles
- The
open:item
event, which fires when an Item is selected from the Item list.