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.
When you add a list content property, click the settings icon to configure the property



Example of getting value on page
Dropdown and Checkbox Lists
(Content!.GetValue<List<string>>("PropertyAliasHere"))
Radio List
(Content!.GetValue<string>("PropertyAliasHere"))
Last updated