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
0
votes
2 answers
Tools available for creating a BPMN file
Does anyone know if there is a free online tool available to create BPMN files except bpmn.io?
I have been using BPMN io for a while, and it does not allow me to change the task/event's ID from the GUI. Because of this, I have to do this manually.…

pavithra rox
- 1,056
- 3
- 11
- 33
0
votes
0 answers
Oracle APEX Faceted Search doesn't display BPMN diagram well on change
I am using cards to display diagrams. When page is load or reload diagram is displayed well, but when I use Faceted Search cards region is refreshed(without reload) and diagram doesn't fit in card.
Screenshots:
Cards region query
select
ID,
…

Pav4
- 1
- 2
0
votes
1 answer
How to specify XML element names in bpmn-js
If I define a moddle file with bpmn-js like this
{
name: "thisArgument",
superClass: [
"Element"
],
properties: []
},
{
name: "myData",
superClass: [
"Element"
…

user2740650
- 1,723
- 12
- 19
0
votes
1 answer
Specify type of data value in Vue (typescript)
I'm still lost in Vue (3) + Typescript trying to specify a data property of a certain type. I've added a .d.ts file but to no avail. I'm trying this:
import Modeler from 'bpmn-js/lib/Modeler'
...
data() {
return {
modeler: {} as…

Berco Beute
- 1,115
- 15
- 30
0
votes
1 answer
Camunda returning incorrect list of tasks using task variables
I have a use case where I am using a BPMN parallel multi-instance task to create multiple tasks once a form is submitted. The multi instance task is creating the individual tasks with the variable values. I can also see the element variable value is…

Madhu
- 53
- 1
- 11
0
votes
0 answers
Retrieve object from asyncronous function in bpmn moodle
I have function where I am using bpmn moddle to create bpmn xml.
Below is my function createFileData
import BpmnModdle from 'bpmn-moddle'
function createFileData(){
var moddle = new BpmnModdle()
var xmlStr =
'

prateeknaik
- 71
- 1
- 7
0
votes
0 answers
BPMN: alternative to task to gateway link
I am learning BPMN.
I am trying to use https://demo.bpmn.io to create examples from mg documentation.
In particuar in the pizza example i am trying to model the flow that from the task "Ask for pizza" goes back to the event based gateway:
my tool…

UnDiUdin
- 14,924
- 39
- 151
- 249
0
votes
1 answer
JBPM: Is it not possible to call a service method with no argument from a Service task in bpmn?
I am trying to invoke a no argument method of an Interface implementation via Service task. The eclipse JBPM plugin allows to create a Service task without providing the input arguments, but at runtime it fails with NullPointerException while…

Jaraws
- 581
- 1
- 7
- 24
0
votes
2 answers
Alignment issue between BPMN.IO and Heatmap.js
I'm trying to overlay a bpmn flow using bpmn.io with a heatmap using heatmap.js. If the canvas is set to the first and only element in the dom it actually works, but once you add anything else like in my sample a header, the coordinate system…

Rafael
- 31
- 4
0
votes
1 answer
Is it possible to update the running process instance using Fluent API in camunda?
I am trying to make some changes in the runtime of a process using the Fluent API. Is it possible to update the running instance?
Ex:
If I want to add a new event between existing events (user Task, Service Task, ...) and run the newly added event.…

Harshana
- 524
- 3
- 16
0
votes
1 answer
How to create a BPMN.io Example
Can someone guide me the correct way to actually start such an example..? I am used to develop ASP.NET projects and need to create a bpmn modeler with custom properties. So I found BPMN.IO, https://bpmn.io/, which (I think) can provide me with such…

Kaizer
- 651
- 3
- 9
- 22
0
votes
1 answer
Adding Colors to bpmn-js viewer
I'm currently using bpmn-js viewer library to display BPMN 2.0 diagrams on my website.
The problem occurs when I want to add colours to my displayed diagram. I checked this bpmn-js colors example and implemented the following code: