Create New Window Without Tab In Current Window

You must Login before you can answer or comment on any questions.

I want to build application : Like This,,can you help me??

2 Answers

Check out the NavigationGroup control... http://developer.appcelerator.com/blog/2010/06/how-to-create-an-iphone-navigation-group.html

Hi,

Try this

//1.create a tabgroup with a set of tabs e.g. lets call it tabGp
//2. Add menus to the first tab window e.g. menu1
 
//menu1 click listener
menu1.addEventlistener('click',function(e){
 
    //3.define the content/child window lets call it childWnd
 
    Ti.UI.currentTab.open(childWnd);
});
 
//open the tabgroup
you will get the back button by default on IOS while on android you can use the back key on the device to navigate back to the tabs UI

Your Answer

Think you can help? Login to answer this question!