☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

placeholder

Table of contents

Description:

This key defines the text shown when this input has no value.

Appears in:
└── _inputs
    └── *
        └── Text Input
            └── options
                └── placeholder
Type:
string
Examples:

In this example, we have configured a placeholder for a Text Input.

Copied to clipboard
_inputs:
  title:
    type: text
    options:
      placeholder: Enter a title
{
  "_inputs": {
    "title": {
      "type": "text",
      "options": {
        "placeholder": "Enter a title"
      }
    }
  }
}
Open in a new tab