How to reload page after input data to remote server and sqlite from another...
Thanks for your reply, but when I use $state.go($state.current, {}, {reload: true}) on my app with sidemenu The navbar of my app turns white and back button no longer function but sidemenu can still...
View ArticleRemove back button
How can i remove the back button from my pages?I tried that config: { backButtonText: '' } but it only hides, if the user still clicks in the place where the back button is, it is activated.Or is...
View ArticleIon-radio with checked="true" does not work?
You should give a try with the Ionic 2 version. I think it is still in development with some issue. Even the example in their doc does not work properly. Mine does not behave the same way though.
View ArticleProblem to call setRoot in my Alert callback
Yes, there will be two alerts come up. It turns to blank screen after I click "Yes" this first time. The alert comes up again. It will be fine when I click "Yes" again this time. By the way, I tried...
View ArticleLoader/spinner?
Of course not, here, have a gist and comment any ideas, always room for improvement: gist.github.com https://gist.github.com/Luchillo/fc3d01f29580d5067541 index.md Busy indicator backup solution: Hi...
View ArticleLoader/spinner?
@brandyshea maybe this can show how useful and needed feature it is, so much that we had to implement it on our own.
View ArticleThe issue to open an item from a list
Thanks. It works. I learned that the ion-item should never been used for clickable item. Thanks.
View ArticleRemove back button
You tried this? <ion-navbar hideBackButton *navbar>< /ion-navbar> Or please refer to: forum.ionicframework.com Button in navigation bar I can't find any document for this and the ionic 1...
View ArticleProblem to call setRoot in my Alert callback
If blank screen shows up between or in the first alert is because you don't give enough time between closing the first and showing the second alert, that messes up the overlay and then you get the...
View ArticleProblem to call setRoot in my Alert callback
But why there are two alerts in the first place? I only create and present it once.
View ArticleThe issue to open an item from a list
That's funny, i do use the ion-item component with a click event attached and it works very good, why shouldn't ion-item be used or what's the advantage over the button approach?
View ArticleProblem to call setRoot in my Alert callback
No idea, can't infer enough from the code you just showed, if you make a gist with the files involved maybe i could help.
View ArticleThe issue to open an item from a list
Yeah, I feel strange too. I used ion-item for clickable items in my ionic 1 project without any problem.
View ArticleThe issue to open an item from a list
I actually have them all over my app and it works like a charm.
View ArticleThe issue to open an item from a list
You mean ionic 2 project? And you test them on device? It's fine for me in browser.
View ArticleThe issue to open an item from a list
I actually i'm almost ready to deploy in Google Play, tested in emulator and device.
View ArticleThe issue to open an item from a list
Ok, that's weird. By the way, I tested only in my iPhone with ionic 2.0.0 beta 17.
View ArticleProblem to call setRoot in my Alert callback
You're right. It maybe due to multi-thread issue. The following code works: handler: () => { setTimeout(function () { this_ref.nav.setRoot(LoginPage); },500); } But I know it's not an elegant...
View Article