-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamically controlled tab #727
Comments
Hey @phuongnd08, Use ng-if instead of ng-show: http://codepen.io/ajoslin/pen/hugIn (try toggling the switch on there). ng-if works because it completely adds/removes the tab from the DOM depending on the condition instead of just hiding/showing it. This will make sure it properly does everything it needs to do with adding/removing it. |
ng-if cause cancel animation error, as I have stated in the forum:
|
That error was actually fixed in angular 1.2.14: angular/angular.js@c914cd9. But unfortunately 1.2.14 has a regression that won't let us upgrade! angular/angular.js#6542 For now, I think the error is 'harmless', and we will upgrade as soon as angular 1.2.15 is pushed out. |
Awesome. Thanks. Waiting for the new fix :) |
ajoslin, thanks for the hint. You guys are doing an awesome work ! |
If you have ng-if on one tab, it moves the tab to the end of the rest of the tabs. A quick fix it to put ng-if="true" on the rest of the tabs. |
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out. |
We need a way to show/hide tab dynamically, for example: if a user not logged in, only show 2 tabs. If he/she logged in, show 3 tabs.
Please see to this for a brief discussion: http://forum.ionicframework.com/t/show-hide-ionic-tab-based-on-angular-variable-cause-error-in-background/1563/7
The text was updated successfully, but these errors were encountered: