| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628 | /** * @preserve tableExport.jquery.plugin * * Version 1.10.22 * * Copyright (c) 2015-2021 hhurz, https://github.com/hhurz/tableExport.jquery.plugin * * Based on https://github.com/kayalshri/tableExport.jquery.plugin * * Licensed under the MIT License **/'use strict';(function ($) {  $.fn.tableExport = function (options) {    var defaults = {      csvEnclosure:       '"',      csvSeparator:       ',',      csvUseBOM:          true,      date: {        html:             'dd/mm/yyyy'  // Date format used in html source. Supported placeholders: dd, mm, yy, yyyy and a arbitrary single separator character      },      displayTableName:   false,        // Deprecated      escape:             false,        // Deprecated      exportHiddenCells:  false,        // true = speed up export of large tables with hidden cells (hidden cells will be exported !)      fileName:           'tableExport',      htmlContent:        false,      htmlHyperlink:      'content',    // Export the 'content' or the 'href' link of <a> tags unless onCellHtmlHyperlink is not defined      ignoreColumn:       [],      ignoreRow:          [],      jsonScope:          'all',        // One of 'head', 'data', 'all'      jspdf: {                          // jsPDF / jsPDF-AutoTable related options        orientation:      'p',        unit:             'pt',        format:           'a4',         // One of jsPDF page formats or 'bestfit' for automatic paper format selection        margins:          {left: 20, right: 10, top: 10, bottom: 10},        onDocCreated:     null,        autotable: {          styles: {            cellPadding:  2,            rowHeight:    12,            fontSize:     8,            fillColor:    255,          // Color value or 'inherit' to use css background-color from html table            textColor:    50,           // Color value or 'inherit' to use css color from html table            fontStyle:    'normal',     // 'normal', 'bold', 'italic', 'bolditalic' or 'inherit' to use css font-weight and font-style from html table            overflow:     'ellipsize',  // 'visible', 'hidden', 'ellipsize' or 'linebreak'            halign:       'inherit',    // 'left', 'center', 'right' or 'inherit' to use css horizontal cell alignment from html table            valign:       'middle'      // 'top', 'middle', or 'bottom'          },          headerStyles: {            fillColor:    [52, 73, 94],            textColor:    255,            fontStyle:    'bold',            halign:       'inherit',    // 'left', 'center', 'right' or 'inherit' to use css horizontal header cell alignment from html table            valign:       'middle'      // 'top', 'middle', or 'bottom'          },          alternateRowStyles: {            fillColor:     245          },          tableExport: {            doc:               null,    // jsPDF doc object. If set, an already created doc object will be used to export to            onAfterAutotable:  null,            onBeforeAutotable: null,            onAutotableText:   null,            onTable:           null,            outputImages:      true          }        }      },      mso: {                            // MS Excel and MS Word related options        fileFormat:        'xlshtml',   // 'xlshtml' = Excel 2000 html format                                        // 'xmlss' = XML Spreadsheet 2003 file format (XMLSS)                                        // 'xlsx' = Excel 2007 Office Open XML format        onMsoNumberFormat: null,        // Excel 2000 html format only. See readme.md for more information about msonumberformat        pageFormat:        'a4',        // Page format used for page orientation        pageOrientation:   'portrait',  // portrait, landscape (xlshtml format only)        rtl:               false,       // true = Set worksheet option 'DisplayRightToLeft'        styles:            [],          // E.g. ['border-bottom', 'border-top', 'border-left', 'border-right']        worksheetName:     '',        xslx: {                         // Specific Excel 2007 XML format settings:          formatId: {                   // XLSX format (id) used to format excel cells. See readme.md: data-tableexport-xlsxformatid            date:          14,          // formatId or format string (e.g. 'm/d/yy') or function(cell, row, col) {return formatId}            numbers:       2            // formatId or format string (e.g. '\"T\"\ #0.00') or function(cell, row, col) {return formatId}          }        }      },      numbers: {        html: {          decimalMark:        '.',      // Decimal mark in html source          thousandsSeparator: ','       // Thousands separator in html source        },        output: {                       // Set 'output: false' to keep number format of html source in resulting output          decimalMark:        '.',      // Decimal mark in resulting output          thousandsSeparator: ','       // Thousands separator in resulting output        }      },      onAfterSaveToFile:   null,        // function(data, fileName)      onBeforeSaveToFile:  null,        // saveIt = function(data, fileName, type, charset, encoding): Return false to abort save process      onCellData:          null,        // Text to export = function($cell, row, col, href, cellText, cellType)      onCellHtmlData:      null,        // Text to export = function($cell, row, col, htmlContent)      onCellHtmlHyperlink: null,        // Text to export = function($cell, row, col, href, cellText)      onIgnoreRow:         null,        // ignoreRow = function($tr, row): Return true to prevent export of the row      onTableExportBegin:  null,        // function() - called when export starts      onTableExportEnd:    null,        // function() - called when export ends      outputMode:          'file',      // 'file', 'string', 'base64' or 'window' (experimental)      pdfmake: {        enabled:           false,       // true: Use pdfmake as pdf producer instead of jspdf and jspdf-autotable        docDefinition: {          pageSize:        'A4',        // 4A0,2A0,A{0-10},B{0-10},C{0-10},RA{0-4},SRA{0-4},EXECUTIVE,FOLIO,LEGAL,LETTER,TABLOID          pageOrientation: 'portrait',  // 'portrait' or 'landscape'          styles: {            header: {              background:  '#34495E',              color:       '#FFFFFF',              bold:        true,              alignment:   'center',              fillColor:   '#34495E'            },            alternateRow: {              fillColor:   '#f5f5f5'            }          },          defaultStyle: {            color:         '#000000',            fontSize:      8,            font:          'Roboto'     // Default font is 'Roboto' which needs vfs_fonts.js to be included          }                             // To export arabic characters include mirza_fonts.js _instead_ of vfs_fonts.js        },                              // For a chinese font include either gbsn00lp_fonts.js or ZCOOLXiaoWei_fonts.js _instead_ of vfs_fonts.js        fonts: {}      },      preserve: {        leadingWS:         false,       // preserve leading white spaces        trailingWS:        false        // preserve trailing white spaces      },      preventInjection:    true,        // Prepend a single quote to cell strings that start with =,+,- or @ to prevent formula injection      sql: {        tableEnclosure:     '`',        // If table name or column names contain any characters except letters, numbers, and        columnEnclosure:    '`'         // underscores, usually the name must be delimited by enclosing it in back quotes (`)      },      tbodySelector:       'tr',      tfootSelector:       'tr',        // Set empty ('') to prevent export of tfoot rows      theadSelector:       'tr',      tableName:           'Table',      type:                'csv'        // Export format: 'csv', 'tsv', 'txt', 'sql', 'json', 'xml', 'excel', 'doc', 'png' or 'pdf'    };    var pageFormats = { // Size in pt of various paper formats. Adopted from jsPDF.      'a0': [2383.94, 3370.39], 'a1': [1683.78, 2383.94], 'a2': [1190.55, 1683.78],      'a3': [841.89, 1190.55],  'a4': [595.28, 841.89],   'a5': [419.53, 595.28],      'a6': [297.64, 419.53],   'a7': [209.76, 297.64],   'a8': [147.40, 209.76],      'a9': [104.88, 147.40],   'a10': [73.70, 104.88],      'b0': [2834.65, 4008.19], 'b1': [2004.09, 2834.65], 'b2': [1417.32, 2004.09],      'b3': [1000.63, 1417.32], 'b4': [708.66, 1000.63],  'b5': [498.90, 708.66],      'b6': [354.33, 498.90],   'b7': [249.45, 354.33],   'b8': [175.75, 249.45],      'b9': [124.72, 175.75],   'b10': [87.87, 124.72],      'c0': [2599.37, 3676.54],      'c1': [1836.85, 2599.37], 'c2': [1298.27, 1836.85], 'c3': [918.43, 1298.27],      'c4': [649.13, 918.43],   'c5': [459.21, 649.13],   'c6': [323.15, 459.21],      'c7': [229.61, 323.15],   'c8': [161.57, 229.61],   'c9': [113.39, 161.57],      'c10': [79.37, 113.39],      'dl': [311.81, 623.62],      'letter': [612, 792], 'government-letter': [576, 756], 'legal': [612, 1008],      'junior-legal': [576, 360], 'ledger': [1224, 792], 'tabloid': [792, 1224],      'credit-card': [153, 243]    };    var FONT_ROW_RATIO = 1.15;    var el = this;    var DownloadEvt = null;    var $hrows = [];    var $rows = [];    var rowIndex = 0;    var trData = '';    var colNames = [];    var ranges = [];    var blob;    var $hiddenTableElements = [];    var checkCellVisibilty = false;    $.extend(true, defaults, options);    // Adopt deprecated options    if (defaults.type === 'xlsx') {      defaults.mso.fileFormat = defaults.type;      defaults.type = 'excel';    }    if (typeof defaults.excelFileFormat !== 'undefined' && defaults.mso.fileFormat === 'undefined')      defaults.mso.fileFormat = defaults.excelFileFormat;    if (typeof defaults.excelPageFormat !== 'undefined' && defaults.mso.pageFormat === 'undefined')      defaults.mso.pageFormat = defaults.excelPageFormat;    if (typeof defaults.excelPageOrientation !== 'undefined' && defaults.mso.pageOrientation === 'undefined')      defaults.mso.pageOrientation = defaults.excelPageOrientation;    if (typeof defaults.excelRTL !== 'undefined' && defaults.mso.rtl === 'undefined')      defaults.mso.rtl = defaults.excelRTL;    if (typeof defaults.excelstyles !== 'undefined' && defaults.mso.styles === 'undefined')      defaults.mso.styles = defaults.excelstyles;    if (typeof defaults.onMsoNumberFormat !== 'undefined' && defaults.mso.onMsoNumberFormat === 'undefined')      defaults.mso.onMsoNumberFormat = defaults.onMsoNumberFormat;    if (typeof defaults.worksheetName !== 'undefined' && defaults.mso.worksheetName === 'undefined')      defaults.mso.worksheetName = defaults.worksheetName;    // Check values of some options    defaults.mso.pageOrientation = (defaults.mso.pageOrientation.substr(0, 1) === 'l') ? 'landscape' : 'portrait';    defaults.date.html = defaults.date.html || '';    if (defaults.date.html.length) {      var patt = [];      patt['dd'] = '(3[01]|[12][0-9]|0?[1-9])';      patt['mm'] = '(1[012]|0?[1-9])';      patt['yyyy'] = '((?:1[6-9]|2[0-2])\\d{2})';      patt['yy'] = '(\\d{2})';      var separator = defaults.date.html.match(/[^a-zA-Z0-9]/)[0];      var formatItems = defaults.date.html.toLowerCase().split(separator);      defaults.date.regex = '^\\s*';      defaults.date.regex += patt[formatItems[0]];      defaults.date.regex += '(.)'; // separator group      defaults.date.regex += patt[formatItems[1]];      defaults.date.regex += '\\2'; // identical separator group      defaults.date.regex += patt[formatItems[2]];      defaults.date.regex += '\\s*$';      // e.g. '^\\s*(3[01]|[12][0-9]|0?[1-9])(.)(1[012]|0?[1-9])\\2((?:1[6-9]|2[0-2])\\d{2})\\s*$'      defaults.date.pattern = new RegExp(defaults.date.regex, 'g');      var f = formatItems.indexOf('dd') + 1;      defaults.date.match_d = f + (f > 1 ? 1 : 0);      f = formatItems.indexOf('mm') + 1;      defaults.date.match_m = f + (f > 1 ? 1 : 0);      f = (formatItems.indexOf('yyyy') >= 0 ? formatItems.indexOf('yyyy') : formatItems.indexOf('yy')) + 1;      defaults.date.match_y = f + (f > 1 ? 1 : 0);    }    colNames = GetColumnNames(el);    if (typeof defaults.onTableExportBegin === 'function')      defaults.onTableExportBegin();    if (defaults.type === 'csv' || defaults.type === 'tsv' || defaults.type === 'txt') {      var csvData = '';      var rowlength = 0;      ranges = [];      rowIndex = 0;      var csvString = function (cell, rowIndex, colIndex) {        var result = '';        if (cell !== null) {          var dataString = parseString(cell, rowIndex, colIndex);          var csvValue = (dataString === null || dataString === '') ? '' : dataString.toString();          if (defaults.type === 'tsv') {            if (dataString instanceof Date)              dataString.toLocaleString();            // According to http://www.iana.org/assignments/media-types/text/tab-separated-values            // are fields that contain tabs not allowable in tsv encoding            result = replaceAll(csvValue, '\t', ' ');          } else {            // Takes a string and encapsulates it (by default in double-quotes) if it            // contains the csv field separator, spaces, or linebreaks.            if (dataString instanceof Date)              result = defaults.csvEnclosure + dataString.toLocaleString() + defaults.csvEnclosure;            else {              result = preventInjection(csvValue);              result = replaceAll(result, defaults.csvEnclosure, defaults.csvEnclosure + defaults.csvEnclosure);              if (result.indexOf(defaults.csvSeparator) >= 0 || /[\r\n ]/g.test(result))                result = defaults.csvEnclosure + result + defaults.csvEnclosure;            }          }        }        return result;      };      var CollectCsvData = function ($rows, rowselector, length) {        $rows.each(function () {          trData = '';          ForEachVisibleCell(this, rowselector, rowIndex, length + $rows.length,            function (cell, row, col) {              trData += csvString(cell, row, col) + (defaults.type === 'tsv' ? '\t' : defaults.csvSeparator);            });          trData = $.trim(trData).substring(0, trData.length - 1);          if (trData.length > 0) {            if (csvData.length > 0)              csvData += '\n';            csvData += trData;          }          rowIndex++;        });        return $rows.length;      };      rowlength += CollectCsvData($(el).find('thead').first().find(defaults.theadSelector), 'th,td', rowlength);      findTableElements($(el), 'tbody').each(function () {        rowlength += CollectCsvData(findTableElements($(this), defaults.tbodySelector), 'td,th', rowlength);      });      if (defaults.tfootSelector.length)        CollectCsvData($(el).find('tfoot').first().find(defaults.tfootSelector), 'td,th', rowlength);      csvData += '\n';      //output      if (defaults.outputMode === 'string')        return csvData;      if (defaults.outputMode === 'base64')        return base64encode(csvData);      if (defaults.outputMode === 'window') {        downloadFile(false, 'data:text/' + (defaults.type === 'csv' ? 'csv' : 'plain') + ';charset=utf-8,', csvData);        return;      }      saveToFile(csvData,        defaults.fileName + '.' + defaults.type,        'text/' + (defaults.type === 'csv' ? 'csv' : 'plain'),        'utf-8',        '',        (defaults.type === 'csv' && defaults.csvUseBOM));    } else if (defaults.type === 'sql') {      // Header      rowIndex = 0;      ranges = [];      var tdData = 'INSERT INTO ' + defaults.sql.tableEnclosure + defaults.tableName + defaults.sql.tableEnclosure + ' (';      $hrows = collectHeadRows($(el));      $($hrows).each(function () {        ForEachVisibleCell(this, 'th,td', rowIndex, $hrows.length,          function (cell, row, col) {            var colName = parseString(cell, row, col) || '';            if (colName.indexOf(defaults.sql.columnEnclosure) > -1)              colName = replaceAll(colName.toString(), defaults.sql.columnEnclosure, defaults.sql.columnEnclosure + defaults.sql.columnEnclosure);            tdData += defaults.sql.columnEnclosure + colName + defaults.sql.columnEnclosure + ',';          });        rowIndex++;        tdData = $.trim(tdData).substring(0, tdData.length - 1);      });      tdData += ') VALUES ';      // Data      $rows = collectRows($(el));      $($rows).each(function () {        trData = '';        ForEachVisibleCell(this, 'td,th', rowIndex, $hrows.length + $rows.length,          function (cell, row, col) {            var dataString = parseString(cell, row, col) || '';            if (dataString.indexOf('\'') > -1)              dataString = replaceAll(dataString.toString(), '\'', '\'\'');            trData += '\'' + dataString + '\',';          });        if (trData.length > 3) {          tdData += '(' + trData;          tdData = $.trim(tdData).substring(0, tdData.length - 1);          tdData += '),';        }        rowIndex++;      });      tdData = $.trim(tdData).substring(0, tdData.length - 1);      tdData += ';';      // Output      if (defaults.outputMode === 'string')        return tdData;      if (defaults.outputMode === 'base64')        return base64encode(tdData);      saveToFile(tdData, defaults.fileName + '.sql', 'application/sql', 'utf-8', '', false);    } else if (defaults.type === 'json') {      var jsonHeaderArray = [];      ranges = [];      $hrows = collectHeadRows($(el));      $($hrows).each(function () {        var jsonArrayTd = [];        ForEachVisibleCell(this, 'th,td', rowIndex, $hrows.length,          function (cell, row, col) {            jsonArrayTd.push(parseString(cell, row, col));          });        jsonHeaderArray.push(jsonArrayTd);      });      // Data      var jsonArray = [];      $rows = collectRows($(el));      $($rows).each(function () {        var jsonObjectTd = {};        var colIndex = 0;        ForEachVisibleCell(this, 'td,th', rowIndex, $hrows.length + $rows.length,          function (cell, row, col) {            if (jsonHeaderArray.length) {              jsonObjectTd[jsonHeaderArray[jsonHeaderArray.length - 1][colIndex]] = parseString(cell, row, col);            } else {              jsonObjectTd[colIndex] = parseString(cell, row, col);            }            colIndex++;          });        if ($.isEmptyObject(jsonObjectTd) === false)          jsonArray.push(jsonObjectTd);        rowIndex++;      });      var sdata;      if (defaults.jsonScope === 'head')        sdata = JSON.stringify(jsonHeaderArray);      else if (defaults.jsonScope === 'data')        sdata = JSON.stringify(jsonArray);      else // all        sdata = JSON.stringify({header: jsonHeaderArray, data: jsonArray});      if (defaults.outputMode === 'string')        return sdata;      if (defaults.outputMode === 'base64')        return base64encode(sdata);      saveToFile(sdata, defaults.fileName + '.json', 'application/json', 'utf-8', 'base64', false);    } else if (defaults.type === 'xml') {      rowIndex = 0;      ranges = [];      var xml = '<?xml version="1.0" encoding="utf-8"?>';      xml += '<tabledata><fields>';      // Header      $hrows = collectHeadRows($(el));      $($hrows).each(function () {        ForEachVisibleCell(this, 'th,td', rowIndex, $hrows.length,          function (cell, row, col) {            xml += '<field>' + parseString(cell, row, col) + '</field>';          });        rowIndex++;      });      xml += '</fields><data>';      // Data      var rowCount = 1;      $rows = collectRows($(el));      $($rows).each(function () {        var colCount = 1;        trData = '';        ForEachVisibleCell(this, 'td,th', rowIndex, $hrows.length + $rows.length,          function (cell, row, col) {            trData += '<column-' + colCount + '>' + parseString(cell, row, col) + '</column-' + colCount + '>';            colCount++;          });        if (trData.length > 0 && trData !== '<column-1></column-1>') {          xml += '<row id="' + rowCount + '">' + trData + '</row>';          rowCount++;        }        rowIndex++;      });      xml += '</data></tabledata>';      // Output      if (defaults.outputMode === 'string')        return xml;      if (defaults.outputMode === 'base64')        return base64encode(xml);      saveToFile(xml, defaults.fileName + '.xml', 'application/xml', 'utf-8', 'base64', false);    } else if (defaults.type === 'excel' && defaults.mso.fileFormat === 'xmlss') {      var docDatas = [];      var docNames = [];      $(el).filter(function () {        return isVisible($(this));      }).each(function () {        var $table = $(this);        var ssName = '';        if (typeof defaults.mso.worksheetName === 'string' && defaults.mso.worksheetName.length)          ssName = defaults.mso.worksheetName + ' ' + (docNames.length + 1);        else if (typeof defaults.mso.worksheetName[docNames.length] !== 'undefined')          ssName = defaults.mso.worksheetName[docNames.length];        if (!ssName.length)          ssName = $table.find('caption').text() || '';        if (!ssName.length)          ssName = 'Table ' + (docNames.length + 1);        ssName = $.trim(ssName.replace(/[\\\/[\]*:?'"]/g, '').substring(0, 31));        docNames.push($('<div />').text(ssName).html());        if (defaults.exportHiddenCells === false) {          $hiddenTableElements = $table.find('tr, th, td').filter(':hidden');          checkCellVisibilty = $hiddenTableElements.length > 0;        }        rowIndex = 0;        colNames = GetColumnNames(this);        docData = '<Table>\r';        function CollectXmlssData ($rows, rowselector, length) {          var spans = [];          $($rows).each(function () {            var ssIndex = 0;            var nCols = 0;            trData = '';            ForEachVisibleCell(this, 'td,th', rowIndex, length + $rows.length,              function (cell, row, col) {                if (cell !== null) {                  var style = '';                  var data = parseString(cell, row, col);                  var type = 'String';                  if (jQuery.isNumeric(data) !== false) {                    type = 'Number';                  } else {                    var number = parsePercent(data);                    if (number !== false) {                      data = number;                      type = 'Number';                      style += ' ss:StyleID="pct1"';                    }                  }                  if (type !== 'Number')                    data = data.replace(/\n/g, '<br>');                  var colspan = getColspan(cell);                  var rowspan = getRowspan(cell);                  // Skip spans                  $.each(spans, function () {                    var range = this;                    if (rowIndex >= range.s.r && rowIndex <= range.e.r && nCols >= range.s.c && nCols <= range.e.c) {                      for (var i = 0; i <= range.e.c - range.s.c; ++i) {                        nCols++;                        ssIndex++;                      }                    }                  });                  // Handle Row Span                  if (rowspan || colspan) {                    rowspan = rowspan || 1;                    colspan = colspan || 1;                    spans.push({                      s: {r: rowIndex, c: nCols},                      e: {r: rowIndex + rowspan - 1, c: nCols + colspan - 1}                    });                  }                  // Handle Colspan                  if (colspan > 1) {                    style += ' ss:MergeAcross="' + (colspan - 1) + '"';                    nCols += (colspan - 1);                  }                  if (rowspan > 1) {                    style += ' ss:MergeDown="' + (rowspan - 1) + '" ss:StyleID="rsp1"';                  }                  if (ssIndex > 0) {                    style += ' ss:Index="' + (nCols + 1) + '"';                    ssIndex = 0;                  }                  trData += '<Cell' + style + '><Data ss:Type="' + type + '">' +                    $('<div />').text(data).html() +                    '</Data></Cell>\r';                  nCols++;                }              });            if (trData.length > 0)              docData += '<Row ss:AutoFitHeight="0">\r' + trData + '</Row>\r';            rowIndex++;          });          return $rows.length;        }        var rowLength = CollectXmlssData(collectHeadRows($table), 'th,td', 0);        CollectXmlssData(collectRows($table), 'td,th', rowLength);        docData += '</Table>\r';        docDatas.push(docData);      });      var count = {};      var firstOccurences = {};      var item, itemCount;      for (var n = 0, c = docNames.length; n < c; n++) {        item = docNames[n];        itemCount = count[item];        itemCount = count[item] = (itemCount == null ? 1 : itemCount + 1);        if (itemCount === 2)          docNames[firstOccurences[item]] = docNames[firstOccurences[item]].substring(0, 29) + '-1';        if (count[item] > 1)          docNames[n] = docNames[n].substring(0, 29) + '-' + count[item];        else          firstOccurences[item] = n;      }      var CreationDate = new Date().toISOString();      var xmlssDocFile = '<?xml version="1.0" encoding="UTF-8"?>\r' +        '<?mso-application progid="Excel.Sheet"?>\r' +        '<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"\r' +        ' xmlns:o="urn:schemas-microsoft-com:office:office"\r' +        ' xmlns:x="urn:schemas-microsoft-com:office:excel"\r' +        ' xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"\r' +        ' xmlns:html="http://www.w3.org/TR/REC-html40">\r' +        '<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">\r' +        '  <Created>' + CreationDate + '</Created>\r' +        '</DocumentProperties>\r' +        '<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">\r' +        '  <AllowPNG/>\r' +        '</OfficeDocumentSettings>\r' +        '<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">\r' +        '  <WindowHeight>9000</WindowHeight>\r' +        '  <WindowWidth>13860</WindowWidth>\r' +        '  <WindowTopX>0</WindowTopX>\r' +        '  <WindowTopY>0</WindowTopY>\r' +        '  <ProtectStructure>False</ProtectStructure>\r' +        '  <ProtectWindows>False</ProtectWindows>\r' +        '</ExcelWorkbook>\r' +        '<Styles>\r' +        '  <Style ss:ID="Default" ss:Name="Normal">\r' +        '    <Alignment ss:Vertical="Bottom"/>\r' +        '    <Borders/>\r' +        '    <Font/>\r' +        '    <Interior/>\r' +        '    <NumberFormat/>\r' +        '    <Protection/>\r' +        '  </Style>\r' +        '  <Style ss:ID="rsp1">\r' +        '    <Alignment ss:Vertical="Center"/>\r' +        '  </Style>\r' +        '  <Style ss:ID="pct1">\r' +        '    <NumberFormat ss:Format="Percent"/>\r' +        '  </Style>\r' +        '</Styles>\r';      for (var j = 0; j < docDatas.length; j++) {        xmlssDocFile += '<Worksheet ss:Name="' + docNames[j] + '" ss:RightToLeft="' + (defaults.mso.rtl ? '1' : '0') + '">\r' +          docDatas[j];        if (defaults.mso.rtl) {          xmlssDocFile += '<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">\r' +            '<DisplayRightToLeft/>\r' +            '</WorksheetOptions>\r';        } else          xmlssDocFile += '<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"/>\r';        xmlssDocFile += '</Worksheet>\r';      }      xmlssDocFile += '</Workbook>\r';      if (defaults.outputMode === 'string')        return xmlssDocFile;      if (defaults.outputMode === 'base64')        return base64encode(xmlssDocFile);      saveToFile(xmlssDocFile, defaults.fileName + '.xml', 'application/xml', 'utf-8', 'base64', false);    } else if (defaults.type === 'excel' && defaults.mso.fileFormat === 'xlsx') {      var sheetNames = [];      var workbook = XLSX.utils.book_new();      // Multiple worksheets and .xlsx file extension #202      $(el).filter(function () {        return isVisible($(this));      }).each(function () {        var $table = $(this);        var ws = xlsxTableToSheet(this);        var sheetName = '';        if (typeof defaults.mso.worksheetName === 'string' && defaults.mso.worksheetName.length)          sheetName = defaults.mso.worksheetName + ' ' + (sheetNames.length + 1);        else if (typeof defaults.mso.worksheetName[sheetNames.length] !== 'undefined')          sheetName = defaults.mso.worksheetName[sheetNames.length];        if (!sheetName.length)          sheetName = $table.find('caption').text() || '';        if (!sheetName.length)          sheetName = 'Table ' + (sheetNames.length + 1);        sheetName = $.trim(sheetName.replace(/[\\\/[\]*:?'"]/g, '').substring(0, 31));        sheetNames.push(sheetName);        XLSX.utils.book_append_sheet(workbook, ws, sheetName);      });      // add worksheet to workbook      var wbout = XLSX.write(workbook, {type: 'binary', bookType: defaults.mso.fileFormat, bookSST: false});      saveToFile(xlsxWorkbookToArrayBuffer(wbout),        defaults.fileName + '.' + defaults.mso.fileFormat,        'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',        'UTF-8', '', false);    } else if (defaults.type === 'excel' || defaults.type === 'xls' || defaults.type === 'word' || defaults.type === 'doc') {      var MSDocType = (defaults.type === 'excel' || defaults.type === 'xls') ? 'excel' : 'word';      var MSDocExt = (MSDocType === 'excel') ? 'xls' : 'doc';      var MSDocSchema = 'xmlns:x="urn:schemas-microsoft-com:office:' + MSDocType + '"';      var docData = '';      var docName = '';      $(el).filter(function () {        return isVisible($(this));      }).each(function () {        var $table = $(this);        if (docName === '') {          docName = defaults.mso.worksheetName || $table.find('caption').text() || 'Table';          docName = $.trim(docName.replace(/[\\\/[\]*:?'"]/g, '').substring(0, 31));        }        if (defaults.exportHiddenCells === false) {          $hiddenTableElements = $table.find('tr, th, td').filter(':hidden');          checkCellVisibilty = $hiddenTableElements.length > 0;        }        rowIndex = 0;        ranges = [];        colNames = GetColumnNames(this);        // Header        docData += '<table><thead>';        $hrows = collectHeadRows($table);        $($hrows).each(function () {          var $row = $(this);          trData = '';          ForEachVisibleCell(this, 'th,td', rowIndex, $hrows.length,            function (cell, row, col) {              if (cell !== null) {                var thstyle = '';                trData += '<th';                if (defaults.mso.styles.length) {                  var cellstyles = document.defaultView.getComputedStyle(cell, null);                  var rowstyles = document.defaultView.getComputedStyle($row[0], null);                  for (var cssStyle in defaults.mso.styles) {                    var thcss = cellstyles[defaults.mso.styles[cssStyle]];                    if (thcss === '')                      thcss = rowstyles[defaults.mso.styles[cssStyle]];                    if (thcss !== '' && thcss !== '0px none rgb(0, 0, 0)' && thcss !== 'rgba(0, 0, 0, 0)') {                      thstyle += (thstyle === '') ? 'style="' : ';';                      thstyle += defaults.mso.styles[cssStyle] + ':' + thcss;                    }                  }                }                if (thstyle !== '')                  trData += ' ' + thstyle + '"';                var tdcolspan = getColspan(cell);                if (tdcolspan > 0)                  trData += ' colspan="' + tdcolspan + '"';                var tdrowspan = getRowspan(cell);                if (tdrowspan > 0)                  trData += ' rowspan="' + tdrowspan + '"';                trData += '>' + parseString(cell, row, col) + '</th>';              }            });          if (trData.length > 0)            docData += '<tr>' + trData + '</tr>';          rowIndex++;        });        docData += '</thead><tbody>';        // Data        $rows = collectRows($table);        $($rows).each(function () {          var $row = $(this);          trData = '';          ForEachVisibleCell(this, 'td,th', rowIndex, $hrows.length + $rows.length,            function (cell, row, col) {              if (cell !== null) {                var tdvalue = parseString(cell, row, col);                var tdstyle = '';                var tdcss = $(cell).attr('data-tableexport-msonumberformat');                if (typeof tdcss === 'undefined' && typeof defaults.mso.onMsoNumberFormat === 'function')                  tdcss = defaults.mso.onMsoNumberFormat(cell, row, col);                if (typeof tdcss !== 'undefined' && tdcss !== '')                  tdstyle = 'style="mso-number-format:\'' + tdcss + '\'';                if (defaults.mso.styles.length) {                  var cellstyles = document.defaultView.getComputedStyle(cell, null);                  var rowstyles = document.defaultView.getComputedStyle($row[0], null);                  for (var cssStyle in defaults.mso.styles) {                    tdcss = cellstyles[defaults.mso.styles[cssStyle]];                    if (tdcss === '')                      tdcss = rowstyles[defaults.mso.styles[cssStyle]];                    if (tdcss !== '' && tdcss !== '0px none rgb(0, 0, 0)' && tdcss !== 'rgba(0, 0, 0, 0)') {                      tdstyle += (tdstyle === '') ? 'style="' : ';';                      tdstyle += defaults.mso.styles[cssStyle] + ':' + tdcss;                    }                  }                }                trData += '<td';                if (tdstyle !== '')                  trData += ' ' + tdstyle + '"';                var tdcolspan = getColspan(cell);                if (tdcolspan > 0)                  trData += ' colspan="' + tdcolspan + '"';                var tdrowspan = getRowspan(cell);                if (tdrowspan > 0)                  trData += ' rowspan="' + tdrowspan + '"';                if (typeof tdvalue === 'string' && tdvalue !== '') {                  tdvalue = preventInjection(tdvalue);                  tdvalue = tdvalue.replace(/\n/g, '<br>');                }                trData += '>' + tdvalue + '</td>';              }            });          if (trData.length > 0)            docData += '<tr>' + trData + '</tr>';          rowIndex++;        });        if (defaults.displayTableName)          docData += '<tr><td></td></tr><tr><td></td></tr><tr><td>' + parseString($('<p>' + defaults.tableName + '</p>')) + '</td></tr>';        docData += '</tbody></table>';      });      //noinspection XmlUnusedNamespaceDeclaration      var docFile = '<html xmlns:o="urn:schemas-microsoft-com:office:office" ' + MSDocSchema + ' xmlns="http://www.w3.org/TR/REC-html40">';      docFile += '<meta http-equiv="content-type" content="application/vnd.ms-' + MSDocType + '; charset=UTF-8">';      docFile += '<head>';      if (MSDocType === 'excel') {        docFile += '<!--[if gte mso 9]>';        docFile += '<xml>';        docFile += '<x:ExcelWorkbook>';        docFile += '<x:ExcelWorksheets>';        docFile += '<x:ExcelWorksheet>';        docFile += '<x:Name>';        docFile += docName;        docFile += '</x:Name>';        docFile += '<x:WorksheetOptions>';        docFile += '<x:DisplayGridlines/>';        if (defaults.mso.rtl)          docFile += '<x:DisplayRightToLeft/>';        docFile += '</x:WorksheetOptions>';        docFile += '</x:ExcelWorksheet>';        docFile += '</x:ExcelWorksheets>';        docFile += '</x:ExcelWorkbook>';        docFile += '</xml>';        docFile += '<![endif]-->';      }      docFile += '<style>';      docFile += '@page { size:' + defaults.mso.pageOrientation + '; mso-page-orientation:' + defaults.mso.pageOrientation + '; }';      docFile += '@page Section1 {size:' + pageFormats[defaults.mso.pageFormat][0] + 'pt ' + pageFormats[defaults.mso.pageFormat][1] + 'pt';      docFile += '; margin:1.0in 1.25in 1.0in 1.25in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}';      docFile += 'div.Section1 {page:Section1;}';      docFile += '@page Section2 {size:' + pageFormats[defaults.mso.pageFormat][1] + 'pt ' + pageFormats[defaults.mso.pageFormat][0] + 'pt';      docFile += ';mso-page-orientation:' + defaults.mso.pageOrientation + ';margin:1.25in 1.0in 1.25in 1.0in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}';      docFile += 'div.Section2 {page:Section2;}';      docFile += 'br {mso-data-placement:same-cell;}';      docFile += '</style>';      docFile += '</head>';      docFile += '<body>';      docFile += '<div class="Section' + ((defaults.mso.pageOrientation === 'landscape') ? '2' : '1') + '">';      docFile += docData;      docFile += '</div>';      docFile += '</body>';      docFile += '</html>';      if (defaults.outputMode === 'string')        return docFile;      if (defaults.outputMode === 'base64')        return base64encode(docFile);      saveToFile(docFile, defaults.fileName + '.' + MSDocExt, 'application/vnd.ms-' + MSDocType, '', 'base64', false);    } else if (defaults.type === 'png') {      html2canvas($(el)[0]).then(        function (canvas) {          var image = canvas.toDataURL();          var byteString = atob(image.substring(22)); // remove data stuff          var buffer = new ArrayBuffer(byteString.length);          var intArray = new Uint8Array(buffer);          for (var i = 0; i < byteString.length; i++)            intArray[i] = byteString.charCodeAt(i);          if (defaults.outputMode === 'string')            return byteString;          if (defaults.outputMode === 'base64')            return base64encode(image);          if (defaults.outputMode === 'window') {            window.open(image);            return;          }          saveToFile(buffer, defaults.fileName + '.png', 'image/png', '', '', false);        });    } else if (defaults.type === 'pdf') {      if (defaults.pdfmake.enabled === true) {        // pdf output using pdfmake        // https://github.com/bpampuch/pdfmake        var docDefinition = {          content: []        };        $.extend(true, docDefinition, defaults.pdfmake.docDefinition);        ranges = [];                $(el).filter(function () {          return isVisible($(this));        }).each(function () {          var $table = $(this);          var widths = [];          var body = [];          rowIndex = 0;          /**           * @return {number}           */          var CollectPdfmakeData = function ($rows, colselector, length) {            var rlength = 0;            $($rows).each(function () {              var r = [];              ForEachVisibleCell(this, colselector, rowIndex, length,                function (cell, row, col) {                  var cellContent;                                    if (typeof cell !== 'undefined' && cell !== null) {                    var colspan = getColspan(cell);                    var rowspan = getRowspan(cell);                                        cellContent = {text: parseString(cell, row, col) || ' '};                    if (colspan > 1 || rowspan > 1) {                      cellContent['colSpan'] = colspan || 1;                      cellContent['rowSpan'] = rowspan || 1;                    }                   }                   else                    cellContent = {text: ' '};                  if (colselector.indexOf('th') >= 0)                    cellContent['style'] = 'header';                                    r.push(cellContent);                });              for (var i = r.length; i < length; i++)                r.push('');              if (r.length)                body.push(r);              if (rlength < r.length)                rlength = r.length;              rowIndex++;            });            return rlength;          };          $hrows = collectHeadRows($table);          var colcount = CollectPdfmakeData($hrows, 'th,td', $hrows.length);          for (var i = widths.length; i < colcount; i++)            widths.push('*');          // Data          $rows = collectRows($table);          colcount = CollectPdfmakeData($rows, 'td', $hrows.length + $rows.length);          for (var i = widths.length; i < colcount; i++)            widths.push('*');                  docDefinition.content.push({ table: {                                          headerRows: $hrows.length ? $hrows.length : null,                                          widths: widths,                                          body: body                                        },                                        layout: {                                          layout: 'noBorders',                                          hLineStyle: function (i, node) { return 0; },                                          vLineWidth: function (i, node) { return 0; },                                          hLineColor: function (i, node) { return i < node.table.headerRows ?                                                         defaults.pdfmake.docDefinition.styles.header.background :                                                         defaults.pdfmake.docDefinition.styles.alternateRow.fillColor; },                                          vLineColor: function (i, node) { return i < node.table.headerRows ?                                                         defaults.pdfmake.docDefinition.styles.header.background :                                                         defaults.pdfmake.docDefinition.styles.alternateRow.fillColor; },                                          fillColor: function (rowIndex, node, columnIndex) { return (rowIndex % 2 === 0) ?                                                         defaults.pdfmake.docDefinition.styles.alternateRow.fillColor :                                                         null; }                                        },                                        pageBreak: docDefinition.content.length ? "before" : undefined                                     });        }); // ...for each table        if (typeof pdfMake !== 'undefined' && typeof pdfMake.createPdf !== 'undefined') {          pdfMake.fonts = {            Roboto: {              normal: 'Roboto-Regular.ttf',              bold: 'Roboto-Medium.ttf',              italics: 'Roboto-Italic.ttf',              bolditalics: 'Roboto-MediumItalic.ttf'            }          };          if (pdfMake.vfs.hasOwnProperty ('Mirza-Regular.ttf')) {            docDefinition.defaultStyle.font = 'Mirza';            $.extend(true, pdfMake.fonts, {Mirza: {normal:      'Mirza-Regular.ttf',                                                   bold:        'Mirza-Bold.ttf',                                                   italics:     'Mirza-Medium.ttf',                                                   bolditalics: 'Mirza-SemiBold.ttf'                                                   }});          }          else if (pdfMake.vfs.hasOwnProperty ('gbsn00lp.ttf')) {            docDefinition.defaultStyle.font = 'gbsn00lp';            $.extend(true, pdfMake.fonts, {gbsn00lp: {normal:      'gbsn00lp.ttf',                                                      bold:        'gbsn00lp.ttf',                                                      italics:     'gbsn00lp.ttf',                                                      bolditalics: 'gbsn00lp.ttf'                                                      }});          }          else if (pdfMake.vfs.hasOwnProperty ('ZCOOLXiaoWei-Regular.ttf')) {            docDefinition.defaultStyle.font = 'ZCOOLXiaoWei';            $.extend(true, pdfMake.fonts, {ZCOOLXiaoWei: {normal:      'ZCOOLXiaoWei-Regular.ttf',                                                          bold:        'ZCOOLXiaoWei-Regular.ttf',                                                          italics:     'ZCOOLXiaoWei-Regular.ttf',                                                          bolditalics: 'ZCOOLXiaoWei-Regular.ttf'                                                          }});          }          $.extend(true, pdfMake.fonts, defaults.pdfmake.fonts);          pdfMake.createPdf(docDefinition).getBuffer(function (buffer) {            saveToFile(buffer, defaults.fileName + '.pdf', 'application/pdf', '', '', false);          });        }      } else if (defaults.jspdf.autotable === false) {        // pdf output using jsPDF's core html support        var addHtmlOptions = {          dim: {            w: getPropertyUnitValue($(el).first().get(0), 'width', 'mm'),            h: getPropertyUnitValue($(el).first().get(0), 'height', 'mm')          },          pagesplit: false        };        var doc = new jsPDF(defaults.jspdf.orientation, defaults.jspdf.unit, defaults.jspdf.format);        doc.addHTML($(el).first(),          defaults.jspdf.margins.left,          defaults.jspdf.margins.top,          addHtmlOptions,          function () {            jsPdfOutput(doc, false);          });        //delete doc;      } else {        // pdf output using jsPDF AutoTable plugin        // https://github.com/simonbengtsson/jsPDF-AutoTable        var teOptions = defaults.jspdf.autotable.tableExport;        // When setting jspdf.format to 'bestfit' tableExport tries to choose        // the minimum required paper format and orientation in which the table        // (or tables in multitable mode) completely fits without column adjustment        if (typeof defaults.jspdf.format === 'string' && defaults.jspdf.format.toLowerCase() === 'bestfit') {          var rk = '', ro = '';          var mw = 0;          $(el).each(function () {            if (isVisible($(this))) {              var w = getPropertyUnitValue($(this).get(0), 'width', 'pt');              if (w > mw) {                if (w > pageFormats.a0[0]) {                  rk = 'a0';                  ro = 'l';                }                for (var key in pageFormats) {                  if (pageFormats.hasOwnProperty(key)) {                    if (pageFormats[key][1] > w) {                      rk = key;                      ro = 'l';                      if (pageFormats[key][0] > w)                        ro = 'p';                    }                  }                }                mw = w;              }            }          });          defaults.jspdf.format = (rk === '' ? 'a4' : rk);          defaults.jspdf.orientation = (ro === '' ? 'w' : ro);        }        // The jsPDF doc object is stored in defaults.jspdf.autotable.tableExport,        // thus it can be accessed from any callback function        if (teOptions.doc == null) {          teOptions.doc = new jsPDF(defaults.jspdf.orientation,            defaults.jspdf.unit,            defaults.jspdf.format);          teOptions.wScaleFactor = 1;          teOptions.hScaleFactor = 1;          if (typeof defaults.jspdf.onDocCreated === 'function')            defaults.jspdf.onDocCreated(teOptions.doc);        }        if (teOptions.outputImages === true)          teOptions.images = {};        if (typeof teOptions.images !== 'undefined') {          $(el).filter(function () {            return isVisible($(this));          }).each(function () {            var rowCount = 0;            ranges = [];            if (defaults.exportHiddenCells === false) {              $hiddenTableElements = $(this).find('tr, th, td').filter(':hidden');              checkCellVisibilty = $hiddenTableElements.length > 0;            }            $hrows = collectHeadRows($(this));            $rows = collectRows($(this));            $($rows).each(function () {              ForEachVisibleCell(this, 'td,th', $hrows.length + rowCount, $hrows.length + $rows.length,                function (cell) {                  collectImages(cell, $(cell).children(), teOptions);                });              rowCount++;            });          });          $hrows = [];          $rows = [];        }        loadImages(teOptions, function () {          $(el).filter(function () {            return isVisible($(this));          }).each(function () {            var colKey;            rowIndex = 0;            ranges = [];            if (defaults.exportHiddenCells === false) {              $hiddenTableElements = $(this).find('tr, th, td').filter(':hidden');              checkCellVisibilty = $hiddenTableElements.length > 0;            }            colNames = GetColumnNames(this);            teOptions.columns = [];            teOptions.rows = [];            teOptions.teCells = {};            // onTable: optional callback function for every matching table that can be used            // to modify the tableExport options or to skip the output of a particular table            // if the table selector targets multiple tables            if (typeof teOptions.onTable === 'function')              if (teOptions.onTable($(this), defaults) === false)                return true; // continue to next iteration step (table)            // each table works with an own copy of AutoTable options            defaults.jspdf.autotable.tableExport = null;  // avoid deep recursion error            var atOptions = $.extend(true, {}, defaults.jspdf.autotable);            defaults.jspdf.autotable.tableExport = teOptions;            atOptions.margin = {};            $.extend(true, atOptions.margin, defaults.jspdf.margins);            atOptions.tableExport = teOptions;            // Fix jsPDF Autotable's row height calculation            if (typeof atOptions.beforePageContent !== 'function') {              atOptions.beforePageContent = function (data) {                if (data.pageCount === 1) {                  var all = data.table.rows.concat(data.table.headerRow);                  $.each(all, function () {                    var row = this;                    if (row.height > 0) {                      row.height += (2 - FONT_ROW_RATIO) / 2 * row.styles.fontSize;                      data.table.height += (2 - FONT_ROW_RATIO) / 2 * row.styles.fontSize;                    }                  });                }              };            }            if (typeof atOptions.createdHeaderCell !== 'function') {              // apply some original css styles to pdf header cells              atOptions.createdHeaderCell = function (cell, data) {                // jsPDF AutoTable plugin v2.0.14 fix: each cell needs its own styles object                cell.styles = $.extend({}, data.row.styles);                if (typeof teOptions.columns [data.column.dataKey] !== 'undefined') {                  var col = teOptions.columns [data.column.dataKey];                  if (typeof col.rect !== 'undefined') {                    var rh;                    cell.contentWidth = col.rect.width;                    if (typeof teOptions.heightRatio === 'undefined' || teOptions.heightRatio === 0) {                      if (data.row.raw [data.column.dataKey].rowspan)                        rh = data.row.raw [data.column.dataKey].rect.height / data.row.raw [data.column.dataKey].rowspan;                      else                        rh = data.row.raw [data.column.dataKey].rect.height;                      teOptions.heightRatio = cell.styles.rowHeight / rh;                    }                    rh = data.row.raw [data.column.dataKey].rect.height * teOptions.heightRatio;                    if (rh > cell.styles.rowHeight)                      cell.styles.rowHeight = rh;                  }                  cell.styles.halign = (atOptions.headerStyles.halign === 'inherit') ? 'center' : atOptions.headerStyles.halign;                  cell.styles.valign = atOptions.headerStyles.valign;                  if (typeof col.style !== 'undefined' && col.style.hidden !== true) {                    if (atOptions.headerStyles.halign === 'inherit')                      cell.styles.halign = col.style.align;                    if (atOptions.styles.fillColor === 'inherit')                      cell.styles.fillColor = col.style.bcolor;                    if (atOptions.styles.textColor === 'inherit')                      cell.styles.textColor = col.style.color;                    if (atOptions.styles.fontStyle === 'inherit')                      cell.styles.fontStyle = col.style.fstyle;                  }                }              };            }            if (typeof atOptions.createdCell !== 'function') {              // apply some original css styles to pdf table cells              atOptions.createdCell = function (cell, data) {                var tecell = teOptions.teCells [data.row.index + ':' + data.column.dataKey];                cell.styles.halign = (atOptions.styles.halign === 'inherit') ? 'center' : atOptions.styles.halign;                cell.styles.valign = atOptions.styles.valign;                if (typeof tecell !== 'undefined' && typeof tecell.style !== 'undefined' && tecell.style.hidden !== true) {                  if (atOptions.styles.halign === 'inherit')                    cell.styles.halign = tecell.style.align;                  if (atOptions.styles.fillColor === 'inherit')                    cell.styles.fillColor = tecell.style.bcolor;                  if (atOptions.styles.textColor === 'inherit')                    cell.styles.textColor = tecell.style.color;                  if (atOptions.styles.fontStyle === 'inherit')                    cell.styles.fontStyle = tecell.style.fstyle;                }              };            }            if (typeof atOptions.drawHeaderCell !== 'function') {              atOptions.drawHeaderCell = function (cell, data) {                var colopt = teOptions.columns [data.column.dataKey];                if ((colopt.style.hasOwnProperty('hidden') !== true || colopt.style.hidden !== true) &&                  colopt.rowIndex >= 0)                  return prepareAutoTableText(cell, data, colopt);                else                  return false; // cell is hidden              };            }            if (typeof atOptions.drawCell !== 'function') {              atOptions.drawCell = function (cell, data) {                var tecell = teOptions.teCells [data.row.index + ':' + data.column.dataKey];                var draw2canvas = (typeof tecell !== 'undefined' && tecell.isCanvas);                if (draw2canvas !== true) {                  if (prepareAutoTableText(cell, data, tecell)) {                    teOptions.doc.rect(cell.x, cell.y, cell.width, cell.height, cell.styles.fillStyle);                    if (typeof tecell !== 'undefined' &&                        (typeof tecell.hasUserDefText === 'undefined' || tecell.hasUserDefText !== true) &&                        typeof tecell.elements !== 'undefined' && tecell.elements.length) {                      var hScale = cell.height / tecell.rect.height;                      if (hScale > teOptions.hScaleFactor)                        teOptions.hScaleFactor = hScale;                      teOptions.wScaleFactor = cell.width / tecell.rect.width;                      var ySave = cell.textPos.y;                      drawAutotableElements(cell, tecell.elements, teOptions);                      cell.textPos.y = ySave;                      drawAutotableText(cell, tecell.elements, teOptions);                    } else                      drawAutotableText(cell, {}, teOptions);                  }                } else {                  var container = tecell.elements[0];                  var imgId = $(container).attr('data-tableexport-canvas');                  var r = container.getBoundingClientRect();                  cell.width = r.width * teOptions.wScaleFactor;                  cell.height = r.height * teOptions.hScaleFactor;                  data.row.height = cell.height;                  jsPdfDrawImage(cell, container, imgId, teOptions);                }                return false;              };            }            // collect header and data rows            teOptions.headerrows = [];            $hrows = collectHeadRows($(this));            $($hrows).each(function () {              colKey = 0;              teOptions.headerrows[rowIndex] = [];              ForEachVisibleCell(this, 'th,td', rowIndex, $hrows.length,                function (cell, row, col) {                  var obj = getCellStyles(cell);                  obj.title = parseString(cell, row, col);                  obj.key = colKey++;                  obj.rowIndex = rowIndex;                  teOptions.headerrows[rowIndex].push(obj);                });              rowIndex++;            });            if (rowIndex > 0) {              // iterate through last row              var lastrow = rowIndex - 1;              while (lastrow >= 0) {                $.each(teOptions.headerrows[lastrow], function () {                  var obj = this;                  if (lastrow > 0 && this.rect === null)                    obj = teOptions.headerrows[lastrow - 1][this.key];                  if (obj !== null && obj.rowIndex >= 0 &&                    (obj.style.hasOwnProperty('hidden') !== true || obj.style.hidden !== true))                    teOptions.columns.push(obj);                });                lastrow = (teOptions.columns.length > 0) ? -1 : lastrow - 1;              }            }            var rowCount = 0;            $rows = [];            $rows = collectRows($(this));            $($rows).each(function () {              var rowData = [];              colKey = 0;              ForEachVisibleCell(this, 'td,th', rowIndex, $hrows.length + $rows.length,                function (cell, row, col) {                  var obj;                  if (typeof teOptions.columns[colKey] === 'undefined') {                    // jsPDF-Autotable needs columns. Thus define hidden ones for tables without thead                    obj = {                      title: '',                      key: colKey,                      style: {                        hidden: true                      }                    };                    teOptions.columns.push(obj);                  }                  rowData.push(parseString(cell, row, col));                  if (typeof cell !== 'undefined' && cell !== null) {                    obj = getCellStyles(cell);                    obj.isCanvas = cell.hasAttribute('data-tableexport-canvas');                    obj.elements = obj.isCanvas ? $(cell) : $(cell).children();                    if(typeof $(cell).data('teUserDefText') !== 'undefined')                      obj.hasUserDefText = true;                    teOptions.teCells [rowCount + ':' + colKey++] = obj;                  } else {                    obj = $.extend(true, {}, teOptions.teCells [rowCount + ':' + (colKey - 1)]);                    obj.colspan = -1;                    teOptions.teCells [rowCount + ':' + colKey++] = obj;                  }                });              if (rowData.length) {                teOptions.rows.push(rowData);                rowCount++;              }              rowIndex++;            });            // onBeforeAutotable: optional callback function before calling            // jsPDF AutoTable that can be used to modify the AutoTable options            if (typeof teOptions.onBeforeAutotable === 'function')              teOptions.onBeforeAutotable($(this), teOptions.columns, teOptions.rows, atOptions);            teOptions.doc.autoTable(teOptions.columns, teOptions.rows, atOptions);            // onAfterAutotable: optional callback function after returning            // from jsPDF AutoTable that can be used to modify the AutoTable options            if (typeof teOptions.onAfterAutotable === 'function')              teOptions.onAfterAutotable($(this), atOptions);            // set the start position for the next table (in case there is one)            defaults.jspdf.autotable.startY = teOptions.doc.autoTableEndPosY() + atOptions.margin.top;          });          jsPdfOutput(teOptions.doc, (typeof teOptions.images !== 'undefined' && jQuery.isEmptyObject(teOptions.images) === false));          if (typeof teOptions.headerrows !== 'undefined')            teOptions.headerrows.length = 0;          if (typeof teOptions.columns !== 'undefined')            teOptions.columns.length = 0;          if (typeof teOptions.rows !== 'undefined')            teOptions.rows.length = 0;          delete teOptions.doc;          teOptions.doc = null;        });      }    }    function collectHeadRows ($table) {      var result = [];      findTableElements($table, 'thead').each(function () {        result.push.apply(result, findTableElements($(this), defaults.theadSelector).toArray());      });      return result;    }    function collectRows ($table) {      var result = [];      findTableElements($table, 'tbody').each(function () {        result.push.apply(result, findTableElements($(this), defaults.tbodySelector).toArray());      });      if (defaults.tfootSelector.length) {        findTableElements($table, 'tfoot').each(function () {          result.push.apply(result, findTableElements($(this), defaults.tfootSelector).toArray());        });      }      return result;    }    function findTableElements ($parent, selector) {      var parentSelector = $parent[0].tagName;      var parentLevel = $parent.parents(parentSelector).length;      return $parent.find(selector).filter(function () {        return parentLevel === $(this).closest(parentSelector).parents(parentSelector).length;      });    }    function GetColumnNames (table) {      var result = [];      var maxCols = 0;      var row = 0;      var col = 0;      $(table).find('thead').first().find('th').each(function (index, el) {        var hasDataField = $(el).attr('data-field') !== undefined;        if (typeof el.parentNode.rowIndex !== 'undefined' && row !== el.parentNode.rowIndex) {          row = el.parentNode.rowIndex;          col = 0;          maxCols = 0;        }        var colSpan = getColspan(el);        maxCols += (colSpan ? colSpan : 1);        while (col < maxCols) {          result[col] = (hasDataField ? $(el).attr('data-field') : col.toString());          col++;        }      });      return result;    }    function isVisible ($element) {      var isRow = typeof $element[0].rowIndex !== 'undefined';      var isCell = isRow === false && typeof $element[0].cellIndex !== 'undefined';      var isElementVisible = (isCell || isRow) ? isTableElementVisible($element) : $element.is(':visible');      var tableexportDisplay = $element.attr('data-tableexport-display');      if (isCell && tableexportDisplay !== 'none' && tableexportDisplay !== 'always') {        $element = $($element[0].parentNode);        isRow = typeof $element[0].rowIndex !== 'undefined';        tableexportDisplay = $element.attr('data-tableexport-display');      }      if (isRow && tableexportDisplay !== 'none' && tableexportDisplay !== 'always') {        tableexportDisplay = $element.closest('table').attr('data-tableexport-display');      }      return tableexportDisplay !== 'none' && (isElementVisible === true || tableexportDisplay === 'always');    }    function isTableElementVisible ($element) {      var hiddenEls = [];      if (checkCellVisibilty) {        hiddenEls = $hiddenTableElements.filter(function () {          var found = false;          if (this.nodeType === $element[0].nodeType) {            if (typeof this.rowIndex !== 'undefined' && this.rowIndex === $element[0].rowIndex)              found = true;            else if (typeof this.cellIndex !== 'undefined' && this.cellIndex === $element[0].cellIndex &&              typeof this.parentNode.rowIndex !== 'undefined' &&              typeof $element[0].parentNode.rowIndex !== 'undefined' &&              this.parentNode.rowIndex === $element[0].parentNode.rowIndex)              found = true;          }          return found;        });      }      return (checkCellVisibilty === false || hiddenEls.length === 0);    }    function isColumnIgnored ($cell, rowLength, colIndex) {      var result = false;      if (isVisible($cell)) {        if (defaults.ignoreColumn.length > 0) {          if ($.inArray(colIndex, defaults.ignoreColumn) !== -1 ||            $.inArray(colIndex - rowLength, defaults.ignoreColumn) !== -1 ||            (colNames.length > colIndex && typeof colNames[colIndex] !== 'undefined' &&              $.inArray(colNames[colIndex], defaults.ignoreColumn) !== -1))            result = true;        }      } else        result = true;      return result;    }    function ForEachVisibleCell (tableRow, selector, rowIndex, rowCount, cellcallback) {      if (typeof (cellcallback) === 'function') {        var ignoreRow = false;        if (typeof defaults.onIgnoreRow === 'function')          ignoreRow = defaults.onIgnoreRow($(tableRow), rowIndex);        if (ignoreRow === false &&          (defaults.ignoreRow.length === 0 ||            ($.inArray(rowIndex, defaults.ignoreRow) === -1 &&              $.inArray(rowIndex - rowCount, defaults.ignoreRow) === -1)) &&          isVisible($(tableRow))) {          var $cells = findTableElements($(tableRow), selector);          var cellsCount = $cells.length;          var colCount = 0;          var colIndex = 0;          $cells.each(function () {            var $cell = $(this);            var colspan = getColspan(this);            var rowspan = getRowspan(this);            var c;            // Skip ranges            $.each(ranges, function () {              var range = this;              if (rowIndex > range.s.r && rowIndex <= range.e.r && colCount >= range.s.c && colCount <= range.e.c) {                for (c = 0; c <= range.e.c - range.s.c; ++c) {                  cellsCount++;                  colIndex++;                  cellcallback(null, rowIndex, colCount++);                }              }            });            // Handle span's            if (rowspan || colspan) {              rowspan = rowspan || 1;              colspan = colspan || 1;              ranges.push({                s: {r: rowIndex, c: colCount},                e: {r: rowIndex + rowspan - 1, c: colCount + colspan - 1}              });            }            if (isColumnIgnored($cell, cellsCount, colIndex++) === false) {              // Handle value              cellcallback(this, rowIndex, colCount++);            }            // Handle colspan            if (colspan > 1) {              for (c = 0; c < colspan - 1; ++c) {                colIndex++;                cellcallback(null, rowIndex, colCount++);              }            }          });          // Skip ranges          $.each(ranges, function () {            var range = this;            if (rowIndex >= range.s.r && rowIndex <= range.e.r && colCount >= range.s.c && colCount <= range.e.c) {              for (c = 0; c <= range.e.c - range.s.c; ++c) {                cellcallback(null, rowIndex, colCount++);              }            }          });        }      }    }    function jsPdfDrawImage (cell, container, imgId, teOptions) {      if (typeof teOptions.images !== 'undefined') {        var image = teOptions.images[imgId];        if (typeof image !== 'undefined') {          var r = container.getBoundingClientRect();          var arCell = cell.width / cell.height;          var arImg = r.width / r.height;          var imgWidth = cell.width;          var imgHeight = cell.height;          var px2pt = 0.264583 * 72 / 25.4;          var uy = 0;          if (arImg <= arCell) {            imgHeight = Math.min(cell.height, r.height);            imgWidth = r.width * imgHeight / r.height;          } else if (arImg > arCell) {            imgWidth = Math.min(cell.width, r.width);            imgHeight = r.height * imgWidth / r.width;          }          imgWidth *= px2pt;          imgHeight *= px2pt;          if (imgHeight < cell.height)            uy = (cell.height - imgHeight) / 2;          try {            teOptions.doc.addImage(image.src, cell.textPos.x, cell.y + uy, imgWidth, imgHeight);          } catch (e) {            // TODO: IE -> convert png to jpeg          }          cell.textPos.x += imgWidth;        }      }    }    function jsPdfOutput (doc, hasimages) {      if (defaults.outputMode === 'string')        return doc.output();      if (defaults.outputMode === 'base64')        return base64encode(doc.output());      if (defaults.outputMode === 'window') {        window.URL = window.URL || window.webkitURL;        window.open(window.URL.createObjectURL(doc.output('blob')));        return;      }      try {        var blob = doc.output('blob');        saveAs(blob, defaults.fileName + '.pdf');      } catch (e) {        downloadFile(defaults.fileName + '.pdf',          'data:application/pdf' + (hasimages ? '' : ';base64') + ',',          hasimages ? doc.output('blob') : doc.output());      }    }    function prepareAutoTableText (cell, data, cellopt) {      var cs = 0;      if (typeof cellopt !== 'undefined')        cs = cellopt.colspan;      if (cs >= 0) {        // colspan handling        var cellWidth = cell.width;        var textPosX = cell.textPos.x;        var i = data.table.columns.indexOf(data.column);        for (var c = 1; c < cs; c++) {          var column = data.table.columns[i + c];          cellWidth += column.width;        }        if (cs > 1) {          if (cell.styles.halign === 'right')            textPosX = cell.textPos.x + cellWidth - cell.width;          else if (cell.styles.halign === 'center')            textPosX = cell.textPos.x + (cellWidth - cell.width) / 2;        }        cell.width = cellWidth;        cell.textPos.x = textPosX;        if (typeof cellopt !== 'undefined' && cellopt.rowspan > 1)          cell.height = cell.height * cellopt.rowspan;        // fix jsPDF's calculation of text position        if (cell.styles.valign === 'middle' || cell.styles.valign === 'bottom') {          var splittedText = typeof cell.text === 'string' ? cell.text.split(/\r\n|\r|\n/g) : cell.text;          var lineCount = splittedText.length || 1;          if (lineCount > 2)            cell.textPos.y -= ((2 - FONT_ROW_RATIO) / 2 * data.row.styles.fontSize) * (lineCount - 2) / 3;        }        return true;      } else        return false; // cell is hidden (colspan = -1), don't draw it    }    function collectImages (cell, elements, teOptions) {      if (typeof cell !== 'undefined' && cell !== null) {        if (cell.hasAttribute('data-tableexport-canvas')) {          var imgId = new Date().getTime();          $(cell).attr('data-tableexport-canvas', imgId);          teOptions.images[imgId] = {            url: '[data-tableexport-canvas="' + imgId + '"]',            src: null          };        } else if (elements !== 'undefined' && elements != null) {          elements.each(function () {            if ($(this).is('img')) {              var imgId = strHashCode(this.src);              teOptions.images[imgId] = {                url: this.src,                src: this.src              };            }            collectImages(cell, $(this).children(), teOptions);          });        }      }    }    function loadImages (teOptions, callback) {      var imageCount = 0;      var pendingCount = 0;      function done () {        callback(imageCount);      }      function loadImage (image) {        if (image.url) {          if (!image.src) {            var $imgContainer = $(image.url);            if ($imgContainer.length) {              imageCount = ++pendingCount;              html2canvas($imgContainer[0]).then(function (canvas) {                image.src = canvas.toDataURL('image/png');                if (!--pendingCount)                  done();              });            }          } else {            var img = new Image();            imageCount = ++pendingCount;            img.crossOrigin = 'Anonymous';            img.onerror = img.onload = function () {              if (img.complete) {                if (img.src.indexOf('data:image/') === 0) {                  img.width = image.width || img.width || 0;                  img.height = image.height || img.height || 0;                }                if (img.width + img.height) {                  var canvas = document.createElement('canvas');                  var ctx = canvas.getContext('2d');                  canvas.width = img.width;                  canvas.height = img.height;                  ctx.drawImage(img, 0, 0);                  image.src = canvas.toDataURL('image/png');                }              }              if (!--pendingCount)                done();            };            img.src = image.url;          }        }      }      if (typeof teOptions.images !== 'undefined') {        for (var i in teOptions.images)          if (teOptions.images.hasOwnProperty(i))            loadImage(teOptions.images[i]);      }      return pendingCount || done();    }    function drawAutotableElements (cell, elements, teOptions) {      elements.each(function () {        if ($(this).is('div')) {          var bcolor = rgb2array(getStyle(this, 'background-color'), [255, 255, 255]);          var lcolor = rgb2array(getStyle(this, 'border-top-color'), [0, 0, 0]);          var lwidth = getPropertyUnitValue(this, 'border-top-width', defaults.jspdf.unit);          var r = this.getBoundingClientRect();          var ux = this.offsetLeft * teOptions.wScaleFactor;          var uy = this.offsetTop * teOptions.hScaleFactor;          var uw = r.width * teOptions.wScaleFactor;          var uh = r.height * teOptions.hScaleFactor;          teOptions.doc.setDrawColor.apply(undefined, lcolor);          teOptions.doc.setFillColor.apply(undefined, bcolor);          teOptions.doc.setLineWidth(lwidth);          teOptions.doc.rect(cell.x + ux, cell.y + uy, uw, uh, lwidth ? 'FD' : 'F');        } else if ($(this).is('img')) {          var imgId = strHashCode(this.src);          jsPdfDrawImage(cell, this, imgId, teOptions);        }        drawAutotableElements(cell, $(this).children(), teOptions);      });    }    function drawAutotableText (cell, texttags, teOptions) {      if (typeof teOptions.onAutotableText === 'function') {        teOptions.onAutotableText(teOptions.doc, cell, texttags);      } else {        var x = cell.textPos.x;        var y = cell.textPos.y;        var style = {halign: cell.styles.halign, valign: cell.styles.valign};        if (texttags.length) {          var tag = texttags[0];          while (tag.previousSibling)            tag = tag.previousSibling;          var b = false, i = false;          while (tag) {            var txt = tag.innerText || tag.textContent || '';            var leadingspace = (txt.length && txt[0] === ' ') ? ' ' : '';            var trailingspace = (txt.length > 1 && txt[txt.length - 1] === ' ') ? ' ' : '';            if (defaults.preserve.leadingWS !== true)              txt = leadingspace + trimLeft(txt);            if (defaults.preserve.trailingWS !== true)              txt = trimRight(txt) + trailingspace;            if ($(tag).is('br')) {              x = cell.textPos.x;              y += teOptions.doc.internal.getFontSize();            }            if ($(tag).is('b'))              b = true;            else if ($(tag).is('i'))              i = true;            if (b || i)              teOptions.doc.setFontType((b && i) ? 'bolditalic' : b ? 'bold' : 'italic');            var w = teOptions.doc.getStringUnitWidth(txt) * teOptions.doc.internal.getFontSize();            if (w) {              if (cell.styles.overflow === 'linebreak' &&                x > cell.textPos.x && (x + w) > (cell.textPos.x + cell.width)) {                var chars = '.,!%*;:=-';                if (chars.indexOf(txt.charAt(0)) >= 0) {                  var s = txt.charAt(0);                  w = teOptions.doc.getStringUnitWidth(s) * teOptions.doc.internal.getFontSize();                  if ((x + w) <= (cell.textPos.x + cell.width)) {                    teOptions.doc.autoTableText(s, x, y, style);                    txt = txt.substring(1, txt.length);                  }                  w = teOptions.doc.getStringUnitWidth(txt) * teOptions.doc.internal.getFontSize();                }                x = cell.textPos.x;                y += teOptions.doc.internal.getFontSize();              }              if (cell.styles.overflow !== 'visible') {                while (txt.length && (x + w) > (cell.textPos.x + cell.width)) {                  txt = txt.substring(0, txt.length - 1);                  w = teOptions.doc.getStringUnitWidth(txt) * teOptions.doc.internal.getFontSize();                }              }              teOptions.doc.autoTableText(txt, x, y, style);              x += w;            }            if (b || i) {              if ($(tag).is('b'))                b = false;              else if ($(tag).is('i'))                i = false;              teOptions.doc.setFontType((!b && !i) ? 'normal' : b ? 'bold' : 'italic');            }            tag = tag.nextSibling;          }          cell.textPos.x = x;          cell.textPos.y = y;        } else {          teOptions.doc.autoTableText(cell.text, cell.textPos.x, cell.textPos.y, style);        }      }    }    function escapeRegExp (string) {      return string == null ? '' : string.toString().replace(/([.*+?^=!:${}()|\[\]\/\\])/g, '\\$1');    }    function replaceAll (string, find, replace) {      return string == null ? '' : string.toString().replace(new RegExp(escapeRegExp(find), 'g'), replace);    }    function trimLeft (string) {      return string == null ? '' : string.toString().replace(/^\s+/, '');    }    function trimRight (string) {      return string == null ? '' : string.toString().replace(/\s+$/, '');    }    function parseDateUTC (s) {      if (defaults.date.html.length === 0)        return false;      defaults.date.pattern.lastIndex = 0;      var match = defaults.date.pattern.exec(s);      if (match == null)        return false;      var y = +match[defaults.date.match_y];      if (y < 0 || y > 8099) return false;      var m = match[defaults.date.match_m] * 1;      var d = match[defaults.date.match_d] * 1;      if (!isFinite(d)) return false;      var o = new Date(y, m - 1, d, 0, 0, 0);      if (o.getFullYear() === y && o.getMonth() === (m - 1) && o.getDate() === d)        return new Date(Date.UTC(y, m - 1, d, 0, 0, 0));      else        return false;    }    function parseNumber (value) {      value = value || '0';      if ('' !== defaults.numbers.html.thousandsSeparator)        value = replaceAll(value, defaults.numbers.html.thousandsSeparator, '');      if ('.' !== defaults.numbers.html.decimalMark)        value = replaceAll(value, defaults.numbers.html.decimalMark, '.');      return typeof value === 'number' || jQuery.isNumeric(value) !== false ? value : false;    }    function parsePercent (value) {      if (value.indexOf('%') > -1) {        value = parseNumber(value.replace(/%/g, ''));        if (value !== false)          value = value / 100;      } else        value = false;      return value;    }    function parseString (cell, rowIndex, colIndex, cellInfo) {      var result = '';      var cellType = 'text';      if (cell !== null) {        var $cell = $(cell);        var htmlData;        $cell.removeData('teUserDefText');        if ($cell[0].hasAttribute('data-tableexport-canvas')) {          htmlData = '';        } else if ($cell[0].hasAttribute('data-tableexport-value')) {          htmlData = $cell.attr('data-tableexport-value');          htmlData = htmlData ? htmlData + '' : '';          $cell.data('teUserDefText', 1);        } else {          htmlData = $cell.html();          if (typeof defaults.onCellHtmlData === 'function') {            htmlData = defaults.onCellHtmlData($cell, rowIndex, colIndex, htmlData);            $cell.data('teUserDefText', 1);          }          else if (htmlData !== '') {            var html = $.parseHTML(htmlData);            var inputidx = 0;            var selectidx = 0;            htmlData = '';            $.each(html, function () {              if ($(this).is('input')) {                htmlData += $cell.find('input').eq(inputidx++).val();              }              else if ($(this).is('select')) {                htmlData += $cell.find('select option:selected').eq(selectidx++).text();              }              else if ($(this).is('br')) {                htmlData += '<br>';              }              else {                if (typeof $(this).html() === 'undefined')                  htmlData += $(this).text();                else if (jQuery().bootstrapTable === undefined ||                  ($(this).hasClass('fht-cell') === false &&  // BT 4                    $(this).hasClass('filterControl') === false &&                    $cell.parents('.detail-view').length === 0))                  htmlData += $(this).html();                if ($(this).is('a')) {                  var href = $cell.find('a').attr('href') || '';                  if (typeof defaults.onCellHtmlHyperlink === 'function')                    result += defaults.onCellHtmlHyperlink($cell, rowIndex, colIndex, href, htmlData);                  else if (defaults.htmlHyperlink === 'href')                    result += href;                  else // 'content'                    result += htmlData;                  htmlData = '';                }              }            });          }        }        if (htmlData && htmlData !== '' && defaults.htmlContent === true) {          result = $.trim(htmlData);        } else if (htmlData && htmlData !== '') {          var cellFormat = $cell.attr('data-tableexport-cellformat');          if (cellFormat !== '') {            var text = htmlData.replace(/\n/g, '\u2028').replace(/(<\s*br([^>]*)>)/gi, '\u2060');            var obj = $('<div/>').html(text).contents();            var number = false;            text = '';            $.each(obj.text().split('\u2028'), function (i, v) {              if (i > 0)                text += ' ';              if (defaults.preserve.leadingWS !== true)                v = trimLeft(v);              text += (defaults.preserve.trailingWS !== true) ? trimRight(v) : v;            });            $.each(text.split('\u2060'), function (i, v) {              if (i > 0)                result += '\n';              if (defaults.preserve.leadingWS !== true)                v = trimLeft(v);              if (defaults.preserve.trailingWS !== true)                v = trimRight(v);              result += v.replace(/\u00AD/g, ''); // remove soft hyphens            });            result = result.replace(/\u00A0/g, ' '); // replace nbsp's with spaces            if (defaults.type === 'json' ||              (defaults.type === 'excel' && defaults.mso.fileFormat === 'xmlss') ||              defaults.numbers.output === false) {              number = parseNumber(result);              if (number !== false) {                cellType = 'number';                result = Number(number);              }            } else if (defaults.numbers.html.decimalMark !== defaults.numbers.output.decimalMark ||              defaults.numbers.html.thousandsSeparator !== defaults.numbers.output.thousandsSeparator) {              number = parseNumber(result);              if (number !== false) {                var frac = ('' + number.substr(number < 0 ? 1 : 0)).split('.');                if (frac.length === 1)                  frac[1] = '';                var mod = frac[0].length > 3 ? frac[0].length % 3 : 0;                cellType = 'number';                result = (number < 0 ? '-' : '') +                  (defaults.numbers.output.thousandsSeparator ? ((mod ? frac[0].substr(0, mod) + defaults.numbers.output.thousandsSeparator : '') + frac[0].substr(mod).replace(/(\d{3})(?=\d)/g, '$1' + defaults.numbers.output.thousandsSeparator)) : frac[0]) +                  (frac[1].length ? defaults.numbers.output.decimalMark + frac[1] : '');              }            }          } else            result = htmlData;        }        if (defaults.escape === true) {          //noinspection JSDeprecatedSymbols          result = escape(result);        }        if (typeof defaults.onCellData === 'function') {          result = defaults.onCellData($cell, rowIndex, colIndex, result, cellType);          $cell.data('teUserDefText', 1);        }      }      if (cellInfo !== undefined)        cellInfo.type = cellType;      return result;    }    function preventInjection (str) {      if (str.length > 0 && defaults.preventInjection === true) {        var chars = '=+-@';        if (chars.indexOf(str.charAt(0)) >= 0)          return ('\'' + str);      }      return str;    }    //noinspection JSUnusedLocalSymbols    function hyphenate (a, b, c) {      return b + '-' + c.toLowerCase();    }    function rgb2array (rgb_string, default_result) {      var re = /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/;      var bits = re.exec(rgb_string);      var result = default_result;      if (bits)        result = [parseInt(bits[1]), parseInt(bits[2]), parseInt(bits[3])];      return result;    }    function getCellStyles (cell) {      var a = getStyle(cell, 'text-align');      var fw = getStyle(cell, 'font-weight');      var fs = getStyle(cell, 'font-style');      var f = '';      if (a === 'start')        a = getStyle(cell, 'direction') === 'rtl' ? 'right' : 'left';      if (fw >= 700)        f = 'bold';      if (fs === 'italic')        f += fs;      if (f === '')        f = 'normal';      var result = {        style: {          align: a,          bcolor: rgb2array(getStyle(cell, 'background-color'), [255, 255, 255]),          color: rgb2array(getStyle(cell, 'color'), [0, 0, 0]),          fstyle: f        },        colspan: getColspan(cell),        rowspan: getRowspan(cell)      };      if (cell !== null) {        var r = cell.getBoundingClientRect();        result.rect = {          width: r.width,          height: r.height        };      }      return result;    }    function getColspan (cell) {      var result = $(cell).attr('data-tableexport-colspan');      if (typeof result === 'undefined' && $(cell).is('[colspan]'))        result = $(cell).attr('colspan');      return (parseInt(result) || 0);    }    function getRowspan (cell) {      var result = $(cell).attr('data-tableexport-rowspan');      if (typeof result === 'undefined' && $(cell).is('[rowspan]'))        result = $(cell).attr('rowspan');      return (parseInt(result) || 0);    }    // get computed style property    function getStyle (target, prop) {      try {        if (window.getComputedStyle) { // gecko and webkit          prop = prop.replace(/([a-z])([A-Z])/, hyphenate);  // requires hyphenated, not camel          return window.getComputedStyle(target, null).getPropertyValue(prop);        }        if (target.currentStyle) { // ie          return target.currentStyle[prop];        }        return target.style[prop];      } catch (e) {      }      return '';    }    function getUnitValue (parent, value, unit) {      var baseline = 100;  // any number serves      var temp = document.createElement('div');  // create temporary element      temp.style.overflow = 'hidden';  // in case baseline is set too low      temp.style.visibility = 'hidden';  // no need to show it      parent.appendChild(temp); // insert it into the parent for em, ex and %      temp.style.width = baseline + unit;      var factor = baseline / temp.offsetWidth;      parent.removeChild(temp);  // clean up      return (value * factor);    }    function getPropertyUnitValue (target, prop, unit) {      var value = getStyle(target, prop);  // get the computed style value      var numeric = value.match(/\d+/);  // get the numeric component      if (numeric !== null) {        numeric = numeric[0];  // get the string        return getUnitValue(target.parentElement, numeric, unit);      }      return 0;    }    function xlsxWorkbookToArrayBuffer (s) {      var buf = new ArrayBuffer(s.length);      var view = new Uint8Array(buf);      for (var i = 0; i !== s.length; ++i) view[i] = s.charCodeAt(i) & 0xFF;      return buf;    }    function xlsxTableToSheet (table) {      var ws = ({});      var rows = table.getElementsByTagName('tr');      var sheetRows = 10000000;      var range = {s: {r: 0, c: 0}, e: {r: 0, c: 0}};      var merges = [], midx = 0;      var rowinfo = [];      var _R = 0, R = 0, _C, C, RS, CS;      var elt;      var ssfTable = XLSX.SSF.get_table();      for (; _R < rows.length && R < sheetRows; ++_R) {        var row = rows[_R];        var ignoreRow = false;        if (typeof defaults.onIgnoreRow === 'function')          ignoreRow = defaults.onIgnoreRow($(row), _R);        if (ignoreRow === true ||            (defaults.ignoreRow.length !== 0 &&             ($.inArray(_R, defaults.ignoreRow) !== -1 ||              $.inArray(_R - rows.length, defaults.ignoreRow) !== -1)) ||            isVisible($(row)) === false) {          continue;        }                 var elts = (row.children);        var _CLength = 0;        for (_C = 0; _C < elts.length; ++_C) {          elt = elts[_C];          CS = +getColspan(elt) || 1;          _CLength += CS;        }        var CSOffset = 0;        for (_C = C = 0; _C < elts.length; ++_C) {          elt = elts[_C];          CS = +getColspan(elt) || 1;          var col = _C + CSOffset;          if (isColumnIgnored($(elt), _CLength, col + (col < C ? C - col : 0)))            continue;          CSOffset += CS - 1;          for (midx = 0; midx < merges.length; ++midx) {            var m = merges[midx];            if (m.s.c == C && m.s.r <= R && R <= m.e.r) {              C = m.e.c + 1;              midx = -1;            }          }          if ((RS = +getRowspan(elt)) > 0 || CS > 1)            merges.push({s: {r: R, c: C}, e: {r: R + (RS || 1) - 1, c: C + CS - 1}});          var cellInfo = {type: ''};          var v = parseString(elt, _R, _C + CSOffset, cellInfo);          var o = {t: 's', v: v};          var _t = '';          var cellFormat = $(elt).attr('data-tableexport-cellformat') || '';          if (cellFormat !== '') {            var ssfId = parseInt($(elt).attr('data-tableexport-xlsxformatid') || 0);            if (ssfId === 0 &&              typeof defaults.mso.xslx.formatId.numbers === 'function')              ssfId = defaults.mso.xslx.formatId.numbers($(elt), _R, _C + CSOffset);            if (ssfId === 0 &&              typeof defaults.mso.xslx.formatId.date === 'function')              ssfId = defaults.mso.xslx.formatId.date($(elt), _R, _C + CSOffset);            if (ssfId === 49 || ssfId === '@')              _t = 's';            else if (cellInfo.type === 'number' ||              (ssfId > 0 && ssfId < 14) || (ssfId > 36 && ssfId < 41) || ssfId === 48)              _t = 'n';            else if (cellInfo.type === 'date' ||              (ssfId > 13 && ssfId < 37) || (ssfId > 44 && ssfId < 48) || ssfId === 56)              _t = 'd';          } else            _t = 's';          if (v != null) {            var vd;            if (v.length === 0)              o.t = 'z';            else if (v.trim().length === 0) {            }            else if (_t === 's') {              if ($(elt).find('a').length) {                v = defaults.htmlHyperlink !== 'href' ? v : '';                o = {f: '=HYPERLINK("' + $(elt).find('a').attr('href') + (v.length ? '","' + v : '') + '")'};              }            }            else if (cellInfo.type === 'function')              o = {f: v};            else if (v === 'TRUE')              o = {t: 'b', v: true};            else if (v === 'FALSE')              o = {t: 'b', v: false};            else if (_t === 'n' || isFinite(xlsxToNumber(v, defaults.numbers.output))) { // yes, defaults.numbers.output is right              var vn = xlsxToNumber(v, defaults.numbers.output);              if (ssfId === 0 && typeof defaults.mso.xslx.formatId.numbers !== 'function')                ssfId = defaults.mso.xslx.formatId.numbers;              if (isFinite(vn) || isFinite(v))                o = {                  t: 'n',                  v: (isFinite(vn) ? vn : v),                  z: (typeof ssfId === 'string') ? ssfId : (ssfId in ssfTable ? ssfTable[ssfId] : '0.00')                };            }            else if ((vd = parseDateUTC(v)) !== false || _t === 'd') {              if (ssfId === 0 && typeof defaults.mso.xslx.formatId.date !== 'function')                ssfId = defaults.mso.xslx.formatId.date;              o = {                t: 'd',                v: (vd !== false ? vd : v),                z: (typeof ssfId === 'string') ? ssfId : (ssfId in ssfTable ? ssfTable[ssfId] : 'm/d/yy')              };            }          }          ws[xlsxEncodeCell({c: C, r: R})] = o;          if (range.e.c < C)            range.e.c = C;          C += CS;        }        ++R;      }      if (merges.length) ws['!merges'] = merges;      if (rowinfo.length) ws['!rows'] = rowinfo;      range.e.r = R - 1;      ws['!ref'] = xlsxEncodeRange(range);      if (R >= sheetRows)        ws['!fullref'] = xlsxEncodeRange((range.e.r = rows.length - _R + R - 1, range));      return ws;    }    function xlsxEncodeRow (row) { return '' + (row + 1); }    function xlsxEncodeCol (col) {      var s = '';      for (++col; col; col = Math.floor((col - 1) / 26)) s = String.fromCharCode(((col - 1) % 26) + 65) + s;      return s;    }    function xlsxEncodeCell (cell) { return xlsxEncodeCol(cell.c) + xlsxEncodeRow(cell.r); }    function xlsxEncodeRange (cs, ce) {      if (typeof ce === 'undefined' || typeof ce === 'number') {        return xlsxEncodeRange(cs.s, cs.e);      }      if (typeof cs !== 'string') cs = xlsxEncodeCell((cs));      if (typeof ce !== 'string') ce = xlsxEncodeCell((ce));      return cs === ce ? cs : cs + ':' + ce;    }    function xlsxToNumber (s, numbersFormat) {      var v = Number(s);      if (isFinite(v)) return v;      var wt = 1;      var ss = s;      if ('' !== numbersFormat.thousandsSeparator)        ss = ss.replace(new RegExp('([\\d])' + numbersFormat.thousandsSeparator + '([\\d])', 'g'), '$1$2');      if ('.' !== numbersFormat.decimalMark)        ss = ss.replace(new RegExp('([\\d])' + numbersFormat.decimalMark + '([\\d])', 'g'), '$1.$2');      ss = ss.replace(/[$]/g, '').replace(/[%]/g, function () {        wt *= 100;        return '';      });      if (isFinite(v = Number(ss))) return v / wt;      ss = ss.replace(/[(](.*)[)]/, function ($$, $1) {        wt = -wt;        return $1;      });      if (isFinite(v = Number(ss))) return v / wt;      return v;    }    function strHashCode (str) {      var hash = 0, i, chr, len;      if (str.length === 0) return hash;      for (i = 0, len = str.length; i < len; i++) {        chr = str.charCodeAt(i);        hash = ((hash << 5) - hash) + chr;        hash |= 0; // Convert to 32bit integer      }      return hash;    }    function saveToFile (data, fileName, type, charset, encoding, bom) {      var saveIt = true;      if (typeof defaults.onBeforeSaveToFile === 'function') {        saveIt = defaults.onBeforeSaveToFile(data, fileName, type, charset, encoding);        if (typeof saveIt !== 'boolean')          saveIt = true;      }      if (saveIt) {        try {          blob = new Blob([data], {type: type + ';charset=' + charset});          saveAs(blob, fileName, bom === false);          if (typeof defaults.onAfterSaveToFile === 'function')            defaults.onAfterSaveToFile(data, fileName);        } catch (e) {          downloadFile(fileName,            'data:' + type +            (charset.length ? ';charset=' + charset : '') +            (encoding.length ? ';' + encoding : '') + ',',            (bom ? ('\ufeff' + data) : data));        }      }    }    function downloadFile (filename, header, data) {      var ua = window.navigator.userAgent;      if (filename !== false && window.navigator.msSaveOrOpenBlob) {        //noinspection JSUnresolvedFunction        window.navigator.msSaveOrOpenBlob(new Blob([data]), filename);      } else if (filename !== false && (ua.indexOf('MSIE ') > 0 || !!ua.match(/Trident.*rv\:11\./))) {        // Internet Explorer (<= 9) workaround by Darryl (https://github.com/dawiong/tableExport.jquery.plugin)        // based on sampopes answer on http://stackoverflow.com/questions/22317951        // ! Not working for json and pdf format !        var frame = document.createElement('iframe');        if (frame) {          document.body.appendChild(frame);          frame.setAttribute('style', 'display:none');          frame.contentDocument.open('txt/plain', 'replace');          frame.contentDocument.write(data);          frame.contentDocument.close();          frame.contentWindow.focus();          var extension = filename.substr((filename.lastIndexOf('.') + 1));          switch (extension) {            case 'doc':            case 'json':            case 'png':            case 'pdf':            case 'xls':            case 'xlsx':              filename += '.txt';              break;          }          frame.contentDocument.execCommand('SaveAs', true, filename);          document.body.removeChild(frame);        }      } else {        var DownloadLink = document.createElement('a');        if (DownloadLink) {          var blobUrl = null;          DownloadLink.style.display = 'none';          if (filename !== false)            DownloadLink.download = filename;          else            DownloadLink.target = '_blank';          if (typeof data === 'object') {            window.URL = window.URL || window.webkitURL;            var binaryData = [];            binaryData.push(data);            blobUrl = window.URL.createObjectURL(new Blob(binaryData, {type: header}));            DownloadLink.href = blobUrl;          } else if (header.toLowerCase().indexOf('base64,') >= 0)            DownloadLink.href = header + base64encode(data);          else            DownloadLink.href = header + encodeURIComponent(data);          document.body.appendChild(DownloadLink);          if (document.createEvent) {            if (DownloadEvt === null)              DownloadEvt = document.createEvent('MouseEvents');            DownloadEvt.initEvent('click', true, false);            DownloadLink.dispatchEvent(DownloadEvt);          } else if (document.createEventObject)            DownloadLink.fireEvent('onclick');          else if (typeof DownloadLink.onclick === 'function')            DownloadLink.onclick();          setTimeout(function () {            if (blobUrl)              window.URL.revokeObjectURL(blobUrl);            document.body.removeChild(DownloadLink);            if (typeof defaults.onAfterSaveToFile === 'function')              defaults.onAfterSaveToFile(data, filename);          }, 100);        }      }    }    function utf8Encode (text) {      if (typeof text === 'string') {        text = text.replace(/\x0d\x0a/g, '\x0a');        var utftext = '';        for (var n = 0; n < text.length; n++) {          var c = text.charCodeAt(n);          if (c < 128) {            utftext += String.fromCharCode(c);          } else if ((c > 127) && (c < 2048)) {            utftext += String.fromCharCode((c >> 6) | 192);            utftext += String.fromCharCode((c & 63) | 128);          } else {            utftext += String.fromCharCode((c >> 12) | 224);            utftext += String.fromCharCode(((c >> 6) & 63) | 128);            utftext += String.fromCharCode((c & 63) | 128);          }        }        return utftext;      }      return text;    }    function base64encode (input) {      var chr1, chr2, chr3, enc1, enc2, enc3, enc4;      var keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';      var output = '';      var i = 0;      input = utf8Encode(input);      while (i < input.length) {        chr1 = input.charCodeAt(i++);        chr2 = input.charCodeAt(i++);        chr3 = input.charCodeAt(i++);        enc1 = chr1 >> 2;        enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);        enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);        enc4 = chr3 & 63;        if (isNaN(chr2)) {          enc3 = enc4 = 64;        } else if (isNaN(chr3)) {          enc4 = 64;        }        output = output +          keyStr.charAt(enc1) + keyStr.charAt(enc2) +          keyStr.charAt(enc3) + keyStr.charAt(enc4);      }      return output;    }    if (typeof defaults.onTableExportEnd === 'function')      defaults.onTableExportEnd();    return this;  };})(jQuery);
 |