static-cms/website/content/docs/widget-hidden.mdx

18 lines
555 B
Plaintext
Raw Normal View History

2022-09-30 11:39:35 -04:00
---
group: Widgets
title: Hidden
weight: 15
2022-09-30 11:39:35 -04:00
---
Hidden widgets do not display in the UI. In folder collections that allow users to create new items, you will often want to set a default for hidden fields, so they will be set without requiring an input.
- **Name:** `hidden`
- **UI:** none
- **Data type:** any valid data type
- **Options:**
- `default`: accepts any valid data type; recommended for collections that allow adding new items
- **Example:**
```yaml
- {label: "Layout", title: "layout", widget: "hidden", default: "blog"}
2022-09-30 11:39:35 -04:00
```