import QtQuick import QtQml.Models Rectangle { width: 200; height: 200 color: "blue" Column { id: column Instantiator //Repeater { model: 4 delegate: Rectangle { color: "orange" parent: column height: 25 width: 100 Text { anchors.fill: parent text: "Item" } Component.onCompleted: { console.log("Test " + index + " parent " + parent) } } } } }