Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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...

share|improve this question

1 Answer

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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