UNPKG

tableexport.jquery.plugin

Version:
80 lines (74 loc) 4.18 kB
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>HTML table Export</title> <script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.1/bootstrap-table.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.1/extensions/filter-control/bootstrap-table-filter-control.js"></script> <script type="text/javascript" src="../tableExport.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.1/extensions/export/bootstrap-table-export.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.1/extensions/toolbar/bootstrap-table-toolbar.js"></script> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" /> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.1/bootstrap-table.min.css" /> <script type="text/javaScript"> function detailFormatter(index, row) { var html = []; $.each(row, function (key, value) { html.push('<p><b>' + key + ':</b> ' + value + '</p>'); }); return html.join(''); } </script> </head> <body> <a href="#" onclick="$('#table1,#table2').tableExport({type:'excel', mso: { fileFormat:'xmlss', worksheetName: ['Table 1','Table 2'] }, ignoreColumn: [0, 'checkbox'] });"> <br>&nbsp;<b>Click to export to Excel (XML Spreadsheet 2003 file format)</b> </a> <div class="container"> <h1 align="center">Data</h1><br> <table id="table1" data-toggle="table" data-height="600" data-show-toggle="true" data-show-columns="true" data-click-to-select="true" data-detail-view="true" data-detail-formatter="detailFormatter" data-url="tableExport.json"> <thead> <tr> <th data-field="checkbox" data-checkbox="true" > </th> <th data-field="Rank" data-sortable="true" data-filter-control="select" data-visible="true" >Rank </th> <th data-field="Flag" data-sortable="true" data-filter-control="input" data-visible="false" >Flag </th> <th data-field="Country" data-sortable="true" data-filter-control="select" data-visible="true" >Country </th> <th data-field="Population" data-sortable="true" data-filter-control="select" data-visible="false" >Population </th> <th data-field="Date" data-sortable="true" data-filter-control="select" data-visible="true" >Date </th> <th data-field="p_of_world" data-sortable="true" data-filter-control="select" data-visible="false" >% of world </th> <th data-field="Language" data-sortable="true" data-filter-control="select" data-visible="true" >Language </th> </tr> </thead> </table> <br><br> <table id="table2" data-toggle="table" data-pagination="false" data-detail-view="true" data-url="bootstrap3.json"> <thead> <tr> <th data-field="col1" data-sortable="true">Col 1</th> <th data-field="col2" data-sortable="true">Col 2</th> </tr> </thead> </table> </div> </body> </html>