Child Collection Groups
Configuring child collection groups in Umbraco UI Builder.
This page is a work in progress and may undergo further revisions, updates, or amendments. The information contained herein is subject to change without notice.
A child collection group is a container for other child collections. Its purpose is mainly to provide a logical grouping of multiple child collections to help with organization and an improved user experience.

Defining a Child Collection Group
You can define a child collection group by calling one of the AddChildCollectionGroup methods on a given collection config builder instance.
Using the AddChildCollectionGroup() Method
AddChildCollectionGroup() MethodAdds a child collection group to the current collection with the specified name and default icon.
Method Syntax
AddChildCollectionGroup(string name, Lambda childCollectionGroupConfig = null) : ChildCollectionGroupConfigBuilderExample
collectionConfig.AddChildCollectionGroup("Family", childCollectionGroupConfig => {
    ...
});Using the AddChildCollectionGroup() Method with Custom Icon
AddChildCollectionGroup() Method with Custom IconAdds a child collection group to the current collection with the specified name and custom icon.
Method Syntax
AddChildCollectionGroup(string name, string icon, Lambda childCollectionGroupConfig = null) : ChildCollectionGroupConfigBuilderExample
collectionConfig.AddChildCollectionGroup("Family", "icon-users", childCollectionGroupConfig => {
    ...
});Last updated
Was this helpful?
