q-table selection shows y-scrollbar
-
Hi,
I discovered a little visual bug when using selection with q-table.
When using selection=“single” on q-table (chrome) shows a unessecary y-scrollbar in the right scroll area (q-table-middle scroll) which i cannot remove by setting overflow-y hidden on the main q-table.
When i dont use the selection (selection=“none”) the scrollbar is not visible.This is also visible in the examples here https://quasar-framework.org/components/datatable.html (side view-> scroll to example with actions)
Any suggestions i can work around this?
-
@rund1me
set this on your q-tabletable-style="overflow-y:hidden"
. this happens because of this Dense Table, when you want to display more data using the same real estate on window. Gets activated by default on narrow windows as explained in the docs https://quasar-framework.org/components/datatable.html#QTable-Vue-Properties. -
Thanks that worked!