onLoadStart

데이터 소스에서 데이터 로딩 프로세스가 시작되기 직전에 트리거됩니다.

void onLoadStart(string url,string type);
urlstring서버 측 URL (정적 파일이거나 데이터를 반환하는 서버 측 스크립트일 수 있음)
typestring('json', 'xml', 'oldxml') 데이터 형식을 지정

Example

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

Details

이 이벤트는 load 메서드 내에서 트리거됩니다.

See also
Back to top