Download
Demo
- Overview
- Documents
User Rating: 3.1/5 ( 7 votes)
Your Rating:
HTML Table Export is a jquery plugin that exports HTML Table to JSON, XML, PNG, CSV, TXT, SQL, MS-Word, Ms-Excel, Ms-Powerpoint, PDF
Source: ngiriraj.com
1. INCLUDE JS FILES
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> <script type="text/javascript" src="tableExport.js"> <script type="text/javascript" src="jquery.base64.js"> //PNG Export <script type="text/javascript" src="html2canvas.js"> //PDF Export <script type="text/javascript" src="jspdf/libs/sprintf.js"> <script type="text/javascript" src="jspdf/jspdf.js"> <script type="text/javascript" src="jspdf/libs/base64.js">
2. HTML
<table id="customers" class="table table-striped" > <thead> <tr class='warning'> <th>Country</th> <th>Population</th> <th>Date</th> <th>%ge</th> </tr> </thead> <tbody> <tr> <td>Chinna</td> <td>1,363,480,000</td> <td>March 24, 2014</td> <td>19.1</td> </tr> <tr> <td>India</td> <td>1,241,900,000</td> <td>March 24, 2014</td> <td>17.4</td> </tr> <tr> <td>United States</td> <td>317,746,000</td> <td>March 24, 2014</td> <td>4.44</td> </tr> <tr> <td>Indonesia</td> <td>249,866,000</td> <td>July 1, 2013</td> <td>3.49</td> </tr> <tr> <td>Brazil</td> <td>201,032,714</td> <td>July 1, 2013</td> <td>2.81</td> </tr> </tbody> </table>
3. JAVASCRIPT
$('#tableID').tableExport({type:'pdf',escape:'false'});
Types
{type:'json',escape:'false'} {type:'json',escape:'false',ignoreColumn:'[2,3]'} {type:'json',escape:'true'} {type:'xml',escape:'false'} {type:'sql'} {type:'csv',escape:'false'} {type:'txt',escape:'false'} {type:'excel',escape:'false'} {type:'doc',escape:'false'} {type:'powerpoint',escape:'false'} {type:'png',escape:'false'} {type:'pdf',pdfFontSize:'7',escape:'false'}
4. OPTIONS
separator: ',' ignoreColumn: [2,3], tableName:'yourTableName' type:'csv' pdfFontSize:14 pdfLeftMargin:20 escape:'true' htmlContent:'false' consoleLog:'false'