Mass_update - print log
This commit is contained in:
@@ -1114,3 +1114,16 @@ function sortTextVal(a, b) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
//------------------------------------------
|
||||
// Print DIV
|
||||
//------------------------------------------
|
||||
function printDiv(div) {
|
||||
var divContents = document.getElementById(div).innerHTML;
|
||||
var a = window.open('', '', 'height=500, width=500');
|
||||
a.document.write('<html>');
|
||||
a.document.write('<body > ');
|
||||
a.document.write(divContents);
|
||||
a.document.write('</body></html>');
|
||||
a.document.close();
|
||||
a.print();
|
||||
}
|
||||
Reference in New Issue
Block a user