onLoadStart

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

void onLoadStart(string url,string type);
urlstringthe server-side url (may be a static file or a server side script that outputs data)
typestring('json', 'xml', 'oldxml') the data type

Example

gantt.attachEvent("onLoadStart", function(url, type){
    console.log("onLoadStart",url, type)
});

Details

The event fires in the load method.

See also
Back to top