Skip to content

onBeforeLoad

fires immediately before data loading has started

function onBeforeLoad(): boolean

boolean returning false will prevent data loading

mygrid.attachEvent("onBeforeLoad", function(){
console.log("Loading...");
return true;
});

also check the next samples:

Returning false from the event handler will block further processing.

Articles

API