I’m sorry for not replying earlier – my inbox sometimes overflows…
If you enable the print button, it will be visible in all tabs and clicking it will print the active / highlighted tab. You can try adding this to the custom js to select a specific tab when clicking the print button:
jQuery("#dffs_print_btn").removeAttr("onclick").on("click",function(){
spjs.dffs.toggleSelectedTab("name_of_tab");
spjs.dffs.printCurrentTab();
});
Change “name_of_tab” with the “Tab unique ID” of the tab you want to print.
Alexander