Tagged Questions
The node-set tag has no wiki summary.
3
votes
1answer
212 views
How do we determine if an XPath expression results in a node-set?
Given that any type other than a node-set cannot be coerced into a node-set, how do we determine,at runtime, if the result of an XPath expression is a node-set?
Although I guess it shouldn't matter, ...
2
votes
1answer
34 views
Distinct values across XSLT nodesets
Once again about the distinct nodes (basing on attribute values) in node set.
Imagine u have the following structure:
<struct>
<a>
<x id="1">a_1</x>
<x ...
2
votes
1answer
103 views
querySelectorAll: manipulating nodes
As far as I have understood, querySelector returns a real changeable element while querySelectorAll returns a non-live Static Node Set.
I want to adjust the style of all elements fitting to a ...
2
votes
2answers
546 views
Sorted exsl:node-set. Return node by it position
Good afternoon, gentlemen. Help me solve a very simple task.
I have a set of nodes
<menuList>
<mode name="aasdf"/>
<mode name="vfssdd"/>
<mode name="aswer"/>
...
1
vote
1answer
55 views
How to delete a Node from a Nokogiri Nodeset?
I have a nodeset in the variable my_nodeset
I'd like to remove the last node that was found.
Initially i expected this to work: my_nodeset.last.remove but it does not.
The only way I've found to ...
1
vote
1answer
173 views
is it possible to nest dynamic node-sets in xslt?
I'd like to know if it is possible to nest dynamic node sets in XSLT and if so, how to select them using xPath. This is part of a bigger task. I'm only showing the part that I'm stuck on.
This is ...
1
vote
2answers
624 views
XPath problem, getting “expression must evaluate to a node-set.” error
I'm having trouble retrieving a single node by its explicit XPath that I have already found by other ways. I have node and I can get its XPath, but when I try to retrieve that same node again this ...
1
vote
2answers
730 views
Calling the same xsl:template for different node names of the same complex type
I'm trying to keep my xsl DRY and as a result I wanted to call the same template for 2 sections of an XML document which happen to be the same complex type (ContactDetails and AltContactDetails). ...
1
vote
3answers
601 views
XSL msxsl:node-set problem
Please help me out guys. I'm just trying to declare a simple result tree fragment and iterate over it.
...
<xsl:variable name="rtf">
<item-list>
<item ...
1
vote
3answers
909 views
XSLT: sum of tree fragment will always return 0 !
I am stuck with a problem which seems stupid but I cannot find out the solution... With XLST, I need to sum a list of values calculated by a template. So I stored these values in a tree structure (a ...