Search found 2 matches

by Holmanit
Sun Dec 06, 2020 4:57 pm
Forum: XSLT and FOP
Topic: Rendering nodes in different order
Replies: 3
Views: 1541

Re: Rendering nodes in different order

Thank you. These gives me <root><title>Title </title> <status> status </status> <content> <Description><some_node>some node </some_node></Description> </content> </root> in output. And I need only Title status some node I.E. just content of nodes. 2. How can I do it in case I don't know depth of <ti...
by Holmanit
Thu Dec 03, 2020 8:17 pm
Forum: XSLT and FOP
Topic: Rendering nodes in different order
Replies: 3
Views: 1541

Rendering nodes in different order

Hello. That's my source XML <root> <status> status </status> <content> <Description> <title>Title </title> <some_node>some node </some_node> </Description> </content> </root> Sometimes I need title to be displayed before status. That's my code using Oxygen 21.1 <xsl:stylesheet> <xsl:param name="...