How can I close the TabGroup within one of its tab ?

I want to close the tabGroup on a button click (Log out button) and want to display a window without the tab group. I know how to display a window but could find how to close tab group ?

I think, to hide tab group is not proper way. Also on another button (Login button) I am creating the tab group so...

Any suggestions ?

Thanks...

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Just do this:

TabGroup.close();

Put your tabgroup name instead of TabGroup.

EDIT:

If you want to access your tab grop through out the app do this in your app.js file:

Ti.App.customTabGroup = customTabGroup;

and close the tabgroup like this:

Ti.App.customTabGroup.close();
link|improve this answer
"Can't find variable: TabGroup"; I got this – Maulik Feb 24 at 6:39
What is the name of your tabgroup? – Muhammad Zeeshan Feb 24 at 6:40
see, I have created tab group in app.js named customTabGroup – Maulik Feb 24 at 6:44
Oh, can you access customTabGroup in that button event, if you can then do customTabGroup.close(); – Muhammad Zeeshan Feb 24 at 6:47
2  
Country doesn't matterss.... :D – Maulik Feb 24 at 7:02
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.