Wallogit.com
2017 © Pedro Peláez
table fixed header
, (*1)
Float the table header without special css. This plugin assumes nothing about your table markup and "just works" without losing your events or styles. Supports floating the header while scrolling within the window or while scrolling within a container with overflow. Plays nice with AngularJS and datatables and well written plugins., (*2)
:heart_eyes_cat:My cat loves it:heart_eyes_cat:, (*3)
Check out the demo / docs page for copious examples:, (*4)
bower install floatThead
If you use css and html best practices, this plugin will work. If you are stuck in 1999, you better read this., (*5)
All issues should be reported through github. If you don't have an account you can make one.
Providing the following will greatly increase the chances of your issue being resolved quickly:
- Include the browser and operating system where you are having the problem. If its IE, a screenshot is also nice since I don't have quick access to that abomination.
- Provide a jsfiddle that reproduces your issue in its simplest form possible. If its hard to read your code, you did it wrong.
- A description of the issue and steps to reproduce, (*6)
I will do my best to help you in a timely manner., (*7)
Latest Release, (*8)
Inside of that zip the following javascript files are of interest to you:, (*9)
/dist/jquery.floatThead.js = development version/dist/jquery.floatThead.min.js = production versionif your project includes underscore and you want to save a few bytes you can use the slim version:, (*10)
/dist/jquery.floatThead-slim.js/dist/jquery.floatThead-slim.min.jscdnjs: http://cdnjs.com/libraries/floatthead/
jsdelivr: http://www.jsdelivr.com/#!jquery.floatthead, (*11)
Install using Bower:, (*12)
bower install floatThead
npm install floatthead
, (*13)
https://github.com/webjars/floatThead, (*14)
DEMOS and Documentation, (*15)
I haven't written an official directive, but others have written wrappers:
https://github.com/brandon-barker/angular-floatThead, (*16)
FloatThead will not work properly in IE9 unless you have the following meta tag in the head of the page:
html
<meta http-equiv="X-UA-Compatible" content="IE=11; IE=10; IE=9; IE=8; IE=7; IE=EDGE" />, (*17)
With very big tables, you may also run into this exciting bug: http://stackoverflow.com/questions/5805956/internet-explorer-9-not-rendering-table-cells-properly
Watch for it., (*18)
position. value mappings (old -> new) are: [true -> 'absolute', false -> 'fixed', null -> 'auto']top and 'scrollingBottom' to bottom
floatThead-floatContainer class from the $floatContainer because floatThead-container class is already there and it is configurable via floatContainerClass option.autoReflow optiongetRowGroups, method which was busted when the header was floatedautoReflow option should work better if your browser supports MutationObserverHuge thanks to CoryDuncan, ithielnor, jurko-gospodnetic and mhwlng for your PRs, (*19)
enableAria option cellTag option, use headerCellSelector instead (see docs)destroy method that get the table back into a more pristine state<colgroup> elementscellpadding and cellspacing
caption tag supportYour site? email me: my last name at gmail, (*20)
There are plenty of other fixed header / floating header / scrolling table header plugins that attempt to do the same thing this plugin does. None of them support both window and overflow scrolling and many of them depend on special css or require that you set the table column widths. Some of them are good and some of them suck. Go ahead and check them out too., (*21)
I have compiled a list here with comments on each one:, (*22)
| Plugin | Window Scrolling | Overflow-X Scrolling | Overflow-Y Scrolling | No Special CSS | Keeps Bound Events | Freeze Columns |
|---|---|---|---|---|---|---|
| FloatThead | yes | yes | yes | yes | yes | no |
| Fixed-Table-Header | no | yes | no | yes | no | no |
| jquery.scrollTableBody | no | yes | yes | no | ?? | no |
| Fixed table rows cols | no | yes | yes | no | ?? | yes |
| Table Fixed Header | yes | no | no | yes | no | no |
| Sticky Table Header | yes | no | no | yes | yes | no |
| Grid | no | yes | yes | yes | yes | no |
Fixed-Table-Header This is the original. It has been around for ages and it will be the first plugin you find when you start looking. It also has a ton of open unresolved issues. It does not support window scrolling, it does not seem to support y-scrolling withing the container. It loses the events you attached to the thead. Lots of open issues. Stay away., (*23)
Fixed table rows cols Does not support window scrolling. Requires you to specify the column widths for the table. This means that the table will not be able to optimally lay itself out. It does support freezing columns in place. If you need that, this might be the plugin for you., (*24)
jquery.scrollTableBody Does not support window scrolling. A newcomer to the scene, not a mature project. Has some major issues with cell padding. Stay away until issues are resolved., (*25)
Grid This lib is very different from the rest because its main usecase is to give you a sortable grid. You do not run this plugin on an existing table - you need to provide a json or xml data source. This is a great lightweight replacement for datatables. This may be the plugin for you if you are not converting an existing table., (*26)
Table Fixed Header This is a window scrolling plugin, does not support overflow scrolling. Does not work properly when the window is resized and the table width changes. Floated header sticks around if you scroll past table. Author welcomes pull requests but does not fix issues. Stay away, (*27)
Sticky Table Header This is a window scrolling plugin. Does not support overflow scrolling. It is probably the best window scrolling plugin (besides this one). The author seems to fix issues as they arise., (*28)
MIT, (*29)