Skip to content

How to hide the command buttons at the bottom of the screen when printing

Answer

Use "Style".


Answer

When printing using the browser's print function, the command button area (the command buttons and Copyright notation at the bottom) may be displayed in the middle of the screen. If you want to hide the command button area, use "Style".

Operation Procedure

  1. Open the target table.
  2. Click Manage → Manage Table.
  3. Open the Style tab.
  4. Click the New button to display the dialog.
  5. Enter any title such as "When Printing" in the title.
  6. Enter the following CSS in the style.
  7. Click the Change button in the dialog.
  8. Click the Update button at the bottom of the screen.
  9. Open the list screen of the target table, etc., and display the print preview of the browser function to check.

Sample Code

CSS
@media print {
    #MainCommandsContainer {    /* Command buttons */
        display:none;
    }
    #Footer {   /* Copyright notation */
        display:none;
    }
}