# Checkbox, Dropdown & Radio Lists

Value Type Saved (Dropdown): IEnumerable\<string>\
Value Type Saved (Radio): String\
Value Type Saved (Checkbox): IEnumerable\<string>

These list content properties are very customisable. You can either add in manual data or use data from any data source (Database, file etc...) using the [IDataListSource](/zaubercms/extending-zaubercms/custom-list-data.md).&#x20;

When you add a list content property, click the settings icon to configure the property

<figure><img src="/files/tJwPMqz1kb3I612UQypm" alt=""><figcaption><p>Showing the editors in the content editor (All pickers are using the content views IDataListSource)</p></figcaption></figure>

<figure><img src="/files/9N7X0eHvwiVydAJhdCDm" alt=""><figcaption><p>This is where you add manual key / value data</p></figcaption></figure>

<figure><img src="/files/fqBu1SF3npWnJp4VgHLp" alt=""><figcaption><p>The drop down showing data sources available</p></figcaption></figure>

#### Example of getting value on page

Dropdown and Checkbox Lists

```csharp
(Content!.GetValue<List<string>>("PropertyAliasHere"))
```

Radio List

```csharp
(Content!.GetValue<string>("PropertyAliasHere"))
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://aptitude.gitbook.io/zaubercms/creating-a-website/current-content-properties/checkbox-dropdown-and-radio-lists.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
