Skip to content

Commit cbf4493

Browse files
committed
FixedColumns 3.1.0 release
0 parents  commit cbf4493

6 files changed

+134
-0
lines changed

Readme.md

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# FixedColumns for DataTables with styling for [jQuery UI](http://jqueryui.com/)
2+
3+
This package contains distribution files required to style [FixedColumns extension](https://datatables.net/extensions/fixedcolumns) for [DataTables](https://datatables.net/) with styling for [jQuery UI](http://jqueryui.com/).
4+
5+
FixedColumns provides the ability to fix one or more columns to the left and / or right hand side of a DataTable that scrolls along the x-axis. This can be used if the columns show grouping, index or similar information.
6+
7+
8+
## Installation
9+
10+
### Browser
11+
12+
For inclusion of this library using a standard `<script>` tag, rather than using this package, it is recommended that you use the [DataTables download builder](//datatables.net/download) which can create CDN or locally hosted packages for you, will all dependencies satisfied.
13+
14+
### npm
15+
16+
```
17+
npm install datatables.net-fixedcolumns-jqui
18+
```
19+
20+
```
21+
var $ = require( 'jquery' );
22+
require( 'datatables.net-fixedcolumns-jqui' )( $ );
23+
```
24+
25+
### bower
26+
27+
```
28+
bower install --save datatables.net-fixedcolumns-jqui
29+
```
30+
31+
32+
33+
## Documentation
34+
35+
Full documentation of the DataTables options, API and plug-in interface are available on the DOCS_LINK. The site also contains information on the wide variety of plug-ins that are available for DataTables, which can be used to enhance and customise your table even further.
36+
37+
38+
## Bug / Support
39+
40+
Support for DataTables is available through the [DataTables forums](//datatables.net/forums) and [commercial support options](//datatables.net/support) are available.
41+
42+
43+
### Contributing
44+
45+
If you are thinking of contributing code to DataTables, first of all, thank you! All fixes, patches and enhancements to DataTables are very warmly welcomed. This repository is a distribution repo, so patches and issues sent to this repo will not be accepted. Instead, please direct pull requests to the [DataTables/FixedColumns](http://github.com/DataTables/FixedColumns). For issues / bugs, please direct your questions to the [DataTables forums](//datatables.net/forums).
46+
47+
48+
## License
49+
50+
This software is released under the [MIT license](//datatables.net/license). You are free to use, modify and distribute this software, but all copyright information must remain.

bower.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "datatables.net-fixedcolumns-jqui",
3+
"description": "FixedColumns for DataTables with styling for [jQuery UI](http://jqueryui.com/)",
4+
"main": [
5+
"css/fixedColumns.jqueryui.css"
6+
],
7+
"keywords": [
8+
"fixed columns",
9+
"DataTables",
10+
"jQuery",
11+
"table",
12+
"jQuery UI"
13+
],
14+
"dependencies": {
15+
"jquery": ">=1.7",
16+
"datatables.net-jqui": ">=1.10.9",
17+
"datatables.net-fixedcolumns": ">=3.1.0"
18+
},
19+
"moduleType": [
20+
"globals",
21+
"amd",
22+
"node"
23+
],
24+
"ignore": [
25+
"composer.json",
26+
"datatables.json",
27+
"package.json"
28+
],
29+
"authors": [
30+
{
31+
"name": "SpryMedia Ltd",
32+
"homepage": "https://datatables.net"
33+
}
34+
],
35+
"homepage": "https://datatables.net",
36+
"license": "MIT"
37+
}

css/fixedColumns.jqueryui.css

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
div.DTFC_LeftWrapper table.dataTable,
2+
div.DTFC_RightWrapper table.dataTable {
3+
z-index: 2;
4+
}
5+
div.DTFC_LeftWrapper table.dataTable.no-footer,
6+
div.DTFC_RightWrapper table.dataTable.no-footer {
7+
border-bottom: none;
8+
}

css/fixedColumns.jqueryui.min.css

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none}

datatables.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"css": [
3+
"css/fixedColumns.jqueryui.css",
4+
"css/fixedColumns.jqueryui.min.css"
5+
],
6+
"js": [],
7+
"src-repo": "http://github.com/DataTables/FixedColumns",
8+
"last-sync": "fa987b943a5a525f351dd64ce1cd4a779ee2a535",
9+
"last-tag": "3.1.0"
10+
}

package.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "datatables.net-fixedcolumns-jqui",
3+
"version": "3.1.0",
4+
"description": "FixedColumns for DataTables with styling for [jQuery UI](http://jqueryui.com/)",
5+
"files": [
6+
"css/fixedColumns.jqueryui.css"
7+
],
8+
"main": "./js/fixedColumns.jqueryui.js",
9+
"keywords": [
10+
"fixed columns",
11+
"DataTables",
12+
"jQuery",
13+
"table",
14+
"jQuery UI"
15+
],
16+
"homepage": "https://datatables.net",
17+
"bugs": "https://datatables.net/forums",
18+
"license": "MIT",
19+
"author": {
20+
"name": "SpryMedia Ltd",
21+
"url": "http://datatables.net"
22+
},
23+
"dependencies": {
24+
"jquery": ">=1.7",
25+
"datatables.net-jqui": ">=1.10.9",
26+
"datatables.net-fixedcolumns": ">=3.1.0"
27+
}
28+
}

0 commit comments

Comments
 (0)