Hi, I have an XML file with forms components properties and I'd like use an XSL-FO stylesheet on this XML file to generate a PDF and an HTML document.
The problem is that I don't know who we can create an element in PDF. In html, to create a combo-box, I wrote:
<select name="{Name}" id="{titre}" size="{ShownItems}">
<xsl:for-each select="Items/Item">
<option><xsl:value-of select="Chaîne"/></option>
</xsl:for-each>
</select>
I'd like to do the same in PDF but I don't know how. Can someone help me?
Thanks,
Brieuc
The problem is that I don't know who we can create an element in PDF. In html, to create a combo-box, I wrote:
<select name="{Name}" id="{titre}" size="{ShownItems}">
<xsl:for-each select="Items/Item">
<option><xsl:value-of select="Chaîne"/></option>
</xsl:for-each>
</select>
I'd like to do the same in PDF but I don't know how. Can someone help me?
Thanks,
Brieuc