No, with TabView is different. text2 is unavailable.
Outside TabView I can access only at the tab but not at the objects inside the tab.
I can access to tSurname but I obtain an error when I try to access to text2.
Is there a way?
No, with TabView is different. text2 is unavailable.
Outside TabView I can access only at the tab but not at the objects inside the tab.
I can access to tSurname but I obtain an error when I try to access to text2.
Is there a way?
@mrdebug Use getTab to get the Tab at a particular index. Now since Tab inherits Loader you can use its item property to access the item it contains. Eg:
var tab = tabv.getTab(0) //get tab at index 0; tabv = id of TabView
console.log(tab.item.text) //get the item and access its properties