-
Notifications
You must be signed in to change notification settings - Fork 0
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
dropdown fails inside scrollable table #57
Comments
Problem is actually even more tricky, since order to do this, popup must be opened in the context of approriate root (ex. document.body) otherwise it will be cut-off by scrollable viewport. Not sure, svelte even supports doing such now. |
kikonen
changed the title
dropdown fails inside table
dropdown fails inside scrolalble table
Jan 23, 2020
Sounds related: sveltejs/svelte#1133 |
kikonen
changed the title
dropdown fails inside scrolalble table
dropdown fails inside scrollable table
Jan 23, 2020
Plan
|
Actual plan
Trying out this approach |
done
todo
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When dropdown is opened inside table, it may be cut-off by scrollable table boundaries.
Likely only way to fix this would be to make popup "absolute" and float it over whole page. That however affects scrolling behaviour, since browser won't automatically keep popup in sync with widget location.
Thus should make this "absolute" mode optional, to be applied only in the case when it's actually needed.
The text was updated successfully, but these errors were encountered: