I use the following codes to create a grid table
oTable = $('#search_table').dataTable({ "bJQueryUI": true, "sScrollY": "200px", "bPaginate": true, //"bAutoWidth": true, "sPaginationType": "full_numbers", "sDom": 'T<"clear">lfrtip', "oTableTools": { "aButtons": [{ "sExtends": "print", "sMessage": "Generated by DataTables" }] }, "aoColumns": [ null, null, null, null, null, null, null, { "bSortable": false }, { "bSortable": false }, null, ] });
Question: I need to print a table that is used in datatable plugins. is there any option to print with the data table plugin.
Thanks in advance...
source share