¿Could this error be happening because I'm creating the nodes from OnInitializedAsync? #336
Closed
JuanMaGMZG
started this conversation in
General
Replies: 3 comments 2 replies
-
¿the problem?
|
Beta Was this translation helpful? Give feedback.
2 replies
-
I have obtained version 3.0.0 and adapted it to the new nomenclatures, and it's working now. Thank you very much. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am loading some nodes that I have stored in a database. When rendering them, I retrieve these nodes using an asynchronous function.
They render correctly, but upon finishing the rendering, I get this message:
What I'm doing is adding the nodes to a node list, iterating through them, and adding them to the diagram like this:
foreach (DiagramNode node in nodeList)
{
diagram.Nodes.Add(node);
}
Regards
Beta Was this translation helpful? Give feedback.
All reactions