onXLE

fires after loading data from the data source is complete

void onXLE();

Deprecated

Will be removed in future versions. Use onLoadEnd instead.

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

Example

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

See also
Change log

deprecated since v5.2

Back to top