Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PDF Forms in XSL

Status
Not open for further replies.

anubrix

Programmer
Feb 11, 2002
1
BE
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=&quot;{Name}&quot; id=&quot;{titre}&quot; size=&quot;{ShownItems}&quot;>
<xsl:for-each select=&quot;Items/Item&quot;>
<option><xsl:value-of select=&quot;Chaîne&quot;/></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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top