Can I open print window in same tab?
Can I open print window in same tab?
Chitranshu_Gupta
Posts: 1Questions: 1Answers: 0
var print = {
"extend" : 'print',
"text" : '<i class="fa fa-print" aria-hidden="true" style="color:#636363;"></i><span style="float:right">Print</span>',
titleAttr : 'Print visible rows',
title:title,
exportOptions: {
columns: columnsArray
}
};
This discussion has been closed.
Answers
Not with the built in
print
button. It useswindow.open
to create a new document which it can draw the table into and then dispose of.Allan