called when component issues dynamic request for a data
start | number | request data from start position |
count | number | request count records |
boolean | true - to trigger data loading, false - to block it |
myDataView.attachEvent("onDataRequest", function(start, count){
return true;
});
The event is blockable. Returning false from event handler will prevent data loading.
Back to top