Hello,
I have made a .docx template by binding a CustomXML. It works well.
Now I want to diplay a nested list :
As for example a library contains books that can have one or more authors
XML :
- Code: Select all
<library>
<book>
<name>book ONE</name>
<authors>
<author>author 1</author>
<author>author 2</author>
</authors>
</book>
<book>
<name>book TWO</name>
<authors>
<author>author X</author>
</authors>
</book>
<book>
<name>book THREE</name>
<authors>
<author>author First</author>
<author>author Second</author>
<author>author Third</author>
</authors>
</book>
</library>
I would ...