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
getBinaryData renamed to a more semantically correct getRawData
Settings
ignoreCSS can now accept either a selector (e.g. '.tableexport-ignore') or selector[] (e.g. ['.tableexport-ignore', '#ignore']). v5.0.0-rc.7
/** * CSS selector or selector[] to exclude/remove cells from the exported file(s). * @type {selector|selector[]} * @memberof TableExport.prototype */
ignoreCSS: '.tableexport-ignore'
emptyCSS can now accept either a selector (e.g. '.tableexport-empty') or selector[] (e.g. ['.tableexport-empty', '#empty']). v5.0.0-rc.7
/** * CSS selector or selector[] to replace cells with an empty string in the exported file(s). * @type {selector|selector[]} * @memberof TableExport.prototype */
emptyCSS: '.tableexport-empty'
defaultCaptionClass class is now configurable rather than statically set to the .tableexport-caption class. v5.0.0-rc.10
/** * Class applied to each table caption. * @memberof TableExport.prototype */
defaultCaptionClass: 'tableexport-caption'
storageKey attribute is now configurable rather than statically set to the tableexport-id attribute. v5.0.0-rc.10
/** * Attribute applied to each export button element used to reference a Storage key. * @memberof TableExport.prototype */
storageKey: 'tableexport-id'
defaultNamespace string is now configurable rather than statically set to the te- string. v5.0.0-rc.10
/** * Namespace (i.e. prefix) applied to each table UUID and Storage key. * @memberof TableExport.prototype */
defaultNamespace: 'tableexport-'
xlsx, xls, csv, and txt prototype properties moved to nested under the formatConfig namespace. v5.0.0-rc.1
Miscellaneous
Improved error logging to the console, including more verbose error descriptions. v5.0.0-rc.4
Serialized export data is now stored in Session Storage rather than Local Storage to prevent undesirable persistence. v5.0.0-rc.10
Implement caching by maintaining unique reference to tables by id. The tableKey attribute is now used to uniquely identify table elements and hold either the table's id or a UUID generated from the defaultNamespace and a unique internal counter. v5.0.0-rc.10, v5.0.0-rc.11