Hello to all you guys! My problem is this. My app is composed of a tabgroup with two tabs. The first tab has the bow window, and the second also, and so far no problem. The problem lies in the second tab. In the window of the second tab theres a small button. When I press this small button I see a new window or view with the data, the problem is that this window or view must be in fullscreen, that should also cover the tab of the page (for instance, where else is the title of the window). how can i do? Better to use a window or view? Now I'm trying with a fullscreen window enabling property: true, but it does not work. Thank you.
2 Answers
Accepted Answer
If you post the code, you may be able to get more details but for now all I can say is that to open a tabbed window, I have to it like this
Titanium.UI.currentTab.open(tabbedWindow, { animated : true });to open a window without the tab just create the window and open it.
Open it modal: true
Your Answer
Think you can help? Login to answer this question!