onLoadEnd

fires after loading data from the data source has been completed

void onLoadEnd(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("onLoadEnd", function(url, type){
    console.log("onLoadEnd",url, type)
});

See also
Back to top