0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

DataTables から Excel エクスポート

Posted at

HTML

<!-- data tables -->
<table id="tbl_data" class="display"></table>

Excel エクスポート用ライブラリ

<!-- Excel Export -- -->
<link href="https://cdn.datatables.net/buttons/1.6.2/css/buttons.dataTables.min.css" rel="stylesheet">
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/dataTables.buttons.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.html5.min.js"></script>
<!-- -- Excel Export -->

データの用意

var data = {value:[
	{id:"1",text:"This is test"},
	{id:"2",text:"This is test"},
	{id:"3",text:"This is test"},
]};

データのセット

// data for datatables
var dt_data = new Array();

dt_data = data["value"];

if($.fn.dataTable.isDataTable("#tbl_data")){
	$("#tbl_data").dataTable().fnDestroy();
}

$('#tbl_data')
.css("font-size","10pt")
// .addClass("nowrap")
.dataTable({
	"data": dt_data,
	"dom" : '<flipt><B>', // https://datatables.net/examples/basic_init/dom.html
	"oLanguage": {
		"sSearch": "Table Filter:"
	},
	// Export options
	// https://datatables.net/extensions/buttons/examples/html5/simple.html
	"buttons": [
		{
			extend: 'excel',
			text: 'Export as Excel File',
			exportOptions:{
				columns: [ 0, 1 ],
			}
		}
	],
	"columns": [
		{ "title":"ID", "data": "id" }, 
		{ "title":"Text", "data": "text" }, 
	]
	});

table = $('#tbl_data').DataTable();
return;

結果

image.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?