Search
3538 results 71-80
Forum
- 17th Mar 2020How to remove print button from mobile viewJust tried this and it worked. You can adjust the px size to your needs of course. Cool idea to hide some buttons on smaller screens! @media (max-width: 600px) { .hide-for-mobile { display: none } } buttons: [ { extend: "print", className: "hide-for-mobile" } ]
- 8th Mar 2020How can I print all the rows that have "quantity" column value more the zeroused Copy instead of Print with exact same column
- 29th Feb 2020Sollution for print image in your tables.The easy and simple method to print images in tables- $(document).ready(function () { $('#list-member3').DataTable({ dom: 'Bfrtip', buttons: [ { extend: 'print', exportOptions: { stripHtml : false, columns: [0, 1, 2, 3, 4, 5, 6, 7, 8] //specify which column you want to print } } ] }); });
- 28th Feb 2020Add customize function to DataTable print button after initialization?function callback to the print button after initialization. I've
- 26th Feb 2020How do I print on separate pages rows grouped by a value or attribute?I don't believe that's possible as you're reordering and filtering the table during the print process. I suspect you would need to use the pdfmake API and trigger that yourself, possibly from within a Buttons. Colin
- 24th Feb 2020(URGENT) : print preview table cannot align center in Edge and IE11, other browzer canI'm also not clear on how this relates to DataTables? It sounds like an IE print bug. Allan
- 18th Feb 2020Landscape Option Not Showing in Google Chrome Print Preview OptionsThanks I am solved with add style code between head tag @media print{ @page { size: landscape; } }
- 12th Feb 2020Datatables print auto print but keep window openIt seems the only alternative out-the-box is to disable autoPrint, and then the user needs to print themselves - see example here. Otherwise you'll need to modify the library, I'm afraid. Colin
- 11th Feb 2020Function to exclude columns from printcoming through in the print version. So back to
- 8th Jan 2020How to print table with background image watermark in all pages?is there a way to get pages od the print win.doc to add the background image to every page?