You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Currently scroll loading tables only work with a fixed table.
Because we use non-fixed tables to distribute the columns evenly across the whole available screen width and want to use ScrollLoading for these, it would be awesome if Scroll Loading tables could work with non-fixed tables.
It would be great if this could be fixed/implemented for v1 and v2 as we didn't have the time yet to upgrade to v2.
To Reproduce
See attached code snippet
Expected behavior
Scroll Loading tables should work without having to be fixed to profit from both features - distributing the columns evenly across the table width to look better and use all available space, and simultaneously enabling scroll loading for the table.
The correct answer for this is to implement the datatable using something that is not html table, this is not possible using normal tables because of the nature of the html table, well maybe it can be done but it is not easy and wont perform very well and might cause in so many data table plugins.
This will require the rewrite of the datatable with divs maybe, or introduce it as a new component to avoid braking the current one, well if we had the sponsoring for such a task we can start it for sure.
The only work around I can think of right now is to use percentage sizes, didnt test that so I am not sure how it goes specially that this might also affect other plugins and depends on what plugins you are using.
Describe the bug
Currently scroll loading tables only work with a fixed table.
Because we use non-fixed tables to distribute the columns evenly across the whole available screen width and want to use ScrollLoading for these, it would be awesome if Scroll Loading tables could work with non-fixed tables.
It would be great if this could be fixed/implemented for v1 and v2 as we didn't have the time yet to upgrade to v2.
To Reproduce
See attached code snippet
Expected behavior
Scroll Loading tables should work without having to be fixed to profit from both features - distributing the columns evenly across the table width to look better and use all available space, and simultaneously enabling scroll loading for the table.
Screenshots
Fixed table:
Unfixed table:
Code to reproduce
The text was updated successfully, but these errors were encountered: