Target "_blank" (Open menu links on new tab)

I couldn’t find any thing about link opening in new tab.

Also, the printer friendly link should open in the tab and on load it should pop up print . Alternatively , a print button should be displayed.

To set the target of a menu item, you may use MenuItem_Adding server event to set the Target property of the menu item.To change the URL for Printer Friendly you may use Page_Render server event to set the ExportPrintUrl property.To add a “Print” button you may use Page_DataRendered server event to add your button.

https://discourse.hkvstore.com/t/how-to-open-a-page-in-new-tab-from-menu-item-v2021/4052/1

Thanks a lot. Can u help with printer friendly page in new tab?

You may simply put the following code in Startup Script section of current page:

$('a.ew-export-link.ew-print').attr('target','_blank');

$(‘a.ew-export-link.ew-print’).attr(‘target’,‘_blank’);

working ! Thank u