Event Author API

render:activitylist

Fires after the Activity list has finished rendering.

You would want to be notified about this event firing, because you might want to take some action when the Activity list has loaded and rendered, for example.

The event is fired in the following scenarios: the first load of the Activity list, after every search, and during sorting of Activities.

Examples

authorApp.on('render:activitylist', function (event) {
    console.log('This code executes when the Activity list has rendered.');
});
Was this article helpful?