├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── css ├── normalize.css ├── stickysort.css └── styles.css ├── fonts ├── BLOKKRegular.eot ├── BLOKKRegular.svg ├── BLOKKRegular.ttf └── BLOKKRegular.woff ├── index.html ├── jquery.stickysort.js ├── jquery.stickysort.min.js └── license.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | 46 | [Dd]ebug/ 47 | [Rr]elease/ 48 | x64/ 49 | build/ 50 | [Bb]in/ 51 | [Oo]bj/ 52 | 53 | # MSTest test Results 54 | [Tt]est[Rr]esult*/ 55 | [Bb]uild[Ll]og.* 56 | 57 | *_i.c 58 | *_p.c 59 | *.ilk 60 | *.meta 61 | *.obj 62 | *.pch 63 | *.pdb 64 | *.pgc 65 | *.pgd 66 | *.rsp 67 | *.sbr 68 | *.tlb 69 | *.tli 70 | *.tlh 71 | *.tmp 72 | *.tmp_proj 73 | *.log 74 | *.vspscc 75 | *.vssscc 76 | .builds 77 | *.pidb 78 | *.log 79 | *.scc 80 | 81 | # Visual C++ cache files 82 | ipch/ 83 | *.aps 84 | *.ncb 85 | *.opensdf 86 | *.sdf 87 | *.cachefile 88 | 89 | # Visual Studio profiler 90 | *.psess 91 | *.vsp 92 | *.vspx 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | 101 | # TeamCity is a build add-in 102 | _TeamCity* 103 | 104 | # DotCover is a Code Coverage Tool 105 | *.dotCover 106 | 107 | # NCrunch 108 | *.ncrunch* 109 | .*crunch*.local.xml 110 | 111 | # Installshield output folder 112 | [Ee]xpress/ 113 | 114 | # DocProject is a documentation generator add-in 115 | DocProject/buildhelp/ 116 | DocProject/Help/*.HxT 117 | DocProject/Help/*.HxC 118 | DocProject/Help/*.hhc 119 | DocProject/Help/*.hhk 120 | DocProject/Help/*.hhp 121 | DocProject/Help/Html2 122 | DocProject/Help/html 123 | 124 | # Click-Once directory 125 | publish/ 126 | 127 | # Publish Web Output 128 | *.Publish.xml 129 | *.pubxml 130 | 131 | # NuGet Packages Directory 132 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 133 | #packages/ 134 | 135 | # Windows Azure Build Output 136 | csx 137 | *.build.csdef 138 | 139 | # Windows Store app package directory 140 | AppPackages/ 141 | 142 | # Others 143 | sql/ 144 | *.Cache 145 | ClientBin/ 146 | [Ss]tyle[Cc]op.* 147 | ~$* 148 | *~ 149 | *.dbmdl 150 | *.[Pp]ublish.xml 151 | *.pfx 152 | *.publishsettings 153 | 154 | # RIA/Silverlight projects 155 | Generated_Code/ 156 | 157 | # Backup & report files from converting an old project file to a newer 158 | # Visual Studio version. Backup files are not needed, because we have git ;-) 159 | _UpgradeReport_Files/ 160 | Backup*/ 161 | UpgradeLog*.XML 162 | UpgradeLog*.htm 163 | 164 | # SQL Server files 165 | App_Data/*.mdf 166 | App_Data/*.ldf 167 | 168 | ############# 169 | ## Windows detritus 170 | ############# 171 | 172 | # Windows image file caches 173 | Thumbs.db 174 | ehthumbs.db 175 | 176 | # Folder config file 177 | Desktop.ini 178 | 179 | # Recycle Bin used on file shares 180 | $RECYCLE.BIN/ 181 | 182 | # Mac crap 183 | .DS_Store 184 | 185 | 186 | ############# 187 | ## Python 188 | ############# 189 | 190 | *.py[co] 191 | 192 | # Packages 193 | *.egg 194 | *.egg-info 195 | dist/ 196 | build/ 197 | eggs/ 198 | parts/ 199 | var/ 200 | sdist/ 201 | develop-eggs/ 202 | .installed.cfg 203 | 204 | # Installer logs 205 | pip-log.txt 206 | 207 | # Unit test / coverage reports 208 | .coverage 209 | .tox 210 | 211 | #Translations 212 | *.mo 213 | 214 | #Mr Developer 215 | .mr.developer.cfg 216 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # StickySort 2 | A jQuery plugin for tables with sticky headers, columns and sortable feature. 3 | 4 | Copyright © 2014 [Terry Mun](http://terrymun.com) 5 | 6 | This program is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | This program is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with this program. If not, see [http://www.gnu.org/licenses/](http://www.gnu.org/licenses/) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # StickySort 2 | A jQuery plugin for tables with sticky headers, columns and sortable feature. [View demo here](http://terrymun.github.io/StickySort/). 3 | 4 | ## Introduction 5 | StickySort is a jQuery plugin that creates sticky headers and columns on your tables, complete with the possibility to add a sortable functionality. This plugin was inspired by a recent task at work where I have to create sticky headers to allow users to orient themselves in large tables that, at many instances, fill the full height of the viewport. 6 | 7 | You can [read my article on Codrops](http://tympanus.net/codrops/2014/01/09/sticky-table-headers-columns/) about the basic mechanisms behind the plugin. A lot of calculations are involved, so you have been warned! 8 | 9 | Moreover, you can [visit the demo of this plugin](http://terrymun.github.io/StickySort/) on the project page hosted with GitHub. 10 | 11 | ## Installation 12 | To install StickySort, you will have to include the following resources in your page. The JS files should be loaded in the order stipulated below. For the CSS file, you can either incorporate it with your site's stylesheet, or load it externally through the `` element in ``. 13 | 14 | | Type | File Name | Description | 15 | |------|------------------------|------------------------------------------------------------------------------------------------------------------------| 16 | | JS | [jQuery 1.x](http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js) | **External Dependency**: The jQuery 1.x library is needed for Fluidbox functionality. | 17 | | JS | [Ben Alman's throttle/debounce plugin](http://cdnjs.cloudflare.com/ajax/libs/jquery-throttle-debounce/1.1/jquery.ba-throttle-debounce.min.js) | **External Dependency**: This plugin allows us to throttle or debounce certain events, allowing for better browser performance. | 18 | | JS | `jquery.stickysort.js` | Confers the main functionality of Fluidbox. Alternatively, you can load the minified version, `jquery.fluidbox.min.js` | 19 | | CSS | `css/stickysort.css` | Offers styles that are crucial for the correct display of sticky elements. The appearance will break if this is not included. | 20 | 21 | ## Usage 22 | ### Basic 23 | It is rather straightforward to use StickySort — simply chain the `.stickySort()` method to a selector of your choice. Your table should include the following elements: 24 | 25 | - A `` element containing **only** one single `` populated with **only** `` elements (table headers) 26 | - A `` element containing `` wrapped within one or more `` 27 | 28 | Therefore, a sample table with the most basic usage (only sticky header will be dynamically added) should look as follow: 29 | 30 | ```html 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 |
52 | ``` 53 | 54 | If you would want a sticky column, too, you will need to use `` for the first cells in all `` elements in your ``, i.e.: 55 | 56 | ```html 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 |
74 | ``` 75 | 76 | In your JS file, you can simply chain the `.sticktSort()` method to your selector on DOM ready, for example: 77 | 78 | ```js 79 | $(function () { 80 | $('#content table').stickySort(); 81 | }); 82 | ``` 83 | 84 | ### Configuration 85 | Fluidbox can be configured according to your needs. The following options are available: 86 | 87 | | Option | Type | Default value | Description | 88 | |------------------|-----------|---------------|---------------------------------------| 89 | | `threshold` | Object | | Stores objects pertaining to calculating of which how far from the end of the table should the sticky header disappear. | 90 | | `threshold.rows` | Numeric | `3` | Number of rows, from the bottom of the table where the sticky header will disappear. | 91 | | `threshold.viewport` | Numeric | `0.25` | Fraction of the current viewport height, from the bottom of the table where the sticky header will disappear. | 92 | | `threshold.px` | Numeric | `false` | Pixel value of height, from the bottom of the table where the sticky header will disappear. | 93 | | `threshold.allowanceEval` | String | `min` | How the above three parameters should be compared, which the plugin will choose either the smallest (`min`) or the largest (`min`) of the three values to set as the allowance/threshold. | 94 | | `sortable` | Boolean | `false` | Designates the table as sortable or not. | 95 | | `scrollThrottle` | Numeric | `15` | Throttles the scroll event to relief load on JavaScript engine. 15ms is good enough to be smooth to the eye, yet not too taxing on the browser. | 96 | | `resizeDebounce` | Numeric | `250` | Debounces the window resize event to relief load on JavaScript engine. | 97 | 98 | This is how the default options look like: 99 | 100 | ```js 101 | { 102 | threshold: { 103 | rows: 3, 104 | viewport: 0.25, 105 | px: false, 106 | allowanceEval: 'min' 107 | }, 108 | sortable: false, 109 | scrollThrottle: 15, 110 | resizeDebounce: 250 111 | } 112 | ``` 113 | 114 | ---- 115 | 116 | ## Styling 117 | For your convenience, here is the generated markup when the plugin detects a table in your document and does its magic: 118 | 119 | ```html 120 |
121 | 122 | 123 |
124 |
125 | 126 | 127 |
128 |
129 | 130 |
131 |
132 | 133 | 134 | ``` 135 | 136 | stickySort will automatically copy the classes you have set on the original table element onto its parent, so as to allow for convenient styling. However, if you are intending the style to only apply to the table element and not its parent (they will share the same classes), you should use the element selector, i.e. 137 | 138 | ```css 139 | table.sample-table { 140 | /* table specific style that does to apply to wrapping parent */ 141 | } 142 | ``` 143 | 144 | ---- 145 | 146 | ## Sortable 147 | The sortable function does not rely on the default `.sort()` function in JavaScript due to its various limitations — more importantly, it makes it extremely hard to perform human sorting. Therefore, I have adopted [a function written by Brian Huisman back in 2008](http://my.opera.com/GreyWyvern/blog/show.dml/1671288), but still works beautifully today. 148 | 149 | ### Enabling sorting 150 | Sorting is disabled by default. In order to enable the sorting function, you can either implement it universally, i.e.: 151 | 152 | ```js 153 | $('table').stickySort({ sortable: true }); 154 | ``` 155 | 156 | …or if you want to only target specific tables, the plugin will recognize tables that has the class 'sortable' or has the HTML5 data- attribute of `data-sortable`, and mark them as available for sorting. 157 | 158 | ### Sort states 159 | There are three possible sort states with this plugin, and they can be cycled through by successive clicking. Note that sorting from one column resets the sorting state in the previous column (which is the intuitive pattern, anyway): 160 | 161 | 1. Default state — rows are not sorted, and appear as-is from the original markup 162 | 2. Sort ascending — rows are sorted by ascending order 163 | 3. Sort descending — rows are sorted by descending order 164 | 165 | # Licensing: GNU General Public License 166 | This plugin is licensed unter the GNU General Public License. -------------------------------------------------------------------------------- /css/normalize.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v2.1.3 | MIT License | git.io/normalize */ 2 | article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0} -------------------------------------------------------------------------------- /css/stickysort.css: -------------------------------------------------------------------------------- 1 | .sticky-wrap { 2 | overflow-x: auto; 3 | overflow-y: hidden; 4 | position: relative; 5 | margin: 3em 0; 6 | width: 100%; 7 | } 8 | .sticky-wrap div[class^='sticky'] { 9 | overflow: hidden; 10 | } 11 | .sticky-wrap tfoot { 12 | display: none; 13 | } 14 | .sticky-wrap div table { 15 | margin: 0; 16 | position: relative; 17 | width: auto; /* Prevent table from stretching to full size */ 18 | } 19 | .sticky-wrap .sticky-thead, 20 | .sticky-wrap .sticky-col, 21 | .sticky-wrap .sticky-intersect { 22 | opacity: 0; 23 | position: absolute; 24 | top: 0; 25 | left: 0; 26 | z-index: 50; 27 | transition: opacity .25s ease-in-out; 28 | } 29 | .sticky-wrap .sticky-thead { 30 | box-shadow: 0 0.25em 0.1em -0.1em rgba(0,0,0,.125); 31 | z-index: 100; 32 | width: 100%; /* Force stretch */ 33 | } 34 | .sticky-wrap .sticky-intersect { 35 | opacity: 1; 36 | z-index: 150; 37 | } 38 | .sticky-wrap .sticky-intersect th { 39 | background-color: #666; 40 | color: #eee; 41 | } 42 | .sticky-wrap td, 43 | .sticky-wrap th { 44 | box-sizing: border-box; 45 | } 46 | .sticky-wrap thead th { 47 | -webkit-user-select: none; 48 | -moz-user-select: none; 49 | -ms-user-select: none; 50 | } 51 | .sticky-enabled { 52 | margin: 0; 53 | width: 100%; 54 | } 55 | 56 | /* Sort handlers */ 57 | .sticky-wrap.sortable thead { 58 | cursor: pointer; 59 | } 60 | .sticky-wrap.sortable thead th { 61 | padding-right: 3em; 62 | position: relative; 63 | } 64 | .sort-handle { 65 | display: block; 66 | position: absolute; 67 | top: 50%; 68 | right: -2em; 69 | width: 1em; 70 | height: 1em; 71 | margin-top: -.5em; 72 | } 73 | .sort-handle:before, 74 | .sort-handle:after { 75 | content: ''; 76 | position: absolute; 77 | left: 0; 78 | width: 0; 79 | height: 0; 80 | transition: .125s ease-in-out; 81 | } 82 | .sort-handle:before { 83 | border-top: .4em solid transparent; 84 | border-right: .5em solid transparent; 85 | border-bottom: .4em solid rgba(0,0,0,.25); 86 | border-left: .5em solid transparent; 87 | } 88 | .sort-handle:after { 89 | border-top: .4em solid rgba(0,0,0,.25); 90 | border-right: .5em solid transparent; 91 | border-bottom: .4em solid transparent; 92 | border-left: .5em solid transparent; 93 | } 94 | .sticky-intersect .sort-handle:before { border-bottom-color: rgba(255,255,255,.5); } 95 | .sticky-intersect .sort-handle:after { border-top-color: rgba(255,255,255,.5); } 96 | 97 | .sort-default .sort-handle:before { 98 | opacity: 1; 99 | top: -0.4em; 100 | } 101 | .sort-default .sort-handle:after { 102 | opacity: 1; 103 | bottom: -0.4em; 104 | } 105 | .sort-asc .sort-handle:before { 106 | top: -0.1em; 107 | } 108 | .sort-asc .sort-handle:after { 109 | opacity: 0; 110 | } 111 | .sort-desc .sort-handle:before { 112 | opacity: 0; 113 | } 114 | .sort-desc .sort-handle:after { 115 | bottom: -0.1em; 116 | } 117 | 118 | /* To hide sticky column and intersect when screen gets too narrow */ 119 | @media only screen and (max-width: 768px) { 120 | html { 121 | font-size: 14px; 122 | } 123 | header, 124 | #final .sticky-wrap { 125 | max-height: 25rem; 126 | } 127 | .sticky-col, .sticky-intersect { 128 | display: none; 129 | } 130 | } -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 | /* Component styles */ 2 | @font-face { 3 | font-family: 'Blokk'; 4 | src: url('../fonts/BLOKKRegular.eot'); 5 | src: url('../fonts/BLOKKRegular.eot?#iefix') format('embedded-opentype'), 6 | url('../fonts/BLOKKRegular.woff') format('woff'), 7 | url('../fonts/BLOKKRegular.svg#BLOKKRegular') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | 12 | html { 13 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 14 | font-size: 16px; 15 | } 16 | body { 17 | color: #333; 18 | height: 100%; 19 | line-height: 1.5em; 20 | } 21 | header { 22 | background-color: #333; 23 | background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 100%); 24 | box-sizing: border-box; 25 | color: #eee; 26 | display: flex; 27 | align-items: center; 28 | justify-content: center; 29 | margin-bottom: 3rem; 30 | overflow: hidden; 31 | padding: 3rem 16.66667%; 32 | position: relative; 33 | width: 100%; 34 | height: 100vh; 35 | transition: all .25s ease-in-out; 36 | } 37 | header:before { 38 | background-image: 39 | linear-gradient(115deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,.05) 50%, rgba(255,255,255,0) 50%), 40 | linear-gradient(to left, #1B1464 0%, #00746B 100%); 41 | content: ""; 42 | opacity: 0; 43 | position: absolute; 44 | top: 0; 45 | left: 0; 46 | right: 0; 47 | bottom: 0; 48 | transition: all .25s ease-in-out; 49 | } 50 | header:hover:before { 51 | opacity: 1; 52 | } 53 | header > div { 54 | position: relative; 55 | } 56 | header h1 { 57 | font-weight: bold; 58 | font-size: 4em; 59 | line-height: 1em; 60 | margin: 0 0 .5rem 0; 61 | text-align: center; 62 | } 63 | header .byline { 64 | color: rgba(255,255,255,.75); 65 | display: block; 66 | font-family: Palatino, Georgia, Cambria, "Times New Roman", Times, serif; 67 | font-size: 1.2em; 68 | font-style: italic; 69 | text-align: center; 70 | } 71 | header #skip { 72 | border: none; 73 | display: block; 74 | position: absolute; 75 | bottom: 1.5rem; 76 | left: 0; 77 | right: 0; 78 | height: 1.5rem; 79 | } 80 | header #skip svg { 81 | display: block; 82 | margin: 0 auto; 83 | width: 3rem; 84 | height: 1.5rem; 85 | } 86 | header #skip svg path { 87 | fill: rgba(255,255,255,.75); 88 | } 89 | footer { 90 | background-color: #333; 91 | box-sizing: border-box; 92 | color: #eee; 93 | padding: .5rem 16.66667%; 94 | width: 100%; 95 | } 96 | h1,h2,h3,h4,h5,h6 { 97 | font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; 98 | text-transform: uppercase; 99 | } 100 | h3 { 101 | margin: 3rem 0 0 0; 102 | } 103 | h3:first-of-type { 104 | margin-top: 0; 105 | } 106 | hr { 107 | border: none; 108 | border-top: .125rem solid #ddd; 109 | margin-bottom: 1.375rem; 110 | } 111 | a { 112 | border-bottom: 2px solid #333; 113 | color: #333; 114 | text-decoration: none; 115 | transition: all .125s ease-in-out; 116 | } 117 | a:hover { 118 | border-bottom-color: #F7941D; 119 | color: #F7941D; 120 | } 121 | ul { 122 | margin-top: -.75rem; 123 | } 124 | pre { 125 | display: block; 126 | width: 100%; 127 | } 128 | code { 129 | background-color: rgba(0,0,0,.125); 130 | border: 1px solid rgba(0,0,0,.125); 131 | border-radius: 4px; 132 | display: inline-block; 133 | margin: 0 .125rem; 134 | padding: 0 .25rem; 135 | } 136 | pre code{ 137 | display: block; 138 | padding: .5rem 1rem; 139 | } 140 | p { 141 | margin-bottom: 1.5rem; 142 | } 143 | p:last-child { 144 | margin: 0; 145 | } 146 | .filler { 147 | color: #999; 148 | font-family: "Blokk", Arial, sans-serif; 149 | } 150 | .message { 151 | background-color: #eee; 152 | border: none; 153 | border-radius: .5rem; 154 | color: #333; 155 | display: block; 156 | padding: 1.5rem; 157 | text-align: center; 158 | } 159 | .message:hover { 160 | background-color: #F7941D; 161 | color: #eee; 162 | } 163 | .message svg { 164 | background-color: #666; 165 | border-radius: 50%; 166 | margin-bottom: 1rem; 167 | width: 5rem; 168 | height: 5rem; 169 | transition: all .125s ease-in-out; 170 | } 171 | .message:hover svg { 172 | background-color: #eee; 173 | } 174 | .message svg path { 175 | fill: #eee; 176 | transition: fill .125s ease-in-out; 177 | } 178 | .message:hover svg path { 179 | fill: #F7941D; 180 | } 181 | 182 | 183 | /* Main */ 184 | main { 185 | margin: 0 16.66667%; 186 | } 187 | main section { 188 | border-bottom 1px solid #ccc; 189 | margin-bottom: 3rem; 190 | } 191 | 192 | /* Tables */ 193 | table { 194 | border-collapse: collapse; 195 | margin-bottom: 3rem; 196 | width: 100%; 197 | background: #fff; 198 | } 199 | td, th { 200 | padding: 0.75rem 1.5rem; 201 | text-align: left; 202 | } 203 | th { 204 | background-color: #777; 205 | background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 100%); 206 | font-family: "Montserrat", Arial, sans-serif; 207 | font-weight: bold; 208 | color: #fff; 209 | text-align: center; 210 | white-space: nowrap; 211 | } 212 | thead a { 213 | border: none; 214 | } 215 | tbody th { 216 | background-color: #777; 217 | background-image: none; 218 | } 219 | tbody tr:nth-child(2n-1) { 220 | background-color: #eee; 221 | transition: all .125s ease-in-out; 222 | } 223 | tbody tr:nth-child(2n-1) th { 224 | background-image: linear-gradient(to left, rgba(0,0,0,.125) 0%, rgba(0,0,0,.25) 100%); 225 | } 226 | tbody tr:hover { 227 | background-color: #ccc; 228 | } 229 | tbody img { 230 | border-radius: 50%; 231 | display: block; 232 | width: 4rem; 233 | height: 4rem; 234 | } 235 | .user-name, 236 | .user-firstName, 237 | .user-lastName, 238 | .user-location { 239 | text-transform: capitalize; 240 | } 241 | 242 | /* Section toggle */ 243 | .toggle { 244 | background-color: #666; 245 | border: none; 246 | color: #ddd; 247 | font-size: 1rem; 248 | font-weight: normal; 249 | margin-left: 1rem; 250 | padding: .25rem .5rem; 251 | text-transform: none; 252 | } 253 | .toggle:hover { 254 | color: #fff; 255 | } 256 | 257 | /* Basic table */ 258 | #basic .toggle, 259 | #basic th { 260 | background-color: #9E0039; 261 | } 262 | #basic tbody tr:hover { 263 | background-color: rgba(245,152,157,.25); 264 | } 265 | 266 | /* Basic sort table */ 267 | #basic-sort .toggle, 268 | #basic-sort th { 269 | background-color: #A36209; 270 | } 271 | #basic-sort tbody tr:hover { 272 | background-color: rgba(253,198,137,.25); 273 | } 274 | 275 | /* Biaxial table */ 276 | #biaxial .toggle, 277 | #biaxial .bx1 th { 278 | background-color: #1A7B30; 279 | } 280 | #biaxial .bx1 tbody tr:hover { 281 | background-color: rgba(163,211,156,.5); 282 | } 283 | 284 | #biaxial .bx2 thead th, 285 | #biaxial .bx2 tbody th { 286 | background-color: #ccc; 287 | background-image: none; 288 | color: #333; 289 | } 290 | #biaxial .bx2 tbody tr:nth-child(2n-1) th { 291 | background-color: #b9b9b9; 292 | } 293 | #biaxial .bx2 img { 294 | margin: 0 auto .5rem; 295 | } 296 | #biaxial .user-location { 297 | white-space: nowrap; 298 | } 299 | 300 | /* Final */ 301 | #final .sticky-wrap { 302 | overflow-x: auto; 303 | overflow-y: auto; 304 | max-height: 75vh; 305 | } 306 | #final .toggle { 307 | background-color: #004B80; 308 | } 309 | 310 | /* Media queries, unrelated to functionality of StickySort */ 311 | @media only screen and (max-width: 768px) { 312 | html { 313 | font-size: 14px; 314 | } 315 | header, 316 | #final .sticky-wrap { 317 | max-height: 25rem; 318 | } 319 | } -------------------------------------------------------------------------------- /fonts/BLOKKRegular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrymun/StickySort/845e21f08c0bef971e30a98cbf6d375fa50cae68/fonts/BLOKKRegular.eot -------------------------------------------------------------------------------- /fonts/BLOKKRegular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Created by FontXChange 20110222 at Fri Feb 1 20:10:43 2013 6 | By Bjørn Kvamme 7 | Copyright tomma 2013 8 | 9 | 10 | 11 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 76 | 78 | 80 | 82 | 84 | 86 | 88 | 90 | 92 | 94 | 96 | 98 | 100 | 102 | 104 | 106 | 108 | 110 | 112 | 114 | 116 | 118 | 120 | 122 | 124 | 126 | 128 | 130 | 132 | 134 | 136 | 138 | 140 | 142 | 144 | 146 | 148 | 150 | 152 | 154 | 156 | 158 | 160 | 162 | 164 | 166 | 168 | 170 | 172 | 174 | 176 | 178 | 180 | 182 | 184 | 186 | 188 | 190 | 192 | 194 | 196 | 198 | 200 | 202 | 204 | 206 | 208 | 210 | 212 | 214 | 216 | 218 | 220 | 222 | 224 | 226 | 228 | 230 | 232 | 233 | 234 | -------------------------------------------------------------------------------- /fonts/BLOKKRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrymun/StickySort/845e21f08c0bef971e30a98cbf6d375fa50cae68/fonts/BLOKKRegular.ttf -------------------------------------------------------------------------------- /fonts/BLOKKRegular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrymun/StickySort/845e21f08c0bef971e30a98cbf6d375fa50cae68/fonts/BLOKKRegular.woff -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | StickySort, a jQuery plugin for tables with sticky headers, columns and sortable feature 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 21 | 22 | 23 |
24 |
25 |

StickySort

26 | 27 |
28 | 41 |
42 | 43 |
44 |
45 |

Introduction

46 |

StickySort is a jQuery plugin that creates sticky headers and columns on your tables, complete with the possibility to add a sortable functionality. This plugin was inspired by a recent task at work where I have to create sticky headers to allow users to orient themselves in large tables that, at many instances, fill the full height of the viewport. Made by Terry.

47 | 48 | 49 | 50 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 75 | 76 |

For installation and usage, please refer to the readme file on the GitHub project page.

77 |
78 |
79 |
80 |

Basic Usage

81 |

Here is a basic table, populated with data provided by Random User Generator (v0.2). Setting up is easy-peasy:

82 |
$('table').stickySort();
83 |
84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 |
AvatarNameEmailContactLocation
AvatarNameEmailContactLocation
samantha morgansamantha morgansamantha.morgan56@example.com(369)-227-3751grapevine, idaho
eli wilsoneli wilsoneli.wilson12@example.com(857)-619-4186bozeman, new york
brian brownbrian brownbrian.brown96@example.com(924)-543-6342allen, washington
kathy wilsonkathy wilsonkathy.wilson59@example.com(786)-203-4153ennis, connecticut
christine ramirezchristine ramirezchristine.ramirez72@example.com(778)-129-1925provo, delaware
charles leecharles leecharles.lee19@example.com(425)-976-3550akron, virginia
arthur bennettarthur bennettarthur.bennett10@example.com(996)-182-3744wilmington, michigan
aalivah simmmonsaalivah simmmonsaalivah.simmmons64@example.com(687)-147-6639duncanville, tennessee
brian russellbrian russellbrian.russell22@example.com(600)-224-4416everett, colorado
dylan russelldylan russelldylan.russell32@example.com(439)-363-4363billings, wisconsin
candice lewiscandice lewiscandice.lewis76@example.com(733)-701-4550utica, nebraska
kaylee coxkaylee coxkaylee.cox32@example.com(459)-899-9689rochmond, california
erin millererin millererin.miller82@example.com(570)-814-6244rochester, indiana
madison brooksmadison brooksmadison.brooks63@example.com(855)-789-4736richardson, delaware
jennifer evansjennifer evansjennifer.evans72@example.com(214)-201-9140akron, rhode island
rebecca hughesrebecca hughesrebecca.hughes42@example.com(736)-650-7095greensboro, north carolina
samuel taylorsamuel taylorsamuel.taylor13@example.com(241)-121-6322dumas, north dakota
joseph walkerjoseph walkerjoseph.walker51@example.com(736)-940-6308bueblo, utah
ethan andersonethan andersonethan.anderson65@example.com(820)-571-9435grapevine, iowa
angel barnesangel barnesangel.barnes96@example.com(773)-363-7896belen, vermont
125 | 126 | 127 |
128 |

Sortable basic table

129 |

Here is a basic table with sort function, populated with data provided by Random User Generator (v0.2). Setting up is easy-peasy:

130 |
$('table').stickySort({ sortable: true });
131 |

Also, if you are on a narrow monitor, see how the sticky header plays friendly with overflows along the y-axis:

132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 |
First NameLast NameEmailMD5 hashSHA1 hash
First NameLast NameEmailMD5 hashSHA1 hash
albertgarciaalbert.garcia37@example.com9a26de5ea2dbe7fc5b6844128f307c3868a90898cfc09508ed08aacf24482effe7f8f7c8
alexawallacealexa.wallace18@example.coma3c4b614a1f072e0f968c2712a36323fadfc8f0aec273eace2629141317c1eac53923f28
jackcoxjack.cox73@example.com28e246ff038060bc335c0bf4925e5d518ad9a53bdd3b96cbc28efde629383954666ece67
meghantaylormeghan.taylor36@example.com573ce5969e9884d49d4fab77b09a306a9621a244a447ec749598f8327560ff86095e2c26
amycollinsamy.collins45@example.comf61f2f8157d9d632cc0b2bbc43d883f2be842d987424dcb128bee9520682687bc2149284
nicolelewisnicole.lewis62@example.come50081b0de0be206cd443d20094d389411615c74a29cc915c0802ae001d43b4cd96ced62
richardgrahamrichard.graham65@example.com03764ebfde7010aa700c6e73f84ed00e9286fa940279aa33e8e47ca7dd175324f333e4fa
braydenhillbrayden.hill28@example.coma03490c03eaa102dadc25dca3cc6772b6a53d618b92dcc6f23461cd323f993b210876602
ameliawallaceamelia.wallace92@example.com7b6b45249743ad383e7f2e1fafd640fa4003345f140d1f3af49b180ecdc8406755e3b472
melissascottmelissa.scott68@example.com5be977ac2dc6c7c07f8825de5f3c992634da1369d029a253a7586a8b582100180bba6441
elijahhallelijah.hall29@example.com21d9c57c1d2ae58cf12ece8a3470666ba2916e062071972d7da46f818b685642b3cffcac
ariannamoorearianna.moore76@example.com900e201a6aa7b0b1ce8218782d6142b6c9d8f39e46aed665fa734cf1ca18b2f99cf6805f
nevaehgriffinnevaeh.griffin53@example.com2e036ecb177e0f732bcbc1b0984ffebd044507c8314178f51f47bf2fd6e666a4139b6eef
sarahsmithsarah.smith62@example.comde1b2a7baf7850243db71c4abd4e5a39148627088915c721ccebb4c611b859031037e6ad
edwardwilsonedward.wilson63@example.com6673166b500d058c743b79c746c592432e8ae6ca8708f518d69cd1475017303ca0ae0080
169 |
170 | 171 |
172 |

Biaxial Headers

173 |

We are allowed to have some fun, aren't we? Now we can try having biaxial tables. Remember that the markup for biaxial table has to be as follow, where each row in <tbody> has to have the first cell as <th> instead of <td>:

174 |
<table>
175 |     <thead>
176 |         <tr>
177 |             <th></th>
178 |             <!-- add more <th> as of when needed -->
179 |         </tr>
180 |     </thead>
181 |     <tbody>
182 |         <tr>
183 |             <th></th><!-- first cell must ne <th> -->
184 |             <td></td><!-- other cells are <td> -->
185 |             <!-- add more <td> as of when needed -->
186 |         </tr>
187 |         <!-- add more rows as of when needed -->
188 |     </tbody>
189 | </table>
190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 |
NameEmailWorkMobile
NameEmailWorkMobile
sophie floressophie.flores96@example.com(788)-499-9689(915)-162-6803
madison hillmadison.hill26@example.com(523)-950-9768(869)-333-9842
jack fosterjack.foster43@example.com(533)-613-4005(253)-508-1724
carl wardcarl.ward71@example.com(280)-130-9702(429)-838-3276
olivia bellolivia.bell98@example.com(589)-449-4963(685)-204-8461
allison griffinallison.griffin45@example.com(498)-153-4556(681)-786-9927
stephen smithstephen.smith44@example.com(687)-245-2715(209)-445-9081
hannah wallacehannah.wallace56@example.com(784)-731-8424(922)-401-6114
evelyn carterevelyn.carter72@example.com(871)-179-9521(794)-340-1989
austin cookaustin.cook20@example.com(799)-991-8194(440)-901-1665
dylan leedylan.lee99@example.com(376)-197-3547(125)-339-4193
mark hamiltonmark.hamilton57@example.com(547)-578-7096(777)-512-6769
katie garciakatie.garcia36@example.com(790)-247-1128(757)-225-5553
paul williamspaul.williams44@example.com(997)-843-8164(626)-160-7932
jerry baileyjerry.bailey78@example.com(647)-709-8682(993)-613-1640
225 |

Even better: what about an overflowing table with sticky header and column?

226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 |
NameEmailPhoneAddressMD5 hashSHA1 hash
NameEmailPhoneAddressMD5 hashSHA1 hash
kylie robertskylie robertskylie.roberts13@example.com(587)-829-80416129 ash dr
celina
new mexico 52670
69705c9af115287878ba5adcaf7d0408ad5eb62a8b9682a143e34180aba41a164eb9692b
angel wilsonangel wilsonangel.wilson75@example.com(631)-781-79247403 camden ave
moscow
georgia 71422
a5101e70e5a075abab1c08c7a6c39612ddb4a6bd8fed8f7bed2b44e7a69fde18974e5c42
taylor taylortaylor taylortaylor.taylor85@example.com(279)-572-70503962 n stelling rd
shelby
arizona 63970
cb205edee16b24366c871cf55e7813460391a1e58f324b3a0c79d32dd09436bd45bfc773
soham wrightsoham wrightsoham.wright99@example.com(524)-293-64045905 harrison ct
raleigh
idaho 13158
cebc5f0a8eb734bd46f5c8fa3d7a7e07c59f3a21357fd5c20aa56ec50cb3246939950c23
taylor wrighttaylor wrighttaylor.wright11@example.com(569)-816-13427246 w pecan st
grapevine
louisiana 80892
33229a6d43b349aa7adf8afa9b6e50d297eebf414085126c7acaf1bdb36d65527b0b5969
mary sandersmary sandersmary.sanders67@example.com(252)-181-47177163 mockingbird hill
hamsburg
north dakota 58352
a37b2a637d2541a600d707648460397e8964af7e7645a7c6c1e891f5e69d22e8adaafe70
david watsondavid watsondavid.watson80@example.com(748)-213-10395621 sunset st
dumas
south dakota 65723
c0961eb84d1e91451ecb8450870a295386fab557254e3d14ebd493ae1ec9b9ad9f0685d3
elizabeth johnsonelizabeth johnsonelizabeth.johnson11@example.com(473)-683-12552893 wheeler ridge dr
moscow
north carolina 36952
0bcdc9b55496ea12eb41b8a432a3975349f697a8b043e7d85c8446fbfced0643eb44981d
mason pricemason pricemason.price92@example.com(571)-374-14027201 railroad st
dumas
indiana 35322
4693fbb215b8ca15a6900f0cfa164cdc3df47082217942e736428d6666efb933e2d6a1f6
jason pricejason pricejason.price91@example.com(420)-192-27316906 plum st
yakima
minnesota 12486
1ea50771988c19844c52aa78325282bf2d088eb402f3d9db2a2ccef20c339e6f7bf6c1fd
260 |
261 | 262 |
263 |

The Final Example — Biaxial overflow and biaxial headers

264 |

This is the ultimate example — we force a very wide table to overflow along both axis.

265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 |
Case#1#2#3#4#5#6#7#8#9#10#11#12#13#14#15#16#17#18#19#20
Case#1#2#3#4#5#6#7#8#9#10#11#12#13#14#15#16#17#18#19#20
Patient #30765433847781718672391841944272636210078
Patient #24476188517548149264994431241595026928333
Patient #885378298455193789131715896961563690329715
Patient #473440635333884534254951651792643775776
Patient #80122328922029473886326866663178263783
Patient #6891703713496183267236137107132762266817
Patient #366258873477806945119210099762542848717570
Patient #7780825866706433776014299339601395164413
Patient #2978191213841927256104089826518871006896
Patient #6955634918815693305320999899875384218525
Patient #333631616840455191817461274060369428731
Patient #2023242083769607805910366688102656741266
Patient #21839371542196192659715489398427289458391
Patient #151005885703250775563492188923131783853260
Patient #892862877787547273166668444794154513821
Patient #4396276328657322632281773231641016949870
Patient #25101911490442295628796432011401069288990
Patient #96787955927826583879501781970373423336
Patient #592221989115392831590100854680100264829736
Patient #2390906496895285495073437690198351248151
339 |

Res dem agam more ima jure rea. An ab rantem ut et potius gaudet. Ei scientiis videretur ea objective nitebatur in me. Tantumque mo ac proponere eminenter. Cum hos putandum concedam hic supponit commoveo. Praestari an similibus credendas priusquam perspicue improviso re ac. Agi praesertim aliquoties negationem sap commendare repugnemus frequenter est. Imaginabar parentibus imaginaria expectanti ii et confirmari.

340 |

Alteram tanquam creatis viribus at si. Maximam vos hoc antehac imo ignotas eae aliarum fictile. Excludat is potestis me du si cognitio liberius. Sum quae rem meae male haec. Fallacem totamque at loquebar formemus suspicio ex me ne. Haereo mutata dum vix magnum tertia volunt nam suo audita.

341 |
342 | 343 | 344 | 345 |
346 |

Made by Terry Mun, 2014.

347 | 348 | 349 | 350 | 421 |
422 | 423 | 424 | -------------------------------------------------------------------------------- /jquery.stickysort.js: -------------------------------------------------------------------------------- 1 | (function($){ 2 | $.fn.stickySort = function(opts) { 3 | 4 | // Default settings 5 | var settings = $.extend(true, { 6 | threshold: { 7 | rows: 3, 8 | viewport: 0.25, 9 | px: false, 10 | allowanceEval: 'min' 11 | }, 12 | sortable: false, 13 | scrollThrottle: 15, 14 | resizeThrottle: 250 15 | }, opts); 16 | 17 | this.each(function() { 18 | if($(this).is('table') && $(this).find('thead').length > 0 && $(this).find('th').length > 0) { 19 | // Clone 20 | var $w = $(window), 21 | $t = $(this), 22 | $thead = $t.find('thead').clone(), 23 | $col = $t.find('thead, tbody').clone(); 24 | 25 | // Add class, copy children classes, remove margins, reset width and wrap table 26 | $t 27 | .wrap('
') 28 | .parent() 29 | .addClass($t.attr('class')) 30 | .end() 31 | .addClass('sticky-enabled'); 32 | 33 | if($t.hasClass('overflow-y')) $t.removeClass('overflow-y').parent().addClass('overflow-y'); 34 | 35 | // Create new sticky table head (basic) 36 | $t.after('
'); 37 | 38 | // If contains
, then we create sticky column and intersect (advanced) 39 | if($t.find('tbody th').length > 0) { 40 | $t.after('
'); 41 | } 42 | 43 | // Create shorthand for things 44 | var $stickyHead = $(this).siblings('.sticky-thead'), 45 | $stickyCol = $(this).siblings('.sticky-col'), 46 | $stickyInsct = $(this).siblings('.sticky-intersect'), 47 | $stickyWrap = $(this).parent('.sticky-wrap'); 48 | 49 | $stickyHead.find('table').append($thead); 50 | 51 | $stickyCol 52 | .find('table') 53 | .append($col) 54 | .find('thead th:gt(0)').remove() 55 | .end() 56 | .find('tbody td').remove(); 57 | 58 | $stickyInsct.find('table').html(''); 59 | 60 | // Set widths 61 | var setWidths = function () { 62 | $t 63 | .find('thead th').each(function (i) { 64 | $stickyHead.find('th').eq(i).width($(this).width()); 65 | }) 66 | .end() 67 | .find('tr').each(function (i) { 68 | $stickyCol.find('tr').eq(i).height($(this).height()); 69 | }); 70 | 71 | // Set width of sticky table head 72 | $stickyHead 73 | .width($stickyWrap.width()) 74 | .find('table') 75 | .width($t.width()); 76 | 77 | // Set width of sticky table col 78 | $stickyCol.find('th').add($stickyInsct.find('th')).width($t.find('thead th').first().width()); 79 | 80 | // Set position sticky intersect 81 | $stickyCol.find('table').css({ 82 | left: $stickyWrap.offset().left 83 | }); 84 | }, 85 | repositionSticky = function () { 86 | // Return value of calculated allowance 87 | var allowance = calcAllowance(); 88 | 89 | // 1. Deal with positioning of sticky header 90 | // Check if wrapper parent is overflowing along the y-axis 91 | if($t.height() > $stickyWrap.height()) { 92 | // If it is overflowing (advanced layout) 93 | // Position sticky header based on wrapper scrollTop() 94 | if($stickyWrap.scrollTop() > 0) { 95 | // When top of wrapping parent is out of view 96 | $stickyHead.add($stickyInsct).css({ 97 | opacity: 1, 98 | 'pointer-events': 'auto', 99 | position: 'fixed', 100 | top: $stickyWrap.offset().top - $w.scrollTop(), 101 | left: $stickyWrap.offset().left 102 | }); 103 | $stickyHead.find('table').css({ 104 | left: -$stickyWrap.scrollLeft() 105 | }); 106 | } else { 107 | // When top of wrapping parent is in view 108 | $stickyHead.add($stickyInsct).css({ 109 | opacity: 0, 110 | 'pointer-events': 'none' 111 | }); 112 | $stickyInsct.css({ 113 | position: 'absolute', 114 | top: 0, 115 | left: 0 116 | }); 117 | } 118 | } else { 119 | // If it is not overflowing (basic layout) 120 | // Position sticky header based on viewport scrollTop 121 | if($w.scrollTop() > $t.offset().top && $w.scrollTop() < $t.offset().top + $t.outerHeight() - allowance) { 122 | // When top of viewport is in the table itself 123 | $stickyHead.add($stickyInsct).css({ 124 | opacity: 1, 125 | 'pointer-events': 'auto', 126 | position: 'fixed', 127 | left: $stickyWrap.offset().left 128 | }); 129 | $stickyHead.find('table').css({ 130 | left: -$stickyWrap.scrollLeft() 131 | }); 132 | } else { 133 | // When top of viewport is above or below table 134 | $stickyHead.add($stickyInsct).css({ 135 | opacity: 0, 136 | 'pointer-events': 'none', 137 | position: 'absolute', 138 | left: 0 139 | }); 140 | } 141 | } 142 | 143 | // 2. Now deal with positioning of sticky column 144 | if($stickyWrap.scrollLeft() > 0) { 145 | // When left of wrapping parent is out of view 146 | $stickyCol.css({ 147 | position: 'fixed', 148 | left: $stickyWrap.offset().left, 149 | top: $stickyWrap.offset().top - $w.scrollTop(), 150 | height: $stickyWrap.height() 151 | }) 152 | .find('table') 153 | .css({ 154 | top: -$stickyWrap.scrollTop(), 155 | left: 0 156 | }) 157 | .end() 158 | .add($stickyInsct).css({ 159 | opacity: 1, 160 | 'pointer-events': 'auto' 161 | }); 162 | } else { 163 | // When left of wrapping parent is in view 164 | $stickyCol 165 | .css({ 166 | opacity: 0, 167 | 'pointer-events': 'none' 168 | }); 169 | } 170 | }, 171 | calcAllowance = function () { 172 | var rowHeight = 0, 173 | allowance = []; 174 | 175 | // Calculate allowance 176 | $t.find('tbody tr:lt('+settings.threshold.rows+')').each(function () { 177 | rowHeight += $(this).height(); 178 | }); 179 | allowance.push(rowHeight); 180 | 181 | // Get height based on viewport 182 | allowance.push($w.height()*settings.threshold.viewport) 183 | 184 | // If pixel threshold exists, add it 185 | if(settings.threshold.px) { 186 | allowance.push(settings.threshold.px); 187 | } 188 | 189 | // Get minimum or maximum? 190 | if(settings.threshold.allowanceEval == 'min') { 191 | return Math.min.apply(null, allowance); 192 | } else { 193 | return Math.max.apply(null, allowance); 194 | } 195 | }; 196 | 197 | setWidths(); 198 | 199 | $t.parent('.sticky-wrap').scroll($.throttle(settings.scrollThrottle, repositionSticky)); 200 | 201 | $w 202 | .load(setWidths) 203 | .resize($.debounce(settings.resizeThrottle, function () { 204 | setWidths(); 205 | repositionSticky(); 206 | })) 207 | .scroll($.throttle(settings.scrollThrottle, repositionSticky)); 208 | 209 | // Extended feature: Sortable table 210 | // Do sorting only when original table is slated for sorting: 211 | // 1. Check if HTML5 data- attribute, data-sortable, exists 212 | // 2. Check if table has the class 'sortable' 213 | // 3. Check if settings.sortable is enabled 214 | if(settings.sortable || ($t.data('sortable') != undefined || $t.hasClass('sortable'))) { 215 | 216 | // Store original order of rows first, so we can return to its natural/resting state 217 | $t.find('tbody tr').each(function (i) { 218 | $(this).attr('data-sortOrder', i); 219 | }); 220 | 221 | $stickyWrap 222 | .addClass('sortable') 223 | .find('thead th') 224 | .addClass('sort-default') 225 | .data('sortState', 1) 226 | .wrapInner('
') 227 | .find('div') 228 | .css({ position: 'relative' }) 229 | .append('') 230 | .find('.sort-handle') 231 | .click(function(e){ e.preventDefault(); }); 232 | 233 | // Bind click function to all
's
'+$t.find('thead th:first-child').html()+'
elements in the original table AND all dynamically generated sticky tables 234 | $stickyWrap.on('click', '.sticky-enabled thead th, .sticky-thead thead th, .sticky-col thead th, .sticky-intersect thead th', function () { 235 | 236 | // Declare some variables 237 | var $th = $(this), 238 | colIndex = $th.index(), 239 | $thSib = $stickyWrap.find('thead th').eq(colIndex), 240 | $rows = $.makeArray($t.find('tbody tr')); 241 | 242 | // Decide action - We have 3 states that we want to cater to: 243 | // 1. Original state (as how the data has been entered) 244 | // 2. Sorted state, ascending 245 | // 3. Sorted state, descending 246 | if($th.data('sortState')%3 == 0) { 247 | 248 | // Sort rows back to original order 249 | $rows.sort(function (a,b) { 250 | return parseInt($(a).attr('data-sortOrder')) - parseInt($(b).attr('data-sortOrder')); 251 | }); 252 | 253 | $th.add($thSib).removeClass().addClass('sort-default'); 254 | 255 | } else { 256 | // Sort rows 257 | // Algorithm adopted from http://my.opera.com/GreyWyvern/blog/show.dml/1671288 258 | $rows.sort(function (a, b) { 259 | 260 | var aa = chunkify($(a).children().eq(colIndex).text()), 261 | bb = chunkify($(b).children().eq(colIndex).text()); 262 | 263 | function chunkify(t) { 264 | var tz = [], x = 0, y = -1, n = 0, i, j; 265 | 266 | while (i = (j = t.charAt(x++)).charCodeAt(0)) { 267 | var m = (i == 46 || (i >=48 && i <= 57)); 268 | if (m !== n) { 269 | tz[++y] = ""; 270 | n = m; 271 | } 272 | tz[y] += j; 273 | } 274 | return tz; 275 | } 276 | 277 | for (x = 0; aa[x] && bb[x]; x++) { 278 | if (aa[x] !== bb[x]) { 279 | var c = Number(aa[x]), d = Number(bb[x]); 280 | if (c == aa[x] && d == bb[x]) { 281 | return c - d; 282 | } else return (aa[x] > bb[x]) ? 1 : -1; 283 | } 284 | } 285 | 286 | return aa.length - bb.length; 287 | }); 288 | 289 | // Reverse order on second click 290 | if($th.data('sortState')%3 == 2) { 291 | $rows = $rows.reverse(); 292 | $th.add($thSib).removeClass().addClass('sort-desc'); 293 | } else { 294 | $th.add($thSib).removeClass().addClass('sort-asc'); 295 | } 296 | } 297 | 298 | // Increase state by 1 299 | var state = $th.data('sortState')+1; 300 | 301 | // Sync state across all elements 302 | $th.add($thSib).data('sortState', state%3); 303 | 304 | // Reset status of other 305 | $stickyWrap.find('table').each(function(i) { 306 | $(this) 307 | .find('thead th').not(':eq('+colIndex+')') 308 | .data('sortState', 1) 309 | .removeClass().addClass('sort-default'); 310 | }); 311 | 312 | // Add rows 313 | $t.find('tbody').html($rows); 314 | 315 | // Sync $stickyCol 316 | $t.find('tbody tr').each(function(i) { 317 | $stickyCol.find('tbody tr').eq(i).find('th').html($(this).find('th').first().html()); 318 | }); 319 | 320 | }); 321 | } 322 | } 323 | }); 324 | 325 | // Return to allow chaining 326 | return this; 327 | }; 328 | })(jQuery); -------------------------------------------------------------------------------- /jquery.stickysort.min.js: -------------------------------------------------------------------------------- 1 | (function(a){a.fn.stickySort=function(c){var b=a.extend(true,{threshold:{rows:3,viewport:0.25,px:false,allowanceEval:"min"},sortable:false,scrollThrottle:15,resizeThrottle:250},c);this.each(function(){if(a(this).is("table")&&a(this).find("thead").length>0&&a(this).find("th").length>0){var f=a(window),i=a(this),j=i.find("thead").clone(),m=i.find("thead, tbody").clone();i.wrap('
').parent().addClass(i.attr("class")).end().addClass("sticky-enabled");if(i.hasClass("overflow-y")){i.removeClass("overflow-y").parent().addClass("overflow-y")}i.after('
');if(i.find("tbody th").length>0){i.after('
')}var g=a(this).siblings(".sticky-thead"),h=a(this).siblings(".sticky-col"),n=a(this).siblings(".sticky-intersect"),k=a(this).parent(".sticky-wrap");g.find("table").append(j);h.find("table").append(m).find("thead th:gt(0)").remove().end().find("tbody td").remove();n.html("");var e=function(){i.find("thead th").each(function(o){g.find("th").eq(o).width(a(this).width())}).end().find("tr").each(function(o){h.find("tr").eq(o).height(a(this).height())});g.width(k.width()).find("table").width(i.width());h.find("th").add(n.find("th")).width(i.find("thead th").width());h.find("table").css({left:k.offset().left})},d=function(){var o=l();if(i.height()>k.height()){if(k.scrollTop()>0){g.add(n).css({opacity:1,"pointer-events":"auto",position:"fixed",top:k.offset().top-f.scrollTop(),left:k.offset().left}).find("table").css({left:-k.scrollLeft()})}else{g.add(n).css({opacity:0,"pointer-events":"none"})}}else{if(f.scrollTop()>i.offset().top&&f.scrollTop()0){h.css({position:"fixed",left:k.offset().left,top:k.offset().top-f.scrollTop(),height:k.height()}).find("table").css({top:-k.scrollTop(),left:0}).end().add(n).css({opacity:1,"pointer-events":"auto"})}else{h.css({opacity:0,"pointer-events":"none"})}},l=function(){var p=0,o=[];i.find("tbody tr:lt("+b.threshold.rows+")").each(function(){p+=a(this).height()});o.push(p);o.push(f.height()*b.threshold.viewport);if(b.threshold.px){o.push(b.threshold.px)}if(b.threshold.allowanceEval=="min"){return Math.min.apply(null,o)}else{return Math.max.apply(null,o)}};e();i.parent(".sticky-wrap").scroll(a.throttle(b.scrollThrottle,d));f.load(e).resize(a.debounce(b.resizeThrottle,function(){e();d()})).scroll(a.throttle(b.scrollThrottle,d));if(b.sortable||(i.data("sortable")!=undefined||i.hasClass("sortable"))){i.find("tbody tr").each(function(o){a(this).attr("data-sortOrder",o)});k.addClass("sortable").find("thead th").addClass("sort-default").data("sortState",1).append('').find(".sort-handle").click(function(o){o.preventDefault()});k.on("click",".sticky-enabled thead th, .sticky-thead thead th, .sticky-col thead th, .sticky-intersect thead th",function(){var q=a(this),p=q.index(),r=k.find("thead th").eq(p),o=a.makeArray(i.find("tbody tr"));if(q.data("sortState")%3==0){o.sort(function(u,t){return parseInt(a(u).attr("data-sortOrder"))-parseInt(a(t).attr("data-sortOrder"))});q.add(r).removeClass().addClass("sort-default")}else{o.sort(function(u,t){var v=A(a(u).children().eq(p).text()),y=A(a(t).children().eq(p).text());function A(F){var I=[],C=0,H=-1,G=0,E,D;while(E=(D=F.charAt(C++)).charCodeAt(0)){var B=(E==46||(E>=48&&E<=57));if(B!==G){I[++H]="";G=B}I[H]+=D}return I}for(x=0;v[x]&&y[x];x++){if(v[x]!==y[x]){var z=Number(v[x]),w=Number(y[x]);if(z==v[x]&&w==y[x]){return z-w}else{return(v[x]>y[x])?1:-1}}}return v.length-y.length});if(q.data("sortState")%3==2){o=o.reverse();q.add(r).removeClass().addClass("sort-desc")}else{q.add(r).removeClass().addClass("sort-asc")}}var s=q.data("sortState")+1;q.add(r).data("sortState",s%3);k.find("table").each(function(t){a(this).find("thead th").not(":eq("+p+")").data("sortState",1).removeClass().addClass("sort-default")});i.find("tbody").html(o);i.find("tbody tr").each(function(t){h.find("tbody tr").eq(t).find("th").html(a(this).find("th").first().html())})})}}});return this}})(jQuery); -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . --------------------------------------------------------------------------------
"+i.find("thead th:first-child").html()+"