Replies: 1 comment 8 replies
-
Hello, this can be caused by storing data under the attributes of the element that are not plain objects. The For instance, instead of: const el1 = new dia.Element();
const el2 = new dia.Element();
/* ... */
el1.set('referenceElement', el2);
const refEl = el1.get('referenceElement'); do: const el1 = new dia.Element();
const el2 = new dia.Element();
/* ... */
el1.set('referenceElementId', el2.id);
const refEl = graph.getCell(el1.get('referenceElementId')) Is it the case? |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
My app just like
Task Demo
with joint++.When i change the input content and click the
clone
, the app will stuck.Not just
clone
, some other button will execute stuck.https://recordit.co/NyjG5OrlpR
Any help will appreciate!😊
Beta Was this translation helpful? Give feedback.
All reactions