Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

export table data to excel in jquery

$( document ).ready(function() {
	$(".export").click(function() {
		var export_type = $(this).data('export-type');		
		$('#data_table').tableExport({
			type : export_type,			
			escape : 'false',
			ignoreColumn: []
		});		
	});
});
Source by www.phpzag.com #
 
PREVIOUS NEXT
Tagged: #export #table #data #excel #jquery
ADD COMMENT
Topic
Name
2+4 =