How to print the datatable values using jsp ?
i need to print(hardcopy) of all datatable values in jsp.
I used the javascript function for open printer dialog:
function callsubmit(){
window.print();
window.opener.document.location = window.opener.document.location.href;
window.close();
}
But this option pringing the whole page.but in this case i need datatable values only. I am not able use media="print".Because it is just hiding the section the page.But datatable have scrollbar or pageination this option won't work.
What is the option to print datatable values using jsp ?