간트 API이벤트onBeforeUndoStack이 페이지에서onBeforeUndoStack Description 동작이 undo 스택에 추가되기 직전에 트리거됩니다. onBeforeUndoStack: (action: UndoRedoAction) => boolean;Parameters action - (required) UndoRedoAction - 사용자 동작을 나타내는 명령 객체 배열 Returns result - (boolean) - 이벤트의 기본 동작을 계속할지(true) 중단할지(false) 결정합니다. Examplegantt.attachEvent("onBeforeUndoStack",function(action){ // 여기에 코드 작성 return true;});Details