diff --git a/README.md b/README.md index ab00576..45a2171 100644 --- a/README.md +++ b/README.md @@ -123,11 +123,11 @@ $("table").tableExport({ fileName: "id", // (id, String), filename for the downloaded file bootstrap: true, // (Boolean), style buttons using bootstrap position: "bottom", // (top, bottom), position of the caption element relative to table - ignoreRows: null, // (Number, Number[]), row indices to exclude from the exported file - ignoreCols: null, // (Number, Number[]), column indices to exclude from the exported file - ignoreCSS: ".tableexport-ignore", // (selector, selector[]), selector(s) to exclude cells from the exported file - emptyCSS: ".tableexport-empty", // (selector, selector[]), selector(s) to replace cells with an empty string in the exported file - trimWhitespace: false // (Boolean), remove all leading/trailing newlines, spaces (including non-breaking spaces), and tabs from cell text + ignoreRows: null, // (Number, Number[]), row indices to exclude from the exported file(s) + ignoreCols: null, // (Number, Number[]), column indices to exclude from the exported file(s) + ignoreCSS: ".tableexport-ignore", // (selector, selector[]), selector(s) to exclude cells from the exported file(s) + emptyCSS: ".tableexport-empty", // (selector, selector[]), selector(s) to replace cells with an empty string in the exported file(s) + trimWhitespace: false // (Boolean), remove all leading/trailing newlines, spaces, and tabs from cell text in the exported file(s) }); ``` > **Note:** to use the xlsx filetype, you must include the third-party scripts listed in the Dependencies section. diff --git a/dist/js/tableexport.js b/dist/js/tableexport.js index e08198f..ee8d4ac 100644 --- a/dist/js/tableexport.js +++ b/dist/js/tableexport.js @@ -321,11 +321,11 @@ fileName: "id", // (id, String), filename for the downloaded file, (default: "id") bootstrap: true, // (Boolean), style buttons using bootstrap, (default: true) position: "bottom", // (top, bottom), position of the caption element relative to table, (default: "bottom") - ignoreRows: null, // (Number, Number[]), row indices to exclude from the exported file (default: null) - ignoreCols: null, // (Number, Number[]), column indices to exclude from the exported file (default: null) - ignoreCSS: ".tableexport-ignore", // (selector, selector[]), selector(s) to exclude cells from the exported file (default: ".tableexport-ignore") - emptyCSS: ".tableexport-empty", // (selector, selector[]), selector(s) to replace cells with an empty string in the exported file (default: ".tableexport-empty") - trimWhitespace: false // (Boolean), remove all leading/trailing newlines, spaces (including non-breaking spaces), and tabs from cell text (default: false) + ignoreRows: null, // (Number, Number[]), row indices to exclude from the exported file(s) (default: null) + ignoreCols: null, // (Number, Number[]), column indices to exclude from the exported file(s) (default: null) + ignoreCSS: ".tableexport-ignore", // (selector, selector[]), selector(s) to exclude cells from the exported file(s) (default: ".tableexport-ignore") + emptyCSS: ".tableexport-empty", // (selector, selector[]), selector(s) to replace cells with an empty string in the exported file(s) (default: ".tableexport-empty") + trimWhitespace: false // (Boolean), remove all leading/trailing newlines, spaces, and tabs from cell text in the exported file(s) (default: false) }, /** * Character set (character encoding) of the HTML. diff --git a/src/stable/js/tableexport.js b/src/stable/js/tableexport.js index e08198f..ee8d4ac 100644 --- a/src/stable/js/tableexport.js +++ b/src/stable/js/tableexport.js @@ -321,11 +321,11 @@ fileName: "id", // (id, String), filename for the downloaded file, (default: "id") bootstrap: true, // (Boolean), style buttons using bootstrap, (default: true) position: "bottom", // (top, bottom), position of the caption element relative to table, (default: "bottom") - ignoreRows: null, // (Number, Number[]), row indices to exclude from the exported file (default: null) - ignoreCols: null, // (Number, Number[]), column indices to exclude from the exported file (default: null) - ignoreCSS: ".tableexport-ignore", // (selector, selector[]), selector(s) to exclude cells from the exported file (default: ".tableexport-ignore") - emptyCSS: ".tableexport-empty", // (selector, selector[]), selector(s) to replace cells with an empty string in the exported file (default: ".tableexport-empty") - trimWhitespace: false // (Boolean), remove all leading/trailing newlines, spaces (including non-breaking spaces), and tabs from cell text (default: false) + ignoreRows: null, // (Number, Number[]), row indices to exclude from the exported file(s) (default: null) + ignoreCols: null, // (Number, Number[]), column indices to exclude from the exported file(s) (default: null) + ignoreCSS: ".tableexport-ignore", // (selector, selector[]), selector(s) to exclude cells from the exported file(s) (default: ".tableexport-ignore") + emptyCSS: ".tableexport-empty", // (selector, selector[]), selector(s) to replace cells with an empty string in the exported file(s) (default: ".tableexport-empty") + trimWhitespace: false // (Boolean), remove all leading/trailing newlines, spaces, and tabs from cell text in the exported file(s) (default: false) }, /** * Character set (character encoding) of the HTML.