XmlItem.js
345 Bytes
//>>built
define(["dojo/_base/declare"],function(d){return d("dojox.data.XmlItem",null,{constructor:function(c,a,b){this.element=c;this.store=a;this.q=b},toString:function(){var c="";if(this.element)for(var a=0;a<this.element.childNodes.length;a++){var b=this.element.childNodes[a];if(3===b.nodeType||4===b.nodeType)c+=b.nodeValue}return c}})});