| | |
| | | /* |
| | | * jQuery table2excel - v1.1.2 |
| | | * jQuery plugin to export an .xls file in browser from an HTML table |
| | | * https://github.com/rainabba/jquery-table2excel |
| | | * |
| | | * Made by rainabba |
| | | * Under MIT License |
| | | */ |
| | | |
| | | //table2excel.js |
| | | import jQuery from 'jquery' |
| | | (function ( $, window, document, undefined ) { |
| | | var pluginName = "table2excel", |
| | | |
| | | defaults = { |
| | | exclude: ".noExl", |
| | | name: "Table2Excel", |
| | |
| | | } |
| | | |
| | | // Create HTML for Row |
| | | tempRows += "<tr style='" + additionalStyles + "'>"; |
| | | tempRows += "<tr align='center' valign='center' style='" + additionalStyles + "'>"; |
| | | |
| | | // Loop through each TH and TD |
| | | $(p).find("td,th").not(e.settings.exclude).each(function (i,q) { // p did not exist, I corrected |
| | |
| | | $.data( e, "plugin_" + pluginName, new Plugin( this, options ) ); |
| | | } |
| | | }); |
| | | |
| | | // chain jQuery functions |
| | | return e; |
| | | }; |