afterLazyLoad
fires after getting a response from the server
afterLazyLoad: (from: number, count: number) => void;
Parameters:
from: number
- the index of the first loaded itemcount: number
- the count of records loaded from the server
Example
component.data.events.on("afterLazyLoad", function (from, count) {
// your code here
});