if(this.srcNodeRef){ this.srcNodeRef.style.display = "none"; } this._connectNodes = []; dojo.forEach(this.connectId, function(id) { var node = dojo.byId(id); if (node) { this._connectNodes.push(node); dojo.forEach(["onMouseOver", "onMouseOut", "onFocus", "onBlur", "onHover", "onUnHover"], function(event){ this.connect(node, event.toLowerCase(), "_"+event); }, this); if(dojo.isIE){ // BiDi workaround node.style.zoom = 1; } } }, this);