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-16
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Buttons for DataTables with styling for [SemanticUI](https://semantic-ui.com/)
2
2
3
-
This package contains a built distribution of the [Buttons extension](https://datatables.net/extensions/buttons) for [DataTables](https://datatables.net/) with styling for [SemanticUI](https://semantic-ui.com/).
3
+
This is the distribution package for the [Buttons extension](https://datatables.net/extensions/buttons) for [DataTables](https://datatables.net/) with styling for [SemanticUI](https://semantic-ui.com/).
4
4
5
5
The Buttons extension for DataTables provides a common set of options, API methods and styling to display buttons on a page that will interact with a DataTable. It also provides plug-ins for file export (HTML5 and Flash), print view and column visibility. Other libraries, such as Editor and Select also provide buttons specific to their use cases.
6
6
@@ -9,43 +9,38 @@ The Buttons extension for DataTables provides a common set of options, API metho
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-buttons-se
18
21
```
19
22
20
-
ES3 Syntax
21
-
```
22
-
var $ = require( 'jquery' );
23
-
var dt = require( 'datatables.net-buttons-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-buttons-se'
29
-
```
30
28
31
-
### bower
32
-
33
-
```
34
-
bower install --save datatables.net-buttons-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 Buttons can be found [on the website](https://datatables.net/extensions/buttons).
37
+
Full documentation and examples for Buttons can be found [on the DataTables website](https://datatables.net/extensions/buttons).
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/Buttons](http://github.com/DataTables/Buttons). For issues / bugs, please direct your questions to the [DataTables forums](//datatables.net/forums).
0 commit comments