├── CHANGELOG.md ├── LICENSE ├── README.md ├── bootstrap-table-fixed-columns.css ├── bootstrap-table-fixed-columns.js └── bower.json /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.1 2 | 3 | * Fix multiple line display error. 4 | 5 | # 1.0.0 6 | 7 | * Init commit. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 文翼 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bootstrap-table-fixed-columns 2 | 3 | The project has been moved to: https://github.com/wenzhixin/bootstrap-table/tree/develop/src/extensions/fixed-columns. 4 | 5 | Docs: https://bootstrap-table.com/docs/extensions/fixed-columns/. 6 | 7 | Example: https://examples.bootstrap-table.com/#extensions/fixed-columns.html. 8 | -------------------------------------------------------------------------------- /bootstrap-table-fixed-columns.css: -------------------------------------------------------------------------------- 1 | .fixed-table-header-columns, 2 | .fixed-table-body-columns { 3 | position: absolute; 4 | background-color: #fff; 5 | display: none; 6 | box-sizing: border-box; 7 | overflow: hidden; 8 | } 9 | 10 | .fixed-table-header-columns .table, 11 | .fixed-table-body-columns .table { 12 | border-right: 1px solid #ddd; 13 | } 14 | 15 | .fixed-table-header-columns .table.table-no-bordered, 16 | .fixed-table-body-columns .table.table-no-bordered { 17 | border-right: 1px solid transparent; 18 | } 19 | 20 | .fixed-table-body-columns table { 21 | position: absolute; 22 | animation: none; 23 | } 24 | 25 | .bootstrap-table .table-hover > tbody > tr.hover > td{ 26 | background-color: #f5f5f5; 27 | } -------------------------------------------------------------------------------- /bootstrap-table-fixed-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenzhixin/bootstrap-table-fixed-columns/771b352a64c710c9dbc408b8da57ce795974be2a/bootstrap-table-fixed-columns.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-table-fixed-columns", 3 | "main": "bootstrap-table-fixed-columns.js", 4 | "version": "1.0.0", 5 | "homepage": "https://github.com/wenzhixin/bootstrap-table-fixed-columns", 6 | "authors": [ 7 | "zhixin " 8 | ], 9 | "keywords": [ 10 | "bootstrap", 11 | "table", 12 | "fixed", 13 | "columns" 14 | ], 15 | "license": "MIT", 16 | "ignore": [ 17 | "**/.*", 18 | "node_modules", 19 | "bower_components", 20 | "test", 21 | "tests" 22 | ] 23 | } 24 | --------------------------------------------------------------------------------