Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tylerecouture/summernote-table-headers
A Summernote plugin that adds a button to the table popover allowing the user to toggle the first row as a table header.
https://github.com/tylerecouture/summernote-table-headers
Last synced: 3 months ago
JSON representation
A Summernote plugin that adds a button to the table popover allowing the user to toggle the first row as a table header.
- Host: GitHub
- URL: https://github.com/tylerecouture/summernote-table-headers
- Owner: tylerecouture
- License: mit
- Created: 2018-01-03T00:24:07.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-12T17:51:00.000Z (over 4 years ago)
- Last Synced: 2024-02-14T05:35:10.377Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 8
- Watchers: 4
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-summernote - summernote-table-headers
README
# summernote-table-headers
A [Summernote](http://summernote.org/) plugin that adds a button to the table popover allowing the user to toggle the first row as a table header.### How it works
The plugin creates a `` element at the top of the table, and moves the top `` into the header. It then swaps each of the `` cells for `` header cells. Toggle the header off reversese this.
When the summernote table popover is used to create a new column, summernote creates `` cells within the header. The pluging detects these changes to the table and converts them to propper `` header cells.
### Usage1. Include `summernote-table-headers.js`
2. Customize the Summernote table popover to include `tableHeaders`
````
$(document).ready(function() {
$('#summernote').summernote({
popover: {
table: [
['add', ['addRowDown', 'addRowUp', 'addColLeft', 'addColRight']],
['delete', ['deleteRow', 'deleteCol', 'deleteTable']],
['custom', ['tableHeaders']]
],
},
});
});
````### Working Example
https://rawgit.com/tylerecouture/summernote-table-headers/master/Example/example.html
### To do
* Add vertical headers