List Views
Configuring the list view of a collection in Umbraco UI Builder.
A list view displays a collection entity in a list format and includes features like pagination, custom data views, searching, and bulk actions.

Configuring a List View
The list view configuration is a sub-configuration of a Collection config builder instance and can be accessed via the ListView method.
Using the ListView() Method
ListView() MethodAccesses the list view configuration for the specified collection.
Method Syntax
Example
Adding a Field to the List View
Using the AddField() Method
AddField() MethodAdds a specified property to the list view.
Method Syntax
Example
Changing the Heading of a Field
Using the SetHeading() Method
SetHeading() MethodSets the heading for a field in the list view.
Method Syntax
Example
Formatting the Value of a Field
Using the SetFormat() Method
SetFormat() MethodSets the format expression to the field in the list view.
Method Syntax
Example
Setting the View of a Field
You can customize the field's markup with field views, allowing richer visualizations of the content. For more details, see the Field Views article.
Using the SetView() Method
SetView() MethodSets the view component for the list view field.
Method Syntax
Example
Using the SetView<TView>() Method
SetView<TView>() MethodSets the view component for the list view field.
Method Syntax
Example
Setting the Visibility of a Field
Using the SetVisibility() Method
SetVisibility() MethodControls the runtime visibility of a field in the list view.
Method Syntax
Example
Changing the Page Size
Using the SetPageSize Method
SetPageSize MethodSets the number of items per page for the list view.
Method Syntax
Example
Last updated
Was this helpful?