class HtmlService method .createHtmlOutput()

HtmlService is the Apps Script service.

.createHtmlOutput() is the method name you will see after a dot in your code.

What it does

Builds HTML output from a string for dialogs or sidebars.

Why it's used

  • Build a sidebar or dialog from an HTML string.
  • Prototype UI without a separate .html file.

Common errors

  • Forgetting parentheses on createHtmlOutput. Write HtmlService.createHtmlOutput(), not HtmlService.createHtmlOutput or createHtmlOutput by itself.
  • Skipping dots between chained calls. Each step needs a dot, like HtmlService.createHtmlOutput().
  • Adding spaces where they do not belong. Write HtmlService.createHtmlOutput(), not HtmlService .createHtmlOutput(), HtmlService.createHtmlOutput (), or HtmlService . createHtmlOutput().
  • Wrong capitalization. Use HtmlService and createHtmlOutput, not htmlservice or createhtmloutput.

Explore

Related methods

Better Sheets tutorials

Add Click Tracking To Your Google Sheets | Bitly in a Google Sheet

Add Click Tracking To Your Google Sheets | Bitly in a Google Sheet

Create a click Edit: Google changed how the redirect is handled. It no l...
Big Year - a Whole Year in One Google Sheets Tab

Big Year - a Whole Year in One Google Sheets Tab

Get "Big Year" for free via Gumroad. Get perspective on your 2024 plan ...
Create Navigation Buttons in Sheets to Other Sheets

Create Navigation Buttons in Sheets to Other Sheets

Add a button to go to another sheet inside your sheet.
Google Sheets Stories? No! But we'll add timestamped video notes to your google sheets.

Google Sheets Stories? No! But we'll add timestamped video notes to your google sheets.

There was a stories craze. Every app/platform/business was adding 24 hou...
LinkTree in a Google Sheet

LinkTree in a Google Sheet

This tool will allows you to share multiple links on your social media.
Proof of Life

Proof of Life

Create a script that sends an email to ask for proof of life every month...
Sheet Stories / Video Notes + Clear 24 Hour Old Videos

Sheet Stories / Video Notes + Clear 24 Hour Old Videos

Revolutionary Method to Manage Your Video Stories! Learn how to delete o...

Related blog posts

Written guides about HtmlService.createHtmlOutput().

Browse the blog