OrgChart JS

구조적 데이터를 세련된 방식으로 표현할 수 있는 간단하고 유연하며 사용자 정의가 가능한 조직도를 만들 수 있습니다.

BALKAN App사에서 공개
2019년 부터 ComponentSource에서 판매중

가격: US$ 391.02 버젼: v9.x NEW 업데이트: 매일? 4.00 별점 평균 리뷰4.00 별점 평균 리뷰4.00 별점 평균 리뷰4.00 별점 평균 리뷰4.00 별점 평균 리뷰 (2)

OrgChart JS v8.12.13

Released: Oct 22, 2023

v8.12.13 버젼 업데이트

기능

  • Added undo/redu functionallity
    • New Icons
      • OrgChart.icon.undo and OrgChart.icon.redo.
    • New Methods
      • undo - Undo data operations like adding/removing nodes. Set undoRedoStorageName option before calling this method.
      • redo - Redo data operations like adding/removing nodes. Set undoRedoStorageName option before calling this method.
      • clearRedo() - Clears all Redo stack steps.
      • clearUndo() - Clears all Undo stack steps.
      • undoStepsCount() - Returns the number of Undo stack steps.
      • redoStepsCount() - Returns the number of Redo stack steps.
    • New Interface
      • undoRedoStorageName - Set the session storage name to use undo/redo functionallity.
    • New Option
      • undoRedoUI.
  • New Event Listener
    • onUpdated - Occurs when new nodes are added, removed, updated or imported. Also when a slink or clink is added or removed and after undo or redo operations. Use this event listener to synch your server side database with this.config.nodes, this.config.clinks, this.config.slinks etc.
  • Breaking changes
    • If you are using one of the following event listeners in your code: adding, added, removed, please replace them with onUpdated.