Skip to content

Latest commit

 

History

History

custom-elements

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Custom Elements in bpmn-js

A powerful feature provided by bpmn-js is the ability to create custom elements. Custom elements are ordinary BPMN 2.0 elements with domain-specific data, look, and feel. Use cases for such elements include:

  • show certain elements in a distinct way
  • restrict rules where a user can place elements on the diagram
  • add data related to performance analytics such as KPI targets
  • display hidden details directly on the diagram
  • attach technical information related to model execution

⚠️ If your data has a different life-cycle (for example runtime data) or is stored outside the BPMN 2.0 diagram you should consider alternative extension mechanisms such as 📓 overlays.

Implementation Techniques

This page features a number of key techniques to build custom elements:

Additional topics, not directly featured here include:

Read BPMN 2.0 Extensions

You can use the BPMN 2.0 extension mechanism to add extension attributes and elements in a BPMN 2.0 compatible way.

You can find an example of this approach in our model extension example. It creates a model extension that allows you to read, modify and write BPMN 2.0 diagrams that contain extension attributes and elements.

Screenshot model extension

Customize Rendering

If you want to draw certain BPMN 2.0 elements differently, you can create a custom renderer. Usually, you would want to do this to be able to distinct custom elements from other elements.

There is an example in our custom rendering example. It renders bpmn:Task and bpmn:Event elements differently.

Screenshot custom rendering

Customize Editor Controls

You can add custom controls so that users can create custom elements through palette and context pad.

You can find an example in our custom controls example. It adds controls that allow you to create bpmn:ServiceTask elements through both, the palette and the context pad.

Screenshot custom editor controls

Custom Elements, Complete Demo

The custom elements example combines all the techniques showcased in the previous sections. It creates a model extension, custom rendering, and custom controls.

Screenshot custom elements

There Is More

Of course, you can go even further. Have a look at the following examples:

License

MIT