$ionicPopup shifted upward

Hello,

I am using $ionicPopup for some simple data input, I call the $ionicPopup like in http://codepen.io/ionic/pen/zkmhJ.

What i get is this:

in my config.xml I have added <preference name="KeyboardDisplayRequiresUserAction" value="false" />

Thanks a lot

okay since this only appears on ios, I fixed it via this css:

.platform-ios > .popup-showing {
	margin-top: 0px !important;
}```

But you have to consider, if you have popups/models with longer content and a complexer form.
Then it is nice that the keyboard does not lay over your input fields.

1 Like

Hello,

thanks for this hint!

Anyway I think this needs some additional work, or I am using the popup wrong? Mh…