Skip to content
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 boundary="window" fails within responsive table header #3563

Closed
michaelfelixmurphy opened this issue Jun 24, 2019 · 11 comments · Fixed by #3568
Closed

Dropdown boundary="window" fails within responsive table header #3563

michaelfelixmurphy opened this issue Jun 24, 2019 · 11 comments · Fixed by #3568

Comments

@michaelfelixmurphy
Copy link

michaelfelixmurphy commented Jun 24, 2019

I have a responsive table and a dropdown in one of its headers. If the table content is shorter than the dropdown, the dropdown is trapped inside the scrollbox of the table. I figured I could fix this easily with boundary="window" as I have done on other responsive tables to fix tooltips. But this does not seem to do anything. I tried to reproduce the issue using native Bootstrap and the issue does not reproduce (i.e. adding data-boundary="window" does indeed work using only Bootstrap).

Link to reproduce: https://codesandbox.io/s/goofy-joliot-v9b8f

Since this has boundary="window", I would expect the dropdown to breakout of the .table-responsive div.

Please let me know if you need any further information.

@tmorehouse
Copy link
Member

Are you using the latest version of BootstrapVue?

It is working in this fiddle: https://jsfiddle.net/0r4acg7o/

Column "A" is using the default boundary (scrollParent), whule column "C" is using boundary="window"

@michaelfelixmurphy michaelfelixmurphy changed the title Dropdown boundary="window" fails within responsive table Dropdown boundary="window" fails within responsive table header Jun 25, 2019
@tmorehouse
Copy link
Member

Ah, I placed the dropdowns in the <tbody>... but if placed into the <thead> I see the issue.

@michaelfelixmurphy
Copy link
Author

Hi tmorehouse. Thanks for the quick response and the fiddle. I am indeed using the latest version.

The issue appears to be specific to the table header. I forked your fiddle to show this: https://jsfiddle.net/04xb891t/3/

Any ideas?

@tmorehouse
Copy link
Member

We have style position: relative set for the header/footer rows... and I am trying to recall why we have that set in the custom SCSS.

Turning off that style, the dropdown works with boundary="window"

@tmorehouse
Copy link
Member

tmorehouse commented Jun 25, 2019

postition: relative is needed on the header/footer cells for positioning the table header sort icons. But it appears to conflict with drop down for some reason

@michaelfelixmurphy
Copy link
Author

Dropdown appears to require position: static when boundary is not set to the default.

Would adding thClass: 'position-static' to the relevant field object be the right workaround? Do you know if this will be addressed in a future release?

Thanks!

@tmorehouse
Copy link
Member

Adding class position-static to the header cell works (except if you also have that column sortable - the sort icons will not show correctly)

@tmorehouse
Copy link
Member

I'm not sure if we have a simple fix for this at the moment, due to the requirements of the sorting icons needing position relative (for absolute positioning)

@tmorehouse
Copy link
Member

The other option for us would be to make the sort control icons inline-blocks rather than absolute positioning

@tmorehouse
Copy link
Member

PR #3568 should now accommodate for this by removing the position: relative from teh header/footer cell CSS.

You can try it out at https://deploy-preview-3568--bootstrap-vue.netlify.com/ (and try in the playground)

tmorehouse added a commit that referenced this issue Jun 25, 2019
…3568)

Switch from absolute positioning to `display: inline-block` + `float: right` + `::before` (instead of `::after`) for sort icons.

Removes need for `position: relative;` on table header/footer cells which can interfere with dropdowns and tooltips/popovers in headers of responsive tables (note `boundary` option needs to be set on dropdown, tooltip, popover, to allow to break out of responsive table container)
@tmorehouse
Copy link
Member

Version 2.0.0-rc.25 has been released.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants