I made Tabletools to work, although I am struggling with the print mode. Once the button is hit, the print mode is run correctly, only displaying the records shown previously. Within a second, the rest of the data is also shown. Has anyone encountered the same issue? Is it possible that my jQuery code is triggering this action? Thanks in advance.
Asked
Active
Viewed 1,580 times
0
-
would be better if you can share code. – Burak Jul 02 '14 at 17:44
-
@Burak even though I pointed my code to be the issue, it is highly unlikely to be, because I am using an unaltered version of Table Tools js – gabrielacschimidt Jul 02 '14 at 17:53
1 Answers
0
Nevermind guys, I have just found my answer in the functionality site.
$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "print",
"bShowAll": false
}
]
}
} );
} );

gabrielacschimidt
- 76
- 9