onXLS

fires immediately before loading data from the data source has been started

void onXLS();

Deprecated

Will be removed in future versions. Use onLoadStart instead.

scheduler.attachEvent("onLoadStart", function(){
    //any custom logic here
});

Example

scheduler.attachEvent("onXLS", function (){
    //any custom logic here
});

See also
Change log

deprecated since v5.2

Back to top