-
Notifications
You must be signed in to change notification settings - Fork 58
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
How to show a table with both head and tail? #218
Comments
Hello @Norlandz , that's a very interesting question, and I would have use of that myself. It is currently not possible to do so. However seeing https://datatables.net/forums/discussion/60989/fixed-first-row, I have experimented a bit with Would that work for you? (with maybe a few more fixed rows at the top/bottom, and no row duplication) For reference the code for that experiment is available at https://live.datatables.net/qujunigu/856/edit |
If this is the current workaround, I may try with it. But if you think this is not worth the time to implement it, its fine for me too. -- -- -- (--ie: in the code, for the -- |
Oh it's not even a workaround - just a preview of how a future feature could look like. Sure it would make sense to be able to fix multiple rows both in the header and footer. Would two options like |
(To me, it feels a workaround.)
Sounds good for me. (Thanks for the reply!) |
ie:
Is there a config such that:
instead of
df.head(5).append(df.tail(5))
,just
df
, and both head and tail are shown (with...
in middle)?The text was updated successfully, but these errors were encountered: