We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is my code:
this.$target.tablesorter({ widgets: ['zebra', 'cssStickyHeaders'], widgetOptions: { cssStickyHeaders_offset: 50, cssStickyHeaders_addCaption: true, cssStickyHeaders_attachTo: null, cssStickyHeaders_filteredToTop: true, cssStickyHeaders_zIndex: 10 } });
You can see it running here: https://8wayrun.com/wiki/mitsurugi-frame-data-sc5/
As you can see, the sorting, and the zebra are working fine. However, the sticky headers don't activate. Don't know why.
The text was updated successfully, but these errors were encountered:
Hi @Jaxel!
It doesn't look like the widget-cssStickyHeaders.js file is being loaded on that page.
widget-cssStickyHeaders.js
I can tell it isn't loaded by looking in $.tablesorter.widgets array in the dev tools console. It only contains the built-in zebra widget.
$.tablesorter.widgets
Sorry, something went wrong.
Ah... yep.
cssStickyHeaders_zIndex also appears to be ignored and unused
Docs: Remove invalid widget option. See #1581
55fdf5b
The cssStickyHeaders_zIndex: 10 line was included in the documentation by accident. I have removed it and added an options table to that page.
cssStickyHeaders_zIndex: 10
No branches or pull requests
This is my code:
You can see it running here:
https://8wayrun.com/wiki/mitsurugi-frame-data-sc5/
As you can see, the sorting, and the zebra are working fine. However, the sticky headers don't activate. Don't know why.
The text was updated successfully, but these errors were encountered: