Custom Printing
A configurable printing option is available within the AMT web client using the keyboard shortcut Alt + P. This opens a printing window from your browser similar to the default printing window, which is usually bound to the Ctrl + P shortcut.
| The keyboard shortcut Alt + P invokes the same feature which was previously only accessible via the Print Form Button. |
The amt.css file can be configured to change the look using CSS. The file is located in the ..\<Application>\Client\App_Themes\Application Default\. Open the amt.css file in a text editor and search for the @media print section:
@media print {
#AmtBody * { visibility: hidden; overflow:visible }
#PageDiv * { visibility: visible; }
#AppTitleBar * { visibility: hidden; }
#AppStatusBarWrapper * { visibility: hidden; }
#AppStatusBar * { visibility: hidden; }
#theform * { visibility: visible; }
#AppBodyContent * { visibility: visible; }
...
}