Cloning for 2.2, enterprise customer seeing this in FF 3.5:
This occurs when trying to create content using a form (either ecm or wcm) that contains unbounded elements. If I press green +, then Loading(2) appears in upper right corner and nothing else happens. Pressing + once more changes it to Loading(4).
On IE it works fine.
This is the xsd (simplified example xsd), but the same happens with any xsd that contains unbounded element:
<xs:schema targetNamespace="http://www.alfresco.org/alfresco/pr" elementFormDefault="qualified">
<!-- defines the form for creating a company footer -->
−
<xs:element name="company_footer">
−
<xs:complexType>
−
<xs:sequence>
<xs:element name="name" type="xs:normalizedString"/>
<xs:element name="body" type="xs:normalizedString" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>