Tagged Questions
The apply-templates tag has no wiki summary.
6
votes
4answers
2k views
what are the difference between 'call-template' and 'apply-templates' in xsl?
I am new in Xslt so i'm little bit confuse about the 2 tags,
<xsl:apply-templates name="nodes"> and <xsl:call-template select="nodes">.
So can you list out the difference between ...
2
votes
4answers
87 views
XSLT 1.0: apply-templates and template mode
I have the following XML:
<?xml version="1.0" encoding="UTF-8"?>
<Order>
<Item>
<RECORD_ID>RECORD_ID</RECORD_ID>
...
2
votes
2answers
74 views
XSLT apply-templates recursiveness of doom!
I have to following XML document structure:
<option_set id="1">
<option>Yes</option>
<option>No</option>
<option>Maybe</option>
</option_set>
...
2
votes
2answers
372 views
Optimisation <xsl:apply-templates/> for a set of tags
How it is possible to reduce this record?
<xsl:template match="BR">
<br/>
</xsl:template>
<xsl:template match="B">
<strong><xsl:apply-templates ...
2
votes
5answers
367 views
Two concepts from XSLT in other languages: apply-templates and xpath
Background: Having given up on the practical daily use of XSLT as a part of my programming toolkit, I was wondering if there were any implementations in other languages of the (only) two things I miss ...
1
vote
2answers
111 views
Rendering different templates for the same XML element, at same level
XML:
<Root>
<Elements>
<Element>el1</Element>
<Element>el2</Element>
</Elements>
<Elements>
<Element>el1</Element>
...
1
vote
1answer
174 views
XSL: How to limit the select in apply-templates based on a separate XML element
Here is an example of what I am trying to do.
XML:
<TEST>
<NODE>
<A id="ELEMENT_1"/>
<A id="ELEMENT_2"/>
<A id="ELEMENT_3"/>
</NODE>
...
1
vote
2answers
739 views
XSL apply templates not working…could be XPath error
I have converted mny stylesheet to use apply templates instead of call templates and it worked fine for my other styesheet, which was more complicated, but this one doesn't seem to work even thought ...
1
vote
3answers
3k views
XSLT: Apply templates with conditional parameters?
I'd like to apply a template with different parameters based on the result of a conditional. Something like this:
<xsl:choose>
<xsl:when test="@attribute1">
...
1
vote
1answer
759 views
Add soap header - update a node - copy document
I'm trying to add Soap headers to my document and update the first RS node with
<Rs xmlns="http://tempuri.org/schemas">
all while copying the remainder of the document nodes. In my real ...
0
votes
2answers
74 views
xslt dynamic / conditional apply-template in function of a variable?
I want to display two different XSLT transformations in function of what the user want. The entire XSL file is the same, except for one line.
This line should be as it
<xsl:template ...
0
votes
2answers
192 views
string processing with xsl:apply-templates
I have a xml that looks like this,
<Parent> Running text with marked up entities like
<Child>Entity1</Child>
and, text in the middle too, and
<Child> Entity2 ...
0
votes
2answers
541 views
XSL named parameter 'with-param' using 'apply-templates'
My questions are at the bottom of this post, if you wish to read them before the full explanation.
I'm converting an XML document to a pretty web page using XSL, and am having trouble with correctly ...
0
votes
1answer
515 views
XSL using apply templates and match instead of call template
I am trying to make the transition from using call-template to using applay templates and match but i'm not getting any data displayed only what is between the volunteer tags.
When i use call ...
0
votes
1answer
361 views
XSLT / Xalan : calling apply-templates from within a Java extension
I am using Xalan and Java for extending a stylesheet.
(Similar example to what I am doing there : Dictionary example)
I struggle to make my tag do an <xsl:apply-templates/>. I wish to have ...
0
votes
4answers
2k views
How do I apply templates to each selected node in a for-each?
I know I'm missing something here. In the XSLT transformation below, the actual result doesn't match the desired result.
Inside the for-each, I want to apply the match="track" template to each ...