Print one row->one page
Print one row->one page
lyonzg
Posts: 12Questions: 0Answers: 0
Please,
it is posible to print each row on a separate page (one row- > one page)! Many thanks! Lyon
it is posible to print each row on a separate page (one row- > one page)! Many thanks! Lyon
This discussion has been closed.
Replies
Allan
you are the best! Many thanks!
i tried this, it's ok, but it is posible to show all row without pagination, click on Print button, then print each row separately on printer! The problem is printing, everything else I know! Many thanks! Marko
Allan
when is set "bPaginate": true and "iDisplayLength": 1, it is posible to print all row at once? Or one by one? Many thanks!
Allan
Allan
Marko
this is CSS code:
[code]
table.dataTable tbody tr {
display: block;
page-break-after: always;
}
[/code]
Allan