You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+11-16Lines changed: 11 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# KeyTable for DataTables with styling for [SemanticUI](https://semantic-ui.com/)
2
2
3
-
This package contains a built distribution of the [KeyTable extension](https://datatables.net/extensions/keytable) for [DataTables](https://datatables.net/) with styling for [SemanticUI](https://semantic-ui.com/).
3
+
This is the distribution package for the [KeyTable extension](https://datatables.net/extensions/keytable) for [DataTables](https://datatables.net/) with styling for [SemanticUI](https://semantic-ui.com/).
4
4
5
5
KeyTable allows you to use keyboard navigation on a DataTables enhanced table, like an Excel spreadsheet - a cell shows a focus outline which can be moved using the keyboard or mouse operations. This can be particularly useful in an editable table that uses Editor allowing end users to update data very quickly.
6
6
@@ -9,43 +9,38 @@ KeyTable allows you to use keyboard navigation on a DataTables enhanced table, l
9
9
10
10
### Browser
11
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.
12
+
To use DataTables with a simple`<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
13
14
14
### npm
15
15
16
+
For installation via npm, yarn and other similar package managers, install this package with your package manager - e.g.:
17
+
16
18
```
19
+
npm install datatables.net-se
17
20
npm install datatables.net-keytable-se
18
21
```
19
22
20
-
ES3 Syntax
21
-
```
22
-
var $ = require( 'jquery' );
23
-
var dt = require( 'datatables.net-keytable-se' )( window, $ );
24
-
```
23
+
Then, to load and initialise the software in your code use:
25
24
26
-
ES6 Syntax
27
25
```
26
+
import DataTable from 'datatables.net-se';
28
27
import 'datatables.net-keytable-se'
29
-
```
30
28
31
-
### bower
32
-
33
-
```
34
-
bower install --save datatables.net-keytable-se
29
+
new DataTable('#myTable', {
30
+
// initalisation options
31
+
});
35
32
```
36
33
37
34
38
-
39
35
## Documentation
40
36
41
-
Full documentation and examples for KeyTable can be found [on the website](https://datatables.net/extensions/keytable).
37
+
Full documentation and examples for KeyTable can be found [on the DataTables website](https://datatables.net/extensions/keytable).
42
38
43
39
44
40
## Bug / Support
45
41
46
42
Support for DataTables is available through the [DataTables forums](//datatables.net/forums) and [commercial support options](//datatables.net/support) are available.
47
43
48
-
49
44
### Contributing
50
45
51
46
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/KeyTable](http://github.com/DataTables/KeyTable). For issues / bugs, please direct your questions to the [DataTables forums](//datatables.net/forums).
0 commit comments