xsd2html2xml icon indicating copy to clipboard operation
xsd2html2xml copied to clipboard

Multiple imported groups are not populated correctly

Open MichielCM opened this issue 7 years ago • 0 comments

If the same group is referenced multiple times in the document (in the same hierarchical position) it is not populated correctly from an XML document. This should be fixed in the html-populators JavaScript file.

For example, XSD: <xs:group ref="myGroup" minOccurs="0" maxOccurs="unbounded" /> ... <xs:group ref="myGroup" minOccurs="0" maxOccurs="unbounded" />

XML: <myGroupItem>0</myGroupItem> ... <myGroupItem>1</myGroupItem> <myGroupItem>2</myGroupItem> <myGroupItem>3</myGroupItem>

MichielCM avatar Dec 10 '18 11:12 MichielCM