Ionic 2 popover: Doesn't allow content to scroll
See original GitHub issueShort description of the problem:
A page is not scroll able if it was navigated to from a click event in a popover
What behavior are you expecting?
Expected behaviour is for the page to be scroll able regardless of where it is navigated from as long as the contents is more than the view point.
Steps to reproduce: i have a plunker for this http://plnkr.co/edit/v5oBFP?p=preview
Other information: I’m guessing this happens because the popover from the previous page isn’t closed before navigating thereby freezing the page ‘scrollability’.
Trying to manually close it before navigating doesn’t work either
manually closing the popover after navigation with a setTimeout
function. solves the problem.
But shouldn’t this be done automatically?
Which Ionic Version? 1.x or 2.x Ionic 2.x
Plunker that shows an example of your issue
http://plnkr.co/edit/v5oBFP?p=preview
Cordova CLI: 5.2.0 Gulp version: CLI version 3.9.0 Gulp local: Local version 3.9.1 Ionic Framework Version: 2.0.0-beta.9 Ionic CLI Version: 2.0.0-beta.30 Ionic App Lib Version: 2.0.0-beta.16 OS: Node Version: v4.3.2
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:7 (3 by maintainers)
I solved the issue by changing the way I dismiss the popover. Now i call
this.viewCtrl.dismiss()
insideionViewDidLeave()
and everything works fine.@jgw96 sorry for the delay. I created a repo that you can use to reproduce the issue: Popover nav example