To find a child item from parent, we can use findChild() in Qt.. What are its parallels in QML ?
Printable View
To find a child item from parent, we can use findChild() in Qt.. What are its parallels in QML ?
You can use Item::childAt ( real x, real y ) or write few JS lines to find your object inside the object's children list [1]
[1] [url]http://doc.qt.nokia.com/4.7-snapshot/qml-item.html#children-prop[/url]