Connect dynamically to signals of dynamically created objects
问题 The title might be a bit confusing, but my intent is pretty simple: I have a [Repeater/Instantiator] which creates multiple instances of a arbitrary delegate. I want to react to all changes of the properties (only first-level, so no properties of properties) of the instances of the delegate, calling a function function update(index, propertyName) This seems to be easy, but I fail. This is my code TestObj.qml Repeater { onItemAdded: { var keys = Object.keys(item) console.log(keys) for (var k =