onLoadEnd

소스에서 데이터 로딩이 완전히 완료되었을 때 한 번 발생합니다

void onLoadEnd(string url,string type);
urlstring서버의 URL (정적 파일이거나 데이터를 반환하는 서버 사이드 스크립트일 수 있습니다)
typestring('json', 'xml', 'oldxml') 로드된 데이터의 타입을 지정합니다

Example

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

See also
Back to top