☁️ 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
    └── *
        └── Textarea Input
            └── options
                └── placeholder
Type:
string
Examples:

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

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