bpmn.io is a BPMN 2.0 rendering toolkit and web modeler. It is powered by bpmn-js, a client-side only library that embeds BPMN 2.0 into the browser. It runs in modern browsers and requires no server backend. This allows you to easily embed it into any web applications. bpmn-js is built in a way that it can be both a viewer and web modeler.
Questions tagged [bpmn.io]
106 questions
2
votes
0 answers
How to append new element to moddle
I am using bpmn-moddle to create bpmn tag. in which i have created Task element and have added extension elements to it. Below is my code
moddle.fromXML(xmlStr, function(err, definitions) {
// add a root element
var bpmnProcess =…

prateeknaik
- 71
- 1
- 7
2
votes
2 answers
Is this valid BPMN?
I have an XOR gate connected to 4 activities. Each activity is then connected to the same subprocess. Not looking for answers or solutions - just general advice related to BPMN modelling.
My issue is that I think this design pattern could be…

math_is_for_nerds
- 77
- 1
- 6
2
votes
0 answers
javascript import & model with Camunda web modeler
I have a js with this declaration:
import Modeler from '.../Modeler';
and after this I define a var of type Modeler in the js:
var myModeler = new Modeler(...)
When I try to use this variable (myModeler) in an html (in script-tag), I find an…

Giant2
- 461
- 1
- 4
- 15
2
votes
2 answers
Remove BpmnJs symbol
I am trying to use Bpmn-JS in my project.
So when I tried to create workflow I saw
can anyone tell how to remove that as it was coming dynamically in the canvas..!
Thanks in Advance.

Keerthi Reddy Yeruva
- 861
- 1
- 16
- 43
2
votes
0 answers
How do you trace execution of a Camunda process?
I want to use the bpmn.io JS framework to display the flow of in-progress and completed processes, where completed tasks and the connections that were followed are highlighted a certain color, current task is another color, and failed tasks are…

BudJB
- 151
- 7
2
votes
1 answer
Invalid XML due to $type property
I recently updated my bpmn-js libraries to version 0.26.6. However, now that I have done so, I have ran into an issue with my diagrams.
For some reason, when parsing the diagram to XML, the SequenceFlow objects seem to have an added property, like…

Nacho321
- 1,911
- 7
- 33
- 55
2
votes
2 answers
How to get current Workflow XML for active Instance by the Rest API
In my AngularApp i will show the User the current Workflow, by using the REST API.
No Problem so far, usnig:
GET /process-definition/{id}/xml
and the
bpmn.io Viewer.
But it's possible to highlight the current Task or get the special Instance of…

MartinZyk
- 192
- 1
- 12
2
votes
2 answers
bpmn-js / bmpn.io / coreUI / React
Resources
Sample Repo: https://github.com/aaronscribner/bmpn-coreui-react
CoreUI: http://coreui.io/
Issue
I cannot seem to figure out how to set the modeler to the correct width and height when using this inside of the Core UI admin template. Does…

Meester Over
- 161
- 2
- 13
2
votes
2 answers
Filling a shape of visio with color in c#
Hi i am creating Shapes of visio2013 using c# .Now i need to fill the shape with some colors using c# i tried the below codes but nothing makes sense :( :(
Visio.Cell cqellname;
cqellname = shape.get_CellsSRC(
…

Dah Sra
- 4,107
- 3
- 30
- 69
1
vote
0 answers
Camunda: correlate message where array variable contains
I have a process that with an array variable e.g. testVariable = ["a","b","c"] and its waiting for a message correlation.
Im looking for the way to creater message correlation to a instance where array variable contains specific value e.g. "a"
I…

md107891
- 21
- 2
1
vote
0 answers
TypeError while trying to add a custom property to Properties-panel of Bpmn js
I have been trying to add custom property to Properties-panel as it shown in the example (https://github.com/bpmn-io/bpmn-js-examples/tree/master/properties-panel-extension) bpmn io. But when I try to rewrite it to React JS I get an error:…

MrBo
- 11
- 1
1
vote
0 answers
Camunda plugin for open the callActivity's BPMN diagram in a new tab of Camunda Modeler Platform
I would like to adapt the Camunda Modeler Tooltip plugin for open in a new tab the BPMN Diagram of a given CallActivit by doing Double Click on it.
By exemple, doing double click on the "My Process" CallActivity, I would like to open the associated…

Andres
- 11
- 2
1
vote
0 answers
Custom Properties Panel BPMN Issue
I have added custom properties panel in BPMN but now I need to add custom dropdown also. But after adding custom properties panel section is showing, but when I expand magic properties its not showing any field also not showing any…

Sandeep Thakkar
- 94
- 8
1
vote
1 answer
Bpmn.io custom panel properties doesn't show the field
I have tried to use the Bpmn.io modeler plus panel properties in Vue3 and I followed exactly what they have described in this example in Bpmn.io official examples. But it seems doesn't work properly in Vue (I guess Vuejs is the reason), and I don't…

Sepehr Amirkiaee
- 134
- 5
1
vote
1 answer
In BPMN, what is the best way to start a sub process from any step in a series of consecutive steps?
Consider a simple workflow:
Start->Step1->Step2->Step3->Step4->Step5->End
What is the best way to start a subprocess in parallel (e.g. send message) optionally from either one of the steps between Step2 to Step4? For example, at Step2, under certain…

kala
- 23
- 3