The nodelist tag has no wiki summary.
1
vote
1answer
32 views
How to get the full path of a node in XML file in java?
I have XML file parsed by XPath to get all the parameters in it, and then i want to get the full path to each parameter but my code didn't work for some reason.
The Code:
ArrayList<String> ...
0
votes
2answers
12 views
working with nodeList “childNodes” of element.Why isn't the container2 being removed?
I have the following code and I am trying to remove dynamically all the "container" elements from an element supercontainer dynamically.Since nodeList is live the following code should remove the ...
0
votes
0answers
40 views
Update NodeList from Element / Set<Element>
I am parsing XML File. In which I encountered lot of #text nodes. To remove such #text node from NodeList, I copied all Nodes in Set<Element>. And After Iterating If I found #text then I remove ...
-2
votes
0answers
25 views
How to get node list where in main tag is specified attribute? [closed]
I have an XML file like this:
<house id="1"><tags/></house>
<house id="2"><tags/></house>
How to get node list from tag house where id equals 2?
1
vote
2answers
34 views
Why doesn't NodeList extend Collection or Iterable?
Perhaps this isn't exactly a programming question. But...
Why is org.w3c.dom.NodeList not an extension of java.lang.Iterable interface?
It sounds so counter-intuitive to me. Especially because the ...
0
votes
1answer
21 views
Explanation on 'live' elements
I just read this article about NodeLists:
http://www.nczonline.net/blog/2010/09/28/why-is-getelementsbytagname-faster-that-queryselectorall/
If I understand correctly getElementsByTag name is live ...
0
votes
6answers
102 views
What does [].forEach.call() does in JavaScript?
I was looking at some snippets of code, and I found multiple elements calling a function over a node list with a forEach applied to an empty array.
For example I have something like:
...
1
vote
4answers
61 views
Javascript Object List returns null or undefined but is not
I have the following,
HTML,
<div id="testDiv" name="testHolder">
Test Content
</div>
JS,
var testVar = document.getElementsByName('testHolder');
console.log(testVar);
I GET,
...
4
votes
1answer
64 views
What is the difference between a HTMLCollection and a NodeList in DOM?
I tried my Google-fu but I can't seem to find any good answer to that question. Please help.
EDIT:
Ok so I found this blog post. So they come from different DOM levels, but besides that it doesn't ...
0
votes
1answer
103 views
How to iterate over a node list and get child elements?
I have some XML like this:
<?xml version="1.0" encoding="UTF-8"?>
<person>
<version>1.1</version>
<lname>xxxx</lname>
<fname>yyyy</fname>
...
0
votes
0answers
27 views
removeChild Node from NodeList OR Document in xml
Below is my xml
<?xml version="1.0" encoding="utf-8" ?>
<domains>
<domain url="test1.com" ip="1.2.3.4"></domain>
<domain url="test2.com" ip="2.3.4.5"></domain>
...
0
votes
0answers
21 views
Individual nodelist functions
I've been playing with Rafael.js and am having an issue with this nodelist. Basically I have a couple of classes and when you hover over one I want it to draw a square in it and then clear it when ...
4
votes
1answer
89 views
NodeList.prototype.forEach = Array.prototype.forEach;
Do you see any problems with the following:
NodeList.prototype.forEach = Array.prototype.forEach;
Normally forEach is just a property of arrays, but by setting it as a property of all NodeLists as ...
0
votes
0answers
49 views
Why would I ever want a static NodeList/HTMLCollection over a “live” NodeList if I don't need the granularity of CSS Selectors in the resulting list?
I generally hear that because live NodeLists are "bad" (see this Zakas article) and that informed the decision for querySelectorAll to return a static HTMLCollection. Why do people think live ...
1
vote
2answers
121 views
Extract column from CSV file to use as nodelist in NetworkX
I have a CSV file with 2 columns: user and locations. I want to create two lists: one with only users and the other with only locations so that I can use the draw_network_nodes(nodelist=...) function ...
0
votes
0answers
178 views
get the attribute value using hashmap in android
I have to develop one android xml parsing example.
Here i have to display category name and article title for belonging category.
This is my xml feed:
<root>
<Categories>
<Category ...
0
votes
1answer
272 views
CasperJS returning null elements in NodeList
Here is the script I am running:
//Require CasperJS
var casper = require('casper').create();
//Scraping Courserank
var base = "https://www.courserank.com";
var home = base + "/w/home";
var schools = ...
2
votes
1answer
178 views
XPath NodeList order (Java)
I have the following XML structure.
<?xml version="1.0" encoding="UTF-8"?>
<root>
<header>
<row>
<column n="name" />
<column n="age" />
...
0
votes
1answer
30 views
the proper way to get properties from an XML?
I have the following XML file
<requesting>
<performing>
<properties val1="foo"/>
<properties val2="foo2"/>
</requesting>
</performing>
what is the proper ...
0
votes
2answers
461 views
Merging xml file using java NodeList
I'm trying to merge two xml files as shown below but i can't able to get the desired output please help me thank you
Java code:
DocumentBuilderFactory domFactory = ...
0
votes
0answers
78 views
JavaScript: can't replace element in NodeList
This is part of a Bubble Sort to sort two parallel NodeLists, payRates and txlis.
for(var index=0; index < payRates.length; index++){
if(payRates[index] < payRates[index+1]){
var ...
0
votes
1answer
217 views
myNodeList.item(0).getNodeValue() doesn't return any value. android
I have this xml file, and I have obtained a NodeList that contains all the models, when i call myNodeList.getLength(), it gives me the correct number 2. but when I call ...
1
vote
2answers
209 views
Javascript: DIV content to URL String, Result = [Object Node List] and 'undefined'
This is a very specific question, so sorry if it sounds repetitive.
I have a block of code that manipulates a Wordpress's "Press This" feature that allows for quick blogging about a remote site, ...
3
votes
4answers
70 views
Create node list from a single node in JavaScript
This is one of those it seems so simple, but I cannot come up with a good way to go about it.
I have a node, maybe nodelist = document.getElementById("mydiv"); - I need to normalize this to a node ...
4
votes
4answers
635 views
“Array.prototype.slice: 'this' is not a JavaScript object” error in IE8
It is my understanding that IE8 has access to the Array.prototype.slice method. Yet when I try to call it to turn a NodeList into an array, it gives me the error Array.prototype.slice: 'this' is not a ...
0
votes
1answer
49 views
How to put random objects onto a stack without having the objects turn into DeferredElementImpl?
I'm trying to put both Strings and Nodes onto a Stack. I use the NodeList method item(int) to obtain a Node from the NodeList. Then, I push this Node to the Stack. My only problem is that I doesn't ...
1
vote
3answers
969 views
Java XML: ClassCastException DeferredTextImpl
Here is my code:
// get the factory
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
try {
// Using factory get an instance of document builder
DocumentBuilder db = ...
0
votes
1answer
121 views
Why do Array.prototype.slice.call(nodeList) for DOM elements?
Lots of JavaScript libraries (jQuery, Zepto) seem to be calling Array.prototype.slice.call on querySelectorAll(), getElementsByTag or ClassName results...
From reading many many similar ...
0
votes
2answers
358 views
Reading XML file via XML nodes
I have this XML document I am trying to read in and insert into a data base. There will only ever be one GamePlay node however GamePlayStep may repeat so I have created a node list for this. For some ...
0
votes
3answers
182 views
How to parse a XML converted to JSON
I have get an xml file from a WebService
<MasterProducts> <MasterProduct> <Productcode>023DDC</Productcode> <Description>Dell CRT 17 Computer Monitor ...
2
votes
1answer
277 views
Setting DOM element attribute while iterating over NodeList cause performance overhead
I am having performance problem when I modify DOM element attributes while I am iterating over NodeList.
<!-- language: lang-java -->
public static void overwriteSumDef(Document doc){
...
1
vote
1answer
197 views
getting value of dojo NodeList inner elements
I am building a configuration dialog using dojo that I later need to interrogate for user input. There are multiple rows in the dialog each with the same format and tags. Here is the html that I use ...
2
votes
1answer
80 views
Concerns about modifying Node prototype
So, for fun, I decided to see if I could mimic the syntax/functionality of jQuery. This turned out to be fairly easy (when not worrying about cross-browser/legacy compatibility). You can see what I've ...
0
votes
1answer
119 views
XPath alternative for java 1.4
I have a sourcecode of class, that has been written on Java 1.6 and uses XPath to get XML from InputStream and make some specific changes in XML Document. Now a I have to make this class compatible ...
1
vote
2answers
451 views
addEventListener on NodeList
Does NodeList support addEventListener. If not what is the best way to add EventListener to all the nodes of the NodeList. Currently I am using the code snippet as show below, is there a better way ...
1
vote
0answers
100 views
Build NodeList of multiple element types in one line?
I'm trying to declare an array of all form elements on the page (inputs, selects, textareas, and buttons) in one line of code without any helper JS libraries.
So far the best I can come up with is ...
3
votes
2answers
239 views
Why does JavaScript's getElementsByClassName provide an object that is NOT an array?
I'm trying to get a list in JavaScript (not using jQuery) of all the elements on the page with a specific class name. I therefore employ the getElementsByClassName() function as follows:
var ...
0
votes
1answer
303 views
getChildNodes() returns NULL for my root in XML
My goal : to get the root of the XML in a Node object , and then evaluate it !
My problem :
I'm trying to evaluate my expression from the ROOT of the XML file, I have this method ( I need to ...
1
vote
0answers
414 views
Implementation of NodeList
I implemented NodeList like this :
import java.util.ArrayList;
import java.util.Collections;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class MyNodeList implements NodeList{
...
-2
votes
2answers
2k views
adding node to a nodelist
my aim is to add nodes not at once to a NodeList but to add them in a loop in each iteration. i looked up the classes and methods for NodeList , but didnt find anything useful for it. is there anyway ...
0
votes
0answers
111 views
Dojo Nodelist-traverse Error
I'm having trouble using Dojo's Nodelist-traverse methods.
I'm using Dojo 1.4.3 (required by the CMS, can't upgrade at this time) and I'm starting out with:
dojo.require("dojo.NodeList-traverse");
...
1
vote
2answers
331 views
JavaScript: can't access a childNode of one iteration of a nodeList
Given this markup:
<ul id="navtabs">
<li><a onClick="someFunction();" href="#">Link</a></li>
<li><a onClick="someFunction();" ...
0
votes
2answers
48 views
Is indexing into NodeList via [] reliable and (ideally) documented?
Is indexing into a NodeList using [] rather than item() completely reliable-cross browser, and (separately) is it documented anywhere? E.g.:
var firstDiv = document.getElementsByTagName('div')[0];
...
1
vote
3answers
271 views
Converting the result type of string-join to NodeList
I need to deal with legacy code which evaluates XPath expressions expects the results to resolve to NodeList. The code uses NodeList to identify how many nodes are selected by the XPath expression. ...
1
vote
2answers
2k views
DOM getElementsByTagName() returning Nodes with NULL Values
I have an XML file as follows.
When I use getElementsByTagName("LEVEL2_ID"), I do get a NodeList with Nodes, but those Nodes have NULL values (in other words, getNodeValue() on each result node will ...
0
votes
3answers
129 views
what is the most fast, safe and correct method for looping through whole DOM in pure JS?
By safe I mean the fact that NodeList created by document.getElementsById('*'); is a live object. Some elements are added or removed dynamically as JS engine loops through it.
The thing I intend to ...
0
votes
1answer
153 views
Does PHP usort() work on DOM nodeLists?
I have a bunch of data stored in an XML file that I print out as a list with PHP. I want the user to be able to choose how to sort the list.
I experimented a bit with usort(), but it doesn't seem to ...
0
votes
7answers
118 views
For Loop error
i want to insert nodes which are fetched from other part of the program into a NodeList.
static void NodeCheck(Node node)
{
NodeList NodeArray = null;
for(int ...
2
votes
2answers
247 views
Why do nodelists contain extra undefined items that are not reflected in its length property?
Background:
I came across a very strange phenomenon while working with a node list. I wanted to use getElementsByClassName or something similar and then sort it. I decided one way would be to ...
2
votes
2answers
318 views
XPath expression to verify a NodeList
I have a NodeList in Java and this XML file, (just a part of it)
if I have
<Book title="aaa" author="bbb" price="12" year="2011" />
I can use an XPath expression to see if some conditions ...


