본문으로 건너뛰기

onBeforeMultiSelect

Description

작업 하나 또는 여러 작업 범위를 선택하기 전에 발생합니다

onBeforeMultiSelect: (e: Event) => void;

Parameters

  • e - (필수) Event - 네이티브 이벤트 객체

Example

gantt.attachEvent("onBeforeMultiSelect", function(e){
// some logic here
return true;
});

Details

노트

이벤트는 multiselect 확장에서 정의되므로, multiselect 플러그인을 활성화해야 합니다. 자세한 내용은 Multi-Task Selection 문서를 참고하십시오.

이벤트는 차단 가능하며, false를 반환하면 다중 선택이 취소됩니다.

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.