Displaying the same QML Item multiple times
-
The idea is to have small unique "process blocks" available to the user. Then, he can arrange instances of them as he wants in several graphs. When he launched one processing block instance, it should visually update all instances of the same processing block.
Best regards.
-
Hi, I don't think you can display the "same" item multiple times, that doesn't work in any GUI app as far as I know (i mean really the same item not a copy or identical looking).
You can of course display multiply objects of the same type and either save a list of the ID's or if you need to change all items of the same type iterate through your item list or tree and find the same items dynamically.
In your case you should have a list of your "process blocks" somewhere and have access to the type? -