https://github.com/brrd/largetable
jQuery plugin to scroll in/maximize large tables
https://github.com/brrd/largetable
Last synced: 3 months ago
JSON representation
jQuery plugin to scroll in/maximize large tables
- Host: GitHub
- URL: https://github.com/brrd/largetable
- Owner: brrd
- License: mit
- Created: 2017-01-19T11:52:50.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T16:25:02.000Z (almost 3 years ago)
- Last Synced: 2025-02-04T00:36:38.124Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# largetable
> jQuery plugin to scroll in/maximize large tables
## Usage
Install with npm:
```
$ npm install largetable
```
Then include largetable files in the HTML:
```html
```
## Usage
Trigger `largetable()` method on `table` elements:
```javascript
$(".your-text-container table").largetable(options);
```
## Options
The following options are available:
```javascript
const options = {
enableMaximize: false // Set it to true to enable table maximization.
};
```
## Events
The following events are dispatched by the plugin:
* `toggleMaximize`
* `maximize`
* `unmaximize`
See `demo.html` for more details.
## License
The MIT License (MIT) - Copyright (c) 2019 Thomas Brouard (Edinum.org)