as added tabnavigationGroup in TabGroup?
3 Answers
This is not a question, please provide a question that explains what problem you are having and include supporting information and code so we may help you.
Read using questions and answers to see what you should be providing to maximise your chances of getting an answer.
Supposing you want to put a NavigationGroup inside a tab:
- Create a Navigation Group and the window inside it (lets call that window win1)
- Create a window to contain the NavigationGroup (lets call that window navWin)
- add the NavigationGroup to the navWin:
navWin.add(navGroup) - set navWin as window for the tab:
tab.window = navWin - create the tabGroup and add all your tabs to it
Hi Javier
Yes the new windows can be opened by calling the open method of the current tab.
If you have scope to the current tab, then;
tab.open(newWindow, {animated:true});If not then;
Ti.UI.currentTab.open(newWindow,{animated:true});More info about tab.open() if you need it.
Your Answer
Think you can help? Login to answer this question!