-
Vitantonio
24
posts
Member since:
Mar 2012
Posted 25 Jul 2012
Link to this post
HI,
How i get the childNode of a node ?
I do:
node.childNodes;
$.each(nodeChild, function () {
nodeValue = treeOffices.dataItem(this).Id;
if (nodeValue == id) {
node = this;
return node;
}
});
but treeOffices.dataItem(this) return always the firstNode
Help me
-