Author API Events
render:itemlist
Fires after the Item list has finished rendering.
You would want to be notified about this event firing, because you might want to take some action when the Item list has loaded and rendered, for example.
The event is fired in the following scenarios: the first load of the Item list, after every search, and during sorting of Items.
Examples
authorApp.on('render:itemlist', function () {
console.log('This code executes when after the Item list has rendered.');
});