PDF Generator
HomeBlogDocsContact
  • Overview
    • Try It!
    • Introduction
    • Key Features
    • Industry Use Cases
      • PDF Generator for Human Resources
    • Videos
  • Technical Docs
    • Getting Started
    • Building a PDF Template
      • HTML to PDF Merge Templates
      • Printable Labels
        • Label Templates
        • Label Configuration
        • Adding New Avery Type Label Configuration
        • Printing Labels
      • Merge Keys
      • Data Sources
    • Generating a PDF Document
      • Create from Wizard
      • Create from Flow Action
      • Create from Script
    • The Generate PDF Wizard
      • PDF Wizard (Standard Forms)
      • PDF Wizard (Workspaces)
      • PDF Wizard (List View)
    • Adding QR / Barcodes to PDFs
      • How-to Create Barcode Labels
    • TinyMCE Configs
    • Logging
    • Troubleshooting
    • Frequently Asked Questions
Powered by GitBook
On this page
  • How do I make the borders of an embedded table invisible?
  • The bulleted lists in my PDF are formatted such that multiple lines are aligned to the original bullet. I prefer my bulleted text to be aligned with the first line of text (offset from the bullet). How can I change this?
  • The PDF Generator wizard in workspace is too small. How can I make it bigger?
  1. Technical Docs

Frequently Asked Questions

How do I make the borders of an embedded table invisible?

In the TinyMCE editor, there is a button to configure settings for embedded tables. Choosing a border color of 'Invisible' will not result in invisible borders. Instead, set your Border width to Opx.

The bulleted lists in my PDF are formatted such that multiple lines are aligned to the original bullet. I prefer my bulleted text to be aligned with the first line of text (offset from the bullet). How can I change this?

This is due to a ServiceNow system property. If you wish to update this across all TinyMCE editors in your instance, you can do so by:

  • Opening the system property glide.ui.html.editor.v5.valid_plugins

  • Remove align_listitems from the choice and value fields

If you wish to change this for a single PDF Template, you can do so by:

  • Clicking the <> button on the TinyMCE editor to enter Source Code mode

  • Remove the style="list-style-position:inside;" text from the <ul> or <ol> tags within the source code

  • Click to save the source code, and then save the PDF template record

The PDF Generator wizard in workspace is too small. How can I make it bigger?

Available options for workspace modals are limited, ranging from very small to quite small to full screen.

The included examples use the code below to render the wizard as large as possible in a modal format:

g_modal.showFrame({
    url: 'x_yala_pdf_pdf_generator.do?' + jsonToParams(modalOptions),
    title: 'Generate PDF',
    size: 'xl',
    height: 500,
    callback: function () {
        location.reload();
    }
});

If you'd like to instead make the wizard full-screen, you can update the size and height parameters like below:

g_modal.showFrame({
    url: 'x_yala_pdf_pdf_generator.do?' + jsonToParams(modalOptions),
    title: 'Generate PDF',
    size: 'fw',
    height: 1000,
    callback: function () {
        location.reload();
    }
});
PreviousTroubleshooting

Last updated 2 days ago