Hi Alan et al.,
I have a semi-working TableTools implementation that copies and goes to print view but does not save.
I get the 'Save' dropdown menu fine but all the <li> are greyed out which has me thinking it may be a problem with CSS?
Site is using bootstrap 2.0.3, datatables 1.9.4, tabletools 2.1.4
Here's a debug code from the Firefox bookmarklet: http://debug.datatables.net/eyaqog
Here's my initialiazation from php:
<script type="text/javascript">
$(document).ready( function() {
$('#phototable').dataTable( {
"sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
"oTableTools": {
"sSwfPath": "<?php echo PATH_JS; ?>datatables/TableTools/media/swf/copy_csv_xls_pdf.swf",
"aButtons": [
"copy",
"print",
{
"sExtends": "collection",
"sButtonText": 'Save <span class="caret" />',
"aButtons": [ "csv", "xls", "pdf" ]
}
]
}
});
});
</script>
I know the SWF path is working because copying the table works fine. What am I missing?
I have a semi-working TableTools implementation that copies and goes to print view but does not save.
I get the 'Save' dropdown menu fine but all the <li> are greyed out which has me thinking it may be a problem with CSS?
Site is using bootstrap 2.0.3, datatables 1.9.4, tabletools 2.1.4
Here's a debug code from the Firefox bookmarklet: http://debug.datatables.net/eyaqog
Here's my initialiazation from php:
<script type="text/javascript">
$(document).ready( function() {
$('#phototable').dataTable( {
"sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
"oTableTools": {
"sSwfPath": "<?php echo PATH_JS; ?>datatables/TableTools/media/swf/copy_csv_xls_pdf.swf",
"aButtons": [
"copy",
"print",
{
"sExtends": "collection",
"sButtonText": 'Save <span class="caret" />',
"aButtons": [ "csv", "xls", "pdf" ]
}
]
}
});
});
</script>
I know the SWF path is working because copying the table works fine. What am I missing?