bring this FloatingPane above all other panes
var windows = dojo.filter( this._allFPs, function(i){ return i !== this; }, this); windows.sort(function(a, b){ return a.domNode.style.zIndex - b.domNode.style.zIndex; }); windows.push(this); dojo.forEach(windows, function(w, x){ w.domNode.style.zIndex = this._startZ + (x * 2); dojo.removeClass(w.domNode, "dojoxFloatingPaneFg"); }, this); dojo.addClass(this.domNode, "dojoxFloatingPaneFg");