This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Event Assess API

items:fetch

Fires when a fetch action for a new batch of Items has begun, using the addItems public method.

You would want to be notified about this event firing so that you can know when dynamic Items are being fetched using adaptive and dynamic assessments so that you can keep track of the navigation state in your own application, for example.

Examples

itemsApp.on('items:fetch', function () {
    console.log('This code executes when a fetch action for a new batch of Items has begun.');
});

Related articles

Was this article helpful?