Can't add child components to containers
I'm trying to use the AEM core form container, but when I add it to a page, there is no ability to add child elements (there is no "Drag Components Here" box). When I click the + sign on the component, it only adds the component I choose as a sibling, not a child of the container. Here is the .content.xml:
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="cq:Component"
cq:isContainer="{Boolean}true"
jcr:title="Form Container"
jcr:description="Container for other form components"
sling:resourceSuperType="core/wcm/components/form/container/v2/container"
componentGroup="mygroup"
/>
Shouldn't the isContainer property allow me to add child components? I have my template policy and the container component policies set to allow certain components.