Titanium Community Questions & Answer Archive

We felt that 6+ years of knowledge should not die so this is the Titanium Community Questions & Answer Archive

Tabless application?

Hi,

I am trying to develop a one window application (there will be no tab bar, but you will be able to go to other "places" via modals and stuff.

is this possible? all the examples I see they use tabGroup.open in order to "show" the first window in a tabbed application

— asked April 12th 2010 by Raul Riera
  • iphone
  • osx
0 Comments

1 Answer

  • Accepted Answer

    Hi,
    This is what I do:

    //Window constructor
    var win1 = Titanium.UI.createWindow({
    title:'TITLE HERE',
    backgroundColor:'#fff',
    navBarHidden: true,
    tabBarHidden: true

    });

    //Tab contructor (hidden)
    var tab1 = Titanium.UI.createTab({
    title:'',
    window:win1,
    navBarHidden: true,
    tabBarHidden: true

    });

    — answered April 12th 2010 by Stan Thompson
    permalink
    0 Comments
The ownership of individual contributions to this community generated content is retained by the authors of their contributions.
All trademarks remain the property of the respective owner.