I have the following qml file:
import QtQuick 1.0 Component{ Column{ id: interHeader; Item{ id:interItem height: 300 width: 200 Text{ id:title text:"Text" anchors.centerIn: parent font.bold: true elide:"ElideRight" color: "Black" } } Item { width: parent.width height: 100
The problem is that I need to assign some KeyNavigation to interItem. I want to access interItem from another qml file. How can I do that?
source share