-
Notifications
You must be signed in to change notification settings - Fork 48
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
Useless scrollbar on ipad #60
Comments
The min-height property of dxScrollable content is set to 101%. That is why you see a scrollbar in the iOS simulator. It's necessary to prevent whole page bounce behavior on iPad and iPhone. |
@ovchinnikov Why doesn't it happen when "inner toolbar" layout is used then? |
A simpler way to prevent the whole page bounce would be to set html {
overflow: hidden;
} EDIT: is this already fixed in DevExpress/DevExtreme#5979 ? |
Your solution doesn't work for me. Please check this example on a real iOS device: https://qly5o168pq.codesandbox.io/ |
@ovchinnikov You are right. Unfortunately |
To reproduce:
You'll see that there is useless scrollbar in "home" page.
EDIT: it seems to be caused by the navigation menu in "outer toolbar" layout.
The text was updated successfully, but these errors were encountered: