Skip to main content
  1. Index

Events

There are three basic kinds of events that GoJS deals with: DiagramEvents, InputEvents, and ChangedEvents. This page discusses the first two; see Changed Events for the last kind of event.

DiagramEvents

DiagramEvents represent general user-initiated changes to a diagram. You can register one or more diagram event handlers by calling Diagram.addDiagramListener. You can also register a diagram event handler in Diagram initialization options when calling the Diagram constructor. Each kind of diagram event is distinguished by its name.

Currently defined diagram event names include:

Event Name Description
InitialAnimationStarting The initial default animation is about to start; do not modify the diagram or its model in the event listener. This can be useful for modifying the AnimationManager.defaultAnimation to make a custom initial animation. See AnimationManager.initialAnimationStyle for details.
AnimationStarting A default animation (AnimationManager.defaultAnimation) is about to start; do not modify the diagram or its model in the event listener.
AnimationFinished A default animation (AnimationManager.defaultAnimation) just completed; do not modify the diagram or its model in the event listener.
BackgroundSingleClicked When a mouse left-button single-click happened in the background of the Diagram, not on a Part; if you make any changes, start and commit your own transaction.
BackgroundDoubleClicked When a mouse left-button double-click happened in the background of the Diagram, not on a Part; if you make any changes, start and commit your own transaction.
BackgroundContextClicked When a mouse right-button single-click happened in the background of the Diagram, not on a Part; if you make any changes, start and commit your own transaction.
ChangingSelection An operation is about to change the Diagram.selection collection, which is also the value of the DiagramEvent.subject; do not make any changes to the selection or the diagram or the model in the event listener; note that just setting Part.isSelected will not raise this event, but tools and commands will.
ChangedSelection An operation has just changed the Diagram.selection collection, which is also the value of the DiagramEvent.subject; do not make any changes to the selection or the diagram or the model in the event listener; note that just setting Part.isSelected will not raise this event, but tools and commands will.
ClipboardChanged Parts have been copied to the clipboard by CommandHandler.copySelection; the DiagramEvent.subject is the collection of Parts; if you make any changes, start and commit your own transaction.
ClipboardPasted Parts have been copied from the clipboard into the Diagram by CommandHandler.pasteSelection; the DiagramEvent.subject is the Diagram.selection, and this is called within a transaction, so that you do not have to start and commit your own transaction.
DocumentBoundsChanged The area of the diagram's Parts, Diagram.documentBounds, has changed; the DiagramEvent.parameter is the old Rect.
ExternalObjectsDropped Parts have been copied into the Diagram by drag-and-drop from outside of the Diagram; the DiagramEvent.subject is the set of Parts that were dropped (which is also the Diagram.selection), the DiagramEvent.parameter is the source Diagram, and this is called within a transaction, so that you do not have to start and commit your own transaction.
GainedFocus The diagram has gained keyboard focus, such as after a call to Diagram.focus.
InitialLayoutCompleted The whole diagram layout has updated for the first time since a major change to the Diagram, such as replacing the Model; if you make any changes, you do not need to start and commit your own transaction.
LayoutCompleted The whole diagram layout has just been updated; if you make any changes, you do not need to start and commit your own transaction.
LinkDrawn The user has just created a new Link using LinkingTool; the DiagramEvent.subject is the new Link, and this is called within a transaction, so that you do not have to start and commit your own transaction.
LinkRelinked The user has just reconnected an existing Link using RelinkingTool or DraggingTool; the DiagramEvent.subject is the modified Link, the DiagramEvent.parameter is the GraphObject port that the link was disconnected from, and this is called within a transaction, so that you do not have to start and commit your own transaction.
LinkReshaped The user has just rerouted an existing Link using LinkReshapingTool; the DiagramEvent.subject is the modified Link, the DiagramEvent.parameter is the List of Points of the link's original route, and this is called within a transaction, so that you do not have to start and commit your own transaction.
LostFocus The diagram has lost keyboard focus ("blur").
Modified The Diagram.isModified property has been set to a new value -- useful for marking a window as having been modified since the last save; do not modify the Diagram or its Model in the event listener.
ObjectSingleClicked A click that occurred on a GraphObject; the DiagramEvent.subject is the GraphObject; if you make any changes, start and commit your own transaction.
ObjectDoubleClicked A double-click that occurred on a GraphObject; the DiagramEvent.subject is the GraphObject; if you make any changes, start and commit your own transaction.
ObjectContextClicked A context-click that occurred on a GraphObject; the DiagramEvent.subject is the GraphObject; if you make any changes, start and commit your own transaction.
PartCreated The user inserted a new Part by ClickCreatingTool; the DiagramEvent.subject is the new Part, and this is called within a transaction, so that you do not have to start and commit your own transaction.
PartResized The user has changed the size of a GraphObject by ResizingTool; the DiagramEvent.subject is the GraphObject, the DiagramEvent.parameter is the original Size, and this is called within a transaction, so that you do not have to start and commit your own transaction.
PartRotated The user has changed the angle of a GraphObject by RotatingTool; the DiagramEvent.subject is the GraphObject, the DiagramEvent.parameter is the original angle in degrees, and this is called within a transaction, so that you do not have to start and commit your own transaction.
SelectionMoved The user has moved selected Parts by DraggingTool; the DiagramEvent.subject is a Set of the moved Parts, and this is called within a transaction, so that you do not have to start and commit your own transaction.
SelectionCopied The user has copied selected Parts by DraggingTool; the DiagramEvent.subject is Set of the newly copied Parts, and this is called within a transaction, so that you do not have to start and commit your own transaction.
SelectionDeleting The user is about to delete selected Parts by CommandHandler.deleteSelection; the DiagramEvent.subject is the Diagram.selection collection of Parts to be deleted, and this is called within a transaction, so that you do not have to start and commit your own transaction.
SelectionDeleted The user has deleted selected Parts by CommandHandler.deleteSelection; the DiagramEvent.subject is the collection of Parts that were deleted, and this is called within a transaction, so that you do not have to start and commit your own transaction.
SelectionGrouped The user has made a new Group out of the selected Parts by CommandHandler.groupSelection; the DiagramEvent.subject is the new Group, and this is called within a transaction, so that you do not have to start and commit your own transaction.
SelectionUngrouped The user has removed a selected Group but kept its members by CommandHandler.ungroupSelection; the DiagramEvent.subject is the collection of Groups that were ungrouped, the DiagramEvent.parameter is the collection of former member Parts that were ungrouped, and this is called within a transaction, so that you do not have to start and commit your own transaction.
SubGraphCollapsed The user has collapsed selected Groups by CommandHandler.collapseSubGraph; the DiagramEvent.subject is the collection of Groups that were collapsed, and this is called within a transaction, so that you do not have to start and commit your own transaction.
SubGraphExpanded The user has expanded selected Groups by CommandHandler.expandSubGraph; the DiagramEvent.subject is the collection of Groups that were expanded, and this is called within a transaction, so that you do not have to start and commit your own transaction.
TextEdited The user has changed the string value of a TextBlock by TextEditingTool; the DiagramEvent.subject is the edited TextBlock, the DiagramEvent.parameter is the original string, and this is called within a transaction, so that you do not have to start and commit your own transaction.
ThemeChanged The diagram's theme has changed, maybe as a result of setting ThemeManager.currentTheme or calling ThemeManager.set.
TreeCollapsed The user has collapsed selected Nodes with subtrees by CommandHandler.collapseTree; the DiagramEvent.subject is the collection of Nodes that were collapsed, and this is called within a transaction, so that you do not have to start and commit your own transaction.
TreeExpanded The user has expanded selected Nodes with subtrees by CommandHandler.expandTree; the DiagramEvent.subject is the collection of Nodes that were expanded, and this is called within a transaction, so that you do not have to start and commit your own transaction.
ViewportBoundsChanged The visible area of the Diagram, Diagram.viewportBounds, has changed; the DiagramEvent.subject is an object whose "scale" property is the old Diagram.scale value, whose "position" property is the old Diagram.position value, whose "bounds" property is the old Diagram.viewportBounds value, whose "canvasSize" property is the old size of the Diagram.div, and whose "newCanvasSize" property is the new size of the Diagram.div; the DiagramEvent.parameter is also the old viewportBounds Rect. Do not modify the Diagram position or scale (i.e. the viewport bounds) in the listener.

DiagramEvents do not necessarily correspond to mouse events or keyboard events or touch events. Nor do they necessarily correspond to changes to the diagram's model -- for tracking such changes, use Model.addChangedListener or Diagram.addModelChangedListener. DiagramEvents only occur because the user did something, perhaps indirectly.

In addition to the DiagramEvent listeners, there are also circumstances where detecting such changes is common enough to warrant having properties that are event handlers, such as GraphObject.click. Because these events do not necessarily correspond to any particular input or diagram event, these event handlers have custom arguments that are specific to the situation. See the higher-level input events section for more.

Model ChangedEvents are more complete and reliable than depending on DiagramEvents. For example, the "LinkDrawn" DiagramEvent is not raised when code adds a link to a diagram. That DiagramEvent is only raised when the user draws a new link using the LinkingTool. Furthermore the link has not yet been routed, so Link.points will not have been computed. In fact, creating a new link may invalidate a Layout, so all of the nodes may be moved in the near future.

Sometimes you want to update a database as the user makes changes to a diagram. Usually you will want to implement a Model ChangedEvent listener, by calling Model.addChangedListener or Diagram.addModelChangedListener, that notices the changes to the model and decides what to record in the database. See the discussion of Changed Events and the Update Demo.

This example demonstrates handling several diagram events: "ObjectSingleClicked", "BackgroundDoubleClicked", and "ClipboardPasted".

InputEvents

When a low-level HTML DOM event occurs, GoJS canonicalizes the keyboard/mouse/touch event information into a new InputEvent that can be passed to various event-handling methods and saved for later examination.

An InputEvent keeps the InputEvent.key and InputEvent.code for keyboard events, the InputEvent.button for mouse events, the InputEvent.viewPoint for mouse and touch events, and InputEvent.modifiers for keyboard and mouse events.

The diagram's event handlers also record the InputEvent.documentPoint, which is the InputEvent.viewPoint in document coordinates at the time of the mouse event, and the InputEvent.timestamp, which records the time that the event occurred in milliseconds.

The InputEvent class also provides many handy properties for particular kinds of events. InputEvent.commandKey is a read-only property that is convenient for use in overrides of CommandHandler.doKeyDown or Tool.doKeyDown, instead of looking at both InputEvent.key and InputEvent.code in order to decide how to handle the keyboard event. Examples include InputEvent.control (if the control key had been pressed) and InputEvent.left (if the left/primary mouse button was pressed).

Some tools find the "current" GraphObject at the mouse point. This is remembered as the InputEvent.targetObject.

Higher-level InputEvents

Some tools detect a sequence of input events to compose somewhat more abstract user events. Examples include "click" (mouse-down-and-up very close to each other) and "hover" (motionless mouse for some time). The tools will call an event handler (if there is any) for the current GraphObject at the mouse point. The event handler is held as the value of a property on the object. It then also "bubbles" the event up the chain of GraphObject.panels until it ends with a Part. This allows a "click" event handler to be declared on a Panel and have it apply even if the click actually happens on an element deep inside the panel. If there is no object at the mouse point, the event occurs on the diagram.

Click-like event properties include GraphObject.click, GraphObject.doubleClick, and GraphObject.contextClick. They also occur when there is no GraphObject -- the event happened in the diagram's background: Diagram.click, Diagram.doubleClick, and Diagram.contextClick. These are all properties that you can set to a function that is the event handler. These events are caused by both mouse events and touch events.

Mouse-over-like event properties include GraphObject.mouseEnter, GraphObject.mouseOver, and GraphObject.mouseLeave. But only Diagram.mouseOver applies to the diagram.

Hover-like event properties include GraphObject.mouseHover and GraphObject.mouseHold. The equivalent diagram properties are Diagram.mouseHover and Diagram.mouseHold.

There are also event properties for dragging operations: GraphObject.mouseDragEnter, GraphObject.mouseDragLeave, and GraphObject.mouseDrop. These apply to stationary objects, not the objects being dragged. And they also occur when dragging by touch events, not just mouse events.

This example demonstrates handling three higher-level input events: clicking on nodes and entering/leaving groups.

Clicking and selecting

Another common event property is Part.selectionChanged, which (if non-null) is called whenever Part.isSelected changes. In this case, the event handler function is passed a single argument, the Part. There is no need for additional arguments because the function can check the current value of Part.isSelected to decide what to do.

This example demonstrates both the "click" and the "selectionChanged" events:

Try Ctrl-A to select everything. Note the distinction between the GraphObject.click event property and the Part.selectionChanged event property. Both are methods that get called when something has happened to the node. The GraphObject.click occurs when the user clicks on the node, which happens to select the node, but the Part.selectionChanged occurs even when there is no click event or even any mouse event. It is due to a property change to the node.