Printing without Links
- CH Project Support Limited Carl Holmes
- Mar 26, 2023
- 1 min read
Use the below CSS code in your application to hide either the page or menu links
/*Hide Links when Printing Page*/
@media print {
.kn-table-link {
display: none;
}
}
/*Hide Menus when Printing Page*/
@media print {
.menu-links {
display: none;
}
}
Comments