본문으로 건너뛰기

onLoadStart

Description

데이터 소스에서 데이터 로딩이 시작되기 직전에 발생합니다

onLoadStart: (url: string, type: string) => void;

Parameters

  • url - (required) string - 서버 측 URL(정적 파일이거나 데이터를 출력하는 서버 사이드 스크립트일 수 있습니다)
  • type - (required) string - ('json', 'xml', 'oldxml') 데이터 타입

Example

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

Details

이벤트는 load 메서드에서 발생합니다.

Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.