How to get realtime diagram name?

Hi!
How can I get realtime diagram name? Like under process
image

Where do you need it?

image
Here

I created new topic β€œIs there any event on BPMNModeler for listening every change in model?”
If I know how to listen every change, I`ll be able to get realtime name.

To get the name of the root element you can do:

const rootElement = modeler.get('canvas').getRootElement();

const { businessObject } = rootElement;

const name = businessObject.get('name');

Yeah. It`s great for getting model name.

And for get it in realtime we can add
image
It works great for an Angular!

Thank you!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.