Community Questions & Answers
ListView not showing entries after back button
Firstly let me explain what I have already done. I have an app that on entry it requests data from a server. With that data It creates a window with a picker (winA) - the window is a dummy tabgroup to allow the navbar to appear. The user selects an entry...
How to use a TabGroup within a NavigationGroup?
Hi, How do you use TabGroups within NavigationGroups? The problem is that the title of the navBar has the no title and there are 2 like this by default: (sample code on the bottom) , but since it was answered 2 years ago and I am getting incorrect behavior, I thought I would repost. I...
How to open a SplitWindow within an existent NavigationGroup?
I would like to open a SplitWindow from a window that already has its NavigationGroup, so the SplitWindow would have the back button in its master view labeled with the previous window title. But all examples I find the SplitWindow creates its own...
can I have transitions on windows but avoid NavigationGroup because I need custom design Header
I could use NavigationGroup for creating those transitions between windows but I need to use my own images for the header and for the back arrow. Can I do this with a NavigationGroup, or how can I use just window.open() and have the transitions(I would...
How to lock screen orientation only in one window of NavigationGroup
Hi, Is there any way to lock the screen only in one window when we use NavigationGroup? For example First.js and Second.js In Second.js 's Window, I set like this `win.orientationModes = [Ti.UI.PORTRAIT];` But still in that window all orientationModes...
iOS navigation bar without Titanium.UI.iPhone.NavigationGroup?
Hello, Is there anyway I can add a navigation bar (that looks like this: http://i.imgur.com/Fh0Wg.jpg) to a view without having to create a group of windows using Titanium.UI.iPhone.NavigationGroup? Thanks!
TabGroup inside the Navigation Group
Is it possible to open a TabGroup inside a NavigationGroup? If yes, how?
How to go to Root view in NavigationGroup?
Hi all, Is there any method to pop all Windows from NavigationGroup? For example:- I am using NavigationGroup and move inside windows. Check with this image  not works... the flip window open over the navigation group... and the...
Iphone NavigationGroup ignores the backgroundColor setting
I'm trying to change the background color of the NavigationGroup (the one that apears on top with the back button..) However it ignores the setting.. I tried with the gradient as well.. still nothing... I'm using Titanium SDK 1.8.2 tried different ways -...
NavigationGroup root window doesn't fire FOCUS/BLUR events
Using the docs code as base and adding the events: http://pastie.org/1937570 Now, in my iPad app I have windows working like that in the splitView. Problem is: the 'focus' and 'blur' events don't get fired when the root window of the navigation group is...
Tab Group issues
Hi, I have a tab group for my app. I also have a navigation group which is loaded when the app is started if the user is not logged in. Also its loaded when the user press the "logout" button in the app. So if the user is not logged in when the...
Navigation Group in Tab
Ok so I would like to have a nav group inside a tab. I have managed to do it but the results are not what I want. Basically I get a title bar that the tab creates and then the nav group creates another title bar for itself. Is there any way to do this...
NavigationGroup
Hi everyone... i'm getting this error: message = "'undefined' is not a function (evaluating 'Ti.UI.iPhone.createNavigationGroup({window:modalWin})')"; im using the same code that Kitchen_Sink, but when i put the code in my app.. crashed with...
Going back to MasterView from a DetailView using a button instead of the top bar.
I have a navigationgroup using which I have a Master and a DetailView. When opening the detailView using the MasterView, the navigationGroup automatically provides a button on the top bar to go back to the MasterView. What I would like to acheive is to...
iOS5 NavigationGroup 'back' bug
This is really a response to Raul Riera's question 'Bug in iOS5 : Tab group windows' asked on 14th October 2011 which appears to be 'locked and cannot accept new answers.' Anyway just to say I have also hit this one where on a device NavigationGroup...
multiple tableviews drilldown
Hi, I am working on an ipad application. In it i need 1 window. This windows has 3 tableviews. each of those tableviews can be drilled down separately. So if i choose a item in tableview1, i have the righttoleft animation on tableview1 thats shows...
iOS5 NavigationGroup and TabGroup bugs (animations, back, etc.)
This is related to [this question](http://developer.appcelerator.com/question/127071/ios5-navigationgroup-back-bug) but contains some other bugs and problems. To me, this (back navigation broken, button as TitleControl of window missing) happens with a...
Does iPhone.NavigationGroup.close() actually null the object?
I'll preface this by saying I'm relatively new to Titanium. I'm using a iPhone.NavigationGroup to organize my windows in order to get those built-in "back" buttons that close the child window and take you back to the parent window. I'm...
How to add Navigation group to window in a Tab Group
I have an iPad application with a tabgroup at the root, which works. I am trying to add a Navigation Group to the window in tab 2, which would have its own navigation stack of windows. I was trying to follow the example in the API documents, but the app...
iPad: Persist a webview in a NavigationGroup window
Hi All My app navigation is using a NavigationGroup controller (the iOS navigation controller I guess). One of the windows contains a WebView where the user can log in. When the user presses "back" it seems my view is shut down, thus...
Custom rightNavButton on NavigationGroup disappears
Hi I'm having a problem when using a custom rightNavButton (with a background image) on a NavigationGroup. When I add the button to the window it appears correctly, but after opening a new window then clicking the back button the custom rightNavButton...
Tableview background: transparent issue with NavigationGroup?
Hi dudes, is there currently a problem with NavigationGroup and the transparent Parameter of tableView? Sometimes after switching between the views, my TableView "forgot" the "transparent" setting. Is this a known issue? ~~~ //...
Receive Error when using a Navigation Controller in a Tab Group
I receive the following error when the application first loads when trying to setup a navigation group inside my tab group. [ERROR] Script Error = Result of expression 'Titanium.UI.iPhone.createNavigationGroup' [undefined] is not a function. at win.js...
NavigationGroup gets no title when opening TabGroup
When I open a TabGoup with a NavigationGroup, the NavigationGroup does not get a title. I have made an example: http://pastie.org/1408238 I have even tried to use a Windows as container for the tabGroup, but it does not look like a tabGroup wants to be a...
Navigationgroup back button transition issue
Titanium SDK : mobile 1.8.2 ; Platform : iOS (iPhone) ; Device : simulator ; OS : OSX Lion Hi all I'm new to Titanium, and facing a weird issue with the navigation group back button. Here is a short vid showing my problem...
How can I iterate through all windows with a Ti.UI.iPhone.NavigationGroup?
I want to make a navigation logic that pops up some windows and pushes some others using the children property as an array returns an error ..and it does actually referrs to views..not windows.. here is some code that doesn't work that is supposed to pop...
SplitWindow with NavigationGroup Display View Master button problem
I have a splitWindow app for iPad. The detail window contains a navigationGroup which cycles through 3 windows. Works fine in Landscape. In portrait mode, I have a button top left called "Master View List" that when clicked shows the master view...
NavigationGroup inside Popover (iPad)
Hi, I'm trying to use a NavigationGroup inside a popover iPad control. I get it working adding the navigationGroup to the popover ~~~ popover.add(navGroup); ~~~ But, in this way, I have two title bars: one for the popover and one for the window inside...
Multiple windows in the NavigationGroup
Windows in the NavigationGroup behaves as a stack, as in when the back button is hit the window is closed (pop from the navigation stack). Is it possible to maintain multiple window session parallely inside the NavigationGroup (navigate using the...
Create iPad app using SplitWindow and loading windows in detailView
Hi All, I am new to Ti. Please any one guide me to create nice app for iPad using SplitWindow. I am planning to create same like this app http://itunes.apple.com/sg/app/titanium-mobile-api-reference/id438484138?mt=8 I check with few example, there are...