TableTools printing problem

TableTools printing problem

borisjborisj Posts: 3Questions: 0Answers: 0
edited March 2011 in TableTools
I have problems with printing tables on Windows. I did everything by the book but content which is printed is not ok. It prints only 1 page out of 2. The other content is cut off. I have searched for cause in settings but found nothing.

Then I changed the Scale parameter in Print preview ... and all records appeared (!). I believe there is problem with multiple page print.

The table settings are:
[code]
oTable = $('#devices_t').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "print",
"sButtonText": "Tiskaj",
"sMessage": "TBP seznam",
"sInfo": "TiskanjeZa tiskanje uporabi funkcijo tiskanja v brskalniku!Izberi Esc za konec.",
"bShowAll": true
}
],
},
"bAutoWidth": false,
"bLengthChange": true,
"oLanguage": {
"sUrl": "/{{=request.application}}/static/dt_si_SI.txt",
},
"bProcessing": false,
"bServerSide": false,
"sAjaxSource": dataurl,
"bInfo": false,
"bPaginate": false,
"aoColumns": [
{ "sTitle": "Servisni status", "bSortable": false, "bSearchable": false, "sWidth": "5%" },
{ "sTitle": "Servisni števec", "bSortable": true, "bSearchable": false, "sWidth": "7%" },
{ "sTitle": "Stroj", "bSortable": true, "sWidth": "12%" },
{ "sTitle": "Opis", "bSortable": true, "sWidth": "36%" },
{ "sTitle": "Št. kosov v intervalu", "bSortable": true, "bSearchable": false, "sWidth": "10%" },
{ "sTitle": "Zastoji v intervalu", "bSortable": true, "bSearchable": false, "sWidth": "10%" },
{ "sTitle": "Št. zastojev", "bSortable": true, "bSearchable": false, "sWidth": "10%" },
{ "sTitle": "Povp. ?as izdelave v intervalu", "bSortable": true, "bSearchable": false, "sWidth": "10%" }
]
} );
[/code]

Anybody have idea to deal with this?
This discussion has been closed.