Re: [Interest] QML undefined Reference if object is in a TabView

2015-12-13 Thread Shantanu Tushar
Hi, >From what I remember, TabView uses a Loader to load each Tab lazily. So if you attempt to reference an Item inside the Loader (i.e. the Tab) from outside the Loader, its not going to work. If you find this is the case, it might help to expose whatever you want to access as a property in the

[Interest] QML undefined Reference if object is in a TabView

2015-12-04 Thread Mike Jackson
I am working on a QML application and after the last issues were solved I am attempting to refactor the code so that common sets of QML codes are in their own .qml files. The issue that I am having is that now that I am using TabView{} and associated “Tab” widgets, when I go to reference a Tex