421ecf17e6
* Reorganize repo * Overhaul website design and rewrite in NextJS and Typescript * Delete website-publish.yml
18 lines
555 B
Plaintext
18 lines
555 B
Plaintext
---
|
|
group: Widgets
|
|
title: Hidden
|
|
weight: 15
|
|
---
|
|
|
|
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"}
|
|
```
|