ext-all-debug.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:2341k
源码类别:

中间件编程

开发平台:

JavaScript

  1.     /**
  2.      * @cfg {String} ddGroup
  3.      * A named drag drop group to which this object belongs.  If a group is specified, then this object will only
  4.      * interact with other drag drop objects in the same group (defaults to 'TreeDD').
  5.      */
  6.     ddGroup : "TreeDD",
  7.     // private
  8.     onBeforeDrag : function(data, e){
  9.         var n = data.node;
  10.         return n && n.draggable && !n.disabled;
  11.     },
  12.     // private
  13.     onInitDrag : function(e){
  14.         var data = this.dragData;
  15.         this.tree.getSelectionModel().select(data.node);
  16.         this.tree.eventModel.disable();
  17.         this.proxy.update("");
  18.         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
  19.         this.tree.fireEvent("startdrag", this.tree, data.node, e);
  20.     },
  21.     // private
  22.     getRepairXY : function(e, data){
  23.         return data.node.ui.getDDRepairXY();
  24.     },
  25.     // private
  26.     onEndDrag : function(data, e){
  27.         this.tree.eventModel.enable.defer(100, this.tree.eventModel);
  28.         this.tree.fireEvent("enddrag", this.tree, data.node, e);
  29.     },
  30.     // private
  31.     onValidDrop : function(dd, e, id){
  32.         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
  33.         this.hideProxy();
  34.     },
  35.     // private
  36.     beforeInvalidDrop : function(e, id){
  37.         // this scrolls the original position back into view
  38.         var sm = this.tree.getSelectionModel();
  39.         sm.clearSelections();
  40.         sm.select(this.dragData.node);
  41.     },
  42.     
  43.     // private
  44.     afterRepair : function(){
  45.         if (Ext.enableFx && this.tree.hlDrop) {
  46.             Ext.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
  47.         }
  48.         this.dragging = false;
  49.     }
  50. });
  51. }/**  * @class Ext.tree.TreeEditor  * @extends Ext.Editor  * Provides editor functionality for inline tree node editing.  Any valid {@link Ext.form.Field} subclass can be used  * as the editor field.  * @constructor  * @param {TreePanel} tree  * @param {Object} fieldConfig (optional) Either a prebuilt {@link Ext.form.Field} instance or a Field config object  * that will be applied to the default field instance (defaults to a {@link Ext.form.TextField}).  * @param {Object} config (optional) A TreeEditor config object  */ Ext.tree.TreeEditor = function(tree, fc, config){     fc = fc || {};     var field = fc.events ? fc : new Ext.form.TextField(fc);     Ext.tree.TreeEditor.superclass.constructor.call(this, field, config);     this.tree = tree;     if(!tree.rendered){         tree.on('render', this.initEditor, this);     }else{         this.initEditor(tree);     } }; Ext.extend(Ext.tree.TreeEditor, Ext.Editor, {     /**      * @cfg {String} alignment      * The position to align to (see {@link Ext.Element#alignTo} for more details, defaults to "l-l").      */     alignment: "l-l",     // inherit     autoSize: false,     /**      * @cfg {Boolean} hideEl      * True to hide the bound element while the editor is displayed (defaults to false)      */     hideEl : false,     /**      * @cfg {String} cls      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")      */     cls: "x-small-editor x-tree-editor",     /**      * @cfg {Boolean} shim      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)      */     shim:false,     // inherit     shadow:"frame",     /**      * @cfg {Number} maxWidth      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed      * the containing tree element's size, it will be automatically limited for you to the container width, taking      * scroll and client offsets into account prior to each edit.      */     maxWidth: 250,     /**      * @cfg {Number} editDelay The number of milliseconds between clicks to register a double-click that will trigger      * editing on the current node (defaults to 350).  If two clicks occur on the same node within this time span,      * the editor for the node will display, otherwise it will be processed as a regular click.      */     editDelay : 350,     initEditor : function(tree){         tree.on('beforeclick', this.beforeNodeClick, this);         tree.on('dblclick', this.onNodeDblClick, this);         this.on('complete', this.updateNode, this);         this.on('beforestartedit', this.fitToTree, this);         this.on('startedit', this.bindScroll, this, {delay:10});         this.on('specialkey', this.onSpecialKey, this);     },     // private     fitToTree : function(ed, el){         var td = this.tree.getTreeEl().dom, nd = el.dom;         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible             td.scrollLeft = nd.offsetLeft;         }         var w = Math.min(                 this.maxWidth,                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);         this.setSize(w, '');     },     /**      * Edit the text of the passed {@link Ext.tree.TreeNode TreeNode}.      * @param node {Ext.tree.TreeNode} The TreeNode to edit. The TreeNode must be {@link Ext.tree.TreeNode#editable editable}.      */     triggerEdit : function(node, defer){         this.completeEdit(); if(node.attributes.editable !== false){            /**             * The {@link Ext.tree.TreeNode TreeNode} this editor is bound to. Read-only.             * @type Ext.tree.TreeNode             * @property editNode             */ this.editNode = node;             if(this.tree.autoScroll){                 Ext.fly(node.ui.getEl()).scrollIntoView(this.tree.body);             }             var value = node.text || '';             if (!Ext.isGecko && Ext.isEmpty(node.text)){                 node.setText('&#160;');             }             this.autoEditTimer = this.startEdit.defer(this.editDelay, this, [node.ui.textNode, value]);             return false;         }     },     // private     bindScroll : function(){         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);     },     // private     beforeNodeClick : function(node, e){         clearTimeout(this.autoEditTimer);         if(this.tree.getSelectionModel().isSelected(node)){             e.stopEvent();             return this.triggerEdit(node);         }     },     onNodeDblClick : function(node, e){         clearTimeout(this.autoEditTimer);     },     // private     updateNode : function(ed, value){         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);         this.editNode.setText(value);     },     // private     onHide : function(){         Ext.tree.TreeEditor.superclass.onHide.call(this);         if(this.editNode){             this.editNode.ui.focus.defer(50, this.editNode.ui);         }     },     // private     onSpecialKey : function(field, e){         var k = e.getKey();         if(k == e.ESC){             e.stopEvent();             this.cancelEdit();         }else if(k == e.ENTER && !e.hasModifier()){             e.stopEvent();             this.completeEdit();         }     } });/*! SWFObject v2.2 <http://code.google.com/p/swfobject/> 
  52.     is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
  53. */
  54. var swfobject = function() {
  55.     
  56.     var UNDEF = "undefined",
  57.         OBJECT = "object",
  58.         SHOCKWAVE_FLASH = "Shockwave Flash",
  59.         SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
  60.         FLASH_MIME_TYPE = "application/x-shockwave-flash",
  61.         EXPRESS_INSTALL_ID = "SWFObjectExprInst",
  62.         ON_READY_STATE_CHANGE = "onreadystatechange",
  63.         
  64.         win = window,
  65.         doc = document,
  66.         nav = navigator,
  67.         
  68.         plugin = false,
  69.         domLoadFnArr = [main],
  70.         regObjArr = [],
  71.         objIdArr = [],
  72.         listenersArr = [],
  73.         storedAltContent,
  74.         storedAltContentId,
  75.         storedCallbackFn,
  76.         storedCallbackObj,
  77.         isDomLoaded = false,
  78.         isExpressInstallActive = false,
  79.         dynamicStylesheet,
  80.         dynamicStylesheetMedia,
  81.         autoHideShow = true,
  82.     
  83.     /* Centralized function for browser feature detection
  84.         - User agent string detection is only used when no good alternative is possible
  85.         - Is executed directly for optimal performance
  86.     */  
  87.     ua = function() {
  88.         var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF,
  89.             u = nav.userAgent.toLowerCase(),
  90.             p = nav.platform.toLowerCase(),
  91.             windows = p ? /win/.test(p) : /win/.test(u),
  92.             mac = p ? /mac/.test(p) : /mac/.test(u),
  93.             webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit/(d+(.d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit
  94.             ie = !+"v1", // feature detection based on Andrea Giammarchi's solution: http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html
  95.             playerVersion = [0,0,0],
  96.             d = null;
  97.         if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
  98.             d = nav.plugins[SHOCKWAVE_FLASH].description;
  99.             if (d && !(typeof nav.mimeTypes != UNDEF && nav.mimeTypes[FLASH_MIME_TYPE] && !nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)) { // navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin indicates whether plug-ins are enabled or disabled in Safari 3+
  100.                 plugin = true;
  101.                 ie = false; // cascaded feature detection for Internet Explorer
  102.                 d = d.replace(/^.*s+(S+s+S+$)/, "$1");
  103.                 playerVersion[0] = parseInt(d.replace(/^(.*)..*$/, "$1"), 10);
  104.                 playerVersion[1] = parseInt(d.replace(/^.*.(.*)s.*$/, "$1"), 10);
  105.                 playerVersion[2] = /[a-zA-Z]/.test(d) ? parseInt(d.replace(/^.*[a-zA-Z]+(.*)$/, "$1"), 10) : 0;
  106.             }
  107.         }
  108.         else if (typeof win.ActiveXObject != UNDEF) {
  109.             try {
  110.                 var a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
  111.                 if (a) { // a will return null when ActiveX is disabled
  112.                     d = a.GetVariable("$version");
  113.                     if (d) {
  114.                         ie = true; // cascaded feature detection for Internet Explorer
  115.                         d = d.split(" ")[1].split(",");
  116.                         playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
  117.                     }
  118.                 }
  119.             }
  120.             catch(e) {}
  121.         }
  122.         return { w3:w3cdom, pv:playerVersion, wk:webkit, ie:ie, win:windows, mac:mac };
  123.     }(),
  124.     
  125.     /* Cross-browser onDomLoad
  126.         - Will fire an event as soon as the DOM of a web page is loaded
  127.         - Internet Explorer workaround based on Diego Perini's solution: http://javascript.nwbox.com/IEContentLoaded/
  128.         - Regular onload serves as fallback
  129.     */ 
  130.     onDomLoad = function() {
  131.         if (!ua.w3) { return; }
  132.         if ((typeof doc.readyState != UNDEF && doc.readyState == "complete") || (typeof doc.readyState == UNDEF && (doc.getElementsByTagName("body")[0] || doc.body))) { // function is fired after onload, e.g. when script is inserted dynamically 
  133.             callDomLoadFunctions();
  134.         }
  135.         if (!isDomLoaded) {
  136.             if (typeof doc.addEventListener != UNDEF) {
  137.                 doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, false);
  138.             }       
  139.             if (ua.ie && ua.win) {
  140.                 doc.attachEvent(ON_READY_STATE_CHANGE, function() {
  141.                     if (doc.readyState == "complete") {
  142.                         doc.detachEvent(ON_READY_STATE_CHANGE, arguments.callee);
  143.                         callDomLoadFunctions();
  144.                     }
  145.                 });
  146.                 if (win == top) { // if not inside an iframe
  147.                     (function(){
  148.                         if (isDomLoaded) { return; }
  149.                         try {
  150.                             doc.documentElement.doScroll("left");
  151.                         }
  152.                         catch(e) {
  153.                             setTimeout(arguments.callee, 0);
  154.                             return;
  155.                         }
  156.                         callDomLoadFunctions();
  157.                     })();
  158.                 }
  159.             }
  160.             if (ua.wk) {
  161.                 (function(){
  162.                     if (isDomLoaded) { return; }
  163.                     if (!/loaded|complete/.test(doc.readyState)) {
  164.                         setTimeout(arguments.callee, 0);
  165.                         return;
  166.                     }
  167.                     callDomLoadFunctions();
  168.                 })();
  169.             }
  170.             addLoadEvent(callDomLoadFunctions);
  171.         }
  172.     }();
  173.     
  174.     function callDomLoadFunctions() {
  175.         if (isDomLoaded) { return; }
  176.         try { // test if we can really add/remove elements to/from the DOM; we don't want to fire it too early
  177.             var t = doc.getElementsByTagName("body")[0].appendChild(createElement("span"));
  178.             t.parentNode.removeChild(t);
  179.         }
  180.         catch (e) { return; }
  181.         isDomLoaded = true;
  182.         var dl = domLoadFnArr.length;
  183.         for (var i = 0; i < dl; i++) {
  184.             domLoadFnArr[i]();
  185.         }
  186.     }
  187.     
  188.     function addDomLoadEvent(fn) {
  189.         if (isDomLoaded) {
  190.             fn();
  191.         }
  192.         else { 
  193.             domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+
  194.         }
  195.     }
  196.     
  197.     /* Cross-browser onload
  198.         - Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/
  199.         - Will fire an event as soon as a web page including all of its assets are loaded 
  200.      */
  201.     function addLoadEvent(fn) {
  202.         if (typeof win.addEventListener != UNDEF) {
  203.             win.addEventListener("load", fn, false);
  204.         }
  205.         else if (typeof doc.addEventListener != UNDEF) {
  206.             doc.addEventListener("load", fn, false);
  207.         }
  208.         else if (typeof win.attachEvent != UNDEF) {
  209.             addListener(win, "onload", fn);
  210.         }
  211.         else if (typeof win.onload == "function") {
  212.             var fnOld = win.onload;
  213.             win.onload = function() {
  214.                 fnOld();
  215.                 fn();
  216.             };
  217.         }
  218.         else {
  219.             win.onload = fn;
  220.         }
  221.     }
  222.     
  223.     /* Main function
  224.         - Will preferably execute onDomLoad, otherwise onload (as a fallback)
  225.     */
  226.     function main() { 
  227.         if (plugin) {
  228.             testPlayerVersion();
  229.         }
  230.         else {
  231.             matchVersions();
  232.         }
  233.     }
  234.     
  235.     /* Detect the Flash Player version for non-Internet Explorer browsers
  236.         - Detecting the plug-in version via the object element is more precise than using the plugins collection item's description:
  237.           a. Both release and build numbers can be detected
  238.           b. Avoid wrong descriptions by corrupt installers provided by Adobe
  239.           c. Avoid wrong descriptions by multiple Flash Player entries in the plugin Array, caused by incorrect browser imports
  240.         - Disadvantage of this method is that it depends on the availability of the DOM, while the plugins collection is immediately available
  241.     */
  242.     function testPlayerVersion() {
  243.         var b = doc.getElementsByTagName("body")[0];
  244.         var o = createElement(OBJECT);
  245.         o.setAttribute("type", FLASH_MIME_TYPE);
  246.         var t = b.appendChild(o);
  247.         if (t) {
  248.             var counter = 0;
  249.             (function(){
  250.                 if (typeof t.GetVariable != UNDEF) {
  251.                     var d = t.GetVariable("$version");
  252.                     if (d) {
  253.                         d = d.split(" ")[1].split(",");
  254.                         ua.pv = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
  255.                     }
  256.                 }
  257.                 else if (counter < 10) {
  258.                     counter++;
  259.                     setTimeout(arguments.callee, 10);
  260.                     return;
  261.                 }
  262.                 b.removeChild(o);
  263.                 t = null;
  264.                 matchVersions();
  265.             })();
  266.         }
  267.         else {
  268.             matchVersions();
  269.         }
  270.     }
  271.     
  272.     /* Perform Flash Player and SWF version matching; static publishing only
  273.     */
  274.     function matchVersions() {
  275.         var rl = regObjArr.length;
  276.         if (rl > 0) {
  277.             for (var i = 0; i < rl; i++) { // for each registered object element
  278.                 var id = regObjArr[i].id;
  279.                 var cb = regObjArr[i].callbackFn;
  280.                 var cbObj = {success:false, id:id};
  281.                 if (ua.pv[0] > 0) {
  282.                     var obj = getElementById(id);
  283.                     if (obj) {
  284.                         if (hasPlayerVersion(regObjArr[i].swfVersion) && !(ua.wk && ua.wk < 312)) { // Flash Player version >= published SWF version: Houston, we have a match!
  285.                             setVisibility(id, true);
  286.                             if (cb) {
  287.                                 cbObj.success = true;
  288.                                 cbObj.ref = getObjectById(id);
  289.                                 cb(cbObj);
  290.                             }
  291.                         }
  292.                         else if (regObjArr[i].expressInstall && canExpressInstall()) { // show the Adobe Express Install dialog if set by the web page author and if supported
  293.                             var att = {};
  294.                             att.data = regObjArr[i].expressInstall;
  295.                             att.width = obj.getAttribute("width") || "0";
  296.                             att.height = obj.getAttribute("height") || "0";
  297.                             if (obj.getAttribute("class")) { att.styleclass = obj.getAttribute("class"); }
  298.                             if (obj.getAttribute("align")) { att.align = obj.getAttribute("align"); }
  299.                             // parse HTML object param element's name-value pairs
  300.                             var par = {};
  301.                             var p = obj.getElementsByTagName("param");
  302.                             var pl = p.length;
  303.                             for (var j = 0; j < pl; j++) {
  304.                                 if (p[j].getAttribute("name").toLowerCase() != "movie") {
  305.                                     par[p[j].getAttribute("name")] = p[j].getAttribute("value");
  306.                                 }
  307.                             }
  308.                             showExpressInstall(att, par, id, cb);
  309.                         }
  310.                         else { // Flash Player and SWF version mismatch or an older Webkit engine that ignores the HTML object element's nested param elements: display alternative content instead of SWF
  311.                             displayAltContent(obj);
  312.                             if (cb) { cb(cbObj); }
  313.                         }
  314.                     }
  315.                 }
  316.                 else {  // if no Flash Player is installed or the fp version cannot be detected we let the HTML object element do its job (either show a SWF or alternative content)
  317.                     setVisibility(id, true);
  318.                     if (cb) {
  319.                         var o = getObjectById(id); // test whether there is an HTML object element or not
  320.                         if (o && typeof o.SetVariable != UNDEF) { 
  321.                             cbObj.success = true;
  322.                             cbObj.ref = o;
  323.                         }
  324.                         cb(cbObj);
  325.                     }
  326.                 }
  327.             }
  328.         }
  329.     }
  330.     
  331.     function getObjectById(objectIdStr) {
  332.         var r = null;
  333.         var o = getElementById(objectIdStr);
  334.         if (o && o.nodeName == "OBJECT") {
  335.             if (typeof o.SetVariable != UNDEF) {
  336.                 r = o;
  337.             }
  338.             else {
  339.                 var n = o.getElementsByTagName(OBJECT)[0];
  340.                 if (n) {
  341.                     r = n;
  342.                 }
  343.             }
  344.         }
  345.         return r;
  346.     }
  347.     
  348.     /* Requirements for Adobe Express Install
  349.         - only one instance can be active at a time
  350.         - fp 6.0.65 or higher
  351.         - Win/Mac OS only
  352.         - no Webkit engines older than version 312
  353.     */
  354.     function canExpressInstall() {
  355.         return !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac) && !(ua.wk && ua.wk < 312);
  356.     }
  357.     
  358.     /* Show the Adobe Express Install dialog
  359.         - Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
  360.     */
  361.     function showExpressInstall(att, par, replaceElemIdStr, callbackFn) {
  362.         isExpressInstallActive = true;
  363.         storedCallbackFn = callbackFn || null;
  364.         storedCallbackObj = {success:false, id:replaceElemIdStr};
  365.         var obj = getElementById(replaceElemIdStr);
  366.         if (obj) {
  367.             if (obj.nodeName == "OBJECT") { // static publishing
  368.                 storedAltContent = abstractAltContent(obj);
  369.                 storedAltContentId = null;
  370.             }
  371.             else { // dynamic publishing
  372.                 storedAltContent = obj;
  373.                 storedAltContentId = replaceElemIdStr;
  374.             }
  375.             att.id = EXPRESS_INSTALL_ID;
  376.             if (typeof att.width == UNDEF || (!/%$/.test(att.width) && parseInt(att.width, 10) < 310)) { att.width = "310"; }
  377.             if (typeof att.height == UNDEF || (!/%$/.test(att.height) && parseInt(att.height, 10) < 137)) { att.height = "137"; }
  378.             doc.title = doc.title.slice(0, 47) + " - Flash Player Installation";
  379.             var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
  380.                 fv = "MMredirectURL=" + win.location.toString().replace(/&/g,"%26") + "&MMplayerType=" + pt + "&MMdoctitle=" + doc.title;
  381.             if (typeof par.flashvars != UNDEF) {
  382.                 par.flashvars += "&" + fv;
  383.             }
  384.             else {
  385.                 par.flashvars = fv;
  386.             }
  387.             // IE only: when a SWF is loading (AND: not available in cache) wait for the readyState of the object element to become 4 before removing it,
  388.             // because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
  389.             if (ua.ie && ua.win && obj.readyState != 4) {
  390.                 var newObj = createElement("div");
  391.                 replaceElemIdStr += "SWFObjectNew";
  392.                 newObj.setAttribute("id", replaceElemIdStr);
  393.                 obj.parentNode.insertBefore(newObj, obj); // insert placeholder div that will be replaced by the object element that loads expressinstall.swf
  394.                 obj.style.display = "none";
  395.                 (function(){
  396.                     if (obj.readyState == 4) {
  397.                         obj.parentNode.removeChild(obj);
  398.                     }
  399.                     else {
  400.                         setTimeout(arguments.callee, 10);
  401.                     }
  402.                 })();
  403.             }
  404.             createSWF(att, par, replaceElemIdStr);
  405.         }
  406.     }
  407.     
  408.     /* Functions to abstract and display alternative content
  409.     */
  410.     function displayAltContent(obj) {
  411.         if (ua.ie && ua.win && obj.readyState != 4) {
  412.             // IE only: when a SWF is loading (AND: not available in cache) wait for the readyState of the object element to become 4 before removing it,
  413.             // because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
  414.             var el = createElement("div");
  415.             obj.parentNode.insertBefore(el, obj); // insert placeholder div that will be replaced by the alternative content
  416.             el.parentNode.replaceChild(abstractAltContent(obj), el);
  417.             obj.style.display = "none";
  418.             (function(){
  419.                 if (obj.readyState == 4) {
  420.                     obj.parentNode.removeChild(obj);
  421.                 }
  422.                 else {
  423.                     setTimeout(arguments.callee, 10);
  424.                 }
  425.             })();
  426.         }
  427.         else {
  428.             obj.parentNode.replaceChild(abstractAltContent(obj), obj);
  429.         }
  430.     } 
  431.     function abstractAltContent(obj) {
  432.         var ac = createElement("div");
  433.         if (ua.win && ua.ie) {
  434.             ac.innerHTML = obj.innerHTML;
  435.         }
  436.         else {
  437.             var nestedObj = obj.getElementsByTagName(OBJECT)[0];
  438.             if (nestedObj) {
  439.                 var c = nestedObj.childNodes;
  440.                 if (c) {
  441.                     var cl = c.length;
  442.                     for (var i = 0; i < cl; i++) {
  443.                         if (!(c[i].nodeType == 1 && c[i].nodeName == "PARAM") && !(c[i].nodeType == 8)) {
  444.                             ac.appendChild(c[i].cloneNode(true));
  445.                         }
  446.                     }
  447.                 }
  448.             }
  449.         }
  450.         return ac;
  451.     }
  452.     
  453.     /* Cross-browser dynamic SWF creation
  454.     */
  455.     function createSWF(attObj, parObj, id) {
  456.         var r, el = getElementById(id);
  457.         if (ua.wk && ua.wk < 312) { return r; }
  458.         if (el) {
  459.             if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
  460.                 attObj.id = id;
  461.             }
  462.             if (ua.ie && ua.win) { // Internet Explorer + the HTML object element + W3C DOM methods do not combine: fall back to outerHTML
  463.                 var att = "";
  464.                 for (var i in attObj) {
  465.                     if (attObj[i] != Object.prototype[i]) { // filter out prototype additions from other potential libraries
  466.                         if (i.toLowerCase() == "data") {
  467.                             parObj.movie = attObj[i];
  468.                         }
  469.                         else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
  470.                             att += ' class="' + attObj[i] + '"';
  471.                         }
  472.                         else if (i.toLowerCase() != "classid") {
  473.                             att += ' ' + i + '="' + attObj[i] + '"';
  474.                         }
  475.                     }
  476.                 }
  477.                 var par = "";
  478.                 for (var j in parObj) {
  479.                     if (parObj[j] != Object.prototype[j]) { // filter out prototype additions from other potential libraries
  480.                         par += '<param name="' + j + '" value="' + parObj[j] + '" />';
  481.                     }
  482.                 }
  483.                 el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
  484.                 objIdArr[objIdArr.length] = attObj.id; // stored to fix object 'leaks' on unload (dynamic publishing only)
  485.                 r = getElementById(attObj.id);  
  486.             }
  487.             else { // well-behaving browsers
  488.                 var o = createElement(OBJECT);
  489.                 o.setAttribute("type", FLASH_MIME_TYPE);
  490.                 for (var m in attObj) {
  491.                     if (attObj[m] != Object.prototype[m]) { // filter out prototype additions from other potential libraries
  492.                         if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
  493.                             o.setAttribute("class", attObj[m]);
  494.                         }
  495.                         else if (m.toLowerCase() != "classid") { // filter out IE specific attribute
  496.                             o.setAttribute(m, attObj[m]);
  497.                         }
  498.                     }
  499.                 }
  500.                 for (var n in parObj) {
  501.                     if (parObj[n] != Object.prototype[n] && n.toLowerCase() != "movie") { // filter out prototype additions from other potential libraries and IE specific param element
  502.                         createObjParam(o, n, parObj[n]);
  503.                     }
  504.                 }
  505.                 el.parentNode.replaceChild(o, el);
  506.                 r = o;
  507.             }
  508.         }
  509.         return r;
  510.     }
  511.     
  512.     function createObjParam(el, pName, pValue) {
  513.         var p = createElement("param");
  514.         p.setAttribute("name", pName);  
  515.         p.setAttribute("value", pValue);
  516.         el.appendChild(p);
  517.     }
  518.     
  519.     /* Cross-browser SWF removal
  520.         - Especially needed to safely and completely remove a SWF in Internet Explorer
  521.     */
  522.     function removeSWF(id) {
  523.         var obj = getElementById(id);
  524.         if (obj && obj.nodeName == "OBJECT") {
  525.             if (ua.ie && ua.win) {
  526.                 obj.style.display = "none";
  527.                 (function(){
  528.                     if (obj.readyState == 4) {
  529.                         removeObjectInIE(id);
  530.                     }
  531.                     else {
  532.                         setTimeout(arguments.callee, 10);
  533.                     }
  534.                 })();
  535.             }
  536.             else {
  537.                 obj.parentNode.removeChild(obj);
  538.             }
  539.         }
  540.     }
  541.     
  542.     function removeObjectInIE(id) {
  543.         var obj = getElementById(id);
  544.         if (obj) {
  545.             for (var i in obj) {
  546.                 if (typeof obj[i] == "function") {
  547.                     obj[i] = null;
  548.                 }
  549.             }
  550.             obj.parentNode.removeChild(obj);
  551.         }
  552.     }
  553.     
  554.     /* Functions to optimize JavaScript compression
  555.     */
  556.     function getElementById(id) {
  557.         var el = null;
  558.         try {
  559.             el = doc.getElementById(id);
  560.         }
  561.         catch (e) {}
  562.         return el;
  563.     }
  564.     
  565.     function createElement(el) {
  566.         return doc.createElement(el);
  567.     }
  568.     
  569.     /* Updated attachEvent function for Internet Explorer
  570.         - Stores attachEvent information in an Array, so on unload the detachEvent functions can be called to avoid memory leaks
  571.     */  
  572.     function addListener(target, eventType, fn) {
  573.         target.attachEvent(eventType, fn);
  574.         listenersArr[listenersArr.length] = [target, eventType, fn];
  575.     }
  576.     
  577.     /* Flash Player and SWF content version matching
  578.     */
  579.     function hasPlayerVersion(rv) {
  580.         var pv = ua.pv, v = rv.split(".");
  581.         v[0] = parseInt(v[0], 10);
  582.         v[1] = parseInt(v[1], 10) || 0; // supports short notation, e.g. "9" instead of "9.0.0"
  583.         v[2] = parseInt(v[2], 10) || 0;
  584.         return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
  585.     }
  586.     
  587.     /* Cross-browser dynamic CSS creation
  588.         - Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php
  589.     */  
  590.     function createCSS(sel, decl, media, newStyle) {
  591.         if (ua.ie && ua.mac) { return; }
  592.         var h = doc.getElementsByTagName("head")[0];
  593.         if (!h) { return; } // to also support badly authored HTML pages that lack a head element
  594.         var m = (media && typeof media == "string") ? media : "screen";
  595.         if (newStyle) {
  596.             dynamicStylesheet = null;
  597.             dynamicStylesheetMedia = null;
  598.         }
  599.         if (!dynamicStylesheet || dynamicStylesheetMedia != m) { 
  600.             // create dynamic stylesheet + get a global reference to it
  601.             var s = createElement("style");
  602.             s.setAttribute("type", "text/css");
  603.             s.setAttribute("media", m);
  604.             dynamicStylesheet = h.appendChild(s);
  605.             if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) {
  606.                 dynamicStylesheet = doc.styleSheets[doc.styleSheets.length - 1];
  607.             }
  608.             dynamicStylesheetMedia = m;
  609.         }
  610.         // add style rule
  611.         if (ua.ie && ua.win) {
  612.             if (dynamicStylesheet && typeof dynamicStylesheet.addRule == OBJECT) {
  613.                 dynamicStylesheet.addRule(sel, decl);
  614.             }
  615.         }
  616.         else {
  617.             if (dynamicStylesheet && typeof doc.createTextNode != UNDEF) {
  618.                 dynamicStylesheet.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
  619.             }
  620.         }
  621.     }
  622.     
  623.     function setVisibility(id, isVisible) {
  624.         if (!autoHideShow) { return; }
  625.         var v = isVisible ? "visible" : "hidden";
  626.         if (isDomLoaded && getElementById(id)) {
  627.             getElementById(id).style.visibility = v;
  628.         }
  629.         else {
  630.             createCSS("#" + id, "visibility:" + v);
  631.         }
  632.     }
  633.     /* Filter to avoid XSS attacks
  634.     */
  635.     function urlEncodeIfNecessary(s) {
  636.         var regex = /[\"<>.;]/;
  637.         var hasBadChars = regex.exec(s) != null;
  638.         return hasBadChars && typeof encodeURIComponent != UNDEF ? encodeURIComponent(s) : s;
  639.     }
  640.     
  641.     /* Release memory to avoid memory leaks caused by closures, fix hanging audio/video threads and force open sockets/NetConnections to disconnect (Internet Explorer only)
  642.     */
  643.     var cleanup = function() {
  644.         if (ua.ie && ua.win) {
  645.             window.attachEvent("onunload", function() {
  646.                 // remove listeners to avoid memory leaks
  647.                 var ll = listenersArr.length;
  648.                 for (var i = 0; i < ll; i++) {
  649.                     listenersArr[i][0].detachEvent(listenersArr[i][1], listenersArr[i][2]);
  650.                 }
  651.                 // cleanup dynamically embedded objects to fix audio/video threads and force open sockets and NetConnections to disconnect
  652.                 var il = objIdArr.length;
  653.                 for (var j = 0; j < il; j++) {
  654.                     removeSWF(objIdArr[j]);
  655.                 }
  656.                 // cleanup library's main closures to avoid memory leaks
  657.                 for (var k in ua) {
  658.                     ua[k] = null;
  659.                 }
  660.                 ua = null;
  661.                 for (var l in swfobject) {
  662.                     swfobject[l] = null;
  663.                 }
  664.                 swfobject = null;
  665.             });
  666.         }
  667.     }();
  668.     
  669.     return {
  670.         /* Public API
  671.             - Reference: http://code.google.com/p/swfobject/wiki/documentation
  672.         */ 
  673.         registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr, callbackFn) {
  674.             if (ua.w3 && objectIdStr && swfVersionStr) {
  675.                 var regObj = {};
  676.                 regObj.id = objectIdStr;
  677.                 regObj.swfVersion = swfVersionStr;
  678.                 regObj.expressInstall = xiSwfUrlStr;
  679.                 regObj.callbackFn = callbackFn;
  680.                 regObjArr[regObjArr.length] = regObj;
  681.                 setVisibility(objectIdStr, false);
  682.             }
  683.             else if (callbackFn) {
  684.                 callbackFn({success:false, id:objectIdStr});
  685.             }
  686.         },
  687.         
  688.         getObjectById: function(objectIdStr) {
  689.             if (ua.w3) {
  690.                 return getObjectById(objectIdStr);
  691.             }
  692.         },
  693.         
  694.         embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj, callbackFn) {
  695.             var callbackObj = {success:false, id:replaceElemIdStr};
  696.             if (ua.w3 && !(ua.wk && ua.wk < 312) && swfUrlStr && replaceElemIdStr && widthStr && heightStr && swfVersionStr) {
  697.                 setVisibility(replaceElemIdStr, false);
  698.                 addDomLoadEvent(function() {
  699.                     widthStr += ""; // auto-convert to string
  700.                     heightStr += "";
  701.                     var att = {};
  702.                     if (attObj && typeof attObj === OBJECT) {
  703.                         for (var i in attObj) { // copy object to avoid the use of references, because web authors often reuse attObj for multiple SWFs
  704.                             att[i] = attObj[i];
  705.                         }
  706.                     }
  707.                     att.data = swfUrlStr;
  708.                     att.width = widthStr;
  709.                     att.height = heightStr;
  710.                     var par = {}; 
  711.                     if (parObj && typeof parObj === OBJECT) {
  712.                         for (var j in parObj) { // copy object to avoid the use of references, because web authors often reuse parObj for multiple SWFs
  713.                             par[j] = parObj[j];
  714.                         }
  715.                     }
  716.                     if (flashvarsObj && typeof flashvarsObj === OBJECT) {
  717.                         for (var k in flashvarsObj) { // copy object to avoid the use of references, because web authors often reuse flashvarsObj for multiple SWFs
  718.                             if (typeof par.flashvars != UNDEF) {
  719.                                 par.flashvars += "&" + k + "=" + flashvarsObj[k];
  720.                             }
  721.                             else {
  722.                                 par.flashvars = k + "=" + flashvarsObj[k];
  723.                             }
  724.                         }
  725.                     }
  726.                     if (hasPlayerVersion(swfVersionStr)) { // create SWF
  727.                         var obj = createSWF(att, par, replaceElemIdStr);
  728.                         if (att.id == replaceElemIdStr) {
  729.                             setVisibility(replaceElemIdStr, true);
  730.                         }
  731.                         callbackObj.success = true;
  732.                         callbackObj.ref = obj;
  733.                     }
  734.                     else if (xiSwfUrlStr && canExpressInstall()) { // show Adobe Express Install
  735.                         att.data = xiSwfUrlStr;
  736.                         showExpressInstall(att, par, replaceElemIdStr, callbackFn);
  737.                         return;
  738.                     }
  739.                     else { // show alternative content
  740.                         setVisibility(replaceElemIdStr, true);
  741.                     }
  742.                     if (callbackFn) { callbackFn(callbackObj); }
  743.                 });
  744.             }
  745.             else if (callbackFn) { callbackFn(callbackObj); }
  746.         },
  747.         
  748.         switchOffAutoHideShow: function() {
  749.             autoHideShow = false;
  750.         },
  751.         
  752.         ua: ua,
  753.         
  754.         getFlashPlayerVersion: function() {
  755.             return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] };
  756.         },
  757.         
  758.         hasFlashPlayerVersion: hasPlayerVersion,
  759.         
  760.         createSWF: function(attObj, parObj, replaceElemIdStr) {
  761.             if (ua.w3) {
  762.                 return createSWF(attObj, parObj, replaceElemIdStr);
  763.             }
  764.             else {
  765.                 return undefined;
  766.             }
  767.         },
  768.         
  769.         showExpressInstall: function(att, par, replaceElemIdStr, callbackFn) {
  770.             if (ua.w3 && canExpressInstall()) {
  771.                 showExpressInstall(att, par, replaceElemIdStr, callbackFn);
  772.             }
  773.         },
  774.         
  775.         removeSWF: function(objElemIdStr) {
  776.             if (ua.w3) {
  777.                 removeSWF(objElemIdStr);
  778.             }
  779.         },
  780.         
  781.         createCSS: function(selStr, declStr, mediaStr, newStyleBoolean) {
  782.             if (ua.w3) {
  783.                 createCSS(selStr, declStr, mediaStr, newStyleBoolean);
  784.             }
  785.         },
  786.         
  787.         addDomLoadEvent: addDomLoadEvent,
  788.         
  789.         addLoadEvent: addLoadEvent,
  790.         
  791.         getQueryParamValue: function(param) {
  792.             var q = doc.location.search || doc.location.hash;
  793.             if (q) {
  794.                 if (/?/.test(q)) { q = q.split("?")[1]; } // strip question mark
  795.                 if (param == null) {
  796.                     return urlEncodeIfNecessary(q);
  797.                 }
  798.                 var pairs = q.split("&");
  799.                 for (var i = 0; i < pairs.length; i++) {
  800.                     if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
  801.                         return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=") + 1)));
  802.                     }
  803.                 }
  804.             }
  805.             return "";
  806.         },
  807.         
  808.         // For internal usage only
  809.         expressInstallCallback: function() {
  810.             if (isExpressInstallActive) {
  811.                 var obj = getElementById(EXPRESS_INSTALL_ID);
  812.                 if (obj && storedAltContent) {
  813.                     obj.parentNode.replaceChild(storedAltContent, obj);
  814.                     if (storedAltContentId) {
  815.                         setVisibility(storedAltContentId, true);
  816.                         if (ua.ie && ua.win) { storedAltContent.style.display = "block"; }
  817.                     }
  818.                     if (storedCallbackFn) { storedCallbackFn(storedCallbackObj); }
  819.                 }
  820.                 isExpressInstallActive = false;
  821.             } 
  822.         }
  823.     };
  824. }();
  825. /**  * @class Ext.FlashComponent  * @extends Ext.BoxComponent  * @constructor  * @xtype flash  */ Ext.FlashComponent = Ext.extend(Ext.BoxComponent, {     /**      * @cfg {String} flashVersion      * Indicates the version the flash content was published for. Defaults to <tt>'9.0.45'</tt>.      */     flashVersion : '9.0.45',     /**      * @cfg {String} backgroundColor      * The background color of the chart. Defaults to <tt>'#ffffff'</tt>.      */     backgroundColor: '#ffffff',     /**      * @cfg {String} wmode      * The wmode of the flash object. This can be used to control layering. Defaults to <tt>'opaque'</tt>.      */     wmode: 'opaque',     /**      * @cfg {String} url      * The URL of the chart to include. Defaults to <tt>undefined</tt>.      */     url: undefined,     swfId : undefined,     swfWidth: '100%',     swfHeight: '100%',     /**      * @cfg {Boolean} expressInstall      * True to prompt the user to install flash if not installed. Note that this uses      * Ext.FlashComponent.EXPRESS_INSTALL_URL, which should be set to the local resource. Defaults to <tt>false</tt>.      */     expressInstall: false,     initComponent : function(){         Ext.FlashComponent.superclass.initComponent.call(this);         this.addEvents('initialize');     },     onRender : function(){         Ext.FlashComponent.superclass.onRender.apply(this, arguments);         var params = {             allowScriptAccess: 'always',             bgcolor: this.backgroundColor,             wmode: this.wmode         }, vars = {             allowedDomain: document.location.hostname,             elementID: this.getId(),             eventHandler: 'Ext.FlashEventProxy.onEvent'         };         new swfobject.embedSWF(this.url, this.id, this.swfWidth, this.swfHeight, this.flashVersion,             this.expressInstall ? Ext.FlashComponent.EXPRESS_INSTALL_URL : undefined, vars, params);         this.swf = Ext.getDom(this.id);         this.el = Ext.get(this.swf);     },     getSwfId : function(){         return this.swfId || (this.swfId = "extswf" + (++Ext.Component.AUTO_ID));     },     getId : function(){         return this.id || (this.id = "extflashcmp" + (++Ext.Component.AUTO_ID));     },     onFlashEvent : function(e){         switch(e.type){             case "swfReady":                 this.initSwf();                 return;             case "log":                 return;         }         e.component = this;         this.fireEvent(e.type.toLowerCase().replace(/event$/, ''), e);     },     initSwf : function(){         this.onSwfReady(!!this.isInitialized);         this.isInitialized = true;         this.fireEvent('initialize', this);     },     beforeDestroy: function(){         if(this.rendered){             swfobject.removeSWF(this.swf.id);         }         Ext.FlashComponent.superclass.beforeDestroy.call(this);     },     onSwfReady : Ext.emptyFn }); /**  * Sets the url for installing flash if it doesn't exist. This should be set to a local resource.  * @static  * @type String  */ Ext.FlashComponent.EXPRESS_INSTALL_URL = 'http:/' + '/swfobject.googlecode.com/svn/trunk/swfobject/expressInstall.swf'; Ext.reg('flash', Ext.FlashComponent);/**
  826.  * @class Ext.FlashProxy
  827.  * @singleton
  828.  */
  829. Ext.FlashEventProxy = {
  830.     onEvent : function(id, e){
  831.         var fp = Ext.getCmp(id);
  832.         if(fp){
  833.             fp.onFlashEvent(e);
  834.         }else{
  835.             arguments.callee.defer(10, this, [id, e]);
  836.         }
  837.     }
  838. }/**
  839.  * @class Ext.chart.Chart
  840.  * @extends Ext.FlashComponent
  841.  * The Ext.chart package provides the capability to visualize data with flash based charting.
  842.  * Each chart binds directly to an Ext.data.Store enabling automatic updates of the chart.
  843.  * @constructor
  844.  * @xtype chart
  845.  */
  846.  
  847.  Ext.chart.Chart = Ext.extend(Ext.FlashComponent, {
  848.     refreshBuffer: 100,
  849.     /**
  850.      * @cfg {Object} chartStyle
  851.      * Sets styles for this chart. Contains a number of default values. Modifying this property will override
  852.      * the base styles on the chart.
  853.      */
  854.     chartStyle: {
  855.         padding: 10,
  856.         animationEnabled: true,
  857.         font: {
  858.             name: 'Tahoma',
  859.             color: 0x444444,
  860.             size: 11
  861.         },
  862.         dataTip: {
  863.             padding: 5,
  864.             border: {
  865.                 color: 0x99bbe8,
  866.                 size:1
  867.             },
  868.             background: {
  869.                 color: 0xDAE7F6,
  870.                 alpha: .9
  871.             },
  872.             font: {
  873.                 name: 'Tahoma',
  874.                 color: 0x15428B,
  875.                 size: 10,
  876.                 bold: true
  877.             }
  878.         }
  879.     },
  880.     
  881.     /**
  882.      * @cfg {String} url
  883.      * The url to load the chart from. This defaults to Ext.chart.Chart.CHART_URL, which should
  884.      * be modified to point to the local charts resource.
  885.      */
  886.     
  887.     /**
  888.      * @cfg {Object} extraStyle
  889.      * Contains extra styles that will be added or overwritten to the default chartStyle. Defaults to <tt>null</tt>.
  890.      */
  891.     extraStyle: null,
  892.     
  893.     /**
  894.      * @cfg {Boolean} disableCaching
  895.      * True to add a "cache buster" to the end of the chart url. Defaults to true for Opera and IE.
  896.      */
  897.     disableCaching: Ext.isIE || Ext.isOpera,
  898.     disableCacheParam: '_dc',
  899.     initComponent : function(){
  900.         Ext.chart.Chart.superclass.initComponent.call(this);
  901.         if(!this.url){
  902.             this.url = Ext.chart.Chart.CHART_URL;
  903.         }
  904.         if(this.disableCaching){
  905.             this.url = Ext.urlAppend(this.url, String.format('{0}={1}', this.disableCacheParam, new Date().getTime()));
  906.         }
  907.         this.addEvents(
  908.             'itemmouseover',
  909.             'itemmouseout',
  910.             'itemclick',
  911.             'itemdoubleclick',
  912.             'itemdragstart',
  913.             'itemdrag',
  914.             'itemdragend'
  915.         );
  916.         this.store = Ext.StoreMgr.lookup(this.store);
  917.     },
  918.     /**
  919.      * Sets a single style value on the Chart instance.
  920.      *
  921.      * @param name {String} Name of the Chart style value to change.
  922.      * @param value {Object} New value to pass to the Chart style.
  923.      */
  924.      setStyle: function(name, value){
  925.          this.swf.setStyle(name, Ext.encode(value));
  926.      },
  927.     /**
  928.      * Resets all styles on the Chart instance.
  929.      *
  930.      * @param styles {Object} Initializer for all Chart styles.
  931.      */
  932.     setStyles: function(styles){
  933.         this.swf.setStyles(Ext.encode(styles));
  934.     },
  935.     /**
  936.      * Sets the styles on all series in the Chart.
  937.      *
  938.      * @param styles {Array} Initializer for all Chart series styles.
  939.      */
  940.     setSeriesStyles: function(styles){
  941.         var s = [];
  942.         Ext.each(styles, function(style){
  943.             s.push(Ext.encode(style));
  944.         });
  945.         this.swf.setSeriesStyles(s);
  946.     },
  947.     setCategoryNames : function(names){
  948.         this.swf.setCategoryNames(names);
  949.     },
  950.     setTipRenderer : function(fn){
  951.         var chart = this;
  952.         this.tipFnName = this.createFnProxy(function(item, index, series){
  953.             var record = chart.store.getAt(index);
  954.             return fn(chart, record, index, series);
  955.         }, this.tipFnName);
  956.         this.swf.setDataTipFunction(this.tipFnName);
  957.     },
  958.     setSeries : function(series){
  959.         this.series = series;
  960.         this.refresh();
  961.     },
  962.     /**
  963.      * Changes the data store bound to this chart and refreshes it.
  964.      * @param {Store} store The store to bind to this chart
  965.      */
  966.     bindStore : function(store, initial){
  967.         if(!initial && this.store){
  968.             this.store.un("datachanged", this.refresh, this);
  969.             this.store.un("add", this.delayRefresh, this);
  970.             this.store.un("remove", this.delayRefresh, this);
  971.             this.store.un("update", this.delayRefresh, this);
  972.             this.store.un("clear", this.refresh, this);
  973.             if(store !== this.store && this.store.autoDestroy){
  974.                 this.store.destroy();
  975.             }
  976.         }
  977.         if(store){
  978.             store = Ext.StoreMgr.lookup(store);
  979.             store.on({
  980.                 scope: this,
  981.                 datachanged: this.refresh,
  982.                 add: this.delayRefresh,
  983.                 remove: this.delayRefresh,
  984.                 update: this.delayRefresh,
  985.                 clear: this.refresh
  986.             });
  987.         }
  988.         this.store = store;
  989.         if(store && !initial){
  990.             this.refresh();
  991.         }
  992.     },
  993.     onSwfReady : function(isReset){
  994.         Ext.chart.Chart.superclass.onSwfReady.call(this, isReset);
  995.         this.swf.setType(this.type);
  996.         if(this.chartStyle){
  997.             this.setStyles(Ext.apply(this.extraStyle || {}, this.chartStyle));
  998.         }
  999.         if(this.categoryNames){
  1000.             this.setCategoryNames(this.categoryNames);
  1001.         }
  1002.         if(this.tipRenderer){
  1003.             this.setTipRenderer(this.tipRenderer);
  1004.         }
  1005.         if(!isReset){
  1006.             this.bindStore(this.store, true);
  1007.         }
  1008.         this.refresh.defer(10, this);
  1009.     },
  1010.     delayRefresh : function(){
  1011.         if(!this.refreshTask){
  1012.             this.refreshTask = new Ext.util.DelayedTask(this.refresh, this);
  1013.         }
  1014.         this.refreshTask.delay(this.refreshBuffer);
  1015.     },
  1016.     refresh : function(){
  1017.         var styleChanged = false;
  1018.         // convert the store data into something YUI charts can understand
  1019.         var data = [], rs = this.store.data.items;
  1020.         for(var j = 0, len = rs.length; j < len; j++){
  1021.             data[j] = rs[j].data;
  1022.         }
  1023.         //make a copy of the series definitions so that we aren't
  1024.         //editing them directly.
  1025.         var dataProvider = [];
  1026.         var seriesCount = 0;
  1027.         var currentSeries = null;
  1028.         var i = 0;
  1029.         if(this.series){
  1030.             seriesCount = this.series.length;
  1031.             for(i = 0; i < seriesCount; i++){
  1032.                 currentSeries = this.series[i];
  1033.                 var clonedSeries = {};
  1034.                 for(var prop in currentSeries){
  1035.                     if(prop == "style" && currentSeries.style !== null){
  1036.                         clonedSeries.style = Ext.encode(currentSeries.style);
  1037.                         styleChanged = true;
  1038.                         //we don't want to modify the styles again next time
  1039.                         //so null out the style property.
  1040.                         // this causes issues
  1041.                         // currentSeries.style = null;
  1042.                     } else{
  1043.                         clonedSeries[prop] = currentSeries[prop];
  1044.                     }
  1045.                 }
  1046.                 dataProvider.push(clonedSeries);
  1047.             }
  1048.         }
  1049.         if(seriesCount > 0){
  1050.             for(i = 0; i < seriesCount; i++){
  1051.                 currentSeries = dataProvider[i];
  1052.                 if(!currentSeries.type){
  1053.                     currentSeries.type = this.type;
  1054.                 }
  1055.                 currentSeries.dataProvider = data;
  1056.             }
  1057.         } else{
  1058.             dataProvider.push({type: this.type, dataProvider: data});
  1059.         }
  1060.         this.swf.setDataProvider(dataProvider);
  1061.     },
  1062.     createFnProxy : function(fn, old){
  1063.         if(old){
  1064.             delete window[old];
  1065.         }
  1066.         var fnName = "extFnProxy" + (++Ext.chart.Chart.PROXY_FN_ID);
  1067.         window[fnName] = fn;
  1068.         return fnName;
  1069.     },
  1070.     
  1071.     onDestroy: function(){
  1072.         Ext.chart.Chart.superclass.onDestroy.call(this);
  1073.         delete window[this.tipFnName];
  1074.     }
  1075. });
  1076. Ext.reg('chart', Ext.chart.Chart);
  1077. Ext.chart.Chart.PROXY_FN_ID = 0;
  1078. /**
  1079.  * Sets the url to load the chart from. This should be set to a local resource.
  1080.  * @static
  1081.  * @type String
  1082.  */
  1083. Ext.chart.Chart.CHART_URL = 'http:/' + '/yui.yahooapis.com/2.7.0/build/charts/assets/charts.swf';
  1084. /**
  1085.  * @class Ext.chart.PieChart
  1086.  * @extends Ext.chart.Chart
  1087.  * @constructor
  1088.  * @xtype piechart
  1089.  */
  1090. Ext.chart.PieChart = Ext.extend(Ext.chart.Chart, {
  1091.     type: 'pie',
  1092.     onSwfReady : function(isReset){
  1093.         Ext.chart.PieChart.superclass.onSwfReady.call(this, isReset);
  1094.         this.setDataField(this.dataField);
  1095.         this.setCategoryField(this.categoryField);
  1096.     },
  1097.     setDataField : function(field){
  1098.         this.dataField = field;
  1099.         this.swf.setDataField(field);
  1100.     },
  1101.     setCategoryField : function(field){
  1102.         this.categoryField = field;
  1103.         this.swf.setCategoryField(field);
  1104.     }
  1105. });
  1106. Ext.reg('piechart', Ext.chart.PieChart);
  1107. /**
  1108.  * @class Ext.chart.CartesianChart
  1109.  * @extends Ext.chart.Chart
  1110.  * @constructor
  1111.  * @xtype cartesianchart
  1112.  */
  1113. Ext.chart.CartesianChart = Ext.extend(Ext.chart.Chart, {
  1114.     onSwfReady : function(isReset){
  1115.         Ext.chart.CartesianChart.superclass.onSwfReady.call(this, isReset);
  1116.         if(this.xField){
  1117.             this.setXField(this.xField);
  1118.         }
  1119.         if(this.yField){
  1120.             this.setYField(this.yField);
  1121.         }
  1122.         if(this.xAxis){
  1123.             this.setXAxis(this.xAxis);
  1124.         }
  1125.         if(this.yAxis){
  1126.             this.setYAxis(this.yAxis);
  1127.         }
  1128.     },
  1129.     setXField : function(value){
  1130.         this.xField = value;
  1131.         this.swf.setHorizontalField(value);
  1132.     },
  1133.     setYField : function(value){
  1134.         this.yField = value;
  1135.         this.swf.setVerticalField(value);
  1136.     },
  1137.     setXAxis : function(value){
  1138.         this.xAxis = this.createAxis('xAxis', value);
  1139.         this.swf.setHorizontalAxis(this.xAxis);
  1140.     },
  1141.     setYAxis : function(value){
  1142.         this.yAxis = this.createAxis('yAxis', value);
  1143.         this.swf.setVerticalAxis(this.yAxis);
  1144.     },
  1145.     createAxis : function(axis, value){
  1146.         var o = Ext.apply({}, value), oldFn = null;
  1147.         if(this[axis]){
  1148.             oldFn = this[axis].labelFunction;
  1149.         }
  1150.         if(o.labelRenderer){
  1151.             var fn = o.labelRenderer;
  1152.             o.labelFunction = this.createFnProxy(function(v){
  1153.                 return fn(v);
  1154.             }, oldFn);
  1155.             delete o.labelRenderer;
  1156.         }
  1157.         return o;
  1158.     }
  1159. });
  1160. Ext.reg('cartesianchart', Ext.chart.CartesianChart);
  1161. /**
  1162.  * @class Ext.chart.LineChart
  1163.  * @extends Ext.chart.CartesianChart
  1164.  * @constructor
  1165.  * @xtype linechart
  1166.  */
  1167. Ext.chart.LineChart = Ext.extend(Ext.chart.CartesianChart, {
  1168.     type: 'line'
  1169. });
  1170. Ext.reg('linechart', Ext.chart.LineChart);
  1171. /**
  1172.  * @class Ext.chart.ColumnChart
  1173.  * @extends Ext.chart.CartesianChart
  1174.  * @constructor
  1175.  * @xtype columnchart
  1176.  */
  1177. Ext.chart.ColumnChart = Ext.extend(Ext.chart.CartesianChart, {
  1178.     type: 'column'
  1179. });
  1180. Ext.reg('columnchart', Ext.chart.ColumnChart);
  1181. /**
  1182.  * @class Ext.chart.StackedColumnChart
  1183.  * @extends Ext.chart.CartesianChart
  1184.  * @constructor
  1185.  * @xtype stackedcolumnchart
  1186.  */
  1187. Ext.chart.StackedColumnChart = Ext.extend(Ext.chart.CartesianChart, {
  1188.     type: 'stackcolumn'
  1189. });
  1190. Ext.reg('stackedcolumnchart', Ext.chart.StackedColumnChart);
  1191. /**
  1192.  * @class Ext.chart.BarChart
  1193.  * @extends Ext.chart.CartesianChart
  1194.  * @constructor
  1195.  * @xtype barchart
  1196.  */
  1197. Ext.chart.BarChart = Ext.extend(Ext.chart.CartesianChart, {
  1198.     type: 'bar'
  1199. });
  1200. Ext.reg('barchart', Ext.chart.BarChart);
  1201. /**
  1202.  * @class Ext.chart.StackedBarChart
  1203.  * @extends Ext.chart.CartesianChart
  1204.  * @constructor
  1205.  * @xtype stackedbarchart
  1206.  */
  1207. Ext.chart.StackedBarChart = Ext.extend(Ext.chart.CartesianChart, {
  1208.     type: 'stackbar'
  1209. });
  1210. Ext.reg('stackedbarchart', Ext.chart.StackedBarChart);
  1211. /**
  1212.  * @class Ext.chart.Axis
  1213.  * Defines a CartesianChart's vertical or horizontal axis.
  1214.  * @constructor
  1215.  */
  1216. Ext.chart.Axis = function(config){
  1217.     Ext.apply(this, config);
  1218. };
  1219. Ext.chart.Axis.prototype =
  1220. {
  1221.     /**
  1222.      * The type of axis.
  1223.      *
  1224.      * @property type
  1225.      * @type String
  1226.      */
  1227.     type: null,
  1228.     /**
  1229.      * The direction in which the axis is drawn. May be "horizontal" or "vertical".
  1230.      *
  1231.      * @property orientation
  1232.      * @type String
  1233.      */
  1234.     orientation: "horizontal",
  1235.     /**
  1236.      * If true, the items on the axis will be drawn in opposite direction.
  1237.      *
  1238.      * @property reverse
  1239.      * @type Boolean
  1240.      */
  1241.     reverse: false,
  1242.     /**
  1243.      * A string reference to the globally-accessible function that may be called to
  1244.      * determine each of the label values for this axis.
  1245.      *
  1246.      * @property labelFunction
  1247.      * @type String
  1248.      */
  1249.     labelFunction: null,
  1250.     /**
  1251.      * If true, labels that overlap previously drawn labels on the axis will be hidden.
  1252.      *
  1253.      * @property hideOverlappingLabels
  1254.      * @type Boolean
  1255.      */
  1256.     hideOverlappingLabels: true
  1257. };
  1258. /**
  1259.  * @class Ext.chart.NumericAxis
  1260.  * @extends Ext.chart.Axis
  1261.  * A type of axis whose units are measured in numeric values.
  1262.  * @constructor
  1263.  */
  1264. Ext.chart.NumericAxis = Ext.extend(Ext.chart.Axis, {
  1265.     type: "numeric",
  1266.     /**
  1267.      * The minimum value drawn by the axis. If not set explicitly, the axis minimum
  1268.      * will be calculated automatically.
  1269.      *
  1270.      * @property minimum
  1271.      * @type Number
  1272.      */
  1273.     minimum: NaN,
  1274.     /**
  1275.      * The maximum value drawn by the axis. If not set explicitly, the axis maximum
  1276.      * will be calculated automatically.
  1277.      *
  1278.      * @property maximum
  1279.      * @type Number
  1280.      */
  1281.     maximum: NaN,
  1282.     /**
  1283.      * The spacing between major intervals on this axis.
  1284.      *
  1285.      * @property majorUnit
  1286.      * @type Number
  1287.      */
  1288.     majorUnit: NaN,
  1289.     /**
  1290.      * The spacing between minor intervals on this axis.
  1291.      *
  1292.      * @property minorUnit
  1293.      * @type Number
  1294.      */
  1295.     minorUnit: NaN,
  1296.     /**
  1297.      * If true, the labels, ticks, gridlines, and other objects will snap to
  1298.      * the nearest major or minor unit. If false, their position will be based
  1299.      * on the minimum value.
  1300.      *
  1301.      * @property snapToUnits
  1302.      * @type Boolean
  1303.      */
  1304.     snapToUnits: true,
  1305.     /**
  1306.      * If true, and the bounds are calculated automatically, either the minimum or
  1307.      * maximum will be set to zero.
  1308.      *
  1309.      * @property alwaysShowZero
  1310.      * @type Boolean
  1311.      */
  1312.     alwaysShowZero: true,
  1313.     /**
  1314.      * The scaling algorithm to use on this axis. May be "linear" or "logarithmic".
  1315.      *
  1316.      * @property scale
  1317.      * @type String
  1318.      */
  1319.     scale: "linear"
  1320. });
  1321. /**
  1322.  * @class Ext.chart.TimeAxis
  1323.  * @extends Ext.chart.Axis
  1324.  * A type of axis whose units are measured in time-based values.
  1325.  * @constructor
  1326.  */
  1327. Ext.chart.TimeAxis = Ext.extend(Ext.chart.Axis, {
  1328.     type: "time",
  1329.     /**
  1330.      * The minimum value drawn by the axis. If not set explicitly, the axis minimum
  1331.      * will be calculated automatically.
  1332.      *
  1333.      * @property minimum
  1334.      * @type Date
  1335.      */
  1336.     minimum: null,
  1337.     /**
  1338.      * The maximum value drawn by the axis. If not set explicitly, the axis maximum
  1339.      * will be calculated automatically.
  1340.      *
  1341.      * @property maximum
  1342.      * @type Number
  1343.      */
  1344.     maximum: null,
  1345.     /**
  1346.      * The spacing between major intervals on this axis.
  1347.      *
  1348.      * @property majorUnit
  1349.      * @type Number
  1350.      */
  1351.     majorUnit: NaN,
  1352.     /**
  1353.      * The time unit used by the majorUnit.
  1354.      *
  1355.      * @property majorTimeUnit
  1356.      * @type String
  1357.      */
  1358.     majorTimeUnit: null,
  1359.     /**
  1360.      * The spacing between minor intervals on this axis.
  1361.      *
  1362.      * @property majorUnit
  1363.      * @type Number
  1364.      */
  1365.     minorUnit: NaN,
  1366.     /**
  1367.      * The time unit used by the minorUnit.
  1368.      *
  1369.      * @property majorTimeUnit
  1370.      * @type String
  1371.      */
  1372.     minorTimeUnit: null,
  1373.     /**
  1374.      * If true, the labels, ticks, gridlines, and other objects will snap to
  1375.      * the nearest major or minor unit. If false, their position will be based
  1376.      * on the minimum value.
  1377.      *
  1378.      * @property snapToUnits
  1379.      * @type Boolean
  1380.      */
  1381.     snapToUnits: true
  1382. });
  1383. /**
  1384.  * @class Ext.chart.CategoryAxis
  1385.  * @extends Ext.chart.Axis
  1386.  * A type of axis that displays items in categories.
  1387.  * @constructor
  1388.  */
  1389. Ext.chart.CategoryAxis = Ext.extend(Ext.chart.Axis, {
  1390.     type: "category",
  1391.     /**
  1392.      * A list of category names to display along this axis.
  1393.      *
  1394.      * @property categoryNames
  1395.      * @type Array
  1396.      */
  1397.     categoryNames: null
  1398. });
  1399. /**
  1400.  * @class Ext.chart.Series
  1401.  * Series class for the charts widget.
  1402.  * @constructor
  1403.  */
  1404. Ext.chart.Series = function(config) { Ext.apply(this, config); };
  1405. Ext.chart.Series.prototype =
  1406. {
  1407.     /**
  1408.      * The type of series.
  1409.      *
  1410.      * @property type
  1411.      * @type String
  1412.      */
  1413.     type: null,
  1414.     /**
  1415.      * The human-readable name of the series.
  1416.      *
  1417.      * @property displayName
  1418.      * @type String
  1419.      */
  1420.     displayName: null
  1421. };
  1422. /**
  1423.  * @class Ext.chart.CartesianSeries
  1424.  * @extends Ext.chart.Series
  1425.  * CartesianSeries class for the charts widget.
  1426.  * @constructor
  1427.  */
  1428. Ext.chart.CartesianSeries = Ext.extend(Ext.chart.Series, {
  1429.     /**
  1430.      * The field used to access the x-axis value from the items from the data source.
  1431.      *
  1432.      * @property xField
  1433.      * @type String
  1434.      */
  1435.     xField: null,
  1436.     /**
  1437.      * The field used to access the y-axis value from the items from the data source.
  1438.      *
  1439.      * @property yField
  1440.      * @type String
  1441.      */
  1442.     yField: null
  1443. });
  1444. /**
  1445.  * @class Ext.chart.ColumnSeries
  1446.  * @extends Ext.chart.CartesianSeries
  1447.  * ColumnSeries class for the charts widget.
  1448.  * @constructor
  1449.  */
  1450. Ext.chart.ColumnSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1451.     type: "column"
  1452. });
  1453. /**
  1454.  * @class Ext.chart.LineSeries
  1455.  * @extends Ext.chart.CartesianSeries
  1456.  * LineSeries class for the charts widget.
  1457.  * @constructor
  1458.  */
  1459. Ext.chart.LineSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1460.     type: "line"
  1461. });
  1462. /**
  1463.  * @class Ext.chart.BarSeries
  1464.  * @extends Ext.chart.CartesianSeries
  1465.  * BarSeries class for the charts widget.
  1466.  * @constructor
  1467.  */
  1468. Ext.chart.BarSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1469.     type: "bar"
  1470. });
  1471. /**
  1472.  * @class Ext.chart.PieSeries
  1473.  * @extends Ext.chart.Series
  1474.  * PieSeries class for the charts widget.
  1475.  * @constructor
  1476.  */
  1477. Ext.chart.PieSeries = Ext.extend(Ext.chart.Series, {
  1478.     type: "pie",
  1479.     dataField: null,
  1480.     categoryField: null
  1481. });/**
  1482.  * @class Ext.layout.MenuLayout
  1483.  * @extends Ext.layout.ContainerLayout
  1484.  * <p>Layout manager used by {@link Ext.menu.Menu}. Generally this class should not need to be used directly.</p>
  1485.  */
  1486.  Ext.layout.MenuLayout = Ext.extend(Ext.layout.ContainerLayout, {
  1487.     monitorResize: true,
  1488.     setContainer : function(ct){
  1489.         this.monitorResize = !ct.floating;
  1490.         Ext.layout.MenuLayout.superclass.setContainer.call(this, ct);
  1491.     },
  1492.     renderItem : function(c, position, target){
  1493.         if (!this.itemTpl) {
  1494.             this.itemTpl = Ext.layout.MenuLayout.prototype.itemTpl = new Ext.XTemplate(
  1495.                 '<li id="{itemId}" class="{itemCls}">',
  1496.                     '<tpl if="needsIcon">',
  1497.                         '<img src="{icon}" class="{iconCls}"/>',
  1498.                     '</tpl>',
  1499.                 '</li>'
  1500.             );
  1501.         }
  1502.         if(c && !c.rendered){
  1503.             if(Ext.isNumber(position)){
  1504.                 position = target.dom.childNodes[position];
  1505.             }
  1506.             var a = this.getItemArgs(c);
  1507. //          The Component's positionEl is the <li> it is rendered into
  1508.             c.render(c.positionEl = position ?
  1509.                 this.itemTpl.insertBefore(position, a, true) :
  1510.                 this.itemTpl.append(target, a, true));
  1511. //          Link the containing <li> to the item.
  1512.             c.positionEl.menuItemId = c.itemId || c.id;
  1513. //          If rendering a regular Component, and it needs an icon,
  1514. //          move the Component rightwards.
  1515.             if (!a.isMenuItem && a.needsIcon) {
  1516.                 c.positionEl.addClass('x-menu-list-item-indent');
  1517.             }
  1518.         }else if(c && !this.isValidParent(c, target)){
  1519.             if(Ext.isNumber(position)){
  1520.                 position = target.dom.childNodes[position];
  1521.             }
  1522.             target.dom.insertBefore(c.getActionEl().dom, position || null);
  1523.         }
  1524.     },
  1525.     getItemArgs: function(c) {
  1526.         var isMenuItem = c instanceof Ext.menu.Item;
  1527.         return {
  1528.             isMenuItem: isMenuItem,
  1529.             needsIcon: !isMenuItem && (c.icon || c.iconCls),
  1530.             icon: c.icon || Ext.BLANK_IMAGE_URL,
  1531.             iconCls: 'x-menu-item-icon ' + (c.iconCls || ''),
  1532.             itemId: 'x-menu-el-' + c.id,
  1533.             itemCls: 'x-menu-list-item ' + (this.extraCls || '')
  1534.         };
  1535.     },
  1536. //  Valid if the Component is in a <li> which is part of our target <ul>
  1537.     isValidParent: function(c, target) {
  1538.         return c.el.up('li.x-menu-list-item', 5).dom.parentNode === (target.dom || target);
  1539.     },
  1540.     onLayout : function(ct, target){
  1541.         this.renderAll(ct, target);
  1542.         this.doAutoSize();
  1543.     },
  1544.     doAutoSize : function(){
  1545.         var ct = this.container, w = ct.width;
  1546.         if(ct.floating){
  1547.             if(w){
  1548.                 ct.setWidth(w);
  1549.             }else if(Ext.isIE){
  1550.                 ct.setWidth(Ext.isStrict && (Ext.isIE7 || Ext.isIE8) ? 'auto' : ct.minWidth);
  1551.                 var el = ct.getEl(), t = el.dom.offsetWidth; // force recalc
  1552.                 ct.setWidth(ct.getLayoutTarget().getWidth() + el.getFrameWidth('lr'));