Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82257

Print Functionality

$
0
0
http://www.datatables.net/release-datatables/extras/TableTools/bootstrap.html

The App I am developing using DataTables in various places is also using Bootstrap as its framework.
Js looks like this, all linked in correctly.
<script type="text/javascript" language="javascript" src="../style/js/jquery.dataTables.js"></script> 
<script src="../style/js/jquery.dataTables.rowGrouping.js"></script> 
<script src="../style/js/dataTables.bootstrap.js"></script> 

Normal code is
$('#archprop').dataTable( {
	"sDom": "<'row'<''l>T<'searchtbl'f>r>t<'row'<''i><'pgin'p>>",
		}).rowGrouping({bExpandableGrouping: true
	 );
$("#archprop_info").appendTo(".btnplace-newpro");
$("#archprop_length").appendTo(".btn-group-newpro");
$("#archprop_filter").appendTo("#lcmpy");
Removed the .appendTo jquery & above code then replaced it with the code for the Print functionality
$(document).ready( function () {
	$('#archprop').dataTable( {
		"sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
		"oTableTools": {
			"aButtons": [
				"copy",
				"print",
				{
					"sExtends":    "collection",
					"sButtonText": 'Save <span class="caret" />',
					"aButtons":    [ "csv", "xls", "pdf" ]
				}
			]
		}
	} );
} );
Normally code generated will show up. Copy, Print and Save don't even seem to get generated into the HTML - I cannot find it anywhere on the page.

Anyone else have trouble getting this functionality to work?

Viewing all articles
Browse latest Browse all 82257

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>