sync
[roojs1] / roojs-core-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @singleton
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         isGecko = !isSafari && ua.indexOf("gecko") > -1,
61         isBorderBox = isIE && !isStrict,
62         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
63         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
64         isLinux = (ua.indexOf("linux") != -1),
65         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
66         isIOS = /iphone|ipad/.test(ua),
67         isTouch =  (function() {
68             try {  
69                 document.createEvent("TouchEvent");  
70                 return true;  
71             } catch (e) {  
72                 return false;  
73             } 
74             
75         })();
76     // remove css image flicker
77         if(isIE && !isIE7){
78         try{
79             document.execCommand("BackgroundImageCache", false, true);
80         }catch(e){}
81     }
82     
83     Roo.apply(Roo, {
84         /**
85          * True if the browser is in strict mode
86          * @type Boolean
87          */
88         isStrict : isStrict,
89         /**
90          * True if the page is running over SSL
91          * @type Boolean
92          */
93         isSecure : isSecure,
94         /**
95          * True when the document is fully initialized and ready for action
96          * @type Boolean
97          */
98         isReady : false,
99         /**
100          * Turn on debugging output (currently only the factory uses this)
101          * @type Boolean
102          */
103         
104         debug: false,
105
106         /**
107          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
108          * @type Boolean
109          */
110         enableGarbageCollector : true,
111
112         /**
113          * True to automatically purge event listeners after uncaching an element (defaults to false).
114          * Note: this only happens if enableGarbageCollector is true.
115          * @type Boolean
116          */
117         enableListenerCollection:false,
118
119         /**
120          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
121          * the IE insecure content warning (defaults to javascript:false).
122          * @type String
123          */
124         SSL_SECURE_URL : "javascript:false",
125
126         /**
127          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
128          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
129          * @type String
130          */
131         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
132
133         emptyFn : function(){},
134         
135         /**
136          * Copies all the properties of config to obj if they don't already exist.
137          * @param {Object} obj The receiver of the properties
138          * @param {Object} config The source of the properties
139          * @return {Object} returns obj
140          */
141         applyIf : function(o, c){
142             if(o && c){
143                 for(var p in c){
144                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
145                 }
146             }
147             return o;
148         },
149
150         /**
151          * Applies event listeners to elements by selectors when the document is ready.
152          * The event name is specified with an @ suffix.
153 <pre><code>
154 Roo.addBehaviors({
155    // add a listener for click on all anchors in element with id foo
156    '#foo a@click' : function(e, t){
157        // do something
158    },
159
160    // add the same listener to multiple selectors (separated by comma BEFORE the @)
161    '#foo a, #bar span.some-class@mouseover' : function(){
162        // do something
163    }
164 });
165 </code></pre>
166          * @param {Object} obj The list of behaviors to apply
167          */
168         addBehaviors : function(o){
169             if(!Roo.isReady){
170                 Roo.onReady(function(){
171                     Roo.addBehaviors(o);
172                 });
173                 return;
174             }
175             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
176             for(var b in o){
177                 var parts = b.split('@');
178                 if(parts[1]){ // for Object prototype breakers
179                     var s = parts[0];
180                     if(!cache[s]){
181                         cache[s] = Roo.select(s);
182                     }
183                     cache[s].on(parts[1], o[b]);
184                 }
185             }
186             cache = null;
187         },
188
189         /**
190          * Generates unique ids. If the element already has an id, it is unchanged
191          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
192          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
193          * @return {String} The generated Id.
194          */
195         id : function(el, prefix){
196             prefix = prefix || "roo-gen";
197             el = Roo.getDom(el);
198             var id = prefix + (++idSeed);
199             return el ? (el.id ? el.id : (el.id = id)) : id;
200         },
201          
202        
203         /**
204          * Extends one class with another class and optionally overrides members with the passed literal. This class
205          * also adds the function "override()" to the class that can be used to override
206          * members on an instance.
207          * @param {Object} subclass The class inheriting the functionality
208          * @param {Object} superclass The class being extended
209          * @param {Object} overrides (optional) A literal with members
210          * @method extend
211          */
212         extend : function(){
213             // inline overrides
214             var io = function(o){
215                 for(var m in o){
216                     this[m] = o[m];
217                 }
218             };
219             return function(sb, sp, overrides){
220                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
221                     overrides = sp;
222                     sp = sb;
223                     sb = function(){sp.apply(this, arguments);};
224                 }
225                 var F = function(){}, sbp, spp = sp.prototype;
226                 F.prototype = spp;
227                 sbp = sb.prototype = new F();
228                 sbp.constructor=sb;
229                 sb.superclass=spp;
230                 
231                 if(spp.constructor == Object.prototype.constructor){
232                     spp.constructor=sp;
233                    
234                 }
235                 
236                 sb.override = function(o){
237                     Roo.override(sb, o);
238                 };
239                 sbp.override = io;
240                 Roo.override(sb, overrides);
241                 return sb;
242             };
243         }(),
244
245         /**
246          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
247          * Usage:<pre><code>
248 Roo.override(MyClass, {
249     newMethod1: function(){
250         // etc.
251     },
252     newMethod2: function(foo){
253         // etc.
254     }
255 });
256  </code></pre>
257          * @param {Object} origclass The class to override
258          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
259          * containing one or more methods.
260          * @method override
261          */
262         override : function(origclass, overrides){
263             if(overrides){
264                 var p = origclass.prototype;
265                 for(var method in overrides){
266                     p[method] = overrides[method];
267                 }
268             }
269         },
270         /**
271          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
272          * <pre><code>
273 Roo.namespace('Company', 'Company.data');
274 Company.Widget = function() { ... }
275 Company.data.CustomStore = function(config) { ... }
276 </code></pre>
277          * @param {String} namespace1
278          * @param {String} namespace2
279          * @param {String} etc
280          * @method namespace
281          */
282         namespace : function(){
283             var a=arguments, o=null, i, j, d, rt;
284             for (i=0; i<a.length; ++i) {
285                 d=a[i].split(".");
286                 rt = d[0];
287                 /** eval:var:o */
288                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
289                 for (j=1; j<d.length; ++j) {
290                     o[d[j]]=o[d[j]] || {};
291                     o=o[d[j]];
292                 }
293             }
294         },
295         /**
296          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
297          * <pre><code>
298 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
299 Roo.factory(conf, Roo.data);
300 </code></pre>
301          * @param {String} classname
302          * @param {String} namespace (optional)
303          * @method factory
304          */
305          
306         factory : function(c, ns)
307         {
308             // no xtype, no ns or c.xns - or forced off by c.xns
309             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
310                 return c;
311             }
312             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
313             if (c.constructor == ns[c.xtype]) {// already created...
314                 return c;
315             }
316             if (ns[c.xtype]) {
317                 if (Roo.debug) Roo.log("Roo.Factory(" + c.xtype + ")");
318                 var ret = new ns[c.xtype](c);
319                 ret.xns = false;
320                 return ret;
321             }
322             c.xns = false; // prevent recursion..
323             return c;
324         },
325          /**
326          * Logs to console if it can.
327          *
328          * @param {String|Object} string
329          * @method log
330          */
331         log : function(s)
332         {
333             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
334                 return; // alerT?
335             }
336             console.log(s);
337             
338         },
339         /**
340          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
341          * @param {Object} o
342          * @return {String}
343          */
344         urlEncode : function(o){
345             if(!o){
346                 return "";
347             }
348             var buf = [];
349             for(var key in o){
350                 var ov = o[key], k = Roo.encodeURIComponent(key);
351                 var type = typeof ov;
352                 if(type == 'undefined'){
353                     buf.push(k, "=&");
354                 }else if(type != "function" && type != "object"){
355                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
356                 }else if(ov instanceof Array){
357                     if (ov.length) {
358                             for(var i = 0, len = ov.length; i < len; i++) {
359                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
360                             }
361                         } else {
362                             buf.push(k, "=&");
363                         }
364                 }
365             }
366             buf.pop();
367             return buf.join("");
368         },
369          /**
370          * Safe version of encodeURIComponent
371          * @param {String} data 
372          * @return {String} 
373          */
374         
375         encodeURIComponent : function (data)
376         {
377             try {
378                 return encodeURIComponent(data);
379             } catch(e) {} // should be an uri encode error.
380             
381             if (data == '' || data == null){
382                return '';
383             }
384             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
385             function nibble_to_hex(nibble){
386                 var chars = '0123456789ABCDEF';
387                 return chars.charAt(nibble);
388             }
389             data = data.toString();
390             var buffer = '';
391             for(var i=0; i<data.length; i++){
392                 var c = data.charCodeAt(i);
393                 var bs = new Array();
394                 if (c > 0x10000){
395                         // 4 bytes
396                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
397                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
398                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
399                     bs[3] = 0x80 | (c & 0x3F);
400                 }else if (c > 0x800){
401                          // 3 bytes
402                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
403                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
404                     bs[2] = 0x80 | (c & 0x3F);
405                 }else if (c > 0x80){
406                        // 2 bytes
407                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
408                     bs[1] = 0x80 | (c & 0x3F);
409                 }else{
410                         // 1 byte
411                     bs[0] = c;
412                 }
413                 for(var j=0; j<bs.length; j++){
414                     var b = bs[j];
415                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
416                             + nibble_to_hex(b &0x0F);
417                     buffer += '%'+hex;
418                }
419             }
420             return buffer;    
421              
422         },
423
424         /**
425          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
426          * @param {String} string
427          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
428          * @return {Object} A literal with members
429          */
430         urlDecode : function(string, overwrite){
431             if(!string || !string.length){
432                 return {};
433             }
434             var obj = {};
435             var pairs = string.split('&');
436             var pair, name, value;
437             for(var i = 0, len = pairs.length; i < len; i++){
438                 pair = pairs[i].split('=');
439                 name = decodeURIComponent(pair[0]);
440                 value = decodeURIComponent(pair[1]);
441                 if(overwrite !== true){
442                     if(typeof obj[name] == "undefined"){
443                         obj[name] = value;
444                     }else if(typeof obj[name] == "string"){
445                         obj[name] = [obj[name]];
446                         obj[name].push(value);
447                     }else{
448                         obj[name].push(value);
449                     }
450                 }else{
451                     obj[name] = value;
452                 }
453             }
454             return obj;
455         },
456
457         /**
458          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
459          * passed array is not really an array, your function is called once with it.
460          * The supplied function is called with (Object item, Number index, Array allItems).
461          * @param {Array/NodeList/Mixed} array
462          * @param {Function} fn
463          * @param {Object} scope
464          */
465         each : function(array, fn, scope){
466             if(typeof array.length == "undefined" || typeof array == "string"){
467                 array = [array];
468             }
469             for(var i = 0, len = array.length; i < len; i++){
470                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
471             }
472         },
473
474         // deprecated
475         combine : function(){
476             var as = arguments, l = as.length, r = [];
477             for(var i = 0; i < l; i++){
478                 var a = as[i];
479                 if(a instanceof Array){
480                     r = r.concat(a);
481                 }else if(a.length !== undefined && !a.substr){
482                     r = r.concat(Array.prototype.slice.call(a, 0));
483                 }else{
484                     r.push(a);
485                 }
486             }
487             return r;
488         },
489
490         /**
491          * Escapes the passed string for use in a regular expression
492          * @param {String} str
493          * @return {String}
494          */
495         escapeRe : function(s) {
496             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
497         },
498
499         // internal
500         callback : function(cb, scope, args, delay){
501             if(typeof cb == "function"){
502                 if(delay){
503                     cb.defer(delay, scope, args || []);
504                 }else{
505                     cb.apply(scope, args || []);
506                 }
507             }
508         },
509
510         /**
511          * Return the dom node for the passed string (id), dom node, or Roo.Element
512          * @param {String/HTMLElement/Roo.Element} el
513          * @return HTMLElement
514          */
515         getDom : function(el){
516             if(!el){
517                 return null;
518             }
519             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
520         },
521
522         /**
523         * Shorthand for {@link Roo.ComponentMgr#get}
524         * @param {String} id
525         * @return Roo.Component
526         */
527         getCmp : function(id){
528             return Roo.ComponentMgr.get(id);
529         },
530          
531         num : function(v, defaultValue){
532             if(typeof v != 'number'){
533                 return defaultValue;
534             }
535             return v;
536         },
537
538         destroy : function(){
539             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
540                 var as = a[i];
541                 if(as){
542                     if(as.dom){
543                         as.removeAllListeners();
544                         as.remove();
545                         continue;
546                     }
547                     if(typeof as.purgeListeners == 'function'){
548                         as.purgeListeners();
549                     }
550                     if(typeof as.destroy == 'function'){
551                         as.destroy();
552                     }
553                 }
554             }
555         },
556
557         // inpired by a similar function in mootools library
558         /**
559          * Returns the type of object that is passed in. If the object passed in is null or undefined it
560          * return false otherwise it returns one of the following values:<ul>
561          * <li><b>string</b>: If the object passed is a string</li>
562          * <li><b>number</b>: If the object passed is a number</li>
563          * <li><b>boolean</b>: If the object passed is a boolean value</li>
564          * <li><b>function</b>: If the object passed is a function reference</li>
565          * <li><b>object</b>: If the object passed is an object</li>
566          * <li><b>array</b>: If the object passed is an array</li>
567          * <li><b>regexp</b>: If the object passed is a regular expression</li>
568          * <li><b>element</b>: If the object passed is a DOM Element</li>
569          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
570          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
571          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
572          * @param {Mixed} object
573          * @return {String}
574          */
575         type : function(o){
576             if(o === undefined || o === null){
577                 return false;
578             }
579             if(o.htmlElement){
580                 return 'element';
581             }
582             var t = typeof o;
583             if(t == 'object' && o.nodeName) {
584                 switch(o.nodeType) {
585                     case 1: return 'element';
586                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
587                 }
588             }
589             if(t == 'object' || t == 'function') {
590                 switch(o.constructor) {
591                     case Array: return 'array';
592                     case RegExp: return 'regexp';
593                 }
594                 if(typeof o.length == 'number' && typeof o.item == 'function') {
595                     return 'nodelist';
596                 }
597             }
598             return t;
599         },
600
601         /**
602          * Returns true if the passed value is null, undefined or an empty string (optional).
603          * @param {Mixed} value The value to test
604          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
605          * @return {Boolean}
606          */
607         isEmpty : function(v, allowBlank){
608             return v === null || v === undefined || (!allowBlank ? v === '' : false);
609         },
610         
611         /** @type Boolean */
612         isOpera : isOpera,
613         /** @type Boolean */
614         isSafari : isSafari,
615         /** @type Boolean */
616         isFirefox : isFirefox,
617         /** @type Boolean */
618         isIE : isIE,
619         /** @type Boolean */
620         isIE7 : isIE7,
621         /** @type Boolean */
622         isIE11 : isIE11,
623         /** @type Boolean */
624         isGecko : isGecko,
625         /** @type Boolean */
626         isBorderBox : isBorderBox,
627         /** @type Boolean */
628         isWindows : isWindows,
629         /** @type Boolean */
630         isLinux : isLinux,
631         /** @type Boolean */
632         isMac : isMac,
633         /** @type Boolean */
634         isIOS : isIOS,
635         /** @type Boolean */
636         isTouch : isTouch,
637
638         /**
639          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
640          * you may want to set this to true.
641          * @type Boolean
642          */
643         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
644         
645         
646                 
647         /**
648          * Selects a single element as a Roo Element
649          * This is about as close as you can get to jQuery's $('do crazy stuff')
650          * @param {String} selector The selector/xpath query
651          * @param {Node} root (optional) The start of the query (defaults to document).
652          * @return {Roo.Element}
653          */
654         selectNode : function(selector, root) 
655         {
656             var node = Roo.DomQuery.selectNode(selector,root);
657             return node ? Roo.get(node) : new Roo.Element(false);
658         }
659         
660     });
661
662
663 })();
664
665 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
666                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
667                 "Roo.app", "Roo.ux",
668                 "Roo.bootstrap",
669                 "Roo.bootstrap.dash");
670 /*
671  * Based on:
672  * Ext JS Library 1.1.1
673  * Copyright(c) 2006-2007, Ext JS, LLC.
674  *
675  * Originally Released Under LGPL - original licence link has changed is not relivant.
676  *
677  * Fork - LGPL
678  * <script type="text/javascript">
679  */
680
681 (function() {    
682     // wrappedn so fnCleanup is not in global scope...
683     if(Roo.isIE) {
684         function fnCleanUp() {
685             var p = Function.prototype;
686             delete p.createSequence;
687             delete p.defer;
688             delete p.createDelegate;
689             delete p.createCallback;
690             delete p.createInterceptor;
691
692             window.detachEvent("onunload", fnCleanUp);
693         }
694         window.attachEvent("onunload", fnCleanUp);
695     }
696 })();
697
698
699 /**
700  * @class Function
701  * These functions are available on every Function object (any JavaScript function).
702  */
703 Roo.apply(Function.prototype, {
704      /**
705      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
706      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
707      * Will create a function that is bound to those 2 args.
708      * @return {Function} The new function
709     */
710     createCallback : function(/*args...*/){
711         // make args available, in function below
712         var args = arguments;
713         var method = this;
714         return function() {
715             return method.apply(window, args);
716         };
717     },
718
719     /**
720      * Creates a delegate (callback) that sets the scope to obj.
721      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
722      * Will create a function that is automatically scoped to this.
723      * @param {Object} obj (optional) The object for which the scope is set
724      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
725      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
726      *                                             if a number the args are inserted at the specified position
727      * @return {Function} The new function
728      */
729     createDelegate : function(obj, args, appendArgs){
730         var method = this;
731         return function() {
732             var callArgs = args || arguments;
733             if(appendArgs === true){
734                 callArgs = Array.prototype.slice.call(arguments, 0);
735                 callArgs = callArgs.concat(args);
736             }else if(typeof appendArgs == "number"){
737                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
738                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
739                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
740             }
741             return method.apply(obj || window, callArgs);
742         };
743     },
744
745     /**
746      * Calls this function after the number of millseconds specified.
747      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
748      * @param {Object} obj (optional) The object for which the scope is set
749      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
750      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
751      *                                             if a number the args are inserted at the specified position
752      * @return {Number} The timeout id that can be used with clearTimeout
753      */
754     defer : function(millis, obj, args, appendArgs){
755         var fn = this.createDelegate(obj, args, appendArgs);
756         if(millis){
757             return setTimeout(fn, millis);
758         }
759         fn();
760         return 0;
761     },
762     /**
763      * Create a combined function call sequence of the original function + the passed function.
764      * The resulting function returns the results of the original function.
765      * The passed fcn is called with the parameters of the original function
766      * @param {Function} fcn The function to sequence
767      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
768      * @return {Function} The new function
769      */
770     createSequence : function(fcn, scope){
771         if(typeof fcn != "function"){
772             return this;
773         }
774         var method = this;
775         return function() {
776             var retval = method.apply(this || window, arguments);
777             fcn.apply(scope || this || window, arguments);
778             return retval;
779         };
780     },
781
782     /**
783      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
784      * The resulting function returns the results of the original function.
785      * The passed fcn is called with the parameters of the original function.
786      * @addon
787      * @param {Function} fcn The function to call before the original
788      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
789      * @return {Function} The new function
790      */
791     createInterceptor : function(fcn, scope){
792         if(typeof fcn != "function"){
793             return this;
794         }
795         var method = this;
796         return function() {
797             fcn.target = this;
798             fcn.method = method;
799             if(fcn.apply(scope || this || window, arguments) === false){
800                 return;
801             }
802             return method.apply(this || window, arguments);
803         };
804     }
805 });
806 /*
807  * Based on:
808  * Ext JS Library 1.1.1
809  * Copyright(c) 2006-2007, Ext JS, LLC.
810  *
811  * Originally Released Under LGPL - original licence link has changed is not relivant.
812  *
813  * Fork - LGPL
814  * <script type="text/javascript">
815  */
816
817 Roo.applyIf(String, {
818     
819     /** @scope String */
820     
821     /**
822      * Escapes the passed string for ' and \
823      * @param {String} string The string to escape
824      * @return {String} The escaped string
825      * @static
826      */
827     escape : function(string) {
828         return string.replace(/('|\\)/g, "\\$1");
829     },
830
831     /**
832      * Pads the left side of a string with a specified character.  This is especially useful
833      * for normalizing number and date strings.  Example usage:
834      * <pre><code>
835 var s = String.leftPad('123', 5, '0');
836 // s now contains the string: '00123'
837 </code></pre>
838      * @param {String} string The original string
839      * @param {Number} size The total length of the output string
840      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
841      * @return {String} The padded string
842      * @static
843      */
844     leftPad : function (val, size, ch) {
845         var result = new String(val);
846         if(ch === null || ch === undefined || ch === '') {
847             ch = " ";
848         }
849         while (result.length < size) {
850             result = ch + result;
851         }
852         return result;
853     },
854
855     /**
856      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
857      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
858      * <pre><code>
859 var cls = 'my-class', text = 'Some text';
860 var s = String.format('<div class="{0}">{1}</div>', cls, text);
861 // s now contains the string: '<div class="my-class">Some text</div>'
862 </code></pre>
863      * @param {String} string The tokenized string to be formatted
864      * @param {String} value1 The value to replace token {0}
865      * @param {String} value2 Etc...
866      * @return {String} The formatted string
867      * @static
868      */
869     format : function(format){
870         var args = Array.prototype.slice.call(arguments, 1);
871         return format.replace(/\{(\d+)\}/g, function(m, i){
872             return Roo.util.Format.htmlEncode(args[i]);
873         });
874     }
875 });
876
877 /**
878  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
879  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
880  * they are already different, the first value passed in is returned.  Note that this method returns the new value
881  * but does not change the current string.
882  * <pre><code>
883 // alternate sort directions
884 sort = sort.toggle('ASC', 'DESC');
885
886 // instead of conditional logic:
887 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
888 </code></pre>
889  * @param {String} value The value to compare to the current string
890  * @param {String} other The new value to use if the string already equals the first value passed in
891  * @return {String} The new value
892  */
893  
894 String.prototype.toggle = function(value, other){
895     return this == value ? other : value;
896 };/*
897  * Based on:
898  * Ext JS Library 1.1.1
899  * Copyright(c) 2006-2007, Ext JS, LLC.
900  *
901  * Originally Released Under LGPL - original licence link has changed is not relivant.
902  *
903  * Fork - LGPL
904  * <script type="text/javascript">
905  */
906
907  /**
908  * @class Number
909  */
910 Roo.applyIf(Number.prototype, {
911     /**
912      * Checks whether or not the current number is within a desired range.  If the number is already within the
913      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
914      * exceeded.  Note that this method returns the constrained value but does not change the current number.
915      * @param {Number} min The minimum number in the range
916      * @param {Number} max The maximum number in the range
917      * @return {Number} The constrained value if outside the range, otherwise the current value
918      */
919     constrain : function(min, max){
920         return Math.min(Math.max(this, min), max);
921     }
922 });/*
923  * Based on:
924  * Ext JS Library 1.1.1
925  * Copyright(c) 2006-2007, Ext JS, LLC.
926  *
927  * Originally Released Under LGPL - original licence link has changed is not relivant.
928  *
929  * Fork - LGPL
930  * <script type="text/javascript">
931  */
932  /**
933  * @class Array
934  */
935 Roo.applyIf(Array.prototype, {
936     /**
937      * 
938      * Checks whether or not the specified object exists in the array.
939      * @param {Object} o The object to check for
940      * @return {Number} The index of o in the array (or -1 if it is not found)
941      */
942     indexOf : function(o){
943        for (var i = 0, len = this.length; i < len; i++){
944               if(this[i] == o) return i;
945        }
946            return -1;
947     },
948
949     /**
950      * Removes the specified object from the array.  If the object is not found nothing happens.
951      * @param {Object} o The object to remove
952      */
953     remove : function(o){
954        var index = this.indexOf(o);
955        if(index != -1){
956            this.splice(index, 1);
957        }
958     },
959     /**
960      * Map (JS 1.6 compatibility)
961      * @param {Function} function  to call
962      */
963     map : function(fun )
964     {
965         var len = this.length >>> 0;
966         if (typeof fun != "function")
967             throw new TypeError();
968
969         var res = new Array(len);
970         var thisp = arguments[1];
971         for (var i = 0; i < len; i++)
972         {
973             if (i in this)
974                 res[i] = fun.call(thisp, this[i], i, this);
975         }
976
977         return res;
978     }
979     
980 });
981
982
983  /*
984  * Based on:
985  * Ext JS Library 1.1.1
986  * Copyright(c) 2006-2007, Ext JS, LLC.
987  *
988  * Originally Released Under LGPL - original licence link has changed is not relivant.
989  *
990  * Fork - LGPL
991  * <script type="text/javascript">
992  */
993
994 /**
995  * @class Date
996  *
997  * The date parsing and format syntax is a subset of
998  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
999  * supported will provide results equivalent to their PHP versions.
1000  *
1001  * Following is the list of all currently supported formats:
1002  *<pre>
1003 Sample date:
1004 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1005
1006 Format  Output      Description
1007 ------  ----------  --------------------------------------------------------------
1008   d      10         Day of the month, 2 digits with leading zeros
1009   D      Wed        A textual representation of a day, three letters
1010   j      10         Day of the month without leading zeros
1011   l      Wednesday  A full textual representation of the day of the week
1012   S      th         English ordinal day of month suffix, 2 chars (use with j)
1013   w      3          Numeric representation of the day of the week
1014   z      9          The julian date, or day of the year (0-365)
1015   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1016   F      January    A full textual representation of the month
1017   m      01         Numeric representation of a month, with leading zeros
1018   M      Jan        Month name abbreviation, three letters
1019   n      1          Numeric representation of a month, without leading zeros
1020   t      31         Number of days in the given month
1021   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1022   Y      2007       A full numeric representation of a year, 4 digits
1023   y      07         A two digit representation of a year
1024   a      pm         Lowercase Ante meridiem and Post meridiem
1025   A      PM         Uppercase Ante meridiem and Post meridiem
1026   g      3          12-hour format of an hour without leading zeros
1027   G      15         24-hour format of an hour without leading zeros
1028   h      03         12-hour format of an hour with leading zeros
1029   H      15         24-hour format of an hour with leading zeros
1030   i      05         Minutes with leading zeros
1031   s      01         Seconds, with leading zeros
1032   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1033   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1034   T      CST        Timezone setting of the machine running the code
1035   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1036 </pre>
1037  *
1038  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1039  * <pre><code>
1040 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1041 document.write(dt.format('Y-m-d'));                         //2007-01-10
1042 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1043 document.write(dt.format('l, \\t\\he dS of F Y h:i:s A'));  //Wednesday, the 10th of January 2007 03:05:01 PM
1044  </code></pre>
1045  *
1046  * Here are some standard date/time patterns that you might find helpful.  They
1047  * are not part of the source of Date.js, but to use them you can simply copy this
1048  * block of code into any script that is included after Date.js and they will also become
1049  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1050  * <pre><code>
1051 Date.patterns = {
1052     ISO8601Long:"Y-m-d H:i:s",
1053     ISO8601Short:"Y-m-d",
1054     ShortDate: "n/j/Y",
1055     LongDate: "l, F d, Y",
1056     FullDateTime: "l, F d, Y g:i:s A",
1057     MonthDay: "F d",
1058     ShortTime: "g:i A",
1059     LongTime: "g:i:s A",
1060     SortableDateTime: "Y-m-d\\TH:i:s",
1061     UniversalSortableDateTime: "Y-m-d H:i:sO",
1062     YearMonth: "F, Y"
1063 };
1064 </code></pre>
1065  *
1066  * Example usage:
1067  * <pre><code>
1068 var dt = new Date();
1069 document.write(dt.format(Date.patterns.ShortDate));
1070  </code></pre>
1071  */
1072
1073 /*
1074  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1075  * They generate precompiled functions from date formats instead of parsing and
1076  * processing the pattern every time you format a date.  These functions are available
1077  * on every Date object (any javascript function).
1078  *
1079  * The original article and download are here:
1080  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1081  *
1082  */
1083  
1084  
1085  // was in core
1086 /**
1087  Returns the number of milliseconds between this date and date
1088  @param {Date} date (optional) Defaults to now
1089  @return {Number} The diff in milliseconds
1090  @member Date getElapsed
1091  */
1092 Date.prototype.getElapsed = function(date) {
1093         return Math.abs((date || new Date()).getTime()-this.getTime());
1094 };
1095 // was in date file..
1096
1097
1098 // private
1099 Date.parseFunctions = {count:0};
1100 // private
1101 Date.parseRegexes = [];
1102 // private
1103 Date.formatFunctions = {count:0};
1104
1105 // private
1106 Date.prototype.dateFormat = function(format) {
1107     if (Date.formatFunctions[format] == null) {
1108         Date.createNewFormat(format);
1109     }
1110     var func = Date.formatFunctions[format];
1111     return this[func]();
1112 };
1113
1114
1115 /**
1116  * Formats a date given the supplied format string
1117  * @param {String} format The format string
1118  * @return {String} The formatted date
1119  * @method
1120  */
1121 Date.prototype.format = Date.prototype.dateFormat;
1122
1123 // private
1124 Date.createNewFormat = function(format) {
1125     var funcName = "format" + Date.formatFunctions.count++;
1126     Date.formatFunctions[format] = funcName;
1127     var code = "Date.prototype." + funcName + " = function(){return ";
1128     var special = false;
1129     var ch = '';
1130     for (var i = 0; i < format.length; ++i) {
1131         ch = format.charAt(i);
1132         if (!special && ch == "\\") {
1133             special = true;
1134         }
1135         else if (special) {
1136             special = false;
1137             code += "'" + String.escape(ch) + "' + ";
1138         }
1139         else {
1140             code += Date.getFormatCode(ch);
1141         }
1142     }
1143     /** eval:var:zzzzzzzzzzzzz */
1144     eval(code.substring(0, code.length - 3) + ";}");
1145 };
1146
1147 // private
1148 Date.getFormatCode = function(character) {
1149     switch (character) {
1150     case "d":
1151         return "String.leftPad(this.getDate(), 2, '0') + ";
1152     case "D":
1153         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1154     case "j":
1155         return "this.getDate() + ";
1156     case "l":
1157         return "Date.dayNames[this.getDay()] + ";
1158     case "S":
1159         return "this.getSuffix() + ";
1160     case "w":
1161         return "this.getDay() + ";
1162     case "z":
1163         return "this.getDayOfYear() + ";
1164     case "W":
1165         return "this.getWeekOfYear() + ";
1166     case "F":
1167         return "Date.monthNames[this.getMonth()] + ";
1168     case "m":
1169         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1170     case "M":
1171         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1172     case "n":
1173         return "(this.getMonth() + 1) + ";
1174     case "t":
1175         return "this.getDaysInMonth() + ";
1176     case "L":
1177         return "(this.isLeapYear() ? 1 : 0) + ";
1178     case "Y":
1179         return "this.getFullYear() + ";
1180     case "y":
1181         return "('' + this.getFullYear()).substring(2, 4) + ";
1182     case "a":
1183         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1184     case "A":
1185         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1186     case "g":
1187         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1188     case "G":
1189         return "this.getHours() + ";
1190     case "h":
1191         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1192     case "H":
1193         return "String.leftPad(this.getHours(), 2, '0') + ";
1194     case "i":
1195         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1196     case "s":
1197         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1198     case "O":
1199         return "this.getGMTOffset() + ";
1200     case "P":
1201         return "this.getGMTColonOffset() + ";
1202     case "T":
1203         return "this.getTimezone() + ";
1204     case "Z":
1205         return "(this.getTimezoneOffset() * -60) + ";
1206     default:
1207         return "'" + String.escape(character) + "' + ";
1208     }
1209 };
1210
1211 /**
1212  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1213  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1214  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1215  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1216  * string or the parse operation will fail.
1217  * Example Usage:
1218 <pre><code>
1219 //dt = Fri May 25 2007 (current date)
1220 var dt = new Date();
1221
1222 //dt = Thu May 25 2006 (today's month/day in 2006)
1223 dt = Date.parseDate("2006", "Y");
1224
1225 //dt = Sun Jan 15 2006 (all date parts specified)
1226 dt = Date.parseDate("2006-1-15", "Y-m-d");
1227
1228 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1229 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1230 </code></pre>
1231  * @param {String} input The unparsed date as a string
1232  * @param {String} format The format the date is in
1233  * @return {Date} The parsed date
1234  * @static
1235  */
1236 Date.parseDate = function(input, format) {
1237     if (Date.parseFunctions[format] == null) {
1238         Date.createParser(format);
1239     }
1240     var func = Date.parseFunctions[format];
1241     return Date[func](input);
1242 };
1243 /**
1244  * @private
1245  */
1246
1247 Date.createParser = function(format) {
1248     var funcName = "parse" + Date.parseFunctions.count++;
1249     var regexNum = Date.parseRegexes.length;
1250     var currentGroup = 1;
1251     Date.parseFunctions[format] = funcName;
1252
1253     var code = "Date." + funcName + " = function(input){\n"
1254         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1255         + "var d = new Date();\n"
1256         + "y = d.getFullYear();\n"
1257         + "m = d.getMonth();\n"
1258         + "d = d.getDate();\n"
1259         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1260         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1261         + "if (results && results.length > 0) {";
1262     var regex = "";
1263
1264     var special = false;
1265     var ch = '';
1266     for (var i = 0; i < format.length; ++i) {
1267         ch = format.charAt(i);
1268         if (!special && ch == "\\") {
1269             special = true;
1270         }
1271         else if (special) {
1272             special = false;
1273             regex += String.escape(ch);
1274         }
1275         else {
1276             var obj = Date.formatCodeToRegex(ch, currentGroup);
1277             currentGroup += obj.g;
1278             regex += obj.s;
1279             if (obj.g && obj.c) {
1280                 code += obj.c;
1281             }
1282         }
1283     }
1284
1285     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1286         + "{v = new Date(y, m, d, h, i, s);}\n"
1287         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1288         + "{v = new Date(y, m, d, h, i);}\n"
1289         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1290         + "{v = new Date(y, m, d, h);}\n"
1291         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1292         + "{v = new Date(y, m, d);}\n"
1293         + "else if (y >= 0 && m >= 0)\n"
1294         + "{v = new Date(y, m);}\n"
1295         + "else if (y >= 0)\n"
1296         + "{v = new Date(y);}\n"
1297         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1298         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1299         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1300         + ";}";
1301
1302     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1303     /** eval:var:zzzzzzzzzzzzz */
1304     eval(code);
1305 };
1306
1307 // private
1308 Date.formatCodeToRegex = function(character, currentGroup) {
1309     switch (character) {
1310     case "D":
1311         return {g:0,
1312         c:null,
1313         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1314     case "j":
1315         return {g:1,
1316             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1317             s:"(\\d{1,2})"}; // day of month without leading zeroes
1318     case "d":
1319         return {g:1,
1320             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1321             s:"(\\d{2})"}; // day of month with leading zeroes
1322     case "l":
1323         return {g:0,
1324             c:null,
1325             s:"(?:" + Date.dayNames.join("|") + ")"};
1326     case "S":
1327         return {g:0,
1328             c:null,
1329             s:"(?:st|nd|rd|th)"};
1330     case "w":
1331         return {g:0,
1332             c:null,
1333             s:"\\d"};
1334     case "z":
1335         return {g:0,
1336             c:null,
1337             s:"(?:\\d{1,3})"};
1338     case "W":
1339         return {g:0,
1340             c:null,
1341             s:"(?:\\d{2})"};
1342     case "F":
1343         return {g:1,
1344             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1345             s:"(" + Date.monthNames.join("|") + ")"};
1346     case "M":
1347         return {g:1,
1348             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1349             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1350     case "n":
1351         return {g:1,
1352             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1353             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1354     case "m":
1355         return {g:1,
1356             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1357             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1358     case "t":
1359         return {g:0,
1360             c:null,
1361             s:"\\d{1,2}"};
1362     case "L":
1363         return {g:0,
1364             c:null,
1365             s:"(?:1|0)"};
1366     case "Y":
1367         return {g:1,
1368             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1369             s:"(\\d{4})"};
1370     case "y":
1371         return {g:1,
1372             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1373                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1374             s:"(\\d{1,2})"};
1375     case "a":
1376         return {g:1,
1377             c:"if (results[" + currentGroup + "] == 'am') {\n"
1378                 + "if (h == 12) { h = 0; }\n"
1379                 + "} else { if (h < 12) { h += 12; }}",
1380             s:"(am|pm)"};
1381     case "A":
1382         return {g:1,
1383             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1384                 + "if (h == 12) { h = 0; }\n"
1385                 + "} else { if (h < 12) { h += 12; }}",
1386             s:"(AM|PM)"};
1387     case "g":
1388     case "G":
1389         return {g:1,
1390             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1391             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1392     case "h":
1393     case "H":
1394         return {g:1,
1395             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1396             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1397     case "i":
1398         return {g:1,
1399             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1400             s:"(\\d{2})"};
1401     case "s":
1402         return {g:1,
1403             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1404             s:"(\\d{2})"};
1405     case "O":
1406         return {g:1,
1407             c:[
1408                 "o = results[", currentGroup, "];\n",
1409                 "var sn = o.substring(0,1);\n", // get + / - sign
1410                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1411                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1412                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1413                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1414             ].join(""),
1415             s:"([+\-]\\d{2,4})"};
1416     
1417     
1418     case "P":
1419         return {g:1,
1420                 c:[
1421                    "o = results[", currentGroup, "];\n",
1422                    "var sn = o.substring(0,1);\n",
1423                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1424                    "var mn = o.substring(4,6) % 60;\n",
1425                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1426                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1427             ].join(""),
1428             s:"([+\-]\\d{4})"};
1429     case "T":
1430         return {g:0,
1431             c:null,
1432             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1433     case "Z":
1434         return {g:1,
1435             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1436                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1437             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1438     default:
1439         return {g:0,
1440             c:null,
1441             s:String.escape(character)};
1442     }
1443 };
1444
1445 /**
1446  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1447  * @return {String} The abbreviated timezone name (e.g. 'CST')
1448  */
1449 Date.prototype.getTimezone = function() {
1450     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1451 };
1452
1453 /**
1454  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1455  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1456  */
1457 Date.prototype.getGMTOffset = function() {
1458     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1459         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1460         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1461 };
1462
1463 /**
1464  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1465  * @return {String} 2-characters representing hours and 2-characters representing minutes
1466  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1467  */
1468 Date.prototype.getGMTColonOffset = function() {
1469         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1470                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1471                 + ":"
1472                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1473 }
1474
1475 /**
1476  * Get the numeric day number of the year, adjusted for leap year.
1477  * @return {Number} 0 through 364 (365 in leap years)
1478  */
1479 Date.prototype.getDayOfYear = function() {
1480     var num = 0;
1481     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1482     for (var i = 0; i < this.getMonth(); ++i) {
1483         num += Date.daysInMonth[i];
1484     }
1485     return num + this.getDate() - 1;
1486 };
1487
1488 /**
1489  * Get the string representation of the numeric week number of the year
1490  * (equivalent to the format specifier 'W').
1491  * @return {String} '00' through '52'
1492  */
1493 Date.prototype.getWeekOfYear = function() {
1494     // Skip to Thursday of this week
1495     var now = this.getDayOfYear() + (4 - this.getDay());
1496     // Find the first Thursday of the year
1497     var jan1 = new Date(this.getFullYear(), 0, 1);
1498     var then = (7 - jan1.getDay() + 4);
1499     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1500 };
1501
1502 /**
1503  * Whether or not the current date is in a leap year.
1504  * @return {Boolean} True if the current date is in a leap year, else false
1505  */
1506 Date.prototype.isLeapYear = function() {
1507     var year = this.getFullYear();
1508     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1509 };
1510
1511 /**
1512  * Get the first day of the current month, adjusted for leap year.  The returned value
1513  * is the numeric day index within the week (0-6) which can be used in conjunction with
1514  * the {@link #monthNames} array to retrieve the textual day name.
1515  * Example:
1516  *<pre><code>
1517 var dt = new Date('1/10/2007');
1518 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1519 </code></pre>
1520  * @return {Number} The day number (0-6)
1521  */
1522 Date.prototype.getFirstDayOfMonth = function() {
1523     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1524     return (day < 0) ? (day + 7) : day;
1525 };
1526
1527 /**
1528  * Get the last day of the current month, adjusted for leap year.  The returned value
1529  * is the numeric day index within the week (0-6) which can be used in conjunction with
1530  * the {@link #monthNames} array to retrieve the textual day name.
1531  * Example:
1532  *<pre><code>
1533 var dt = new Date('1/10/2007');
1534 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1535 </code></pre>
1536  * @return {Number} The day number (0-6)
1537  */
1538 Date.prototype.getLastDayOfMonth = function() {
1539     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1540     return (day < 0) ? (day + 7) : day;
1541 };
1542
1543
1544 /**
1545  * Get the first date of this date's month
1546  * @return {Date}
1547  */
1548 Date.prototype.getFirstDateOfMonth = function() {
1549     return new Date(this.getFullYear(), this.getMonth(), 1);
1550 };
1551
1552 /**
1553  * Get the last date of this date's month
1554  * @return {Date}
1555  */
1556 Date.prototype.getLastDateOfMonth = function() {
1557     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1558 };
1559 /**
1560  * Get the number of days in the current month, adjusted for leap year.
1561  * @return {Number} The number of days in the month
1562  */
1563 Date.prototype.getDaysInMonth = function() {
1564     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1565     return Date.daysInMonth[this.getMonth()];
1566 };
1567
1568 /**
1569  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1570  * @return {String} 'st, 'nd', 'rd' or 'th'
1571  */
1572 Date.prototype.getSuffix = function() {
1573     switch (this.getDate()) {
1574         case 1:
1575         case 21:
1576         case 31:
1577             return "st";
1578         case 2:
1579         case 22:
1580             return "nd";
1581         case 3:
1582         case 23:
1583             return "rd";
1584         default:
1585             return "th";
1586     }
1587 };
1588
1589 // private
1590 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1591
1592 /**
1593  * An array of textual month names.
1594  * Override these values for international dates, for example...
1595  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1596  * @type Array
1597  * @static
1598  */
1599 Date.monthNames =
1600    ["January",
1601     "February",
1602     "March",
1603     "April",
1604     "May",
1605     "June",
1606     "July",
1607     "August",
1608     "September",
1609     "October",
1610     "November",
1611     "December"];
1612
1613 /**
1614  * An array of textual day names.
1615  * Override these values for international dates, for example...
1616  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1617  * @type Array
1618  * @static
1619  */
1620 Date.dayNames =
1621    ["Sunday",
1622     "Monday",
1623     "Tuesday",
1624     "Wednesday",
1625     "Thursday",
1626     "Friday",
1627     "Saturday"];
1628
1629 // private
1630 Date.y2kYear = 50;
1631 // private
1632 Date.monthNumbers = {
1633     Jan:0,
1634     Feb:1,
1635     Mar:2,
1636     Apr:3,
1637     May:4,
1638     Jun:5,
1639     Jul:6,
1640     Aug:7,
1641     Sep:8,
1642     Oct:9,
1643     Nov:10,
1644     Dec:11};
1645
1646 /**
1647  * Creates and returns a new Date instance with the exact same date value as the called instance.
1648  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1649  * variable will also be changed.  When the intention is to create a new variable that will not
1650  * modify the original instance, you should create a clone.
1651  *
1652  * Example of correctly cloning a date:
1653  * <pre><code>
1654 //wrong way:
1655 var orig = new Date('10/1/2006');
1656 var copy = orig;
1657 copy.setDate(5);
1658 document.write(orig);  //returns 'Thu Oct 05 2006'!
1659
1660 //correct way:
1661 var orig = new Date('10/1/2006');
1662 var copy = orig.clone();
1663 copy.setDate(5);
1664 document.write(orig);  //returns 'Thu Oct 01 2006'
1665 </code></pre>
1666  * @return {Date} The new Date instance
1667  */
1668 Date.prototype.clone = function() {
1669         return new Date(this.getTime());
1670 };
1671
1672 /**
1673  * Clears any time information from this date
1674  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1675  @return {Date} this or the clone
1676  */
1677 Date.prototype.clearTime = function(clone){
1678     if(clone){
1679         return this.clone().clearTime();
1680     }
1681     this.setHours(0);
1682     this.setMinutes(0);
1683     this.setSeconds(0);
1684     this.setMilliseconds(0);
1685     return this;
1686 };
1687
1688 // private
1689 // safari setMonth is broken
1690 if(Roo.isSafari){
1691     Date.brokenSetMonth = Date.prototype.setMonth;
1692         Date.prototype.setMonth = function(num){
1693                 if(num <= -1){
1694                         var n = Math.ceil(-num);
1695                         var back_year = Math.ceil(n/12);
1696                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1697                         this.setFullYear(this.getFullYear() - back_year);
1698                         return Date.brokenSetMonth.call(this, month);
1699                 } else {
1700                         return Date.brokenSetMonth.apply(this, arguments);
1701                 }
1702         };
1703 }
1704
1705 /** Date interval constant 
1706 * @static 
1707 * @type String */
1708 Date.MILLI = "ms";
1709 /** Date interval constant 
1710 * @static 
1711 * @type String */
1712 Date.SECOND = "s";
1713 /** Date interval constant 
1714 * @static 
1715 * @type String */
1716 Date.MINUTE = "mi";
1717 /** Date interval constant 
1718 * @static 
1719 * @type String */
1720 Date.HOUR = "h";
1721 /** Date interval constant 
1722 * @static 
1723 * @type String */
1724 Date.DAY = "d";
1725 /** Date interval constant 
1726 * @static 
1727 * @type String */
1728 Date.MONTH = "mo";
1729 /** Date interval constant 
1730 * @static 
1731 * @type String */
1732 Date.YEAR = "y";
1733
1734 /**
1735  * Provides a convenient method of performing basic date arithmetic.  This method
1736  * does not modify the Date instance being called - it creates and returns
1737  * a new Date instance containing the resulting date value.
1738  *
1739  * Examples:
1740  * <pre><code>
1741 //Basic usage:
1742 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1743 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1744
1745 //Negative values will subtract correctly:
1746 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1747 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1748
1749 //You can even chain several calls together in one line!
1750 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1751 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1752  </code></pre>
1753  *
1754  * @param {String} interval   A valid date interval enum value
1755  * @param {Number} value      The amount to add to the current date
1756  * @return {Date} The new Date instance
1757  */
1758 Date.prototype.add = function(interval, value){
1759   var d = this.clone();
1760   if (!interval || value === 0) return d;
1761   switch(interval.toLowerCase()){
1762     case Date.MILLI:
1763       d.setMilliseconds(this.getMilliseconds() + value);
1764       break;
1765     case Date.SECOND:
1766       d.setSeconds(this.getSeconds() + value);
1767       break;
1768     case Date.MINUTE:
1769       d.setMinutes(this.getMinutes() + value);
1770       break;
1771     case Date.HOUR:
1772       d.setHours(this.getHours() + value);
1773       break;
1774     case Date.DAY:
1775       d.setDate(this.getDate() + value);
1776       break;
1777     case Date.MONTH:
1778       var day = this.getDate();
1779       if(day > 28){
1780           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1781       }
1782       d.setDate(day);
1783       d.setMonth(this.getMonth() + value);
1784       break;
1785     case Date.YEAR:
1786       d.setFullYear(this.getFullYear() + value);
1787       break;
1788   }
1789   return d;
1790 };
1791 /*
1792  * Based on:
1793  * Ext JS Library 1.1.1
1794  * Copyright(c) 2006-2007, Ext JS, LLC.
1795  *
1796  * Originally Released Under LGPL - original licence link has changed is not relivant.
1797  *
1798  * Fork - LGPL
1799  * <script type="text/javascript">
1800  */
1801
1802 /**
1803  * @class Roo.lib.Dom
1804  * @static
1805  * 
1806  * Dom utils (from YIU afaik)
1807  * 
1808  **/
1809 Roo.lib.Dom = {
1810     /**
1811      * Get the view width
1812      * @param {Boolean} full True will get the full document, otherwise it's the view width
1813      * @return {Number} The width
1814      */
1815      
1816     getViewWidth : function(full) {
1817         return full ? this.getDocumentWidth() : this.getViewportWidth();
1818     },
1819     /**
1820      * Get the view height
1821      * @param {Boolean} full True will get the full document, otherwise it's the view height
1822      * @return {Number} The height
1823      */
1824     getViewHeight : function(full) {
1825         return full ? this.getDocumentHeight() : this.getViewportHeight();
1826     },
1827
1828     getDocumentHeight: function() {
1829         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1830         return Math.max(scrollHeight, this.getViewportHeight());
1831     },
1832
1833     getDocumentWidth: function() {
1834         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1835         return Math.max(scrollWidth, this.getViewportWidth());
1836     },
1837
1838     getViewportHeight: function() {
1839         var height = self.innerHeight;
1840         var mode = document.compatMode;
1841
1842         if ((mode || Roo.isIE) && !Roo.isOpera) {
1843             height = (mode == "CSS1Compat") ?
1844                      document.documentElement.clientHeight :
1845                      document.body.clientHeight;
1846         }
1847
1848         return height;
1849     },
1850
1851     getViewportWidth: function() {
1852         var width = self.innerWidth;
1853         var mode = document.compatMode;
1854
1855         if (mode || Roo.isIE) {
1856             width = (mode == "CSS1Compat") ?
1857                     document.documentElement.clientWidth :
1858                     document.body.clientWidth;
1859         }
1860         return width;
1861     },
1862
1863     isAncestor : function(p, c) {
1864         p = Roo.getDom(p);
1865         c = Roo.getDom(c);
1866         if (!p || !c) {
1867             return false;
1868         }
1869
1870         if (p.contains && !Roo.isSafari) {
1871             return p.contains(c);
1872         } else if (p.compareDocumentPosition) {
1873             return !!(p.compareDocumentPosition(c) & 16);
1874         } else {
1875             var parent = c.parentNode;
1876             while (parent) {
1877                 if (parent == p) {
1878                     return true;
1879                 }
1880                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1881                     return false;
1882                 }
1883                 parent = parent.parentNode;
1884             }
1885             return false;
1886         }
1887     },
1888
1889     getRegion : function(el) {
1890         return Roo.lib.Region.getRegion(el);
1891     },
1892
1893     getY : function(el) {
1894         return this.getXY(el)[1];
1895     },
1896
1897     getX : function(el) {
1898         return this.getXY(el)[0];
1899     },
1900
1901     getXY : function(el) {
1902         var p, pe, b, scroll, bd = document.body;
1903         el = Roo.getDom(el);
1904         var fly = Roo.lib.AnimBase.fly;
1905         if (el.getBoundingClientRect) {
1906             b = el.getBoundingClientRect();
1907             scroll = fly(document).getScroll();
1908             return [b.left + scroll.left, b.top + scroll.top];
1909         }
1910         var x = 0, y = 0;
1911
1912         p = el;
1913
1914         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1915
1916         while (p) {
1917
1918             x += p.offsetLeft;
1919             y += p.offsetTop;
1920
1921             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1922                 hasAbsolute = true;
1923             }
1924
1925             if (Roo.isGecko) {
1926                 pe = fly(p);
1927
1928                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1929                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1930
1931
1932                 x += bl;
1933                 y += bt;
1934
1935
1936                 if (p != el && pe.getStyle('overflow') != 'visible') {
1937                     x += bl;
1938                     y += bt;
1939                 }
1940             }
1941             p = p.offsetParent;
1942         }
1943
1944         if (Roo.isSafari && hasAbsolute) {
1945             x -= bd.offsetLeft;
1946             y -= bd.offsetTop;
1947         }
1948
1949         if (Roo.isGecko && !hasAbsolute) {
1950             var dbd = fly(bd);
1951             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
1952             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
1953         }
1954
1955         p = el.parentNode;
1956         while (p && p != bd) {
1957             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
1958                 x -= p.scrollLeft;
1959                 y -= p.scrollTop;
1960             }
1961             p = p.parentNode;
1962         }
1963         return [x, y];
1964     },
1965  
1966   
1967
1968
1969     setXY : function(el, xy) {
1970         el = Roo.fly(el, '_setXY');
1971         el.position();
1972         var pts = el.translatePoints(xy);
1973         if (xy[0] !== false) {
1974             el.dom.style.left = pts.left + "px";
1975         }
1976         if (xy[1] !== false) {
1977             el.dom.style.top = pts.top + "px";
1978         }
1979     },
1980
1981     setX : function(el, x) {
1982         this.setXY(el, [x, false]);
1983     },
1984
1985     setY : function(el, y) {
1986         this.setXY(el, [false, y]);
1987     }
1988 };
1989 /*
1990  * Portions of this file are based on pieces of Yahoo User Interface Library
1991  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
1992  * YUI licensed under the BSD License:
1993  * http://developer.yahoo.net/yui/license.txt
1994  * <script type="text/javascript">
1995  *
1996  */
1997
1998 Roo.lib.Event = function() {
1999     var loadComplete = false;
2000     var listeners = [];
2001     var unloadListeners = [];
2002     var retryCount = 0;
2003     var onAvailStack = [];
2004     var counter = 0;
2005     var lastError = null;
2006
2007     return {
2008         POLL_RETRYS: 200,
2009         POLL_INTERVAL: 20,
2010         EL: 0,
2011         TYPE: 1,
2012         FN: 2,
2013         WFN: 3,
2014         OBJ: 3,
2015         ADJ_SCOPE: 4,
2016         _interval: null,
2017
2018         startInterval: function() {
2019             if (!this._interval) {
2020                 var self = this;
2021                 var callback = function() {
2022                     self._tryPreloadAttach();
2023                 };
2024                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2025
2026             }
2027         },
2028
2029         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2030             onAvailStack.push({ id:         p_id,
2031                 fn:         p_fn,
2032                 obj:        p_obj,
2033                 override:   p_override,
2034                 checkReady: false    });
2035
2036             retryCount = this.POLL_RETRYS;
2037             this.startInterval();
2038         },
2039
2040
2041         addListener: function(el, eventName, fn) {
2042             el = Roo.getDom(el);
2043             if (!el || !fn) {
2044                 return false;
2045             }
2046
2047             if ("unload" == eventName) {
2048                 unloadListeners[unloadListeners.length] =
2049                 [el, eventName, fn];
2050                 return true;
2051             }
2052
2053             var wrappedFn = function(e) {
2054                 return fn(Roo.lib.Event.getEvent(e));
2055             };
2056
2057             var li = [el, eventName, fn, wrappedFn];
2058
2059             var index = listeners.length;
2060             listeners[index] = li;
2061
2062             this.doAdd(el, eventName, wrappedFn, false);
2063             return true;
2064
2065         },
2066
2067
2068         removeListener: function(el, eventName, fn) {
2069             var i, len;
2070
2071             el = Roo.getDom(el);
2072
2073             if(!fn) {
2074                 return this.purgeElement(el, false, eventName);
2075             }
2076
2077
2078             if ("unload" == eventName) {
2079
2080                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2081                     var li = unloadListeners[i];
2082                     if (li &&
2083                         li[0] == el &&
2084                         li[1] == eventName &&
2085                         li[2] == fn) {
2086                         unloadListeners.splice(i, 1);
2087                         return true;
2088                     }
2089                 }
2090
2091                 return false;
2092             }
2093
2094             var cacheItem = null;
2095
2096
2097             var index = arguments[3];
2098
2099             if ("undefined" == typeof index) {
2100                 index = this._getCacheIndex(el, eventName, fn);
2101             }
2102
2103             if (index >= 0) {
2104                 cacheItem = listeners[index];
2105             }
2106
2107             if (!el || !cacheItem) {
2108                 return false;
2109             }
2110
2111             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2112
2113             delete listeners[index][this.WFN];
2114             delete listeners[index][this.FN];
2115             listeners.splice(index, 1);
2116
2117             return true;
2118
2119         },
2120
2121
2122         getTarget: function(ev, resolveTextNode) {
2123             ev = ev.browserEvent || ev;
2124             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2125             var t = ev.target || ev.srcElement;
2126             return this.resolveTextNode(t);
2127         },
2128
2129
2130         resolveTextNode: function(node) {
2131             if (Roo.isSafari && node && 3 == node.nodeType) {
2132                 return node.parentNode;
2133             } else {
2134                 return node;
2135             }
2136         },
2137
2138
2139         getPageX: function(ev) {
2140             ev = ev.browserEvent || ev;
2141             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2142             var x = ev.pageX;
2143             if (!x && 0 !== x) {
2144                 x = ev.clientX || 0;
2145
2146                 if (Roo.isIE) {
2147                     x += this.getScroll()[1];
2148                 }
2149             }
2150
2151             return x;
2152         },
2153
2154
2155         getPageY: function(ev) {
2156             ev = ev.browserEvent || ev;
2157             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2158             var y = ev.pageY;
2159             if (!y && 0 !== y) {
2160                 y = ev.clientY || 0;
2161
2162                 if (Roo.isIE) {
2163                     y += this.getScroll()[0];
2164                 }
2165             }
2166
2167
2168             return y;
2169         },
2170
2171
2172         getXY: function(ev) {
2173             ev = ev.browserEvent || ev;
2174             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2175             return [this.getPageX(ev), this.getPageY(ev)];
2176         },
2177
2178
2179         getRelatedTarget: function(ev) {
2180             ev = ev.browserEvent || ev;
2181             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2182             var t = ev.relatedTarget;
2183             if (!t) {
2184                 if (ev.type == "mouseout") {
2185                     t = ev.toElement;
2186                 } else if (ev.type == "mouseover") {
2187                     t = ev.fromElement;
2188                 }
2189             }
2190
2191             return this.resolveTextNode(t);
2192         },
2193
2194
2195         getTime: function(ev) {
2196             ev = ev.browserEvent || ev;
2197             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2198             if (!ev.time) {
2199                 var t = new Date().getTime();
2200                 try {
2201                     ev.time = t;
2202                 } catch(ex) {
2203                     this.lastError = ex;
2204                     return t;
2205                 }
2206             }
2207
2208             return ev.time;
2209         },
2210
2211
2212         stopEvent: function(ev) {
2213             this.stopPropagation(ev);
2214             this.preventDefault(ev);
2215         },
2216
2217
2218         stopPropagation: function(ev) {
2219             ev = ev.browserEvent || ev;
2220             if (ev.stopPropagation) {
2221                 ev.stopPropagation();
2222             } else {
2223                 ev.cancelBubble = true;
2224             }
2225         },
2226
2227
2228         preventDefault: function(ev) {
2229             ev = ev.browserEvent || ev;
2230             if(ev.preventDefault) {
2231                 ev.preventDefault();
2232             } else {
2233                 ev.returnValue = false;
2234             }
2235         },
2236
2237
2238         getEvent: function(e) {
2239             var ev = e || window.event;
2240             if (!ev) {
2241                 var c = this.getEvent.caller;
2242                 while (c) {
2243                     ev = c.arguments[0];
2244                     if (ev && Event == ev.constructor) {
2245                         break;
2246                     }
2247                     c = c.caller;
2248                 }
2249             }
2250             return ev;
2251         },
2252
2253
2254         getCharCode: function(ev) {
2255             ev = ev.browserEvent || ev;
2256             return ev.charCode || ev.keyCode || 0;
2257         },
2258
2259
2260         _getCacheIndex: function(el, eventName, fn) {
2261             for (var i = 0,len = listeners.length; i < len; ++i) {
2262                 var li = listeners[i];
2263                 if (li &&
2264                     li[this.FN] == fn &&
2265                     li[this.EL] == el &&
2266                     li[this.TYPE] == eventName) {
2267                     return i;
2268                 }
2269             }
2270
2271             return -1;
2272         },
2273
2274
2275         elCache: {},
2276
2277
2278         getEl: function(id) {
2279             return document.getElementById(id);
2280         },
2281
2282
2283         clearCache: function() {
2284         },
2285
2286
2287         _load: function(e) {
2288             loadComplete = true;
2289             var EU = Roo.lib.Event;
2290
2291
2292             if (Roo.isIE) {
2293                 EU.doRemove(window, "load", EU._load);
2294             }
2295         },
2296
2297
2298         _tryPreloadAttach: function() {
2299
2300             if (this.locked) {
2301                 return false;
2302             }
2303
2304             this.locked = true;
2305
2306
2307             var tryAgain = !loadComplete;
2308             if (!tryAgain) {
2309                 tryAgain = (retryCount > 0);
2310             }
2311
2312
2313             var notAvail = [];
2314             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2315                 var item = onAvailStack[i];
2316                 if (item) {
2317                     var el = this.getEl(item.id);
2318
2319                     if (el) {
2320                         if (!item.checkReady ||
2321                             loadComplete ||
2322                             el.nextSibling ||
2323                             (document && document.body)) {
2324
2325                             var scope = el;
2326                             if (item.override) {
2327                                 if (item.override === true) {
2328                                     scope = item.obj;
2329                                 } else {
2330                                     scope = item.override;
2331                                 }
2332                             }
2333                             item.fn.call(scope, item.obj);
2334                             onAvailStack[i] = null;
2335                         }
2336                     } else {
2337                         notAvail.push(item);
2338                     }
2339                 }
2340             }
2341
2342             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2343
2344             if (tryAgain) {
2345
2346                 this.startInterval();
2347             } else {
2348                 clearInterval(this._interval);
2349                 this._interval = null;
2350             }
2351
2352             this.locked = false;
2353
2354             return true;
2355
2356         },
2357
2358
2359         purgeElement: function(el, recurse, eventName) {
2360             var elListeners = this.getListeners(el, eventName);
2361             if (elListeners) {
2362                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2363                     var l = elListeners[i];
2364                     this.removeListener(el, l.type, l.fn);
2365                 }
2366             }
2367
2368             if (recurse && el && el.childNodes) {
2369                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2370                     this.purgeElement(el.childNodes[i], recurse, eventName);
2371                 }
2372             }
2373         },
2374
2375
2376         getListeners: function(el, eventName) {
2377             var results = [], searchLists;
2378             if (!eventName) {
2379                 searchLists = [listeners, unloadListeners];
2380             } else if (eventName == "unload") {
2381                 searchLists = [unloadListeners];
2382             } else {
2383                 searchLists = [listeners];
2384             }
2385
2386             for (var j = 0; j < searchLists.length; ++j) {
2387                 var searchList = searchLists[j];
2388                 if (searchList && searchList.length > 0) {
2389                     for (var i = 0,len = searchList.length; i < len; ++i) {
2390                         var l = searchList[i];
2391                         if (l && l[this.EL] === el &&
2392                             (!eventName || eventName === l[this.TYPE])) {
2393                             results.push({
2394                                 type:   l[this.TYPE],
2395                                 fn:     l[this.FN],
2396                                 obj:    l[this.OBJ],
2397                                 adjust: l[this.ADJ_SCOPE],
2398                                 index:  i
2399                             });
2400                         }
2401                     }
2402                 }
2403             }
2404
2405             return (results.length) ? results : null;
2406         },
2407
2408
2409         _unload: function(e) {
2410
2411             var EU = Roo.lib.Event, i, j, l, len, index;
2412
2413             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2414                 l = unloadListeners[i];
2415                 if (l) {
2416                     var scope = window;
2417                     if (l[EU.ADJ_SCOPE]) {
2418                         if (l[EU.ADJ_SCOPE] === true) {
2419                             scope = l[EU.OBJ];
2420                         } else {
2421                             scope = l[EU.ADJ_SCOPE];
2422                         }
2423                     }
2424                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2425                     unloadListeners[i] = null;
2426                     l = null;
2427                     scope = null;
2428                 }
2429             }
2430
2431             unloadListeners = null;
2432
2433             if (listeners && listeners.length > 0) {
2434                 j = listeners.length;
2435                 while (j) {
2436                     index = j - 1;
2437                     l = listeners[index];
2438                     if (l) {
2439                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2440                                 l[EU.FN], index);
2441                     }
2442                     j = j - 1;
2443                 }
2444                 l = null;
2445
2446                 EU.clearCache();
2447             }
2448
2449             EU.doRemove(window, "unload", EU._unload);
2450
2451         },
2452
2453
2454         getScroll: function() {
2455             var dd = document.documentElement, db = document.body;
2456             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2457                 return [dd.scrollTop, dd.scrollLeft];
2458             } else if (db) {
2459                 return [db.scrollTop, db.scrollLeft];
2460             } else {
2461                 return [0, 0];
2462             }
2463         },
2464
2465
2466         doAdd: function () {
2467             if (window.addEventListener) {
2468                 return function(el, eventName, fn, capture) {
2469                     el.addEventListener(eventName, fn, (capture));
2470                 };
2471             } else if (window.attachEvent) {
2472                 return function(el, eventName, fn, capture) {
2473                     el.attachEvent("on" + eventName, fn);
2474                 };
2475             } else {
2476                 return function() {
2477                 };
2478             }
2479         }(),
2480
2481
2482         doRemove: function() {
2483             if (window.removeEventListener) {
2484                 return function (el, eventName, fn, capture) {
2485                     el.removeEventListener(eventName, fn, (capture));
2486                 };
2487             } else if (window.detachEvent) {
2488                 return function (el, eventName, fn) {
2489                     el.detachEvent("on" + eventName, fn);
2490                 };
2491             } else {
2492                 return function() {
2493                 };
2494             }
2495         }()
2496     };
2497     
2498 }();
2499 (function() {     
2500    
2501     var E = Roo.lib.Event;
2502     E.on = E.addListener;
2503     E.un = E.removeListener;
2504
2505     if (document && document.body) {
2506         E._load();
2507     } else {
2508         E.doAdd(window, "load", E._load);
2509     }
2510     E.doAdd(window, "unload", E._unload);
2511     E._tryPreloadAttach();
2512 })();
2513
2514 /*
2515  * Portions of this file are based on pieces of Yahoo User Interface Library
2516  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2517  * YUI licensed under the BSD License:
2518  * http://developer.yahoo.net/yui/license.txt
2519  * <script type="text/javascript">
2520  *
2521  */
2522
2523 (function() {
2524     /**
2525      * @class Roo.lib.Ajax
2526      *
2527      */
2528     Roo.lib.Ajax = {
2529         /**
2530          * @static 
2531          */
2532         request : function(method, uri, cb, data, options) {
2533             if(options){
2534                 var hs = options.headers;
2535                 if(hs){
2536                     for(var h in hs){
2537                         if(hs.hasOwnProperty(h)){
2538                             this.initHeader(h, hs[h], false);
2539                         }
2540                     }
2541                 }
2542                 if(options.xmlData){
2543                     this.initHeader('Content-Type', 'text/xml', false);
2544                     method = 'POST';
2545                     data = options.xmlData;
2546                 }
2547             }
2548
2549             return this.asyncRequest(method, uri, cb, data);
2550         },
2551
2552         serializeForm : function(form) {
2553             if(typeof form == 'string') {
2554                 form = (document.getElementById(form) || document.forms[form]);
2555             }
2556
2557             var el, name, val, disabled, data = '', hasSubmit = false;
2558             for (var i = 0; i < form.elements.length; i++) {
2559                 el = form.elements[i];
2560                 disabled = form.elements[i].disabled;
2561                 name = form.elements[i].name;
2562                 val = form.elements[i].value;
2563
2564                 if (!disabled && name){
2565                     switch (el.type)
2566                             {
2567                         case 'select-one':
2568                         case 'select-multiple':
2569                             for (var j = 0; j < el.options.length; j++) {
2570                                 if (el.options[j].selected) {
2571                                     if (Roo.isIE) {
2572                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2573                                     }
2574                                     else {
2575                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2576                                     }
2577                                 }
2578                             }
2579                             break;
2580                         case 'radio':
2581                         case 'checkbox':
2582                             if (el.checked) {
2583                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2584                             }
2585                             break;
2586                         case 'file':
2587
2588                         case undefined:
2589
2590                         case 'reset':
2591
2592                         case 'button':
2593
2594                             break;
2595                         case 'submit':
2596                             if(hasSubmit == false) {
2597                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2598                                 hasSubmit = true;
2599                             }
2600                             break;
2601                         default:
2602                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2603                             break;
2604                     }
2605                 }
2606             }
2607             data = data.substr(0, data.length - 1);
2608             return data;
2609         },
2610
2611         headers:{},
2612
2613         hasHeaders:false,
2614
2615         useDefaultHeader:true,
2616
2617         defaultPostHeader:'application/x-www-form-urlencoded',
2618
2619         useDefaultXhrHeader:true,
2620
2621         defaultXhrHeader:'XMLHttpRequest',
2622
2623         hasDefaultHeaders:true,
2624
2625         defaultHeaders:{},
2626
2627         poll:{},
2628
2629         timeout:{},
2630
2631         pollInterval:50,
2632
2633         transactionId:0,
2634
2635         setProgId:function(id)
2636         {
2637             this.activeX.unshift(id);
2638         },
2639
2640         setDefaultPostHeader:function(b)
2641         {
2642             this.useDefaultHeader = b;
2643         },
2644
2645         setDefaultXhrHeader:function(b)
2646         {
2647             this.useDefaultXhrHeader = b;
2648         },
2649
2650         setPollingInterval:function(i)
2651         {
2652             if (typeof i == 'number' && isFinite(i)) {
2653                 this.pollInterval = i;
2654             }
2655         },
2656
2657         createXhrObject:function(transactionId)
2658         {
2659             var obj,http;
2660             try
2661             {
2662
2663                 http = new XMLHttpRequest();
2664
2665                 obj = { conn:http, tId:transactionId };
2666             }
2667             catch(e)
2668             {
2669                 for (var i = 0; i < this.activeX.length; ++i) {
2670                     try
2671                     {
2672
2673                         http = new ActiveXObject(this.activeX[i]);
2674
2675                         obj = { conn:http, tId:transactionId };
2676                         break;
2677                     }
2678                     catch(e) {
2679                     }
2680                 }
2681             }
2682             finally
2683             {
2684                 return obj;
2685             }
2686         },
2687
2688         getConnectionObject:function()
2689         {
2690             var o;
2691             var tId = this.transactionId;
2692
2693             try
2694             {
2695                 o = this.createXhrObject(tId);
2696                 if (o) {
2697                     this.transactionId++;
2698                 }
2699             }
2700             catch(e) {
2701             }
2702             finally
2703             {
2704                 return o;
2705             }
2706         },
2707
2708         asyncRequest:function(method, uri, callback, postData)
2709         {
2710             var o = this.getConnectionObject();
2711
2712             if (!o) {
2713                 return null;
2714             }
2715             else {
2716                 o.conn.open(method, uri, true);
2717
2718                 if (this.useDefaultXhrHeader) {
2719                     if (!this.defaultHeaders['X-Requested-With']) {
2720                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2721                     }
2722                 }
2723
2724                 if(postData && this.useDefaultHeader){
2725                     this.initHeader('Content-Type', this.defaultPostHeader);
2726                 }
2727
2728                  if (this.hasDefaultHeaders || this.hasHeaders) {
2729                     this.setHeader(o);
2730                 }
2731
2732                 this.handleReadyState(o, callback);
2733                 o.conn.send(postData || null);
2734
2735                 return o;
2736             }
2737         },
2738
2739         handleReadyState:function(o, callback)
2740         {
2741             var oConn = this;
2742
2743             if (callback && callback.timeout) {
2744                 
2745                 this.timeout[o.tId] = window.setTimeout(function() {
2746                     oConn.abort(o, callback, true);
2747                 }, callback.timeout);
2748             }
2749
2750             this.poll[o.tId] = window.setInterval(
2751                     function() {
2752                         if (o.conn && o.conn.readyState == 4) {
2753                             window.clearInterval(oConn.poll[o.tId]);
2754                             delete oConn.poll[o.tId];
2755
2756                             if(callback && callback.timeout) {
2757                                 window.clearTimeout(oConn.timeout[o.tId]);
2758                                 delete oConn.timeout[o.tId];
2759                             }
2760
2761                             oConn.handleTransactionResponse(o, callback);
2762                         }
2763                     }
2764                     , this.pollInterval);
2765         },
2766
2767         handleTransactionResponse:function(o, callback, isAbort)
2768         {
2769
2770             if (!callback) {
2771                 this.releaseObject(o);
2772                 return;
2773             }
2774
2775             var httpStatus, responseObject;
2776
2777             try
2778             {
2779                 if (o.conn.status !== undefined && o.conn.status != 0) {
2780                     httpStatus = o.conn.status;
2781                 }
2782                 else {
2783                     httpStatus = 13030;
2784                 }
2785             }
2786             catch(e) {
2787
2788
2789                 httpStatus = 13030;
2790             }
2791
2792             if (httpStatus >= 200 && httpStatus < 300) {
2793                 responseObject = this.createResponseObject(o, callback.argument);
2794                 if (callback.success) {
2795                     if (!callback.scope) {
2796                         callback.success(responseObject);
2797                     }
2798                     else {
2799
2800
2801                         callback.success.apply(callback.scope, [responseObject]);
2802                     }
2803                 }
2804             }
2805             else {
2806                 switch (httpStatus) {
2807
2808                     case 12002:
2809                     case 12029:
2810                     case 12030:
2811                     case 12031:
2812                     case 12152:
2813                     case 13030:
2814                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2815                         if (callback.failure) {
2816                             if (!callback.scope) {
2817                                 callback.failure(responseObject);
2818                             }
2819                             else {
2820                                 callback.failure.apply(callback.scope, [responseObject]);
2821                             }
2822                         }
2823                         break;
2824                     default:
2825                         responseObject = this.createResponseObject(o, callback.argument);
2826                         if (callback.failure) {
2827                             if (!callback.scope) {
2828                                 callback.failure(responseObject);
2829                             }
2830                             else {
2831                                 callback.failure.apply(callback.scope, [responseObject]);
2832                             }
2833                         }
2834                 }
2835             }
2836
2837             this.releaseObject(o);
2838             responseObject = null;
2839         },
2840
2841         createResponseObject:function(o, callbackArg)
2842         {
2843             var obj = {};
2844             var headerObj = {};
2845
2846             try
2847             {
2848                 var headerStr = o.conn.getAllResponseHeaders();
2849                 var header = headerStr.split('\n');
2850                 for (var i = 0; i < header.length; i++) {
2851                     var delimitPos = header[i].indexOf(':');
2852                     if (delimitPos != -1) {
2853                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2854                     }
2855                 }
2856             }
2857             catch(e) {
2858             }
2859
2860             obj.tId = o.tId;
2861             obj.status = o.conn.status;
2862             obj.statusText = o.conn.statusText;
2863             obj.getResponseHeader = headerObj;
2864             obj.getAllResponseHeaders = headerStr;
2865             obj.responseText = o.conn.responseText;
2866             obj.responseXML = o.conn.responseXML;
2867
2868             if (typeof callbackArg !== undefined) {
2869                 obj.argument = callbackArg;
2870             }
2871
2872             return obj;
2873         },
2874
2875         createExceptionObject:function(tId, callbackArg, isAbort)
2876         {
2877             var COMM_CODE = 0;
2878             var COMM_ERROR = 'communication failure';
2879             var ABORT_CODE = -1;
2880             var ABORT_ERROR = 'transaction aborted';
2881
2882             var obj = {};
2883
2884             obj.tId = tId;
2885             if (isAbort) {
2886                 obj.status = ABORT_CODE;
2887                 obj.statusText = ABORT_ERROR;
2888             }
2889             else {
2890                 obj.status = COMM_CODE;
2891                 obj.statusText = COMM_ERROR;
2892             }
2893
2894             if (callbackArg) {
2895                 obj.argument = callbackArg;
2896             }
2897
2898             return obj;
2899         },
2900
2901         initHeader:function(label, value, isDefault)
2902         {
2903             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2904
2905             if (headerObj[label] === undefined) {
2906                 headerObj[label] = value;
2907             }
2908             else {
2909
2910
2911                 headerObj[label] = value + "," + headerObj[label];
2912             }
2913
2914             if (isDefault) {
2915                 this.hasDefaultHeaders = true;
2916             }
2917             else {
2918                 this.hasHeaders = true;
2919             }
2920         },
2921
2922
2923         setHeader:function(o)
2924         {
2925             if (this.hasDefaultHeaders) {
2926                 for (var prop in this.defaultHeaders) {
2927                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2928                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2929                     }
2930                 }
2931             }
2932
2933             if (this.hasHeaders) {
2934                 for (var prop in this.headers) {
2935                     if (this.headers.hasOwnProperty(prop)) {
2936                         o.conn.setRequestHeader(prop, this.headers[prop]);
2937                     }
2938                 }
2939                 this.headers = {};
2940                 this.hasHeaders = false;
2941             }
2942         },
2943
2944         resetDefaultHeaders:function() {
2945             delete this.defaultHeaders;
2946             this.defaultHeaders = {};
2947             this.hasDefaultHeaders = false;
2948         },
2949
2950         abort:function(o, callback, isTimeout)
2951         {
2952             if(this.isCallInProgress(o)) {
2953                 o.conn.abort();
2954                 window.clearInterval(this.poll[o.tId]);
2955                 delete this.poll[o.tId];
2956                 if (isTimeout) {
2957                     delete this.timeout[o.tId];
2958                 }
2959
2960                 this.handleTransactionResponse(o, callback, true);
2961
2962                 return true;
2963             }
2964             else {
2965                 return false;
2966             }
2967         },
2968
2969
2970         isCallInProgress:function(o)
2971         {
2972             if (o && o.conn) {
2973                 return o.conn.readyState != 4 && o.conn.readyState != 0;
2974             }
2975             else {
2976
2977                 return false;
2978             }
2979         },
2980
2981
2982         releaseObject:function(o)
2983         {
2984
2985             o.conn = null;
2986
2987             o = null;
2988         },
2989
2990         activeX:[
2991         'MSXML2.XMLHTTP.3.0',
2992         'MSXML2.XMLHTTP',
2993         'Microsoft.XMLHTTP'
2994         ]
2995
2996
2997     };
2998 })();/*
2999  * Portions of this file are based on pieces of Yahoo User Interface Library
3000  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3001  * YUI licensed under the BSD License:
3002  * http://developer.yahoo.net/yui/license.txt
3003  * <script type="text/javascript">
3004  *
3005  */
3006
3007 Roo.lib.Region = function(t, r, b, l) {
3008     this.top = t;
3009     this[1] = t;
3010     this.right = r;
3011     this.bottom = b;
3012     this.left = l;
3013     this[0] = l;
3014 };
3015
3016
3017 Roo.lib.Region.prototype = {
3018     contains : function(region) {
3019         return ( region.left >= this.left &&
3020                  region.right <= this.right &&
3021                  region.top >= this.top &&
3022                  region.bottom <= this.bottom    );
3023
3024     },
3025
3026     getArea : function() {
3027         return ( (this.bottom - this.top) * (this.right - this.left) );
3028     },
3029
3030     intersect : function(region) {
3031         var t = Math.max(this.top, region.top);
3032         var r = Math.min(this.right, region.right);
3033         var b = Math.min(this.bottom, region.bottom);
3034         var l = Math.max(this.left, region.left);
3035
3036         if (b >= t && r >= l) {
3037             return new Roo.lib.Region(t, r, b, l);
3038         } else {
3039             return null;
3040         }
3041     },
3042     union : function(region) {
3043         var t = Math.min(this.top, region.top);
3044         var r = Math.max(this.right, region.right);
3045         var b = Math.max(this.bottom, region.bottom);
3046         var l = Math.min(this.left, region.left);
3047
3048         return new Roo.lib.Region(t, r, b, l);
3049     },
3050
3051     adjust : function(t, l, b, r) {
3052         this.top += t;
3053         this.left += l;
3054         this.right += r;
3055         this.bottom += b;
3056         return this;
3057     }
3058 };
3059
3060 Roo.lib.Region.getRegion = function(el) {
3061     var p = Roo.lib.Dom.getXY(el);
3062
3063     var t = p[1];
3064     var r = p[0] + el.offsetWidth;
3065     var b = p[1] + el.offsetHeight;
3066     var l = p[0];
3067
3068     return new Roo.lib.Region(t, r, b, l);
3069 };
3070 /*
3071  * Portions of this file are based on pieces of Yahoo User Interface Library
3072  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3073  * YUI licensed under the BSD License:
3074  * http://developer.yahoo.net/yui/license.txt
3075  * <script type="text/javascript">
3076  *
3077  */
3078 //@@dep Roo.lib.Region
3079
3080
3081 Roo.lib.Point = function(x, y) {
3082     if (x instanceof Array) {
3083         y = x[1];
3084         x = x[0];
3085     }
3086     this.x = this.right = this.left = this[0] = x;
3087     this.y = this.top = this.bottom = this[1] = y;
3088 };
3089
3090 Roo.lib.Point.prototype = new Roo.lib.Region();
3091 /*
3092  * Portions of this file are based on pieces of Yahoo User Interface Library
3093  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3094  * YUI licensed under the BSD License:
3095  * http://developer.yahoo.net/yui/license.txt
3096  * <script type="text/javascript">
3097  *
3098  */
3099  
3100 (function() {   
3101
3102     Roo.lib.Anim = {
3103         scroll : function(el, args, duration, easing, cb, scope) {
3104             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3105         },
3106
3107         motion : function(el, args, duration, easing, cb, scope) {
3108             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3109         },
3110
3111         color : function(el, args, duration, easing, cb, scope) {
3112             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3113         },
3114
3115         run : function(el, args, duration, easing, cb, scope, type) {
3116             type = type || Roo.lib.AnimBase;
3117             if (typeof easing == "string") {
3118                 easing = Roo.lib.Easing[easing];
3119             }
3120             var anim = new type(el, args, duration, easing);
3121             anim.animateX(function() {
3122                 Roo.callback(cb, scope);
3123             });
3124             return anim;
3125         }
3126     };
3127 })();/*
3128  * Portions of this file are based on pieces of Yahoo User Interface Library
3129  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3130  * YUI licensed under the BSD License:
3131  * http://developer.yahoo.net/yui/license.txt
3132  * <script type="text/javascript">
3133  *
3134  */
3135
3136 (function() {    
3137     var libFlyweight;
3138     
3139     function fly(el) {
3140         if (!libFlyweight) {
3141             libFlyweight = new Roo.Element.Flyweight();
3142         }
3143         libFlyweight.dom = el;
3144         return libFlyweight;
3145     }
3146
3147     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3148     
3149    
3150     
3151     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3152         if (el) {
3153             this.init(el, attributes, duration, method);
3154         }
3155     };
3156
3157     Roo.lib.AnimBase.fly = fly;
3158     
3159     
3160     
3161     Roo.lib.AnimBase.prototype = {
3162
3163         toString: function() {
3164             var el = this.getEl();
3165             var id = el.id || el.tagName;
3166             return ("Anim " + id);
3167         },
3168
3169         patterns: {
3170             noNegatives:        /width|height|opacity|padding/i,
3171             offsetAttribute:  /^((width|height)|(top|left))$/,
3172             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3173             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3174         },
3175
3176
3177         doMethod: function(attr, start, end) {
3178             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3179         },
3180
3181
3182         setAttribute: function(attr, val, unit) {
3183             if (this.patterns.noNegatives.test(attr)) {
3184                 val = (val > 0) ? val : 0;
3185             }
3186
3187             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3188         },
3189
3190
3191         getAttribute: function(attr) {
3192             var el = this.getEl();
3193             var val = fly(el).getStyle(attr);
3194
3195             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3196                 return parseFloat(val);
3197             }
3198
3199             var a = this.patterns.offsetAttribute.exec(attr) || [];
3200             var pos = !!( a[3] );
3201             var box = !!( a[2] );
3202
3203
3204             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3205                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3206             } else {
3207                 val = 0;
3208             }
3209
3210             return val;
3211         },
3212
3213
3214         getDefaultUnit: function(attr) {
3215             if (this.patterns.defaultUnit.test(attr)) {
3216                 return 'px';
3217             }
3218
3219             return '';
3220         },
3221
3222         animateX : function(callback, scope) {
3223             var f = function() {
3224                 this.onComplete.removeListener(f);
3225                 if (typeof callback == "function") {
3226                     callback.call(scope || this, this);
3227                 }
3228             };
3229             this.onComplete.addListener(f, this);
3230             this.animate();
3231         },
3232
3233
3234         setRuntimeAttribute: function(attr) {
3235             var start;
3236             var end;
3237             var attributes = this.attributes;
3238
3239             this.runtimeAttributes[attr] = {};
3240
3241             var isset = function(prop) {
3242                 return (typeof prop !== 'undefined');
3243             };
3244
3245             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3246                 return false;
3247             }
3248
3249             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3250
3251
3252             if (isset(attributes[attr]['to'])) {
3253                 end = attributes[attr]['to'];
3254             } else if (isset(attributes[attr]['by'])) {
3255                 if (start.constructor == Array) {
3256                     end = [];
3257                     for (var i = 0, len = start.length; i < len; ++i) {
3258                         end[i] = start[i] + attributes[attr]['by'][i];
3259                     }
3260                 } else {
3261                     end = start + attributes[attr]['by'];
3262                 }
3263             }
3264
3265             this.runtimeAttributes[attr].start = start;
3266             this.runtimeAttributes[attr].end = end;
3267
3268
3269             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3270         },
3271
3272
3273         init: function(el, attributes, duration, method) {
3274
3275             var isAnimated = false;
3276
3277
3278             var startTime = null;
3279
3280
3281             var actualFrames = 0;
3282
3283
3284             el = Roo.getDom(el);
3285
3286
3287             this.attributes = attributes || {};
3288
3289
3290             this.duration = duration || 1;
3291
3292
3293             this.method = method || Roo.lib.Easing.easeNone;
3294
3295
3296             this.useSeconds = true;
3297
3298
3299             this.currentFrame = 0;
3300
3301
3302             this.totalFrames = Roo.lib.AnimMgr.fps;
3303
3304
3305             this.getEl = function() {
3306                 return el;
3307             };
3308
3309
3310             this.isAnimated = function() {
3311                 return isAnimated;
3312             };
3313
3314
3315             this.getStartTime = function() {
3316                 return startTime;
3317             };
3318
3319             this.runtimeAttributes = {};
3320
3321
3322             this.animate = function() {
3323                 if (this.isAnimated()) {
3324                     return false;
3325                 }
3326
3327                 this.currentFrame = 0;
3328
3329                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3330
3331                 Roo.lib.AnimMgr.registerElement(this);
3332             };
3333
3334
3335             this.stop = function(finish) {
3336                 if (finish) {
3337                     this.currentFrame = this.totalFrames;
3338                     this._onTween.fire();
3339                 }
3340                 Roo.lib.AnimMgr.stop(this);
3341             };
3342
3343             var onStart = function() {
3344                 this.onStart.fire();
3345
3346                 this.runtimeAttributes = {};
3347                 for (var attr in this.attributes) {
3348                     this.setRuntimeAttribute(attr);
3349                 }
3350
3351                 isAnimated = true;
3352                 actualFrames = 0;
3353                 startTime = new Date();
3354             };
3355
3356
3357             var onTween = function() {
3358                 var data = {
3359                     duration: new Date() - this.getStartTime(),
3360                     currentFrame: this.currentFrame
3361                 };
3362
3363                 data.toString = function() {
3364                     return (
3365                             'duration: ' + data.duration +
3366                             ', currentFrame: ' + data.currentFrame
3367                             );
3368                 };
3369
3370                 this.onTween.fire(data);
3371
3372                 var runtimeAttributes = this.runtimeAttributes;
3373
3374                 for (var attr in runtimeAttributes) {
3375                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3376                 }
3377
3378                 actualFrames += 1;
3379             };
3380
3381             var onComplete = function() {
3382                 var actual_duration = (new Date() - startTime) / 1000 ;
3383
3384                 var data = {
3385                     duration: actual_duration,
3386                     frames: actualFrames,
3387                     fps: actualFrames / actual_duration
3388                 };
3389
3390                 data.toString = function() {
3391                     return (
3392                             'duration: ' + data.duration +
3393                             ', frames: ' + data.frames +
3394                             ', fps: ' + data.fps
3395                             );
3396                 };
3397
3398                 isAnimated = false;
3399                 actualFrames = 0;
3400                 this.onComplete.fire(data);
3401             };
3402
3403
3404             this._onStart = new Roo.util.Event(this);
3405             this.onStart = new Roo.util.Event(this);
3406             this.onTween = new Roo.util.Event(this);
3407             this._onTween = new Roo.util.Event(this);
3408             this.onComplete = new Roo.util.Event(this);
3409             this._onComplete = new Roo.util.Event(this);
3410             this._onStart.addListener(onStart);
3411             this._onTween.addListener(onTween);
3412             this._onComplete.addListener(onComplete);
3413         }
3414     };
3415 })();
3416 /*
3417  * Portions of this file are based on pieces of Yahoo User Interface Library
3418  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3419  * YUI licensed under the BSD License:
3420  * http://developer.yahoo.net/yui/license.txt
3421  * <script type="text/javascript">
3422  *
3423  */
3424
3425 Roo.lib.AnimMgr = new function() {
3426
3427     var thread = null;
3428
3429
3430     var queue = [];
3431
3432
3433     var tweenCount = 0;
3434
3435
3436     this.fps = 1000;
3437
3438
3439     this.delay = 1;
3440
3441
3442     this.registerElement = function(tween) {
3443         queue[queue.length] = tween;
3444         tweenCount += 1;
3445         tween._onStart.fire();
3446         this.start();
3447     };
3448
3449
3450     this.unRegister = function(tween, index) {
3451         tween._onComplete.fire();
3452         index = index || getIndex(tween);
3453         if (index != -1) {
3454             queue.splice(index, 1);
3455         }
3456
3457         tweenCount -= 1;
3458         if (tweenCount <= 0) {
3459             this.stop();
3460         }
3461     };
3462
3463
3464     this.start = function() {
3465         if (thread === null) {
3466             thread = setInterval(this.run, this.delay);
3467         }
3468     };
3469
3470
3471     this.stop = function(tween) {
3472         if (!tween) {
3473             clearInterval(thread);
3474
3475             for (var i = 0, len = queue.length; i < len; ++i) {
3476                 if (queue[0].isAnimated()) {
3477                     this.unRegister(queue[0], 0);
3478                 }
3479             }
3480
3481             queue = [];
3482             thread = null;
3483             tweenCount = 0;
3484         }
3485         else {
3486             this.unRegister(tween);
3487         }
3488     };
3489
3490
3491     this.run = function() {
3492         for (var i = 0, len = queue.length; i < len; ++i) {
3493             var tween = queue[i];
3494             if (!tween || !tween.isAnimated()) {
3495                 continue;
3496             }
3497
3498             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3499             {
3500                 tween.currentFrame += 1;
3501
3502                 if (tween.useSeconds) {
3503                     correctFrame(tween);
3504                 }
3505                 tween._onTween.fire();
3506             }
3507             else {
3508                 Roo.lib.AnimMgr.stop(tween, i);
3509             }
3510         }
3511     };
3512
3513     var getIndex = function(anim) {
3514         for (var i = 0, len = queue.length; i < len; ++i) {
3515             if (queue[i] == anim) {
3516                 return i;
3517             }
3518         }
3519         return -1;
3520     };
3521
3522
3523     var correctFrame = function(tween) {
3524         var frames = tween.totalFrames;
3525         var frame = tween.currentFrame;
3526         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3527         var elapsed = (new Date() - tween.getStartTime());
3528         var tweak = 0;
3529
3530         if (elapsed < tween.duration * 1000) {
3531             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3532         } else {
3533             tweak = frames - (frame + 1);
3534         }
3535         if (tweak > 0 && isFinite(tweak)) {
3536             if (tween.currentFrame + tweak >= frames) {
3537                 tweak = frames - (frame + 1);
3538             }
3539
3540             tween.currentFrame += tweak;
3541         }
3542     };
3543 };
3544
3545     /*
3546  * Portions of this file are based on pieces of Yahoo User Interface Library
3547  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3548  * YUI licensed under the BSD License:
3549  * http://developer.yahoo.net/yui/license.txt
3550  * <script type="text/javascript">
3551  *
3552  */
3553 Roo.lib.Bezier = new function() {
3554
3555         this.getPosition = function(points, t) {
3556             var n = points.length;
3557             var tmp = [];
3558
3559             for (var i = 0; i < n; ++i) {
3560                 tmp[i] = [points[i][0], points[i][1]];
3561             }
3562
3563             for (var j = 1; j < n; ++j) {
3564                 for (i = 0; i < n - j; ++i) {
3565                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3566                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3567                 }
3568             }
3569
3570             return [ tmp[0][0], tmp[0][1] ];
3571
3572         };
3573     };/*
3574  * Portions of this file are based on pieces of Yahoo User Interface Library
3575  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3576  * YUI licensed under the BSD License:
3577  * http://developer.yahoo.net/yui/license.txt
3578  * <script type="text/javascript">
3579  *
3580  */
3581 (function() {
3582
3583     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3584         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3585     };
3586
3587     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3588
3589     var fly = Roo.lib.AnimBase.fly;
3590     var Y = Roo.lib;
3591     var superclass = Y.ColorAnim.superclass;
3592     var proto = Y.ColorAnim.prototype;
3593
3594     proto.toString = function() {
3595         var el = this.getEl();
3596         var id = el.id || el.tagName;
3597         return ("ColorAnim " + id);
3598     };
3599
3600     proto.patterns.color = /color$/i;
3601     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3602     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3603     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3604     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3605
3606
3607     proto.parseColor = function(s) {
3608         if (s.length == 3) {
3609             return s;
3610         }
3611
3612         var c = this.patterns.hex.exec(s);
3613         if (c && c.length == 4) {
3614             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3615         }
3616
3617         c = this.patterns.rgb.exec(s);
3618         if (c && c.length == 4) {
3619             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3620         }
3621
3622         c = this.patterns.hex3.exec(s);
3623         if (c && c.length == 4) {
3624             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3625         }
3626
3627         return null;
3628     };
3629     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3630     proto.getAttribute = function(attr) {
3631         var el = this.getEl();
3632         if (this.patterns.color.test(attr)) {
3633             var val = fly(el).getStyle(attr);
3634
3635             if (this.patterns.transparent.test(val)) {
3636                 var parent = el.parentNode;
3637                 val = fly(parent).getStyle(attr);
3638
3639                 while (parent && this.patterns.transparent.test(val)) {
3640                     parent = parent.parentNode;
3641                     val = fly(parent).getStyle(attr);
3642                     if (parent.tagName.toUpperCase() == 'HTML') {
3643                         val = '#fff';
3644                     }
3645                 }
3646             }
3647         } else {
3648             val = superclass.getAttribute.call(this, attr);
3649         }
3650
3651         return val;
3652     };
3653     proto.getAttribute = function(attr) {
3654         var el = this.getEl();
3655         if (this.patterns.color.test(attr)) {
3656             var val = fly(el).getStyle(attr);
3657
3658             if (this.patterns.transparent.test(val)) {
3659                 var parent = el.parentNode;
3660                 val = fly(parent).getStyle(attr);
3661
3662                 while (parent && this.patterns.transparent.test(val)) {
3663                     parent = parent.parentNode;
3664                     val = fly(parent).getStyle(attr);
3665                     if (parent.tagName.toUpperCase() == 'HTML') {
3666                         val = '#fff';
3667                     }
3668                 }
3669             }
3670         } else {
3671             val = superclass.getAttribute.call(this, attr);
3672         }
3673
3674         return val;
3675     };
3676
3677     proto.doMethod = function(attr, start, end) {
3678         var val;
3679
3680         if (this.patterns.color.test(attr)) {
3681             val = [];
3682             for (var i = 0, len = start.length; i < len; ++i) {
3683                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3684             }
3685
3686             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3687         }
3688         else {
3689             val = superclass.doMethod.call(this, attr, start, end);
3690         }
3691
3692         return val;
3693     };
3694
3695     proto.setRuntimeAttribute = function(attr) {
3696         superclass.setRuntimeAttribute.call(this, attr);
3697
3698         if (this.patterns.color.test(attr)) {
3699             var attributes = this.attributes;
3700             var start = this.parseColor(this.runtimeAttributes[attr].start);
3701             var end = this.parseColor(this.runtimeAttributes[attr].end);
3702
3703             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3704                 end = this.parseColor(attributes[attr].by);
3705
3706                 for (var i = 0, len = start.length; i < len; ++i) {
3707                     end[i] = start[i] + end[i];
3708                 }
3709             }
3710
3711             this.runtimeAttributes[attr].start = start;
3712             this.runtimeAttributes[attr].end = end;
3713         }
3714     };
3715 })();
3716
3717 /*
3718  * Portions of this file are based on pieces of Yahoo User Interface Library
3719  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3720  * YUI licensed under the BSD License:
3721  * http://developer.yahoo.net/yui/license.txt
3722  * <script type="text/javascript">
3723  *
3724  */
3725 Roo.lib.Easing = {
3726
3727
3728     easeNone: function (t, b, c, d) {
3729         return c * t / d + b;
3730     },
3731
3732
3733     easeIn: function (t, b, c, d) {
3734         return c * (t /= d) * t + b;
3735     },
3736
3737
3738     easeOut: function (t, b, c, d) {
3739         return -c * (t /= d) * (t - 2) + b;
3740     },
3741
3742
3743     easeBoth: function (t, b, c, d) {
3744         if ((t /= d / 2) < 1) {
3745             return c / 2 * t * t + b;
3746         }
3747
3748         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3749     },
3750
3751
3752     easeInStrong: function (t, b, c, d) {
3753         return c * (t /= d) * t * t * t + b;
3754     },
3755
3756
3757     easeOutStrong: function (t, b, c, d) {
3758         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3759     },
3760
3761
3762     easeBothStrong: function (t, b, c, d) {
3763         if ((t /= d / 2) < 1) {
3764             return c / 2 * t * t * t * t + b;
3765         }
3766
3767         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3768     },
3769
3770
3771
3772     elasticIn: function (t, b, c, d, a, p) {
3773         if (t == 0) {
3774             return b;
3775         }
3776         if ((t /= d) == 1) {
3777             return b + c;
3778         }
3779         if (!p) {
3780             p = d * .3;
3781         }
3782
3783         if (!a || a < Math.abs(c)) {
3784             a = c;
3785             var s = p / 4;
3786         }
3787         else {
3788             var s = p / (2 * Math.PI) * Math.asin(c / a);
3789         }
3790
3791         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3792     },
3793
3794
3795     elasticOut: function (t, b, c, d, a, p) {
3796         if (t == 0) {
3797             return b;
3798         }
3799         if ((t /= d) == 1) {
3800             return b + c;
3801         }
3802         if (!p) {
3803             p = d * .3;
3804         }
3805
3806         if (!a || a < Math.abs(c)) {
3807             a = c;
3808             var s = p / 4;
3809         }
3810         else {
3811             var s = p / (2 * Math.PI) * Math.asin(c / a);
3812         }
3813
3814         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3815     },
3816
3817
3818     elasticBoth: function (t, b, c, d, a, p) {
3819         if (t == 0) {
3820             return b;
3821         }
3822
3823         if ((t /= d / 2) == 2) {
3824             return b + c;
3825         }
3826
3827         if (!p) {
3828             p = d * (.3 * 1.5);
3829         }
3830
3831         if (!a || a < Math.abs(c)) {
3832             a = c;
3833             var s = p / 4;
3834         }
3835         else {
3836             var s = p / (2 * Math.PI) * Math.asin(c / a);
3837         }
3838
3839         if (t < 1) {
3840             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3841                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3842         }
3843         return a * Math.pow(2, -10 * (t -= 1)) *
3844                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3845     },
3846
3847
3848
3849     backIn: function (t, b, c, d, s) {
3850         if (typeof s == 'undefined') {
3851             s = 1.70158;
3852         }
3853         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3854     },
3855
3856
3857     backOut: function (t, b, c, d, s) {
3858         if (typeof s == 'undefined') {
3859             s = 1.70158;
3860         }
3861         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3862     },
3863
3864
3865     backBoth: function (t, b, c, d, s) {
3866         if (typeof s == 'undefined') {
3867             s = 1.70158;
3868         }
3869
3870         if ((t /= d / 2 ) < 1) {
3871             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3872         }
3873         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3874     },
3875
3876
3877     bounceIn: function (t, b, c, d) {
3878         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3879     },
3880
3881
3882     bounceOut: function (t, b, c, d) {
3883         if ((t /= d) < (1 / 2.75)) {
3884             return c * (7.5625 * t * t) + b;
3885         } else if (t < (2 / 2.75)) {
3886             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3887         } else if (t < (2.5 / 2.75)) {
3888             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3889         }
3890         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3891     },
3892
3893
3894     bounceBoth: function (t, b, c, d) {
3895         if (t < d / 2) {
3896             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3897         }
3898         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3899     }
3900 };/*
3901  * Portions of this file are based on pieces of Yahoo User Interface Library
3902  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3903  * YUI licensed under the BSD License:
3904  * http://developer.yahoo.net/yui/license.txt
3905  * <script type="text/javascript">
3906  *
3907  */
3908     (function() {
3909         Roo.lib.Motion = function(el, attributes, duration, method) {
3910             if (el) {
3911                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3912             }
3913         };
3914
3915         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3916
3917
3918         var Y = Roo.lib;
3919         var superclass = Y.Motion.superclass;
3920         var proto = Y.Motion.prototype;
3921
3922         proto.toString = function() {
3923             var el = this.getEl();
3924             var id = el.id || el.tagName;
3925             return ("Motion " + id);
3926         };
3927
3928         proto.patterns.points = /^points$/i;
3929
3930         proto.setAttribute = function(attr, val, unit) {
3931             if (this.patterns.points.test(attr)) {
3932                 unit = unit || 'px';
3933                 superclass.setAttribute.call(this, 'left', val[0], unit);
3934                 superclass.setAttribute.call(this, 'top', val[1], unit);
3935             } else {
3936                 superclass.setAttribute.call(this, attr, val, unit);
3937             }
3938         };
3939
3940         proto.getAttribute = function(attr) {
3941             if (this.patterns.points.test(attr)) {
3942                 var val = [
3943                         superclass.getAttribute.call(this, 'left'),
3944                         superclass.getAttribute.call(this, 'top')
3945                         ];
3946             } else {
3947                 val = superclass.getAttribute.call(this, attr);
3948             }
3949
3950             return val;
3951         };
3952
3953         proto.doMethod = function(attr, start, end) {
3954             var val = null;
3955
3956             if (this.patterns.points.test(attr)) {
3957                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
3958                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
3959             } else {
3960                 val = superclass.doMethod.call(this, attr, start, end);
3961             }
3962             return val;
3963         };
3964
3965         proto.setRuntimeAttribute = function(attr) {
3966             if (this.patterns.points.test(attr)) {
3967                 var el = this.getEl();
3968                 var attributes = this.attributes;
3969                 var start;
3970                 var control = attributes['points']['control'] || [];
3971                 var end;
3972                 var i, len;
3973
3974                 if (control.length > 0 && !(control[0] instanceof Array)) {
3975                     control = [control];
3976                 } else {
3977                     var tmp = [];
3978                     for (i = 0,len = control.length; i < len; ++i) {
3979                         tmp[i] = control[i];
3980                     }
3981                     control = tmp;
3982                 }
3983
3984                 Roo.fly(el).position();
3985
3986                 if (isset(attributes['points']['from'])) {
3987                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
3988                 }
3989                 else {
3990                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
3991                 }
3992
3993                 start = this.getAttribute('points');
3994
3995
3996                 if (isset(attributes['points']['to'])) {
3997                     end = translateValues.call(this, attributes['points']['to'], start);
3998
3999                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4000                     for (i = 0,len = control.length; i < len; ++i) {
4001                         control[i] = translateValues.call(this, control[i], start);
4002                     }
4003
4004
4005                 } else if (isset(attributes['points']['by'])) {
4006                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4007
4008                     for (i = 0,len = control.length; i < len; ++i) {
4009                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4010                     }
4011                 }
4012
4013                 this.runtimeAttributes[attr] = [start];
4014
4015                 if (control.length > 0) {
4016                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4017                 }
4018
4019                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4020             }
4021             else {
4022                 superclass.setRuntimeAttribute.call(this, attr);
4023             }
4024         };
4025
4026         var translateValues = function(val, start) {
4027             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4028             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4029
4030             return val;
4031         };
4032
4033         var isset = function(prop) {
4034             return (typeof prop !== 'undefined');
4035         };
4036     })();
4037 /*
4038  * Portions of this file are based on pieces of Yahoo User Interface Library
4039  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4040  * YUI licensed under the BSD License:
4041  * http://developer.yahoo.net/yui/license.txt
4042  * <script type="text/javascript">
4043  *
4044  */
4045     (function() {
4046         Roo.lib.Scroll = function(el, attributes, duration, method) {
4047             if (el) {
4048                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4049             }
4050         };
4051
4052         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4053
4054
4055         var Y = Roo.lib;
4056         var superclass = Y.Scroll.superclass;
4057         var proto = Y.Scroll.prototype;
4058
4059         proto.toString = function() {
4060             var el = this.getEl();
4061             var id = el.id || el.tagName;
4062             return ("Scroll " + id);
4063         };
4064
4065         proto.doMethod = function(attr, start, end) {
4066             var val = null;
4067
4068             if (attr == 'scroll') {
4069                 val = [
4070                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4071                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4072                         ];
4073
4074             } else {
4075                 val = superclass.doMethod.call(this, attr, start, end);
4076             }
4077             return val;
4078         };
4079
4080         proto.getAttribute = function(attr) {
4081             var val = null;
4082             var el = this.getEl();
4083
4084             if (attr == 'scroll') {
4085                 val = [ el.scrollLeft, el.scrollTop ];
4086             } else {
4087                 val = superclass.getAttribute.call(this, attr);
4088             }
4089
4090             return val;
4091         };
4092
4093         proto.setAttribute = function(attr, val, unit) {
4094             var el = this.getEl();
4095
4096             if (attr == 'scroll') {
4097                 el.scrollLeft = val[0];
4098                 el.scrollTop = val[1];
4099             } else {
4100                 superclass.setAttribute.call(this, attr, val, unit);
4101             }
4102         };
4103     })();
4104 /*
4105  * Based on:
4106  * Ext JS Library 1.1.1
4107  * Copyright(c) 2006-2007, Ext JS, LLC.
4108  *
4109  * Originally Released Under LGPL - original licence link has changed is not relivant.
4110  *
4111  * Fork - LGPL
4112  * <script type="text/javascript">
4113  */
4114
4115
4116 // nasty IE9 hack - what a pile of crap that is..
4117
4118  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4119     Range.prototype.createContextualFragment = function (html) {
4120         var doc = window.document;
4121         var container = doc.createElement("div");
4122         container.innerHTML = html;
4123         var frag = doc.createDocumentFragment(), n;
4124         while ((n = container.firstChild)) {
4125             frag.appendChild(n);
4126         }
4127         return frag;
4128     };
4129 }
4130
4131 /**
4132  * @class Roo.DomHelper
4133  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4134  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
4135  * @singleton
4136  */
4137 Roo.DomHelper = function(){
4138     var tempTableEl = null;
4139     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4140     var tableRe = /^table|tbody|tr|td$/i;
4141     var xmlns = {};
4142     // build as innerHTML where available
4143     /** @ignore */
4144     var createHtml = function(o){
4145         if(typeof o == 'string'){
4146             return o;
4147         }
4148         var b = "";
4149         if(!o.tag){
4150             o.tag = "div";
4151         }
4152         b += "<" + o.tag;
4153         for(var attr in o){
4154             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") continue;
4155             if(attr == "style"){
4156                 var s = o["style"];
4157                 if(typeof s == "function"){
4158                     s = s.call();
4159                 }
4160                 if(typeof s == "string"){
4161                     b += ' style="' + s + '"';
4162                 }else if(typeof s == "object"){
4163                     b += ' style="';
4164                     for(var key in s){
4165                         if(typeof s[key] != "function"){
4166                             b += key + ":" + s[key] + ";";
4167                         }
4168                     }
4169                     b += '"';
4170                 }
4171             }else{
4172                 if(attr == "cls"){
4173                     b += ' class="' + o["cls"] + '"';
4174                 }else if(attr == "htmlFor"){
4175                     b += ' for="' + o["htmlFor"] + '"';
4176                 }else{
4177                     b += " " + attr + '="' + o[attr] + '"';
4178                 }
4179             }
4180         }
4181         if(emptyTags.test(o.tag)){
4182             b += "/>";
4183         }else{
4184             b += ">";
4185             var cn = o.children || o.cn;
4186             if(cn){
4187                 //http://bugs.kde.org/show_bug.cgi?id=71506
4188                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4189                     for(var i = 0, len = cn.length; i < len; i++) {
4190                         b += createHtml(cn[i], b);
4191                     }
4192                 }else{
4193                     b += createHtml(cn, b);
4194                 }
4195             }
4196             if(o.html){
4197                 b += o.html;
4198             }
4199             b += "</" + o.tag + ">";
4200         }
4201         return b;
4202     };
4203
4204     // build as dom
4205     /** @ignore */
4206     var createDom = function(o, parentNode){
4207          
4208         // defininition craeted..
4209         var ns = false;
4210         if (o.ns && o.ns != 'html') {
4211                
4212             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4213                 xmlns[o.ns] = o.xmlns;
4214                 ns = o.xmlns;
4215             }
4216             if (typeof(xmlns[o.ns]) == 'undefined') {
4217                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4218             }
4219             ns = xmlns[o.ns];
4220         }
4221         
4222         
4223         if (typeof(o) == 'string') {
4224             return parentNode.appendChild(document.createTextNode(o));
4225         }
4226         o.tag = o.tag || div;
4227         if (o.ns && Roo.isIE) {
4228             ns = false;
4229             o.tag = o.ns + ':' + o.tag;
4230             
4231         }
4232         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4233         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4234         for(var attr in o){
4235             
4236             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4237                     attr == "style" || typeof o[attr] == "function") continue;
4238                     
4239             if(attr=="cls" && Roo.isIE){
4240                 el.className = o["cls"];
4241             }else{
4242                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4243                 else { 
4244                     el[attr] = o[attr];
4245                 }
4246             }
4247         }
4248         Roo.DomHelper.applyStyles(el, o.style);
4249         var cn = o.children || o.cn;
4250         if(cn){
4251             //http://bugs.kde.org/show_bug.cgi?id=71506
4252              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4253                 for(var i = 0, len = cn.length; i < len; i++) {
4254                     createDom(cn[i], el);
4255                 }
4256             }else{
4257                 createDom(cn, el);
4258             }
4259         }
4260         if(o.html){
4261             el.innerHTML = o.html;
4262         }
4263         if(parentNode){
4264            parentNode.appendChild(el);
4265         }
4266         return el;
4267     };
4268
4269     var ieTable = function(depth, s, h, e){
4270         tempTableEl.innerHTML = [s, h, e].join('');
4271         var i = -1, el = tempTableEl;
4272         while(++i < depth){
4273             el = el.firstChild;
4274         }
4275         return el;
4276     };
4277
4278     // kill repeat to save bytes
4279     var ts = '<table>',
4280         te = '</table>',
4281         tbs = ts+'<tbody>',
4282         tbe = '</tbody>'+te,
4283         trs = tbs + '<tr>',
4284         tre = '</tr>'+tbe;
4285
4286     /**
4287      * @ignore
4288      * Nasty code for IE's broken table implementation
4289      */
4290     var insertIntoTable = function(tag, where, el, html){
4291         if(!tempTableEl){
4292             tempTableEl = document.createElement('div');
4293         }
4294         var node;
4295         var before = null;
4296         if(tag == 'td'){
4297             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4298                 return;
4299             }
4300             if(where == 'beforebegin'){
4301                 before = el;
4302                 el = el.parentNode;
4303             } else{
4304                 before = el.nextSibling;
4305                 el = el.parentNode;
4306             }
4307             node = ieTable(4, trs, html, tre);
4308         }
4309         else if(tag == 'tr'){
4310             if(where == 'beforebegin'){
4311                 before = el;
4312                 el = el.parentNode;
4313                 node = ieTable(3, tbs, html, tbe);
4314             } else if(where == 'afterend'){
4315                 before = el.nextSibling;
4316                 el = el.parentNode;
4317                 node = ieTable(3, tbs, html, tbe);
4318             } else{ // INTO a TR
4319                 if(where == 'afterbegin'){
4320                     before = el.firstChild;
4321                 }
4322                 node = ieTable(4, trs, html, tre);
4323             }
4324         } else if(tag == 'tbody'){
4325             if(where == 'beforebegin'){
4326                 before = el;
4327                 el = el.parentNode;
4328                 node = ieTable(2, ts, html, te);
4329             } else if(where == 'afterend'){
4330                 before = el.nextSibling;
4331                 el = el.parentNode;
4332                 node = ieTable(2, ts, html, te);
4333             } else{
4334                 if(where == 'afterbegin'){
4335                     before = el.firstChild;
4336                 }
4337                 node = ieTable(3, tbs, html, tbe);
4338             }
4339         } else{ // TABLE
4340             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4341                 return;
4342             }
4343             if(where == 'afterbegin'){
4344                 before = el.firstChild;
4345             }
4346             node = ieTable(2, ts, html, te);
4347         }
4348         el.insertBefore(node, before);
4349         return node;
4350     };
4351
4352     return {
4353     /** True to force the use of DOM instead of html fragments @type Boolean */
4354     useDom : false,
4355
4356     /**
4357      * Returns the markup for the passed Element(s) config
4358      * @param {Object} o The Dom object spec (and children)
4359      * @return {String}
4360      */
4361     markup : function(o){
4362         return createHtml(o);
4363     },
4364
4365     /**
4366      * Applies a style specification to an element
4367      * @param {String/HTMLElement} el The element to apply styles to
4368      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4369      * a function which returns such a specification.
4370      */
4371     applyStyles : function(el, styles){
4372         if(styles){
4373            el = Roo.fly(el);
4374            if(typeof styles == "string"){
4375                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4376                var matches;
4377                while ((matches = re.exec(styles)) != null){
4378                    el.setStyle(matches[1], matches[2]);
4379                }
4380            }else if (typeof styles == "object"){
4381                for (var style in styles){
4382                   el.setStyle(style, styles[style]);
4383                }
4384            }else if (typeof styles == "function"){
4385                 Roo.DomHelper.applyStyles(el, styles.call());
4386            }
4387         }
4388     },
4389
4390     /**
4391      * Inserts an HTML fragment into the Dom
4392      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4393      * @param {HTMLElement} el The context element
4394      * @param {String} html The HTML fragmenet
4395      * @return {HTMLElement} The new node
4396      */
4397     insertHtml : function(where, el, html){
4398         where = where.toLowerCase();
4399         if(el.insertAdjacentHTML){
4400             if(tableRe.test(el.tagName)){
4401                 var rs;
4402                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4403                     return rs;
4404                 }
4405             }
4406             switch(where){
4407                 case "beforebegin":
4408                     el.insertAdjacentHTML('BeforeBegin', html);
4409                     return el.previousSibling;
4410                 case "afterbegin":
4411                     el.insertAdjacentHTML('AfterBegin', html);
4412                     return el.firstChild;
4413                 case "beforeend":
4414                     el.insertAdjacentHTML('BeforeEnd', html);
4415                     return el.lastChild;
4416                 case "afterend":
4417                     el.insertAdjacentHTML('AfterEnd', html);
4418                     return el.nextSibling;
4419             }
4420             throw 'Illegal insertion point -> "' + where + '"';
4421         }
4422         var range = el.ownerDocument.createRange();
4423         var frag;
4424         switch(where){
4425              case "beforebegin":
4426                 range.setStartBefore(el);
4427                 frag = range.createContextualFragment(html);
4428                 el.parentNode.insertBefore(frag, el);
4429                 return el.previousSibling;
4430              case "afterbegin":
4431                 if(el.firstChild){
4432                     range.setStartBefore(el.firstChild);
4433                     frag = range.createContextualFragment(html);
4434                     el.insertBefore(frag, el.firstChild);
4435                     return el.firstChild;
4436                 }else{
4437                     el.innerHTML = html;
4438                     return el.firstChild;
4439                 }
4440             case "beforeend":
4441                 if(el.lastChild){
4442                     range.setStartAfter(el.lastChild);
4443                     frag = range.createContextualFragment(html);
4444                     el.appendChild(frag);
4445                     return el.lastChild;
4446                 }else{
4447                     el.innerHTML = html;
4448                     return el.lastChild;
4449                 }
4450             case "afterend":
4451                 range.setStartAfter(el);
4452                 frag = range.createContextualFragment(html);
4453                 el.parentNode.insertBefore(frag, el.nextSibling);
4454                 return el.nextSibling;
4455             }
4456             throw 'Illegal insertion point -> "' + where + '"';
4457     },
4458
4459     /**
4460      * Creates new Dom element(s) and inserts them before el
4461      * @param {String/HTMLElement/Element} el The context element
4462      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4463      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4464      * @return {HTMLElement/Roo.Element} The new node
4465      */
4466     insertBefore : function(el, o, returnElement){
4467         return this.doInsert(el, o, returnElement, "beforeBegin");
4468     },
4469
4470     /**
4471      * Creates new Dom element(s) and inserts them after el
4472      * @param {String/HTMLElement/Element} el The context element
4473      * @param {Object} o The Dom object spec (and children)
4474      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4475      * @return {HTMLElement/Roo.Element} The new node
4476      */
4477     insertAfter : function(el, o, returnElement){
4478         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4479     },
4480
4481     /**
4482      * Creates new Dom element(s) and inserts them as the first child of el
4483      * @param {String/HTMLElement/Element} el The context element
4484      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4485      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4486      * @return {HTMLElement/Roo.Element} The new node
4487      */
4488     insertFirst : function(el, o, returnElement){
4489         return this.doInsert(el, o, returnElement, "afterBegin");
4490     },
4491
4492     // private
4493     doInsert : function(el, o, returnElement, pos, sibling){
4494         el = Roo.getDom(el);
4495         var newNode;
4496         if(this.useDom || o.ns){
4497             newNode = createDom(o, null);
4498             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4499         }else{
4500             var html = createHtml(o);
4501             newNode = this.insertHtml(pos, el, html);
4502         }
4503         return returnElement ? Roo.get(newNode, true) : newNode;
4504     },
4505
4506     /**
4507      * Creates new Dom element(s) and appends them to el
4508      * @param {String/HTMLElement/Element} el The context element
4509      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4510      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4511      * @return {HTMLElement/Roo.Element} The new node
4512      */
4513     append : function(el, o, returnElement){
4514         el = Roo.getDom(el);
4515         var newNode;
4516         if(this.useDom || o.ns){
4517             newNode = createDom(o, null);
4518             el.appendChild(newNode);
4519         }else{
4520             var html = createHtml(o);
4521             newNode = this.insertHtml("beforeEnd", el, html);
4522         }
4523         return returnElement ? Roo.get(newNode, true) : newNode;
4524     },
4525
4526     /**
4527      * Creates new Dom element(s) and overwrites the contents of el with them
4528      * @param {String/HTMLElement/Element} el The context element
4529      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4530      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4531      * @return {HTMLElement/Roo.Element} The new node
4532      */
4533     overwrite : function(el, o, returnElement){
4534         el = Roo.getDom(el);
4535         if (o.ns) {
4536           
4537             while (el.childNodes.length) {
4538                 el.removeChild(el.firstChild);
4539             }
4540             createDom(o, el);
4541         } else {
4542             el.innerHTML = createHtml(o);   
4543         }
4544         
4545         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4546     },
4547
4548     /**
4549      * Creates a new Roo.DomHelper.Template from the Dom object spec
4550      * @param {Object} o The Dom object spec (and children)
4551      * @return {Roo.DomHelper.Template} The new template
4552      */
4553     createTemplate : function(o){
4554         var html = createHtml(o);
4555         return new Roo.Template(html);
4556     }
4557     };
4558 }();
4559 /*
4560  * Based on:
4561  * Ext JS Library 1.1.1
4562  * Copyright(c) 2006-2007, Ext JS, LLC.
4563  *
4564  * Originally Released Under LGPL - original licence link has changed is not relivant.
4565  *
4566  * Fork - LGPL
4567  * <script type="text/javascript">
4568  */
4569  
4570 /**
4571 * @class Roo.Template
4572 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4573 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4574 * Usage:
4575 <pre><code>
4576 var t = new Roo.Template({
4577     html :  '&lt;div name="{id}"&gt;' + 
4578         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4579         '&lt;/div&gt;',
4580     myformat: function (value, allValues) {
4581         return 'XX' + value;
4582     }
4583 });
4584 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4585 </code></pre>
4586 * For more information see this blog post with examples:
4587 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4588      - Create Elements using DOM, HTML fragments and Templates</a>. 
4589 * @constructor
4590 * @param {Object} cfg - Configuration object.
4591 */
4592 Roo.Template = function(cfg){
4593     // BC!
4594     if(cfg instanceof Array){
4595         cfg = cfg.join("");
4596     }else if(arguments.length > 1){
4597         cfg = Array.prototype.join.call(arguments, "");
4598     }
4599     
4600     
4601     if (typeof(cfg) == 'object') {
4602         Roo.apply(this,cfg)
4603     } else {
4604         // bc
4605         this.html = cfg;
4606     }
4607     if (this.url) {
4608         this.load();
4609     }
4610     
4611 };
4612 Roo.Template.prototype = {
4613     
4614     /**
4615      * @cfg {String} url  The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..
4616      *                    it should be fixed so that template is observable...
4617      */
4618     url : false,
4619     /**
4620      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4621      */
4622     html : '',
4623     /**
4624      * Returns an HTML fragment of this template with the specified values applied.
4625      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4626      * @return {String} The HTML fragment
4627      */
4628     applyTemplate : function(values){
4629         try {
4630            
4631             if(this.compiled){
4632                 return this.compiled(values);
4633             }
4634             var useF = this.disableFormats !== true;
4635             var fm = Roo.util.Format, tpl = this;
4636             var fn = function(m, name, format, args){
4637                 if(format && useF){
4638                     if(format.substr(0, 5) == "this."){
4639                         return tpl.call(format.substr(5), values[name], values);
4640                     }else{
4641                         if(args){
4642                             // quoted values are required for strings in compiled templates, 
4643                             // but for non compiled we need to strip them
4644                             // quoted reversed for jsmin
4645                             var re = /^\s*['"](.*)["']\s*$/;
4646                             args = args.split(',');
4647                             for(var i = 0, len = args.length; i < len; i++){
4648                                 args[i] = args[i].replace(re, "$1");
4649                             }
4650                             args = [values[name]].concat(args);
4651                         }else{
4652                             args = [values[name]];
4653                         }
4654                         return fm[format].apply(fm, args);
4655                     }
4656                 }else{
4657                     return values[name] !== undefined ? values[name] : "";
4658                 }
4659             };
4660             return this.html.replace(this.re, fn);
4661         } catch (e) {
4662             Roo.log(e);
4663             throw e;
4664         }
4665          
4666     },
4667     
4668     loading : false,
4669       
4670     load : function ()
4671     {
4672          
4673         if (this.loading) {
4674             return;
4675         }
4676         var _t = this;
4677         
4678         this.loading = true;
4679         this.compiled = false;
4680         
4681         var cx = new Roo.data.Connection();
4682         cx.request({
4683             url : this.url,
4684             method : 'GET',
4685             success : function (response) {
4686                 _t.loading = false;
4687                 _t.html = response.responseText;
4688                 _t.url = false;
4689                 _t.compile();
4690              },
4691             failure : function(response) {
4692                 Roo.log("Template failed to load from " + _t.url);
4693                 _t.loading = false;
4694             }
4695         });
4696     },
4697
4698     /**
4699      * Sets the HTML used as the template and optionally compiles it.
4700      * @param {String} html
4701      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4702      * @return {Roo.Template} this
4703      */
4704     set : function(html, compile){
4705         this.html = html;
4706         this.compiled = null;
4707         if(compile){
4708             this.compile();
4709         }
4710         return this;
4711     },
4712     
4713     /**
4714      * True to disable format functions (defaults to false)
4715      * @type Boolean
4716      */
4717     disableFormats : false,
4718     
4719     /**
4720     * The regular expression used to match template variables 
4721     * @type RegExp
4722     * @property 
4723     */
4724     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4725     
4726     /**
4727      * Compiles the template into an internal function, eliminating the RegEx overhead.
4728      * @return {Roo.Template} this
4729      */
4730     compile : function(){
4731         var fm = Roo.util.Format;
4732         var useF = this.disableFormats !== true;
4733         var sep = Roo.isGecko ? "+" : ",";
4734         var fn = function(m, name, format, args){
4735             if(format && useF){
4736                 args = args ? ',' + args : "";
4737                 if(format.substr(0, 5) != "this."){
4738                     format = "fm." + format + '(';
4739                 }else{
4740                     format = 'this.call("'+ format.substr(5) + '", ';
4741                     args = ", values";
4742                 }
4743             }else{
4744                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4745             }
4746             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4747         };
4748         var body;
4749         // branched to use + in gecko and [].join() in others
4750         if(Roo.isGecko){
4751             body = "this.compiled = function(values){ return '" +
4752                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4753                     "';};";
4754         }else{
4755             body = ["this.compiled = function(values){ return ['"];
4756             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4757             body.push("'].join('');};");
4758             body = body.join('');
4759         }
4760         /**
4761          * eval:var:values
4762          * eval:var:fm
4763          */
4764         eval(body);
4765         return this;
4766     },
4767     
4768     // private function used to call members
4769     call : function(fnName, value, allValues){
4770         return this[fnName](value, allValues);
4771     },
4772     
4773     /**
4774      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4775      * @param {String/HTMLElement/Roo.Element} el The context element
4776      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4777      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4778      * @return {HTMLElement/Roo.Element} The new node or Element
4779      */
4780     insertFirst: function(el, values, returnElement){
4781         return this.doInsert('afterBegin', el, values, returnElement);
4782     },
4783
4784     /**
4785      * Applies the supplied values to the template and inserts the new node(s) before el.
4786      * @param {String/HTMLElement/Roo.Element} el The context element
4787      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4788      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4789      * @return {HTMLElement/Roo.Element} The new node or Element
4790      */
4791     insertBefore: function(el, values, returnElement){
4792         return this.doInsert('beforeBegin', el, values, returnElement);
4793     },
4794
4795     /**
4796      * Applies the supplied values to the template and inserts the new node(s) after el.
4797      * @param {String/HTMLElement/Roo.Element} el The context element
4798      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4799      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4800      * @return {HTMLElement/Roo.Element} The new node or Element
4801      */
4802     insertAfter : function(el, values, returnElement){
4803         return this.doInsert('afterEnd', el, values, returnElement);
4804     },
4805     
4806     /**
4807      * Applies the supplied values to the template and appends the new node(s) to el.
4808      * @param {String/HTMLElement/Roo.Element} el The context element
4809      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4810      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4811      * @return {HTMLElement/Roo.Element} The new node or Element
4812      */
4813     append : function(el, values, returnElement){
4814         return this.doInsert('beforeEnd', el, values, returnElement);
4815     },
4816
4817     doInsert : function(where, el, values, returnEl){
4818         el = Roo.getDom(el);
4819         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4820         return returnEl ? Roo.get(newNode, true) : newNode;
4821     },
4822
4823     /**
4824      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4825      * @param {String/HTMLElement/Roo.Element} el The context element
4826      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4827      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4828      * @return {HTMLElement/Roo.Element} The new node or Element
4829      */
4830     overwrite : function(el, values, returnElement){
4831         el = Roo.getDom(el);
4832         el.innerHTML = this.applyTemplate(values);
4833         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4834     }
4835 };
4836 /**
4837  * Alias for {@link #applyTemplate}
4838  * @method
4839  */
4840 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4841
4842 // backwards compat
4843 Roo.DomHelper.Template = Roo.Template;
4844
4845 /**
4846  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4847  * @param {String/HTMLElement} el A DOM element or its id
4848  * @returns {Roo.Template} The created template
4849  * @static
4850  */
4851 Roo.Template.from = function(el){
4852     el = Roo.getDom(el);
4853     return new Roo.Template(el.value || el.innerHTML);
4854 };/*
4855  * Based on:
4856  * Ext JS Library 1.1.1
4857  * Copyright(c) 2006-2007, Ext JS, LLC.
4858  *
4859  * Originally Released Under LGPL - original licence link has changed is not relivant.
4860  *
4861  * Fork - LGPL
4862  * <script type="text/javascript">
4863  */
4864  
4865
4866 /*
4867  * This is code is also distributed under MIT license for use
4868  * with jQuery and prototype JavaScript libraries.
4869  */
4870 /**
4871  * @class Roo.DomQuery
4872 Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in).
4873 <p>
4874 DomQuery supports most of the <a href="http://www.w3.org/TR/2005/WD-css3-selectors-20051215/">CSS3 selectors spec</a>, along with some custom selectors and basic XPath.</p>
4875
4876 <p>
4877 All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example "div.foo:nth-child(odd)[@foo=bar].bar:first" would be a perfectly valid selector. Node filters are processed in the order in which they appear, which allows you to optimize your queries for your document structure.
4878 </p>
4879 <h4>Element Selectors:</h4>
4880 <ul class="list">
4881     <li> <b>*</b> any element</li>
4882     <li> <b>E</b> an element with the tag E</li>
4883     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4884     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4885     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4886     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4887 </ul>
4888 <h4>Attribute Selectors:</h4>
4889 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4890 <ul class="list">
4891     <li> <b>E[foo]</b> has an attribute "foo"</li>
4892     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4893     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4894     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4895     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4896     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4897     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4898 </ul>
4899 <h4>Pseudo Classes:</h4>
4900 <ul class="list">
4901     <li> <b>E:first-child</b> E is the first child of its parent</li>
4902     <li> <b>E:last-child</b> E is the last child of its parent</li>
4903     <li> <b>E:nth-child(<i>n</i>)</b> E is the <i>n</i>th child of its parent (1 based as per the spec)</li>
4904     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4905     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4906     <li> <b>E:only-child</b> E is the only child of its parent</li>
4907     <li> <b>E:checked</b> E is an element that is has a checked attribute that is true (e.g. a radio or checkbox) </li>
4908     <li> <b>E:first</b> the first E in the resultset</li>
4909     <li> <b>E:last</b> the last E in the resultset</li>
4910     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4911     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4912     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4913     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4914     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
4915     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
4916     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
4917     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
4918     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
4919 </ul>
4920 <h4>CSS Value Selectors:</h4>
4921 <ul class="list">
4922     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
4923     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
4924     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
4925     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
4926     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
4927     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
4928 </ul>
4929  * @singleton
4930  */
4931 Roo.DomQuery = function(){
4932     var cache = {}, simpleCache = {}, valueCache = {};
4933     var nonSpace = /\S/;
4934     var trimRe = /^\s+|\s+$/g;
4935     var tplRe = /\{(\d+)\}/g;
4936     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
4937     var tagTokenRe = /^(#)?([\w-\*]+)/;
4938     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
4939
4940     function child(p, index){
4941         var i = 0;
4942         var n = p.firstChild;
4943         while(n){
4944             if(n.nodeType == 1){
4945                if(++i == index){
4946                    return n;
4947                }
4948             }
4949             n = n.nextSibling;
4950         }
4951         return null;
4952     };
4953
4954     function next(n){
4955         while((n = n.nextSibling) && n.nodeType != 1);
4956         return n;
4957     };
4958
4959     function prev(n){
4960         while((n = n.previousSibling) && n.nodeType != 1);
4961         return n;
4962     };
4963
4964     function children(d){
4965         var n = d.firstChild, ni = -1;
4966             while(n){
4967                 var nx = n.nextSibling;
4968                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
4969                     d.removeChild(n);
4970                 }else{
4971                     n.nodeIndex = ++ni;
4972                 }
4973                 n = nx;
4974             }
4975             return this;
4976         };
4977
4978     function byClassName(c, a, v){
4979         if(!v){
4980             return c;
4981         }
4982         var r = [], ri = -1, cn;
4983         for(var i = 0, ci; ci = c[i]; i++){
4984             if((' '+ci.className+' ').indexOf(v) != -1){
4985                 r[++ri] = ci;
4986             }
4987         }
4988         return r;
4989     };
4990
4991     function attrValue(n, attr){
4992         if(!n.tagName && typeof n.length != "undefined"){
4993             n = n[0];
4994         }
4995         if(!n){
4996             return null;
4997         }
4998         if(attr == "for"){
4999             return n.htmlFor;
5000         }
5001         if(attr == "class" || attr == "className"){
5002             return n.className;
5003         }
5004         return n.getAttribute(attr) || n[attr];
5005
5006     };
5007
5008     function getNodes(ns, mode, tagName){
5009         var result = [], ri = -1, cs;
5010         if(!ns){
5011             return result;
5012         }
5013         tagName = tagName || "*";
5014         if(typeof ns.getElementsByTagName != "undefined"){
5015             ns = [ns];
5016         }
5017         if(!mode){
5018             for(var i = 0, ni; ni = ns[i]; i++){
5019                 cs = ni.getElementsByTagName(tagName);
5020                 for(var j = 0, ci; ci = cs[j]; j++){
5021                     result[++ri] = ci;
5022                 }
5023             }
5024         }else if(mode == "/" || mode == ">"){
5025             var utag = tagName.toUpperCase();
5026             for(var i = 0, ni, cn; ni = ns[i]; i++){
5027                 cn = ni.children || ni.childNodes;
5028                 for(var j = 0, cj; cj = cn[j]; j++){
5029                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5030                         result[++ri] = cj;
5031                     }
5032                 }
5033             }
5034         }else if(mode == "+"){
5035             var utag = tagName.toUpperCase();
5036             for(var i = 0, n; n = ns[i]; i++){
5037                 while((n = n.nextSibling) && n.nodeType != 1);
5038                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5039                     result[++ri] = n;
5040                 }
5041             }
5042         }else if(mode == "~"){
5043             for(var i = 0, n; n = ns[i]; i++){
5044                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5045                 if(n){
5046                     result[++ri] = n;
5047                 }
5048             }
5049         }
5050         return result;
5051     };
5052
5053     function concat(a, b){
5054         if(b.slice){
5055             return a.concat(b);
5056         }
5057         for(var i = 0, l = b.length; i < l; i++){
5058             a[a.length] = b[i];
5059         }
5060         return a;
5061     }
5062
5063     function byTag(cs, tagName){
5064         if(cs.tagName || cs == document){
5065             cs = [cs];
5066         }
5067         if(!tagName){
5068             return cs;
5069         }
5070         var r = [], ri = -1;
5071         tagName = tagName.toLowerCase();
5072         for(var i = 0, ci; ci = cs[i]; i++){
5073             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5074                 r[++ri] = ci;
5075             }
5076         }
5077         return r;
5078     };
5079
5080     function byId(cs, attr, id){
5081         if(cs.tagName || cs == document){
5082             cs = [cs];
5083         }
5084         if(!id){
5085             return cs;
5086         }
5087         var r = [], ri = -1;
5088         for(var i = 0,ci; ci = cs[i]; i++){
5089             if(ci && ci.id == id){
5090                 r[++ri] = ci;
5091                 return r;
5092             }
5093         }
5094         return r;
5095     };
5096
5097     function byAttribute(cs, attr, value, op, custom){
5098         var r = [], ri = -1, st = custom=="{";
5099         var f = Roo.DomQuery.operators[op];
5100         for(var i = 0, ci; ci = cs[i]; i++){
5101             var a;
5102             if(st){
5103                 a = Roo.DomQuery.getStyle(ci, attr);
5104             }
5105             else if(attr == "class" || attr == "className"){
5106                 a = ci.className;
5107             }else if(attr == "for"){
5108                 a = ci.htmlFor;
5109             }else if(attr == "href"){
5110                 a = ci.getAttribute("href", 2);
5111             }else{
5112                 a = ci.getAttribute(attr);
5113             }
5114             if((f && f(a, value)) || (!f && a)){
5115                 r[++ri] = ci;
5116             }
5117         }
5118         return r;
5119     };
5120
5121     function byPseudo(cs, name, value){
5122         return Roo.DomQuery.pseudos[name](cs, value);
5123     };
5124
5125     // This is for IE MSXML which does not support expandos.
5126     // IE runs the same speed using setAttribute, however FF slows way down
5127     // and Safari completely fails so they need to continue to use expandos.
5128     var isIE = window.ActiveXObject ? true : false;
5129
5130     // this eval is stop the compressor from
5131     // renaming the variable to something shorter
5132     
5133     /** eval:var:batch */
5134     var batch = 30803; 
5135
5136     var key = 30803;
5137
5138     function nodupIEXml(cs){
5139         var d = ++key;
5140         cs[0].setAttribute("_nodup", d);
5141         var r = [cs[0]];
5142         for(var i = 1, len = cs.length; i < len; i++){
5143             var c = cs[i];
5144             if(!c.getAttribute("_nodup") != d){
5145                 c.setAttribute("_nodup", d);
5146                 r[r.length] = c;
5147             }
5148         }
5149         for(var i = 0, len = cs.length; i < len; i++){
5150             cs[i].removeAttribute("_nodup");
5151         }
5152         return r;
5153     }
5154
5155     function nodup(cs){
5156         if(!cs){
5157             return [];
5158         }
5159         var len = cs.length, c, i, r = cs, cj, ri = -1;
5160         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5161             return cs;
5162         }
5163         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5164             return nodupIEXml(cs);
5165         }
5166         var d = ++key;
5167         cs[0]._nodup = d;
5168         for(i = 1; c = cs[i]; i++){
5169             if(c._nodup != d){
5170                 c._nodup = d;
5171             }else{
5172                 r = [];
5173                 for(var j = 0; j < i; j++){
5174                     r[++ri] = cs[j];
5175                 }
5176                 for(j = i+1; cj = cs[j]; j++){
5177                     if(cj._nodup != d){
5178                         cj._nodup = d;
5179                         r[++ri] = cj;
5180                     }
5181                 }
5182                 return r;
5183             }
5184         }
5185         return r;
5186     }
5187
5188     function quickDiffIEXml(c1, c2){
5189         var d = ++key;
5190         for(var i = 0, len = c1.length; i < len; i++){
5191             c1[i].setAttribute("_qdiff", d);
5192         }
5193         var r = [];
5194         for(var i = 0, len = c2.length; i < len; i++){
5195             if(c2[i].getAttribute("_qdiff") != d){
5196                 r[r.length] = c2[i];
5197             }
5198         }
5199         for(var i = 0, len = c1.length; i < len; i++){
5200            c1[i].removeAttribute("_qdiff");
5201         }
5202         return r;
5203     }
5204
5205     function quickDiff(c1, c2){
5206         var len1 = c1.length;
5207         if(!len1){
5208             return c2;
5209         }
5210         if(isIE && c1[0].selectSingleNode){
5211             return quickDiffIEXml(c1, c2);
5212         }
5213         var d = ++key;
5214         for(var i = 0; i < len1; i++){
5215             c1[i]._qdiff = d;
5216         }
5217         var r = [];
5218         for(var i = 0, len = c2.length; i < len; i++){
5219             if(c2[i]._qdiff != d){
5220                 r[r.length] = c2[i];
5221             }
5222         }
5223         return r;
5224     }
5225
5226     function quickId(ns, mode, root, id){
5227         if(ns == root){
5228            var d = root.ownerDocument || root;
5229            return d.getElementById(id);
5230         }
5231         ns = getNodes(ns, mode, "*");
5232         return byId(ns, null, id);
5233     }
5234
5235     return {
5236         getStyle : function(el, name){
5237             return Roo.fly(el).getStyle(name);
5238         },
5239         /**
5240          * Compiles a selector/xpath query into a reusable function. The returned function
5241          * takes one parameter "root" (optional), which is the context node from where the query should start.
5242          * @param {String} selector The selector/xpath query
5243          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5244          * @return {Function}
5245          */
5246         compile : function(path, type){
5247             type = type || "select";
5248             
5249             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5250             var q = path, mode, lq;
5251             var tk = Roo.DomQuery.matchers;
5252             var tklen = tk.length;
5253             var mm;
5254
5255             // accept leading mode switch
5256             var lmode = q.match(modeRe);
5257             if(lmode && lmode[1]){
5258                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5259                 q = q.replace(lmode[1], "");
5260             }
5261             // strip leading slashes
5262             while(path.substr(0, 1)=="/"){
5263                 path = path.substr(1);
5264             }
5265
5266             while(q && lq != q){
5267                 lq = q;
5268                 var tm = q.match(tagTokenRe);
5269                 if(type == "select"){
5270                     if(tm){
5271                         if(tm[1] == "#"){
5272                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5273                         }else{
5274                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5275                         }
5276                         q = q.replace(tm[0], "");
5277                     }else if(q.substr(0, 1) != '@'){
5278                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5279                     }
5280                 }else{
5281                     if(tm){
5282                         if(tm[1] == "#"){
5283                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5284                         }else{
5285                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5286                         }
5287                         q = q.replace(tm[0], "");
5288                     }
5289                 }
5290                 while(!(mm = q.match(modeRe))){
5291                     var matched = false;
5292                     for(var j = 0; j < tklen; j++){
5293                         var t = tk[j];
5294                         var m = q.match(t.re);
5295                         if(m){
5296                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5297                                                     return m[i];
5298                                                 });
5299                             q = q.replace(m[0], "");
5300                             matched = true;
5301                             break;
5302                         }
5303                     }
5304                     // prevent infinite loop on bad selector
5305                     if(!matched){
5306                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5307                     }
5308                 }
5309                 if(mm[1]){
5310                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5311                     q = q.replace(mm[1], "");
5312                 }
5313             }
5314             fn[fn.length] = "return nodup(n);\n}";
5315             
5316              /** 
5317               * list of variables that need from compression as they are used by eval.
5318              *  eval:var:batch 
5319              *  eval:var:nodup
5320              *  eval:var:byTag
5321              *  eval:var:ById
5322              *  eval:var:getNodes
5323              *  eval:var:quickId
5324              *  eval:var:mode
5325              *  eval:var:root
5326              *  eval:var:n
5327              *  eval:var:byClassName
5328              *  eval:var:byPseudo
5329              *  eval:var:byAttribute
5330              *  eval:var:attrValue
5331              * 
5332              **/ 
5333             eval(fn.join(""));
5334             return f;
5335         },
5336
5337         /**
5338          * Selects a group of elements.
5339          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5340          * @param {Node} root (optional) The start of the query (defaults to document).
5341          * @return {Array}
5342          */
5343         select : function(path, root, type){
5344             if(!root || root == document){
5345                 root = document;
5346             }
5347             if(typeof root == "string"){
5348                 root = document.getElementById(root);
5349             }
5350             var paths = path.split(",");
5351             var results = [];
5352             for(var i = 0, len = paths.length; i < len; i++){
5353                 var p = paths[i].replace(trimRe, "");
5354                 if(!cache[p]){
5355                     cache[p] = Roo.DomQuery.compile(p);
5356                     if(!cache[p]){
5357                         throw p + " is not a valid selector";
5358                     }
5359                 }
5360                 var result = cache[p](root);
5361                 if(result && result != document){
5362                     results = results.concat(result);
5363                 }
5364             }
5365             if(paths.length > 1){
5366                 return nodup(results);
5367             }
5368             return results;
5369         },
5370
5371         /**
5372          * Selects a single element.
5373          * @param {String} selector The selector/xpath query
5374          * @param {Node} root (optional) The start of the query (defaults to document).
5375          * @return {Element}
5376          */
5377         selectNode : function(path, root){
5378             return Roo.DomQuery.select(path, root)[0];
5379         },
5380
5381         /**
5382          * Selects the value of a node, optionally replacing null with the defaultValue.
5383          * @param {String} selector The selector/xpath query
5384          * @param {Node} root (optional) The start of the query (defaults to document).
5385          * @param {String} defaultValue
5386          */
5387         selectValue : function(path, root, defaultValue){
5388             path = path.replace(trimRe, "");
5389             if(!valueCache[path]){
5390                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5391             }
5392             var n = valueCache[path](root);
5393             n = n[0] ? n[0] : n;
5394             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5395             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5396         },
5397
5398         /**
5399          * Selects the value of a node, parsing integers and floats.
5400          * @param {String} selector The selector/xpath query
5401          * @param {Node} root (optional) The start of the query (defaults to document).
5402          * @param {Number} defaultValue
5403          * @return {Number}
5404          */
5405         selectNumber : function(path, root, defaultValue){
5406             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5407             return parseFloat(v);
5408         },
5409
5410         /**
5411          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5412          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5413          * @param {String} selector The simple selector to test
5414          * @return {Boolean}
5415          */
5416         is : function(el, ss){
5417             if(typeof el == "string"){
5418                 el = document.getElementById(el);
5419             }
5420             var isArray = (el instanceof Array);
5421             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5422             return isArray ? (result.length == el.length) : (result.length > 0);
5423         },
5424
5425         /**
5426          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5427          * @param {Array} el An array of elements to filter
5428          * @param {String} selector The simple selector to test
5429          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5430          * the selector instead of the ones that match
5431          * @return {Array}
5432          */
5433         filter : function(els, ss, nonMatches){
5434             ss = ss.replace(trimRe, "");
5435             if(!simpleCache[ss]){
5436                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5437             }
5438             var result = simpleCache[ss](els);
5439             return nonMatches ? quickDiff(result, els) : result;
5440         },
5441
5442         /**
5443          * Collection of matching regular expressions and code snippets.
5444          */
5445         matchers : [{
5446                 re: /^\.([\w-]+)/,
5447                 select: 'n = byClassName(n, null, " {1} ");'
5448             }, {
5449                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5450                 select: 'n = byPseudo(n, "{1}", "{2}");'
5451             },{
5452                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5453                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5454             }, {
5455                 re: /^#([\w-]+)/,
5456                 select: 'n = byId(n, null, "{1}");'
5457             },{
5458                 re: /^@([\w-]+)/,
5459                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5460             }
5461         ],
5462
5463         /**
5464          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5465          * New operators can be added as long as the match the format <i>c</i>= where <i>c</i> is any character other than space, &gt; &lt;.
5466          */
5467         operators : {
5468             "=" : function(a, v){
5469                 return a == v;
5470             },
5471             "!=" : function(a, v){
5472                 return a != v;
5473             },
5474             "^=" : function(a, v){
5475                 return a && a.substr(0, v.length) == v;
5476             },
5477             "$=" : function(a, v){
5478                 return a && a.substr(a.length-v.length) == v;
5479             },
5480             "*=" : function(a, v){
5481                 return a && a.indexOf(v) !== -1;
5482             },
5483             "%=" : function(a, v){
5484                 return (a % v) == 0;
5485             },
5486             "|=" : function(a, v){
5487                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5488             },
5489             "~=" : function(a, v){
5490                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5491             }
5492         },
5493
5494         /**
5495          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5496          * and the argument (if any) supplied in the selector.
5497          */
5498         pseudos : {
5499             "first-child" : function(c){
5500                 var r = [], ri = -1, n;
5501                 for(var i = 0, ci; ci = n = c[i]; i++){
5502                     while((n = n.previousSibling) && n.nodeType != 1);
5503                     if(!n){
5504                         r[++ri] = ci;
5505                     }
5506                 }
5507                 return r;
5508             },
5509
5510             "last-child" : function(c){
5511                 var r = [], ri = -1, n;
5512                 for(var i = 0, ci; ci = n = c[i]; i++){
5513                     while((n = n.nextSibling) && n.nodeType != 1);
5514                     if(!n){
5515                         r[++ri] = ci;
5516                     }
5517                 }
5518                 return r;
5519             },
5520
5521             "nth-child" : function(c, a) {
5522                 var r = [], ri = -1;
5523                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5524                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5525                 for(var i = 0, n; n = c[i]; i++){
5526                     var pn = n.parentNode;
5527                     if (batch != pn._batch) {
5528                         var j = 0;
5529                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5530                             if(cn.nodeType == 1){
5531                                cn.nodeIndex = ++j;
5532                             }
5533                         }
5534                         pn._batch = batch;
5535                     }
5536                     if (f == 1) {
5537                         if (l == 0 || n.nodeIndex == l){
5538                             r[++ri] = n;
5539                         }
5540                     } else if ((n.nodeIndex + l) % f == 0){
5541                         r[++ri] = n;
5542                     }
5543                 }
5544
5545                 return r;
5546             },
5547
5548             "only-child" : function(c){
5549                 var r = [], ri = -1;;
5550                 for(var i = 0, ci; ci = c[i]; i++){
5551                     if(!prev(ci) && !next(ci)){
5552                         r[++ri] = ci;
5553                     }
5554                 }
5555                 return r;
5556             },
5557
5558             "empty" : function(c){
5559                 var r = [], ri = -1;
5560                 for(var i = 0, ci; ci = c[i]; i++){
5561                     var cns = ci.childNodes, j = 0, cn, empty = true;
5562                     while(cn = cns[j]){
5563                         ++j;
5564                         if(cn.nodeType == 1 || cn.nodeType == 3){
5565                             empty = false;
5566                             break;
5567                         }
5568                     }
5569                     if(empty){
5570                         r[++ri] = ci;
5571                     }
5572                 }
5573                 return r;
5574             },
5575
5576             "contains" : function(c, v){
5577                 var r = [], ri = -1;
5578                 for(var i = 0, ci; ci = c[i]; i++){
5579                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5580                         r[++ri] = ci;
5581                     }
5582                 }
5583                 return r;
5584             },
5585
5586             "nodeValue" : function(c, v){
5587                 var r = [], ri = -1;
5588                 for(var i = 0, ci; ci = c[i]; i++){
5589                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5590                         r[++ri] = ci;
5591                     }
5592                 }
5593                 return r;
5594             },
5595
5596             "checked" : function(c){
5597                 var r = [], ri = -1;
5598                 for(var i = 0, ci; ci = c[i]; i++){
5599                     if(ci.checked == true){
5600                         r[++ri] = ci;
5601                     }
5602                 }
5603                 return r;
5604             },
5605
5606             "not" : function(c, ss){
5607                 return Roo.DomQuery.filter(c, ss, true);
5608             },
5609
5610             "odd" : function(c){
5611                 return this["nth-child"](c, "odd");
5612             },
5613
5614             "even" : function(c){
5615                 return this["nth-child"](c, "even");
5616             },
5617
5618             "nth" : function(c, a){
5619                 return c[a-1] || [];
5620             },
5621
5622             "first" : function(c){
5623                 return c[0] || [];
5624             },
5625
5626             "last" : function(c){
5627                 return c[c.length-1] || [];
5628             },
5629
5630             "has" : function(c, ss){
5631                 var s = Roo.DomQuery.select;
5632                 var r = [], ri = -1;
5633                 for(var i = 0, ci; ci = c[i]; i++){
5634                     if(s(ss, ci).length > 0){
5635                         r[++ri] = ci;
5636                     }
5637                 }
5638                 return r;
5639             },
5640
5641             "next" : function(c, ss){
5642                 var is = Roo.DomQuery.is;
5643                 var r = [], ri = -1;
5644                 for(var i = 0, ci; ci = c[i]; i++){
5645                     var n = next(ci);
5646                     if(n && is(n, ss)){
5647                         r[++ri] = ci;
5648                     }
5649                 }
5650                 return r;
5651             },
5652
5653             "prev" : function(c, ss){
5654                 var is = Roo.DomQuery.is;
5655                 var r = [], ri = -1;
5656                 for(var i = 0, ci; ci = c[i]; i++){
5657                     var n = prev(ci);
5658                     if(n && is(n, ss)){
5659                         r[++ri] = ci;
5660                     }
5661                 }
5662                 return r;
5663             }
5664         }
5665     };
5666 }();
5667
5668 /**
5669  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5670  * @param {String} path The selector/xpath query
5671  * @param {Node} root (optional) The start of the query (defaults to document).
5672  * @return {Array}
5673  * @member Roo
5674  * @method query
5675  */
5676 Roo.query = Roo.DomQuery.select;
5677 /*
5678  * Based on:
5679  * Ext JS Library 1.1.1
5680  * Copyright(c) 2006-2007, Ext JS, LLC.
5681  *
5682  * Originally Released Under LGPL - original licence link has changed is not relivant.
5683  *
5684  * Fork - LGPL
5685  * <script type="text/javascript">
5686  */
5687
5688 /**
5689  * @class Roo.util.Observable
5690  * Base class that provides a common interface for publishing events. Subclasses are expected to
5691  * to have a property "events" with all the events defined.<br>
5692  * For example:
5693  * <pre><code>
5694  Employee = function(name){
5695     this.name = name;
5696     this.addEvents({
5697         "fired" : true,
5698         "quit" : true
5699     });
5700  }
5701  Roo.extend(Employee, Roo.util.Observable);
5702 </code></pre>
5703  * @param {Object} config properties to use (incuding events / listeners)
5704  */
5705
5706 Roo.util.Observable = function(cfg){
5707     
5708     cfg = cfg|| {};
5709     this.addEvents(cfg.events || {});
5710     if (cfg.events) {
5711         delete cfg.events; // make sure
5712     }
5713      
5714     Roo.apply(this, cfg);
5715     
5716     if(this.listeners){
5717         this.on(this.listeners);
5718         delete this.listeners;
5719     }
5720 };
5721 Roo.util.Observable.prototype = {
5722     /** 
5723  * @cfg {Object} listeners  list of events and functions to call for this object, 
5724  * For example :
5725  * <pre><code>
5726     listeners :  { 
5727        'click' : function(e) {
5728            ..... 
5729         } ,
5730         .... 
5731     } 
5732   </code></pre>
5733  */
5734     
5735     
5736     /**
5737      * Fires the specified event with the passed parameters (minus the event name).
5738      * @param {String} eventName
5739      * @param {Object...} args Variable number of parameters are passed to handlers
5740      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5741      */
5742     fireEvent : function(){
5743         var ce = this.events[arguments[0].toLowerCase()];
5744         if(typeof ce == "object"){
5745             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5746         }else{
5747             return true;
5748         }
5749     },
5750
5751     // private
5752     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5753
5754     /**
5755      * Appends an event handler to this component
5756      * @param {String}   eventName The type of event to listen for
5757      * @param {Function} handler The method the event invokes
5758      * @param {Object}   scope (optional) The scope in which to execute the handler
5759      * function. The handler function's "this" context.
5760      * @param {Object}   options (optional) An object containing handler configuration
5761      * properties. This may contain any of the following properties:<ul>
5762      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5763      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5764      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5765      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5766      * by the specified number of milliseconds. If the event fires again within that time, the original
5767      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5768      * </ul><br>
5769      * <p>
5770      * <b>Combining Options</b><br>
5771      * Using the options argument, it is possible to combine different types of listeners:<br>
5772      * <br>
5773      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5774                 <pre><code>
5775                 el.on('click', this.onClick, this, {
5776                         single: true,
5777                 delay: 100,
5778                 forumId: 4
5779                 });
5780                 </code></pre>
5781      * <p>
5782      * <b>Attaching multiple handlers in 1 call</b><br>
5783      * The method also allows for a single argument to be passed which is a config object containing properties
5784      * which specify multiple handlers.
5785      * <pre><code>
5786                 el.on({
5787                         'click': {
5788                         fn: this.onClick,
5789                         scope: this,
5790                         delay: 100
5791                 }, 
5792                 'mouseover': {
5793                         fn: this.onMouseOver,
5794                         scope: this
5795                 },
5796                 'mouseout': {
5797                         fn: this.onMouseOut,
5798                         scope: this
5799                 }
5800                 });
5801                 </code></pre>
5802      * <p>
5803      * Or a shorthand syntax which passes the same scope object to all handlers:
5804         <pre><code>
5805                 el.on({
5806                         'click': this.onClick,
5807                 'mouseover': this.onMouseOver,
5808                 'mouseout': this.onMouseOut,
5809                 scope: this
5810                 });
5811                 </code></pre>
5812      */
5813     addListener : function(eventName, fn, scope, o){
5814         if(typeof eventName == "object"){
5815             o = eventName;
5816             for(var e in o){
5817                 if(this.filterOptRe.test(e)){
5818                     continue;
5819                 }
5820                 if(typeof o[e] == "function"){
5821                     // shared options
5822                     this.addListener(e, o[e], o.scope,  o);
5823                 }else{
5824                     // individual options
5825                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5826                 }
5827             }
5828             return;
5829         }
5830         o = (!o || typeof o == "boolean") ? {} : o;
5831         eventName = eventName.toLowerCase();
5832         var ce = this.events[eventName] || true;
5833         if(typeof ce == "boolean"){
5834             ce = new Roo.util.Event(this, eventName);
5835             this.events[eventName] = ce;
5836         }
5837         ce.addListener(fn, scope, o);
5838     },
5839
5840     /**
5841      * Removes a listener
5842      * @param {String}   eventName     The type of event to listen for
5843      * @param {Function} handler        The handler to remove
5844      * @param {Object}   scope  (optional) The scope (this object) for the handler
5845      */
5846     removeListener : function(eventName, fn, scope){
5847         var ce = this.events[eventName.toLowerCase()];
5848         if(typeof ce == "object"){
5849             ce.removeListener(fn, scope);
5850         }
5851     },
5852
5853     /**
5854      * Removes all listeners for this object
5855      */
5856     purgeListeners : function(){
5857         for(var evt in this.events){
5858             if(typeof this.events[evt] == "object"){
5859                  this.events[evt].clearListeners();
5860             }
5861         }
5862     },
5863
5864     relayEvents : function(o, events){
5865         var createHandler = function(ename){
5866             return function(){
5867                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5868             };
5869         };
5870         for(var i = 0, len = events.length; i < len; i++){
5871             var ename = events[i];
5872             if(!this.events[ename]){ this.events[ename] = true; };
5873             o.on(ename, createHandler(ename), this);
5874         }
5875     },
5876
5877     /**
5878      * Used to define events on this Observable
5879      * @param {Object} object The object with the events defined
5880      */
5881     addEvents : function(o){
5882         if(!this.events){
5883             this.events = {};
5884         }
5885         Roo.applyIf(this.events, o);
5886     },
5887
5888     /**
5889      * Checks to see if this object has any listeners for a specified event
5890      * @param {String} eventName The name of the event to check for
5891      * @return {Boolean} True if the event is being listened for, else false
5892      */
5893     hasListener : function(eventName){
5894         var e = this.events[eventName];
5895         return typeof e == "object" && e.listeners.length > 0;
5896     }
5897 };
5898 /**
5899  * Appends an event handler to this element (shorthand for addListener)
5900  * @param {String}   eventName     The type of event to listen for
5901  * @param {Function} handler        The method the event invokes
5902  * @param {Object}   scope (optional) The scope in which to execute the handler
5903  * function. The handler function's "this" context.
5904  * @param {Object}   options  (optional)
5905  * @method
5906  */
5907 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5908 /**
5909  * Removes a listener (shorthand for removeListener)
5910  * @param {String}   eventName     The type of event to listen for
5911  * @param {Function} handler        The handler to remove
5912  * @param {Object}   scope  (optional) The scope (this object) for the handler
5913  * @method
5914  */
5915 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
5916
5917 /**
5918  * Starts capture on the specified Observable. All events will be passed
5919  * to the supplied function with the event name + standard signature of the event
5920  * <b>before</b> the event is fired. If the supplied function returns false,
5921  * the event will not fire.
5922  * @param {Observable} o The Observable to capture
5923  * @param {Function} fn The function to call
5924  * @param {Object} scope (optional) The scope (this object) for the fn
5925  * @static
5926  */
5927 Roo.util.Observable.capture = function(o, fn, scope){
5928     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
5929 };
5930
5931 /**
5932  * Removes <b>all</b> added captures from the Observable.
5933  * @param {Observable} o The Observable to release
5934  * @static
5935  */
5936 Roo.util.Observable.releaseCapture = function(o){
5937     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
5938 };
5939
5940 (function(){
5941
5942     var createBuffered = function(h, o, scope){
5943         var task = new Roo.util.DelayedTask();
5944         return function(){
5945             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
5946         };
5947     };
5948
5949     var createSingle = function(h, e, fn, scope){
5950         return function(){
5951             e.removeListener(fn, scope);
5952             return h.apply(scope, arguments);
5953         };
5954     };
5955
5956     var createDelayed = function(h, o, scope){
5957         return function(){
5958             var args = Array.prototype.slice.call(arguments, 0);
5959             setTimeout(function(){
5960                 h.apply(scope, args);
5961             }, o.delay || 10);
5962         };
5963     };
5964
5965     Roo.util.Event = function(obj, name){
5966         this.name = name;
5967         this.obj = obj;
5968         this.listeners = [];
5969     };
5970
5971     Roo.util.Event.prototype = {
5972         addListener : function(fn, scope, options){
5973             var o = options || {};
5974             scope = scope || this.obj;
5975             if(!this.isListening(fn, scope)){
5976                 var l = {fn: fn, scope: scope, options: o};
5977                 var h = fn;
5978                 if(o.delay){
5979                     h = createDelayed(h, o, scope);
5980                 }
5981                 if(o.single){
5982                     h = createSingle(h, this, fn, scope);
5983                 }
5984                 if(o.buffer){
5985                     h = createBuffered(h, o, scope);
5986                 }
5987                 l.fireFn = h;
5988                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
5989                     this.listeners.push(l);
5990                 }else{
5991                     this.listeners = this.listeners.slice(0);
5992                     this.listeners.push(l);
5993                 }
5994             }
5995         },
5996
5997         findListener : function(fn, scope){
5998             scope = scope || this.obj;
5999             var ls = this.listeners;
6000             for(var i = 0, len = ls.length; i < len; i++){
6001                 var l = ls[i];
6002                 if(l.fn == fn && l.scope == scope){
6003                     return i;
6004                 }
6005             }
6006             return -1;
6007         },
6008
6009         isListening : function(fn, scope){
6010             return this.findListener(fn, scope) != -1;
6011         },
6012
6013         removeListener : function(fn, scope){
6014             var index;
6015             if((index = this.findListener(fn, scope)) != -1){
6016                 if(!this.firing){
6017                     this.listeners.splice(index, 1);
6018                 }else{
6019                     this.listeners = this.listeners.slice(0);
6020                     this.listeners.splice(index, 1);
6021                 }
6022                 return true;
6023             }
6024             return false;
6025         },
6026
6027         clearListeners : function(){
6028             this.listeners = [];
6029         },
6030
6031         fire : function(){
6032             var ls = this.listeners, scope, len = ls.length;
6033             if(len > 0){
6034                 this.firing = true;
6035                 var args = Array.prototype.slice.call(arguments, 0);
6036                 for(var i = 0; i < len; i++){
6037                     var l = ls[i];
6038                     if(l.fireFn.apply(l.scope||this.obj||window, arguments) === false){
6039                         this.firing = false;
6040                         return false;
6041                     }
6042                 }
6043                 this.firing = false;
6044             }
6045             return true;
6046         }
6047     };
6048 })();/*
6049  * Based on:
6050  * Ext JS Library 1.1.1
6051  * Copyright(c) 2006-2007, Ext JS, LLC.
6052  *
6053  * Originally Released Under LGPL - original licence link has changed is not relivant.
6054  *
6055  * Fork - LGPL
6056  * <script type="text/javascript">
6057  */
6058
6059 /**
6060  * @class Roo.EventManager
6061  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6062  * several useful events directly.
6063  * See {@link Roo.EventObject} for more details on normalized event objects.
6064  * @singleton
6065  */
6066 Roo.EventManager = function(){
6067     var docReadyEvent, docReadyProcId, docReadyState = false;
6068     var resizeEvent, resizeTask, textEvent, textSize;
6069     var E = Roo.lib.Event;
6070     var D = Roo.lib.Dom;
6071
6072     
6073     
6074
6075     var fireDocReady = function(){
6076         if(!docReadyState){
6077             docReadyState = true;
6078             Roo.isReady = true;
6079             if(docReadyProcId){
6080                 clearInterval(docReadyProcId);
6081             }
6082             if(Roo.isGecko || Roo.isOpera) {
6083                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6084             }
6085             if(Roo.isIE){
6086                 var defer = document.getElementById("ie-deferred-loader");
6087                 if(defer){
6088                     defer.onreadystatechange = null;
6089                     defer.parentNode.removeChild(defer);
6090                 }
6091             }
6092             if(docReadyEvent){
6093                 docReadyEvent.fire();
6094                 docReadyEvent.clearListeners();
6095             }
6096         }
6097     };
6098     
6099     var initDocReady = function(){
6100         docReadyEvent = new Roo.util.Event();
6101         if(Roo.isGecko || Roo.isOpera) {
6102             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6103         }else if(Roo.isIE){
6104             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6105             var defer = document.getElementById("ie-deferred-loader");
6106             defer.onreadystatechange = function(){
6107                 if(this.readyState == "complete"){
6108                     fireDocReady();
6109                 }
6110             };
6111         }else if(Roo.isSafari){ 
6112             docReadyProcId = setInterval(function(){
6113                 var rs = document.readyState;
6114                 if(rs == "complete") {
6115                     fireDocReady();     
6116                  }
6117             }, 10);
6118         }
6119         // no matter what, make sure it fires on load
6120         E.on(window, "load", fireDocReady);
6121     };
6122
6123     var createBuffered = function(h, o){
6124         var task = new Roo.util.DelayedTask(h);
6125         return function(e){
6126             // create new event object impl so new events don't wipe out properties
6127             e = new Roo.EventObjectImpl(e);
6128             task.delay(o.buffer, h, null, [e]);
6129         };
6130     };
6131
6132     var createSingle = function(h, el, ename, fn){
6133         return function(e){
6134             Roo.EventManager.removeListener(el, ename, fn);
6135             h(e);
6136         };
6137     };
6138
6139     var createDelayed = function(h, o){
6140         return function(e){
6141             // create new event object impl so new events don't wipe out properties
6142             e = new Roo.EventObjectImpl(e);
6143             setTimeout(function(){
6144                 h(e);
6145             }, o.delay || 10);
6146         };
6147     };
6148     var transitionEndVal = false;
6149     
6150     var transitionEnd = function()
6151     {
6152         if (transitionEndVal) {
6153             return transitionEndVal;
6154         }
6155         var el = document.createElement('div');
6156
6157         var transEndEventNames = {
6158             WebkitTransition : 'webkitTransitionEnd',
6159             MozTransition    : 'transitionend',
6160             OTransition      : 'oTransitionEnd otransitionend',
6161             transition       : 'transitionend'
6162         };
6163     
6164         for (var name in transEndEventNames) {
6165             if (el.style[name] !== undefined) {
6166                 transitionEndVal = transEndEventNames[name];
6167                 return  transitionEndVal ;
6168             }
6169         }
6170     }
6171     
6172
6173     var listen = function(element, ename, opt, fn, scope){
6174         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6175         fn = fn || o.fn; scope = scope || o.scope;
6176         var el = Roo.getDom(element);
6177         
6178         
6179         if(!el){
6180             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6181         }
6182         
6183         if (ename == 'transitionend') {
6184             ename = transitionEnd();
6185         }
6186         var h = function(e){
6187             e = Roo.EventObject.setEvent(e);
6188             var t;
6189             if(o.delegate){
6190                 t = e.getTarget(o.delegate, el);
6191                 if(!t){
6192                     return;
6193                 }
6194             }else{
6195                 t = e.target;
6196             }
6197             if(o.stopEvent === true){
6198                 e.stopEvent();
6199             }
6200             if(o.preventDefault === true){
6201                e.preventDefault();
6202             }
6203             if(o.stopPropagation === true){
6204                 e.stopPropagation();
6205             }
6206
6207             if(o.normalized === false){
6208                 e = e.browserEvent;
6209             }
6210
6211             fn.call(scope || el, e, t, o);
6212         };
6213         if(o.delay){
6214             h = createDelayed(h, o);
6215         }
6216         if(o.single){
6217             h = createSingle(h, el, ename, fn);
6218         }
6219         if(o.buffer){
6220             h = createBuffered(h, o);
6221         }
6222         fn._handlers = fn._handlers || [];
6223         
6224         
6225         fn._handlers.push([Roo.id(el), ename, h]);
6226         
6227         
6228          
6229         E.on(el, ename, h);
6230         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6231             el.addEventListener("DOMMouseScroll", h, false);
6232             E.on(window, 'unload', function(){
6233                 el.removeEventListener("DOMMouseScroll", h, false);
6234             });
6235         }
6236         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6237             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6238         }
6239         return h;
6240     };
6241
6242     var stopListening = function(el, ename, fn){
6243         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6244         if(hds){
6245             for(var i = 0, len = hds.length; i < len; i++){
6246                 var h = hds[i];
6247                 if(h[0] == id && h[1] == ename){
6248                     hd = h[2];
6249                     hds.splice(i, 1);
6250                     break;
6251                 }
6252             }
6253         }
6254         E.un(el, ename, hd);
6255         el = Roo.getDom(el);
6256         if(ename == "mousewheel" && el.addEventListener){
6257             el.removeEventListener("DOMMouseScroll", hd, false);
6258         }
6259         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6260             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6261         }
6262     };
6263
6264     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6265     
6266     var pub = {
6267         
6268         
6269         /** 
6270          * Fix for doc tools
6271          * @scope Roo.EventManager
6272          */
6273         
6274         
6275         /** 
6276          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6277          * object with a Roo.EventObject
6278          * @param {Function} fn        The method the event invokes
6279          * @param {Object}   scope    An object that becomes the scope of the handler
6280          * @param {boolean}  override If true, the obj passed in becomes
6281          *                             the execution scope of the listener
6282          * @return {Function} The wrapped function
6283          * @deprecated
6284          */
6285         wrap : function(fn, scope, override){
6286             return function(e){
6287                 Roo.EventObject.setEvent(e);
6288                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6289             };
6290         },
6291         
6292         /**
6293      * Appends an event handler to an element (shorthand for addListener)
6294      * @param {String/HTMLElement}   element        The html element or id to assign the
6295      * @param {String}   eventName The type of event to listen for
6296      * @param {Function} handler The method the event invokes
6297      * @param {Object}   scope (optional) The scope in which to execute the handler
6298      * function. The handler function's "this" context.
6299      * @param {Object}   options (optional) An object containing handler configuration
6300      * properties. This may contain any of the following properties:<ul>
6301      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6302      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6303      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6304      * <li>preventDefault {Boolean} True to prevent the default action</li>
6305      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6306      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6307      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6308      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6309      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6310      * by the specified number of milliseconds. If the event fires again within that time, the original
6311      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6312      * </ul><br>
6313      * <p>
6314      * <b>Combining Options</b><br>
6315      * Using the options argument, it is possible to combine different types of listeners:<br>
6316      * <br>
6317      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6318      * Code:<pre><code>
6319 el.on('click', this.onClick, this, {
6320     single: true,
6321     delay: 100,
6322     stopEvent : true,
6323     forumId: 4
6324 });</code></pre>
6325      * <p>
6326      * <b>Attaching multiple handlers in 1 call</b><br>
6327       * The method also allows for a single argument to be passed which is a config object containing properties
6328      * which specify multiple handlers.
6329      * <p>
6330      * Code:<pre><code>
6331 el.on({
6332     'click' : {
6333         fn: this.onClick
6334         scope: this,
6335         delay: 100
6336     },
6337     'mouseover' : {
6338         fn: this.onMouseOver
6339         scope: this
6340     },
6341     'mouseout' : {
6342         fn: this.onMouseOut
6343         scope: this
6344     }
6345 });</code></pre>
6346      * <p>
6347      * Or a shorthand syntax:<br>
6348      * Code:<pre><code>
6349 el.on({
6350     'click' : this.onClick,
6351     'mouseover' : this.onMouseOver,
6352     'mouseout' : this.onMouseOut
6353     scope: this
6354 });</code></pre>
6355      */
6356         addListener : function(element, eventName, fn, scope, options){
6357             if(typeof eventName == "object"){
6358                 var o = eventName;
6359                 for(var e in o){
6360                     if(propRe.test(e)){
6361                         continue;
6362                     }
6363                     if(typeof o[e] == "function"){
6364                         // shared options
6365                         listen(element, e, o, o[e], o.scope);
6366                     }else{
6367                         // individual options
6368                         listen(element, e, o[e]);
6369                     }
6370                 }
6371                 return;
6372             }
6373             return listen(element, eventName, options, fn, scope);
6374         },
6375         
6376         /**
6377          * Removes an event handler
6378          *
6379          * @param {String/HTMLElement}   element        The id or html element to remove the 
6380          *                             event from
6381          * @param {String}   eventName     The type of event
6382          * @param {Function} fn
6383          * @return {Boolean} True if a listener was actually removed
6384          */
6385         removeListener : function(element, eventName, fn){
6386             return stopListening(element, eventName, fn);
6387         },
6388         
6389         /**
6390          * Fires when the document is ready (before onload and before images are loaded). Can be 
6391          * accessed shorthanded Roo.onReady().
6392          * @param {Function} fn        The method the event invokes
6393          * @param {Object}   scope    An  object that becomes the scope of the handler
6394          * @param {boolean}  options
6395          */
6396         onDocumentReady : function(fn, scope, options){
6397             if(docReadyState){ // if it already fired
6398                 docReadyEvent.addListener(fn, scope, options);
6399                 docReadyEvent.fire();
6400                 docReadyEvent.clearListeners();
6401                 return;
6402             }
6403             if(!docReadyEvent){
6404                 initDocReady();
6405             }
6406             docReadyEvent.addListener(fn, scope, options);
6407         },
6408         
6409         /**
6410          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6411          * @param {Function} fn        The method the event invokes
6412          * @param {Object}   scope    An object that becomes the scope of the handler
6413          * @param {boolean}  options
6414          */
6415         onWindowResize : function(fn, scope, options){
6416             if(!resizeEvent){
6417                 resizeEvent = new Roo.util.Event();
6418                 resizeTask = new Roo.util.DelayedTask(function(){
6419                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6420                 });
6421                 E.on(window, "resize", function(){
6422                     if(Roo.isIE){
6423                         resizeTask.delay(50);
6424                     }else{
6425                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6426                     }
6427                 });
6428             }
6429             resizeEvent.addListener(fn, scope, options);
6430         },
6431
6432         /**
6433          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6434          * @param {Function} fn        The method the event invokes
6435          * @param {Object}   scope    An object that becomes the scope of the handler
6436          * @param {boolean}  options
6437          */
6438         onTextResize : function(fn, scope, options){
6439             if(!textEvent){
6440                 textEvent = new Roo.util.Event();
6441                 var textEl = new Roo.Element(document.createElement('div'));
6442                 textEl.dom.className = 'x-text-resize';
6443                 textEl.dom.innerHTML = 'X';
6444                 textEl.appendTo(document.body);
6445                 textSize = textEl.dom.offsetHeight;
6446                 setInterval(function(){
6447                     if(textEl.dom.offsetHeight != textSize){
6448                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6449                     }
6450                 }, this.textResizeInterval);
6451             }
6452             textEvent.addListener(fn, scope, options);
6453         },
6454
6455         /**
6456          * Removes the passed window resize listener.
6457          * @param {Function} fn        The method the event invokes
6458          * @param {Object}   scope    The scope of handler
6459          */
6460         removeResizeListener : function(fn, scope){
6461             if(resizeEvent){
6462                 resizeEvent.removeListener(fn, scope);
6463             }
6464         },
6465
6466         // private
6467         fireResize : function(){
6468             if(resizeEvent){
6469                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6470             }   
6471         },
6472         /**
6473          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6474          */
6475         ieDeferSrc : false,
6476         /**
6477          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6478          */
6479         textResizeInterval : 50
6480     };
6481     
6482     /**
6483      * Fix for doc tools
6484      * @scopeAlias pub=Roo.EventManager
6485      */
6486     
6487      /**
6488      * Appends an event handler to an element (shorthand for addListener)
6489      * @param {String/HTMLElement}   element        The html element or id to assign the
6490      * @param {String}   eventName The type of event to listen for
6491      * @param {Function} handler The method the event invokes
6492      * @param {Object}   scope (optional) The scope in which to execute the handler
6493      * function. The handler function's "this" context.
6494      * @param {Object}   options (optional) An object containing handler configuration
6495      * properties. This may contain any of the following properties:<ul>
6496      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6497      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6498      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6499      * <li>preventDefault {Boolean} True to prevent the default action</li>
6500      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6501      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6502      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6503      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6504      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6505      * by the specified number of milliseconds. If the event fires again within that time, the original
6506      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6507      * </ul><br>
6508      * <p>
6509      * <b>Combining Options</b><br>
6510      * Using the options argument, it is possible to combine different types of listeners:<br>
6511      * <br>
6512      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6513      * Code:<pre><code>
6514 el.on('click', this.onClick, this, {
6515     single: true,
6516     delay: 100,
6517     stopEvent : true,
6518     forumId: 4
6519 });</code></pre>
6520      * <p>
6521      * <b>Attaching multiple handlers in 1 call</b><br>
6522       * The method also allows for a single argument to be passed which is a config object containing properties
6523      * which specify multiple handlers.
6524      * <p>
6525      * Code:<pre><code>
6526 el.on({
6527     'click' : {
6528         fn: this.onClick
6529         scope: this,
6530         delay: 100
6531     },
6532     'mouseover' : {
6533         fn: this.onMouseOver
6534         scope: this
6535     },
6536     'mouseout' : {
6537         fn: this.onMouseOut
6538         scope: this
6539     }
6540 });</code></pre>
6541      * <p>
6542      * Or a shorthand syntax:<br>
6543      * Code:<pre><code>
6544 el.on({
6545     'click' : this.onClick,
6546     'mouseover' : this.onMouseOver,
6547     'mouseout' : this.onMouseOut
6548     scope: this
6549 });</code></pre>
6550      */
6551     pub.on = pub.addListener;
6552     pub.un = pub.removeListener;
6553
6554     pub.stoppedMouseDownEvent = new Roo.util.Event();
6555     return pub;
6556 }();
6557 /**
6558   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6559   * @param {Function} fn        The method the event invokes
6560   * @param {Object}   scope    An  object that becomes the scope of the handler
6561   * @param {boolean}  override If true, the obj passed in becomes
6562   *                             the execution scope of the listener
6563   * @member Roo
6564   * @method onReady
6565  */
6566 Roo.onReady = Roo.EventManager.onDocumentReady;
6567
6568 Roo.onReady(function(){
6569     var bd = Roo.get(document.body);
6570     if(!bd){ return; }
6571
6572     var cls = [
6573             Roo.isIE ? "roo-ie"
6574             : Roo.isGecko ? "roo-gecko"
6575             : Roo.isOpera ? "roo-opera"
6576             : Roo.isSafari ? "roo-safari" : ""];
6577
6578     if(Roo.isMac){
6579         cls.push("roo-mac");
6580     }
6581     if(Roo.isLinux){
6582         cls.push("roo-linux");
6583     }
6584     if(Roo.isIOS){
6585         cls.push("roo-ios");
6586     }
6587     if(Roo.isBorderBox){
6588         cls.push('roo-border-box');
6589     }
6590     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6591         var p = bd.dom.parentNode;
6592         if(p){
6593             p.className += ' roo-strict';
6594         }
6595     }
6596     bd.addClass(cls.join(' '));
6597 });
6598
6599 /**
6600  * @class Roo.EventObject
6601  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6602  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6603  * Example:
6604  * <pre><code>
6605  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6606     e.preventDefault();
6607     var target = e.getTarget();
6608     ...
6609  }
6610  var myDiv = Roo.get("myDiv");
6611  myDiv.on("click", handleClick);
6612  //or
6613  Roo.EventManager.on("myDiv", 'click', handleClick);
6614  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6615  </code></pre>
6616  * @singleton
6617  */
6618 Roo.EventObject = function(){
6619     
6620     var E = Roo.lib.Event;
6621     
6622     // safari keypress events for special keys return bad keycodes
6623     var safariKeys = {
6624         63234 : 37, // left
6625         63235 : 39, // right
6626         63232 : 38, // up
6627         63233 : 40, // down
6628         63276 : 33, // page up
6629         63277 : 34, // page down
6630         63272 : 46, // delete
6631         63273 : 36, // home
6632         63275 : 35  // end
6633     };
6634
6635     // normalize button clicks
6636     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6637                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6638
6639     Roo.EventObjectImpl = function(e){
6640         if(e){
6641             this.setEvent(e.browserEvent || e);
6642         }
6643     };
6644     Roo.EventObjectImpl.prototype = {
6645         /**
6646          * Used to fix doc tools.
6647          * @scope Roo.EventObject.prototype
6648          */
6649             
6650
6651         
6652         
6653         /** The normal browser event */
6654         browserEvent : null,
6655         /** The button pressed in a mouse event */
6656         button : -1,
6657         /** True if the shift key was down during the event */
6658         shiftKey : false,
6659         /** True if the control key was down during the event */
6660         ctrlKey : false,
6661         /** True if the alt key was down during the event */
6662         altKey : false,
6663
6664         /** Key constant 
6665         * @type Number */
6666         BACKSPACE : 8,
6667         /** Key constant 
6668         * @type Number */
6669         TAB : 9,
6670         /** Key constant 
6671         * @type Number */
6672         RETURN : 13,
6673         /** Key constant 
6674         * @type Number */
6675         ENTER : 13,
6676         /** Key constant 
6677         * @type Number */
6678         SHIFT : 16,
6679         /** Key constant 
6680         * @type Number */
6681         CONTROL : 17,
6682         /** Key constant 
6683         * @type Number */
6684         ESC : 27,
6685         /** Key constant 
6686         * @type Number */
6687         SPACE : 32,
6688         /** Key constant 
6689         * @type Number */
6690         PAGEUP : 33,
6691         /** Key constant 
6692         * @type Number */
6693         PAGEDOWN : 34,
6694         /** Key constant 
6695         * @type Number */
6696         END : 35,
6697         /** Key constant 
6698         * @type Number */
6699         HOME : 36,
6700         /** Key constant 
6701         * @type Number */
6702         LEFT : 37,
6703         /** Key constant 
6704         * @type Number */
6705         UP : 38,
6706         /** Key constant 
6707         * @type Number */
6708         RIGHT : 39,
6709         /** Key constant 
6710         * @type Number */
6711         DOWN : 40,
6712         /** Key constant 
6713         * @type Number */
6714         DELETE : 46,
6715         /** Key constant 
6716         * @type Number */
6717         F5 : 116,
6718
6719            /** @private */
6720         setEvent : function(e){
6721             if(e == this || (e && e.browserEvent)){ // already wrapped
6722                 return e;
6723             }
6724             this.browserEvent = e;
6725             if(e){
6726                 // normalize buttons
6727                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6728                 if(e.type == 'click' && this.button == -1){
6729                     this.button = 0;
6730                 }
6731                 this.type = e.type;
6732                 this.shiftKey = e.shiftKey;
6733                 // mac metaKey behaves like ctrlKey
6734                 this.ctrlKey = e.ctrlKey || e.metaKey;
6735                 this.altKey = e.altKey;
6736                 // in getKey these will be normalized for the mac
6737                 this.keyCode = e.keyCode;
6738                 // keyup warnings on firefox.
6739                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6740                 // cache the target for the delayed and or buffered events
6741                 this.target = E.getTarget(e);
6742                 // same for XY
6743                 this.xy = E.getXY(e);
6744             }else{
6745                 this.button = -1;
6746                 this.shiftKey = false;
6747                 this.ctrlKey = false;
6748                 this.altKey = false;
6749                 this.keyCode = 0;
6750                 this.charCode =0;
6751                 this.target = null;
6752                 this.xy = [0, 0];
6753             }
6754             return this;
6755         },
6756
6757         /**
6758          * Stop the event (preventDefault and stopPropagation)
6759          */
6760         stopEvent : function(){
6761             if(this.browserEvent){
6762                 if(this.browserEvent.type == 'mousedown'){
6763                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6764                 }
6765                 E.stopEvent(this.browserEvent);
6766             }
6767         },
6768
6769         /**
6770          * Prevents the browsers default handling of the event.
6771          */
6772         preventDefault : function(){
6773             if(this.browserEvent){
6774                 E.preventDefault(this.browserEvent);
6775             }
6776         },
6777
6778         /** @private */
6779         isNavKeyPress : function(){
6780             var k = this.keyCode;
6781             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6782             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6783         },
6784
6785         isSpecialKey : function(){
6786             var k = this.keyCode;
6787             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6788             (k == 16) || (k == 17) ||
6789             (k >= 18 && k <= 20) ||
6790             (k >= 33 && k <= 35) ||
6791             (k >= 36 && k <= 39) ||
6792             (k >= 44 && k <= 45);
6793         },
6794         /**
6795          * Cancels bubbling of the event.
6796          */
6797         stopPropagation : function(){
6798             if(this.browserEvent){
6799                 if(this.type == 'mousedown'){
6800                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6801                 }
6802                 E.stopPropagation(this.browserEvent);
6803             }
6804         },
6805
6806         /**
6807          * Gets the key code for the event.
6808          * @return {Number}
6809          */
6810         getCharCode : function(){
6811             return this.charCode || this.keyCode;
6812         },
6813
6814         /**
6815          * Returns a normalized keyCode for the event.
6816          * @return {Number} The key code
6817          */
6818         getKey : function(){
6819             var k = this.keyCode || this.charCode;
6820             return Roo.isSafari ? (safariKeys[k] || k) : k;
6821         },
6822
6823         /**
6824          * Gets the x coordinate of the event.
6825          * @return {Number}
6826          */
6827         getPageX : function(){
6828             return this.xy[0];
6829         },
6830
6831         /**
6832          * Gets the y coordinate of the event.
6833          * @return {Number}
6834          */
6835         getPageY : function(){
6836             return this.xy[1];
6837         },
6838
6839         /**
6840          * Gets the time of the event.
6841          * @return {Number}
6842          */
6843         getTime : function(){
6844             if(this.browserEvent){
6845                 return E.getTime(this.browserEvent);
6846             }
6847             return null;
6848         },
6849
6850         /**
6851          * Gets the page coordinates of the event.
6852          * @return {Array} The xy values like [x, y]
6853          */
6854         getXY : function(){
6855             return this.xy;
6856         },
6857
6858         /**
6859          * Gets the target for the event.
6860          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
6861          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
6862                 search as a number or element (defaults to 10 || document.body)
6863          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
6864          * @return {HTMLelement}
6865          */
6866         getTarget : function(selector, maxDepth, returnEl){
6867             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
6868         },
6869         /**
6870          * Gets the related target.
6871          * @return {HTMLElement}
6872          */
6873         getRelatedTarget : function(){
6874             if(this.browserEvent){
6875                 return E.getRelatedTarget(this.browserEvent);
6876             }
6877             return null;
6878         },
6879
6880         /**
6881          * Normalizes mouse wheel delta across browsers
6882          * @return {Number} The delta
6883          */
6884         getWheelDelta : function(){
6885             var e = this.browserEvent;
6886             var delta = 0;
6887             if(e.wheelDelta){ /* IE/Opera. */
6888                 delta = e.wheelDelta/120;
6889             }else if(e.detail){ /* Mozilla case. */
6890                 delta = -e.detail/3;
6891             }
6892             return delta;
6893         },
6894
6895         /**
6896          * Returns true if the control, meta, shift or alt key was pressed during this event.
6897          * @return {Boolean}
6898          */
6899         hasModifier : function(){
6900             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
6901         },
6902
6903         /**
6904          * Returns true if the target of this event equals el or is a child of el
6905          * @param {String/HTMLElement/Element} el
6906          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
6907          * @return {Boolean}
6908          */
6909         within : function(el, related){
6910             var t = this[related ? "getRelatedTarget" : "getTarget"]();
6911             return t && Roo.fly(el).contains(t);
6912         },
6913
6914         getPoint : function(){
6915             return new Roo.lib.Point(this.xy[0], this.xy[1]);
6916         }
6917     };
6918
6919     return new Roo.EventObjectImpl();
6920 }();
6921             
6922     /*
6923  * Based on:
6924  * Ext JS Library 1.1.1
6925  * Copyright(c) 2006-2007, Ext JS, LLC.
6926  *
6927  * Originally Released Under LGPL - original licence link has changed is not relivant.
6928  *
6929  * Fork - LGPL
6930  * <script type="text/javascript">
6931  */
6932
6933  
6934 // was in Composite Element!??!?!
6935  
6936 (function(){
6937     var D = Roo.lib.Dom;
6938     var E = Roo.lib.Event;
6939     var A = Roo.lib.Anim;
6940
6941     // local style camelizing for speed
6942     var propCache = {};
6943     var camelRe = /(-[a-z])/gi;
6944     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
6945     var view = document.defaultView;
6946
6947 /**
6948  * @class Roo.Element
6949  * Represents an Element in the DOM.<br><br>
6950  * Usage:<br>
6951 <pre><code>
6952 var el = Roo.get("my-div");
6953
6954 // or with getEl
6955 var el = getEl("my-div");
6956
6957 // or with a DOM element
6958 var el = Roo.get(myDivElement);
6959 </code></pre>
6960  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
6961  * each call instead of constructing a new one.<br><br>
6962  * <b>Animations</b><br />
6963  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
6964  * should either be a boolean (true) or an object literal with animation options. The animation options are:
6965 <pre>
6966 Option    Default   Description
6967 --------- --------  ---------------------------------------------
6968 duration  .35       The duration of the animation in seconds
6969 easing    easeOut   The YUI easing method
6970 callback  none      A function to execute when the anim completes
6971 scope     this      The scope (this) of the callback function
6972 </pre>
6973 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
6974 * manipulate the animation. Here's an example:
6975 <pre><code>
6976 var el = Roo.get("my-div");
6977
6978 // no animation
6979 el.setWidth(100);
6980
6981 // default animation
6982 el.setWidth(100, true);
6983
6984 // animation with some options set
6985 el.setWidth(100, {
6986     duration: 1,
6987     callback: this.foo,
6988     scope: this
6989 });
6990
6991 // using the "anim" property to get the Anim object
6992 var opt = {
6993     duration: 1,
6994     callback: this.foo,
6995     scope: this
6996 };
6997 el.setWidth(100, opt);
6998 ...
6999 if(opt.anim.isAnimated()){
7000     opt.anim.stop();
7001 }
7002 </code></pre>
7003 * <b> Composite (Collections of) Elements</b><br />
7004  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7005  * @constructor Create a new Element directly.
7006  * @param {String/HTMLElement} element
7007  * @param {Boolean} forceNew (optional) By default the constructor checks to see if there is already an instance of this element in the cache and if there is it returns the same instance. This will skip that check (useful for extending this class).
7008  */
7009     Roo.Element = function(element, forceNew){
7010         var dom = typeof element == "string" ?
7011                 document.getElementById(element) : element;
7012         if(!dom){ // invalid id/element
7013             return null;
7014         }
7015         var id = dom.id;
7016         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7017             return Roo.Element.cache[id];
7018         }
7019
7020         /**
7021          * The DOM element
7022          * @type HTMLElement
7023          */
7024         this.dom = dom;
7025
7026         /**
7027          * The DOM element ID
7028          * @type String
7029          */
7030         this.id = id || Roo.id(dom);
7031     };
7032
7033     var El = Roo.Element;
7034
7035     El.prototype = {
7036         /**
7037          * The element's default display mode  (defaults to "")
7038          * @type String
7039          */
7040         originalDisplay : "",
7041
7042         visibilityMode : 1,
7043         /**
7044          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7045          * @type String
7046          */
7047         defaultUnit : "px",
7048         /**
7049          * Sets the element's visibility mode. When setVisible() is called it
7050          * will use this to determine whether to set the visibility or the display property.
7051          * @param visMode Element.VISIBILITY or Element.DISPLAY
7052          * @return {Roo.Element} this
7053          */
7054         setVisibilityMode : function(visMode){
7055             this.visibilityMode = visMode;
7056             return this;
7057         },
7058         /**
7059          * Convenience method for setVisibilityMode(Element.DISPLAY)
7060          * @param {String} display (optional) What to set display to when visible
7061          * @return {Roo.Element} this
7062          */
7063         enableDisplayMode : function(display){
7064             this.setVisibilityMode(El.DISPLAY);
7065             if(typeof display != "undefined") this.originalDisplay = display;
7066             return this;
7067         },
7068
7069         /**
7070          * Looks at this node and then at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7071          * @param {String} selector The simple selector to test
7072          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7073                 search as a number or element (defaults to 10 || document.body)
7074          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7075          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7076          */
7077         findParent : function(simpleSelector, maxDepth, returnEl){
7078             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7079             maxDepth = maxDepth || 50;
7080             if(typeof maxDepth != "number"){
7081                 stopEl = Roo.getDom(maxDepth);
7082                 maxDepth = 10;
7083             }
7084             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7085                 if(dq.is(p, simpleSelector)){
7086                     return returnEl ? Roo.get(p) : p;
7087                 }
7088                 depth++;
7089                 p = p.parentNode;
7090             }
7091             return null;
7092         },
7093
7094
7095         /**
7096          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7097          * @param {String} selector The simple selector to test
7098          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7099                 search as a number or element (defaults to 10 || document.body)
7100          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7101          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7102          */
7103         findParentNode : function(simpleSelector, maxDepth, returnEl){
7104             var p = Roo.fly(this.dom.parentNode, '_internal');
7105             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7106         },
7107
7108         /**
7109          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7110          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7111          * @param {String} selector The simple selector to test
7112          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7113                 search as a number or element (defaults to 10 || document.body)
7114          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7115          */
7116         up : function(simpleSelector, maxDepth){
7117             return this.findParentNode(simpleSelector, maxDepth, true);
7118         },
7119
7120
7121
7122         /**
7123          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7124          * @param {String} selector The simple selector to test
7125          * @return {Boolean} True if this element matches the selector, else false
7126          */
7127         is : function(simpleSelector){
7128             return Roo.DomQuery.is(this.dom, simpleSelector);
7129         },
7130
7131         /**
7132          * Perform animation on this element.
7133          * @param {Object} args The YUI animation control args
7134          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7135          * @param {Function} onComplete (optional) Function to call when animation completes
7136          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7137          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7138          * @return {Roo.Element} this
7139          */
7140         animate : function(args, duration, onComplete, easing, animType){
7141             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7142             return this;
7143         },
7144
7145         /*
7146          * @private Internal animation call
7147          */
7148         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7149             animType = animType || 'run';
7150             opt = opt || {};
7151             var anim = Roo.lib.Anim[animType](
7152                 this.dom, args,
7153                 (opt.duration || defaultDur) || .35,
7154                 (opt.easing || defaultEase) || 'easeOut',
7155                 function(){
7156                     Roo.callback(cb, this);
7157                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7158                 },
7159                 this
7160             );
7161             opt.anim = anim;
7162             return anim;
7163         },
7164
7165         // private legacy anim prep
7166         preanim : function(a, i){
7167             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7168         },
7169
7170         /**
7171          * Removes worthless text nodes
7172          * @param {Boolean} forceReclean (optional) By default the element
7173          * keeps track if it has been cleaned already so
7174          * you can call this over and over. However, if you update the element and
7175          * need to force a reclean, you can pass true.
7176          */
7177         clean : function(forceReclean){
7178             if(this.isCleaned && forceReclean !== true){
7179                 return this;
7180             }
7181             var ns = /\S/;
7182             var d = this.dom, n = d.firstChild, ni = -1;
7183             while(n){
7184                 var nx = n.nextSibling;
7185                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7186                     d.removeChild(n);
7187                 }else{
7188                     n.nodeIndex = ++ni;
7189                 }
7190                 n = nx;
7191             }
7192             this.isCleaned = true;
7193             return this;
7194         },
7195
7196         // private
7197         calcOffsetsTo : function(el){
7198             el = Roo.get(el);
7199             var d = el.dom;
7200             var restorePos = false;
7201             if(el.getStyle('position') == 'static'){
7202                 el.position('relative');
7203                 restorePos = true;
7204             }
7205             var x = 0, y =0;
7206             var op = this.dom;
7207             while(op && op != d && op.tagName != 'HTML'){
7208                 x+= op.offsetLeft;
7209                 y+= op.offsetTop;
7210                 op = op.offsetParent;
7211             }
7212             if(restorePos){
7213                 el.position('static');
7214             }
7215             return [x, y];
7216         },
7217
7218         /**
7219          * Scrolls this element into view within the passed container.
7220          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7221          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7222          * @return {Roo.Element} this
7223          */
7224         scrollIntoView : function(container, hscroll){
7225             var c = Roo.getDom(container) || document.body;
7226             var el = this.dom;
7227
7228             var o = this.calcOffsetsTo(c),
7229                 l = o[0],
7230                 t = o[1],
7231                 b = t+el.offsetHeight,
7232                 r = l+el.offsetWidth;
7233
7234             var ch = c.clientHeight;
7235             var ct = parseInt(c.scrollTop, 10);
7236             var cl = parseInt(c.scrollLeft, 10);
7237             var cb = ct + ch;
7238             var cr = cl + c.clientWidth;
7239
7240             if(t < ct){
7241                 c.scrollTop = t;
7242             }else if(b > cb){
7243                 c.scrollTop = b-ch;
7244             }
7245
7246             if(hscroll !== false){
7247                 if(l < cl){
7248                     c.scrollLeft = l;
7249                 }else if(r > cr){
7250                     c.scrollLeft = r-c.clientWidth;
7251                 }
7252             }
7253             return this;
7254         },
7255
7256         // private
7257         scrollChildIntoView : function(child, hscroll){
7258             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7259         },
7260
7261         /**
7262          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7263          * the new height may not be available immediately.
7264          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7265          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7266          * @param {Function} onComplete (optional) Function to call when animation completes
7267          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7268          * @return {Roo.Element} this
7269          */
7270         autoHeight : function(animate, duration, onComplete, easing){
7271             var oldHeight = this.getHeight();
7272             this.clip();
7273             this.setHeight(1); // force clipping
7274             setTimeout(function(){
7275                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7276                 if(!animate){
7277                     this.setHeight(height);
7278                     this.unclip();
7279                     if(typeof onComplete == "function"){
7280                         onComplete();
7281                     }
7282                 }else{
7283                     this.setHeight(oldHeight); // restore original height
7284                     this.setHeight(height, animate, duration, function(){
7285                         this.unclip();
7286                         if(typeof onComplete == "function") onComplete();
7287                     }.createDelegate(this), easing);
7288                 }
7289             }.createDelegate(this), 0);
7290             return this;
7291         },
7292
7293         /**
7294          * Returns true if this element is an ancestor of the passed element
7295          * @param {HTMLElement/String} el The element to check
7296          * @return {Boolean} True if this element is an ancestor of el, else false
7297          */
7298         contains : function(el){
7299             if(!el){return false;}
7300             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7301         },
7302
7303         /**
7304          * Checks whether the element is currently visible using both visibility and display properties.
7305          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7306          * @return {Boolean} True if the element is currently visible, else false
7307          */
7308         isVisible : function(deep) {
7309             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7310             if(deep !== true || !vis){
7311                 return vis;
7312             }
7313             var p = this.dom.parentNode;
7314             while(p && p.tagName.toLowerCase() != "body"){
7315                 if(!Roo.fly(p, '_isVisible').isVisible()){
7316                     return false;
7317                 }
7318                 p = p.parentNode;
7319             }
7320             return true;
7321         },
7322
7323         /**
7324          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7325          * @param {String} selector The CSS selector
7326          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7327          * @return {CompositeElement/CompositeElementLite} The composite element
7328          */
7329         select : function(selector, unique){
7330             return El.select(selector, unique, this.dom);
7331         },
7332
7333         /**
7334          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7335          * @param {String} selector The CSS selector
7336          * @return {Array} An array of the matched nodes
7337          */
7338         query : function(selector, unique){
7339             return Roo.DomQuery.select(selector, this.dom);
7340         },
7341
7342         /**
7343          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7344          * @param {String} selector The CSS selector
7345          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7346          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7347          */
7348         child : function(selector, returnDom){
7349             var n = Roo.DomQuery.selectNode(selector, this.dom);
7350             return returnDom ? n : Roo.get(n);
7351         },
7352
7353         /**
7354          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7355          * @param {String} selector The CSS selector
7356          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7357          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7358          */
7359         down : function(selector, returnDom){
7360             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7361             return returnDom ? n : Roo.get(n);
7362         },
7363
7364         /**
7365          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7366          * @param {String} group The group the DD object is member of
7367          * @param {Object} config The DD config object
7368          * @param {Object} overrides An object containing methods to override/implement on the DD object
7369          * @return {Roo.dd.DD} The DD object
7370          */
7371         initDD : function(group, config, overrides){
7372             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7373             return Roo.apply(dd, overrides);
7374         },
7375
7376         /**
7377          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7378          * @param {String} group The group the DDProxy object is member of
7379          * @param {Object} config The DDProxy config object
7380          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7381          * @return {Roo.dd.DDProxy} The DDProxy object
7382          */
7383         initDDProxy : function(group, config, overrides){
7384             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7385             return Roo.apply(dd, overrides);
7386         },
7387
7388         /**
7389          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7390          * @param {String} group The group the DDTarget object is member of
7391          * @param {Object} config The DDTarget config object
7392          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7393          * @return {Roo.dd.DDTarget} The DDTarget object
7394          */
7395         initDDTarget : function(group, config, overrides){
7396             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7397             return Roo.apply(dd, overrides);
7398         },
7399
7400         /**
7401          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7402          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7403          * @param {Boolean} visible Whether the element is visible
7404          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7405          * @return {Roo.Element} this
7406          */
7407          setVisible : function(visible, animate){
7408             if(!animate || !A){
7409                 if(this.visibilityMode == El.DISPLAY){
7410                     this.setDisplayed(visible);
7411                 }else{
7412                     this.fixDisplay();
7413                     this.dom.style.visibility = visible ? "visible" : "hidden";
7414                 }
7415             }else{
7416                 // closure for composites
7417                 var dom = this.dom;
7418                 var visMode = this.visibilityMode;
7419                 if(visible){
7420                     this.setOpacity(.01);
7421                     this.setVisible(true);
7422                 }
7423                 this.anim({opacity: { to: (visible?1:0) }},
7424                       this.preanim(arguments, 1),
7425                       null, .35, 'easeIn', function(){
7426                          if(!visible){
7427                              if(visMode == El.DISPLAY){
7428                                  dom.style.display = "none";
7429                              }else{
7430                                  dom.style.visibility = "hidden";
7431                              }
7432                              Roo.get(dom).setOpacity(1);
7433                          }
7434                      });
7435             }
7436             return this;
7437         },
7438
7439         /**
7440          * Returns true if display is not "none"
7441          * @return {Boolean}
7442          */
7443         isDisplayed : function() {
7444             return this.getStyle("display") != "none";
7445         },
7446
7447         /**
7448          * Toggles the element's visibility or display, depending on visibility mode.
7449          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7450          * @return {Roo.Element} this
7451          */
7452         toggle : function(animate){
7453             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7454             return this;
7455         },
7456
7457         /**
7458          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7459          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7460          * @return {Roo.Element} this
7461          */
7462         setDisplayed : function(value) {
7463             if(typeof value == "boolean"){
7464                value = value ? this.originalDisplay : "none";
7465             }
7466             this.setStyle("display", value);
7467             return this;
7468         },
7469
7470         /**
7471          * Tries to focus the element. Any exceptions are caught and ignored.
7472          * @return {Roo.Element} this
7473          */
7474         focus : function() {
7475             try{
7476                 this.dom.focus();
7477             }catch(e){}
7478             return this;
7479         },
7480
7481         /**
7482          * Tries to blur the element. Any exceptions are caught and ignored.
7483          * @return {Roo.Element} this
7484          */
7485         blur : function() {
7486             try{
7487                 this.dom.blur();
7488             }catch(e){}
7489             return this;
7490         },
7491
7492         /**
7493          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7494          * @param {String/Array} className The CSS class to add, or an array of classes
7495          * @return {Roo.Element} this
7496          */
7497         addClass : function(className){
7498             if(className instanceof Array){
7499                 for(var i = 0, len = className.length; i < len; i++) {
7500                     this.addClass(className[i]);
7501                 }
7502             }else{
7503                 if(className && !this.hasClass(className)){
7504                     this.dom.className = this.dom.className + " " + className;
7505                 }
7506             }
7507             return this;
7508         },
7509
7510         /**
7511          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7512          * @param {String/Array} className The CSS class to add, or an array of classes
7513          * @return {Roo.Element} this
7514          */
7515         radioClass : function(className){
7516             var siblings = this.dom.parentNode.childNodes;
7517             for(var i = 0; i < siblings.length; i++) {
7518                 var s = siblings[i];
7519                 if(s.nodeType == 1){
7520                     Roo.get(s).removeClass(className);
7521                 }
7522             }
7523             this.addClass(className);
7524             return this;
7525         },
7526
7527         /**
7528          * Removes one or more CSS classes from the element.
7529          * @param {String/Array} className The CSS class to remove, or an array of classes
7530          * @return {Roo.Element} this
7531          */
7532         removeClass : function(className){
7533             if(!className || !this.dom.className){
7534                 return this;
7535             }
7536             if(className instanceof Array){
7537                 for(var i = 0, len = className.length; i < len; i++) {
7538                     this.removeClass(className[i]);
7539                 }
7540             }else{
7541                 if(this.hasClass(className)){
7542                     var re = this.classReCache[className];
7543                     if (!re) {
7544                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7545                        this.classReCache[className] = re;
7546                     }
7547                     this.dom.className =
7548                         this.dom.className.replace(re, " ");
7549                 }
7550             }
7551             return this;
7552         },
7553
7554         // private
7555         classReCache: {},
7556
7557         /**
7558          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7559          * @param {String} className The CSS class to toggle
7560          * @return {Roo.Element} this
7561          */
7562         toggleClass : function(className){
7563             if(this.hasClass(className)){
7564                 this.removeClass(className);
7565             }else{
7566                 this.addClass(className);
7567             }
7568             return this;
7569         },
7570
7571         /**
7572          * Checks if the specified CSS class exists on this element's DOM node.
7573          * @param {String} className The CSS class to check for
7574          * @return {Boolean} True if the class exists, else false
7575          */
7576         hasClass : function(className){
7577             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7578         },
7579
7580         /**
7581          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7582          * @param {String} oldClassName The CSS class to replace
7583          * @param {String} newClassName The replacement CSS class
7584          * @return {Roo.Element} this
7585          */
7586         replaceClass : function(oldClassName, newClassName){
7587             this.removeClass(oldClassName);
7588             this.addClass(newClassName);
7589             return this;
7590         },
7591
7592         /**
7593          * Returns an object with properties matching the styles requested.
7594          * For example, el.getStyles('color', 'font-size', 'width') might return
7595          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7596          * @param {String} style1 A style name
7597          * @param {String} style2 A style name
7598          * @param {String} etc.
7599          * @return {Object} The style object
7600          */
7601         getStyles : function(){
7602             var a = arguments, len = a.length, r = {};
7603             for(var i = 0; i < len; i++){
7604                 r[a[i]] = this.getStyle(a[i]);
7605             }
7606             return r;
7607         },
7608
7609         /**
7610          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7611          * @param {String} property The style property whose value is returned.
7612          * @return {String} The current value of the style property for this element.
7613          */
7614         getStyle : function(){
7615             return view && view.getComputedStyle ?
7616                 function(prop){
7617                     var el = this.dom, v, cs, camel;
7618                     if(prop == 'float'){
7619                         prop = "cssFloat";
7620                     }
7621                     if(el.style && (v = el.style[prop])){
7622                         return v;
7623                     }
7624                     if(cs = view.getComputedStyle(el, "")){
7625                         if(!(camel = propCache[prop])){
7626                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7627                         }
7628                         return cs[camel];
7629                     }
7630                     return null;
7631                 } :
7632                 function(prop){
7633                     var el = this.dom, v, cs, camel;
7634                     if(prop == 'opacity'){
7635                         if(typeof el.style.filter == 'string'){
7636                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7637                             if(m){
7638                                 var fv = parseFloat(m[1]);
7639                                 if(!isNaN(fv)){
7640                                     return fv ? fv / 100 : 0;
7641                                 }
7642                             }
7643                         }
7644                         return 1;
7645                     }else if(prop == 'float'){
7646                         prop = "styleFloat";
7647                     }
7648                     if(!(camel = propCache[prop])){
7649                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7650                     }
7651                     if(v = el.style[camel]){
7652                         return v;
7653                     }
7654                     if(cs = el.currentStyle){
7655                         return cs[camel];
7656                     }
7657                     return null;
7658                 };
7659         }(),
7660
7661         /**
7662          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7663          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7664          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7665          * @return {Roo.Element} this
7666          */
7667         setStyle : function(prop, value){
7668             if(typeof prop == "string"){
7669                 
7670                 if (prop == 'float') {
7671                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7672                     return this;
7673                 }
7674                 
7675                 var camel;
7676                 if(!(camel = propCache[prop])){
7677                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7678                 }
7679                 
7680                 if(camel == 'opacity') {
7681                     this.setOpacity(value);
7682                 }else{
7683                     this.dom.style[camel] = value;
7684                 }
7685             }else{
7686                 for(var style in prop){
7687                     if(typeof prop[style] != "function"){
7688                        this.setStyle(style, prop[style]);
7689                     }
7690                 }
7691             }
7692             return this;
7693         },
7694
7695         /**
7696          * More flexible version of {@link #setStyle} for setting style properties.
7697          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7698          * a function which returns such a specification.
7699          * @return {Roo.Element} this
7700          */
7701         applyStyles : function(style){
7702             Roo.DomHelper.applyStyles(this.dom, style);
7703             return this;
7704         },
7705
7706         /**
7707           * Gets the current X position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7708           * @return {Number} The X position of the element
7709           */
7710         getX : function(){
7711             return D.getX(this.dom);
7712         },
7713
7714         /**
7715           * Gets the current Y position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7716           * @return {Number} The Y position of the element
7717           */
7718         getY : function(){
7719             return D.getY(this.dom);
7720         },
7721
7722         /**
7723           * Gets the current position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7724           * @return {Array} The XY position of the element
7725           */
7726         getXY : function(){
7727             return D.getXY(this.dom);
7728         },
7729
7730         /**
7731          * Sets the X position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7732          * @param {Number} The X position of the element
7733          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7734          * @return {Roo.Element} this
7735          */
7736         setX : function(x, animate){
7737             if(!animate || !A){
7738                 D.setX(this.dom, x);
7739             }else{
7740                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7741             }
7742             return this;
7743         },
7744
7745         /**
7746          * Sets the Y position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7747          * @param {Number} The Y position of the element
7748          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7749          * @return {Roo.Element} this
7750          */
7751         setY : function(y, animate){
7752             if(!animate || !A){
7753                 D.setY(this.dom, y);
7754             }else{
7755                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7756             }
7757             return this;
7758         },
7759
7760         /**
7761          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7762          * @param {String} left The left CSS property value
7763          * @return {Roo.Element} this
7764          */
7765         setLeft : function(left){
7766             this.setStyle("left", this.addUnits(left));
7767             return this;
7768         },
7769
7770         /**
7771          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7772          * @param {String} top The top CSS property value
7773          * @return {Roo.Element} this
7774          */
7775         setTop : function(top){
7776             this.setStyle("top", this.addUnits(top));
7777             return this;
7778         },
7779
7780         /**
7781          * Sets the element's CSS right style.
7782          * @param {String} right The right CSS property value
7783          * @return {Roo.Element} this
7784          */
7785         setRight : function(right){
7786             this.setStyle("right", this.addUnits(right));
7787             return this;
7788         },
7789
7790         /**
7791          * Sets the element's CSS bottom style.
7792          * @param {String} bottom The bottom CSS property value
7793          * @return {Roo.Element} this
7794          */
7795         setBottom : function(bottom){
7796             this.setStyle("bottom", this.addUnits(bottom));
7797             return this;
7798         },
7799
7800         /**
7801          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7802          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7803          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7804          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7805          * @return {Roo.Element} this
7806          */
7807         setXY : function(pos, animate){
7808             if(!animate || !A){
7809                 D.setXY(this.dom, pos);
7810             }else{
7811                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7812             }
7813             return this;
7814         },
7815
7816         /**
7817          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7818          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7819          * @param {Number} x X value for new position (coordinates are page-based)
7820          * @param {Number} y Y value for new position (coordinates are page-based)
7821          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7822          * @return {Roo.Element} this
7823          */
7824         setLocation : function(x, y, animate){
7825             this.setXY([x, y], this.preanim(arguments, 2));
7826             return this;
7827         },
7828
7829         /**
7830          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7831          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7832          * @param {Number} x X value for new position (coordinates are page-based)
7833          * @param {Number} y Y value for new position (coordinates are page-based)
7834          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7835          * @return {Roo.Element} this
7836          */
7837         moveTo : function(x, y, animate){
7838             this.setXY([x, y], this.preanim(arguments, 2));
7839             return this;
7840         },
7841
7842         /**
7843          * Returns the region of the given element.
7844          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
7845          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
7846          */
7847         getRegion : function(){
7848             return D.getRegion(this.dom);
7849         },
7850
7851         /**
7852          * Returns the offset height of the element
7853          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
7854          * @return {Number} The element's height
7855          */
7856         getHeight : function(contentHeight){
7857             var h = this.dom.offsetHeight || 0;
7858             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
7859         },
7860
7861         /**
7862          * Returns the offset width of the element
7863          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
7864          * @return {Number} The element's width
7865          */
7866         getWidth : function(contentWidth){
7867             var w = this.dom.offsetWidth || 0;
7868             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
7869         },
7870
7871         /**
7872          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
7873          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
7874          * if a height has not been set using CSS.
7875          * @return {Number}
7876          */
7877         getComputedHeight : function(){
7878             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
7879             if(!h){
7880                 h = parseInt(this.getStyle('height'), 10) || 0;
7881                 if(!this.isBorderBox()){
7882                     h += this.getFrameWidth('tb');
7883                 }
7884             }
7885             return h;
7886         },
7887
7888         /**
7889          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
7890          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
7891          * if a width has not been set using CSS.
7892          * @return {Number}
7893          */
7894         getComputedWidth : function(){
7895             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
7896             if(!w){
7897                 w = parseInt(this.getStyle('width'), 10) || 0;
7898                 if(!this.isBorderBox()){
7899                     w += this.getFrameWidth('lr');
7900                 }
7901             }
7902             return w;
7903         },
7904
7905         /**
7906          * Returns the size of the element.
7907          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
7908          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
7909          */
7910         getSize : function(contentSize){
7911             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
7912         },
7913
7914         /**
7915          * Returns the width and height of the viewport.
7916          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
7917          */
7918         getViewSize : function(){
7919             var d = this.dom, doc = document, aw = 0, ah = 0;
7920             if(d == doc || d == doc.body){
7921                 return {width : D.getViewWidth(), height: D.getViewHeight()};
7922             }else{
7923                 return {
7924                     width : d.clientWidth,
7925                     height: d.clientHeight
7926                 };
7927             }
7928         },
7929
7930         /**
7931          * Returns the value of the "value" attribute
7932          * @param {Boolean} asNumber true to parse the value as a number
7933          * @return {String/Number}
7934          */
7935         getValue : function(asNumber){
7936             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
7937         },
7938
7939         // private
7940         adjustWidth : function(width){
7941             if(typeof width == "number"){
7942                 if(this.autoBoxAdjust && !this.isBorderBox()){
7943                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
7944                 }
7945                 if(width < 0){
7946                     width = 0;
7947                 }
7948             }
7949             return width;
7950         },
7951
7952         // private
7953         adjustHeight : function(height){
7954             if(typeof height == "number"){
7955                if(this.autoBoxAdjust && !this.isBorderBox()){
7956                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
7957                }
7958                if(height < 0){
7959                    height = 0;
7960                }
7961             }
7962             return height;
7963         },
7964
7965         /**
7966          * Set the width of the element
7967          * @param {Number} width The new width
7968          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
7969          * @return {Roo.Element} this
7970          */
7971         setWidth : function(width, animate){
7972             width = this.adjustWidth(width);
7973             if(!animate || !A){
7974                 this.dom.style.width = this.addUnits(width);
7975             }else{
7976                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
7977             }
7978             return this;
7979         },
7980
7981         /**
7982          * Set the height of the element
7983          * @param {Number} height The new height
7984          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
7985          * @return {Roo.Element} this
7986          */
7987          setHeight : function(height, animate){
7988             height = this.adjustHeight(height);
7989             if(!animate || !A){
7990                 this.dom.style.height = this.addUnits(height);
7991             }else{
7992                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
7993             }
7994             return this;
7995         },
7996
7997         /**
7998          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
7999          * @param {Number} width The new width
8000          * @param {Number} height The new height
8001          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8002          * @return {Roo.Element} this
8003          */
8004          setSize : function(width, height, animate){
8005             if(typeof width == "object"){ // in case of object from getSize()
8006                 height = width.height; width = width.width;
8007             }
8008             width = this.adjustWidth(width); height = this.adjustHeight(height);
8009             if(!animate || !A){
8010                 this.dom.style.width = this.addUnits(width);
8011                 this.dom.style.height = this.addUnits(height);
8012             }else{
8013                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8014             }
8015             return this;
8016         },
8017
8018         /**
8019          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8020          * @param {Number} x X value for new position (coordinates are page-based)
8021          * @param {Number} y Y value for new position (coordinates are page-based)
8022          * @param {Number} width The new width
8023          * @param {Number} height The new height
8024          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8025          * @return {Roo.Element} this
8026          */
8027         setBounds : function(x, y, width, height, animate){
8028             if(!animate || !A){
8029                 this.setSize(width, height);
8030                 this.setLocation(x, y);
8031             }else{
8032                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8033                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8034                               this.preanim(arguments, 4), 'motion');
8035             }
8036             return this;
8037         },
8038
8039         /**
8040          * Sets the element's position and size the the specified region. If animation is true then width, height, x and y will be animated concurrently.
8041          * @param {Roo.lib.Region} region The region to fill
8042          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8043          * @return {Roo.Element} this
8044          */
8045         setRegion : function(region, animate){
8046             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8047             return this;
8048         },
8049
8050         /**
8051          * Appends an event handler
8052          *
8053          * @param {String}   eventName     The type of event to append
8054          * @param {Function} fn        The method the event invokes
8055          * @param {Object} scope       (optional) The scope (this object) of the fn
8056          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8057          */
8058         addListener : function(eventName, fn, scope, options){
8059             if (this.dom) {
8060                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8061             }
8062         },
8063
8064         /**
8065          * Removes an event handler from this element
8066          * @param {String} eventName the type of event to remove
8067          * @param {Function} fn the method the event invokes
8068          * @return {Roo.Element} this
8069          */
8070         removeListener : function(eventName, fn){
8071             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8072             return this;
8073         },
8074
8075         /**
8076          * Removes all previous added listeners from this element
8077          * @return {Roo.Element} this
8078          */
8079         removeAllListeners : function(){
8080             E.purgeElement(this.dom);
8081             return this;
8082         },
8083
8084         relayEvent : function(eventName, observable){
8085             this.on(eventName, function(e){
8086                 observable.fireEvent(eventName, e);
8087             });
8088         },
8089
8090         /**
8091          * Set the opacity of the element
8092          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8093          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8094          * @return {Roo.Element} this
8095          */
8096          setOpacity : function(opacity, animate){
8097             if(!animate || !A){
8098                 var s = this.dom.style;
8099                 if(Roo.isIE){
8100                     s.zoom = 1;
8101                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8102                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8103                 }else{
8104                     s.opacity = opacity;
8105                 }
8106             }else{
8107                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8108             }
8109             return this;
8110         },
8111
8112         /**
8113          * Gets the left X coordinate
8114          * @param {Boolean} local True to get the local css position instead of page coordinate
8115          * @return {Number}
8116          */
8117         getLeft : function(local){
8118             if(!local){
8119                 return this.getX();
8120             }else{
8121                 return parseInt(this.getStyle("left"), 10) || 0;
8122             }
8123         },
8124
8125         /**
8126          * Gets the right X coordinate of the element (element X position + element width)
8127          * @param {Boolean} local True to get the local css position instead of page coordinate
8128          * @return {Number}
8129          */
8130         getRight : function(local){
8131             if(!local){
8132                 return this.getX() + this.getWidth();
8133             }else{
8134                 return (this.getLeft(true) + this.getWidth()) || 0;
8135             }
8136         },
8137
8138         /**
8139          * Gets the top Y coordinate
8140          * @param {Boolean} local True to get the local css position instead of page coordinate
8141          * @return {Number}
8142          */
8143         getTop : function(local) {
8144             if(!local){
8145                 return this.getY();
8146             }else{
8147                 return parseInt(this.getStyle("top"), 10) || 0;
8148             }
8149         },
8150
8151         /**
8152          * Gets the bottom Y coordinate of the element (element Y position + element height)
8153          * @param {Boolean} local True to get the local css position instead of page coordinate
8154          * @return {Number}
8155          */
8156         getBottom : function(local){
8157             if(!local){
8158                 return this.getY() + this.getHeight();
8159             }else{
8160                 return (this.getTop(true) + this.getHeight()) || 0;
8161             }
8162         },
8163
8164         /**
8165         * Initializes positioning on this element. If a desired position is not passed, it will make the
8166         * the element positioned relative IF it is not already positioned.
8167         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8168         * @param {Number} zIndex (optional) The zIndex to apply
8169         * @param {Number} x (optional) Set the page X position
8170         * @param {Number} y (optional) Set the page Y position
8171         */
8172         position : function(pos, zIndex, x, y){
8173             if(!pos){
8174                if(this.getStyle('position') == 'static'){
8175                    this.setStyle('position', 'relative');
8176                }
8177             }else{
8178                 this.setStyle("position", pos);
8179             }
8180             if(zIndex){
8181                 this.setStyle("z-index", zIndex);
8182             }
8183             if(x !== undefined && y !== undefined){
8184                 this.setXY([x, y]);
8185             }else if(x !== undefined){
8186                 this.setX(x);
8187             }else if(y !== undefined){
8188                 this.setY(y);
8189             }
8190         },
8191
8192         /**
8193         * Clear positioning back to the default when the document was loaded
8194         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8195         * @return {Roo.Element} this
8196          */
8197         clearPositioning : function(value){
8198             value = value ||'';
8199             this.setStyle({
8200                 "left": value,
8201                 "right": value,
8202                 "top": value,
8203                 "bottom": value,
8204                 "z-index": "",
8205                 "position" : "static"
8206             });
8207             return this;
8208         },
8209
8210         /**
8211         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8212         * snapshot before performing an update and then restoring the element.
8213         * @return {Object}
8214         */
8215         getPositioning : function(){
8216             var l = this.getStyle("left");
8217             var t = this.getStyle("top");
8218             return {
8219                 "position" : this.getStyle("position"),
8220                 "left" : l,
8221                 "right" : l ? "" : this.getStyle("right"),
8222                 "top" : t,
8223                 "bottom" : t ? "" : this.getStyle("bottom"),
8224                 "z-index" : this.getStyle("z-index")
8225             };
8226         },
8227
8228         /**
8229          * Gets the width of the border(s) for the specified side(s)
8230          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8231          * passing lr would get the border (l)eft width + the border (r)ight width.
8232          * @return {Number} The width of the sides passed added together
8233          */
8234         getBorderWidth : function(side){
8235             return this.addStyles(side, El.borders);
8236         },
8237
8238         /**
8239          * Gets the width of the padding(s) for the specified side(s)
8240          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8241          * passing lr would get the padding (l)eft + the padding (r)ight.
8242          * @return {Number} The padding of the sides passed added together
8243          */
8244         getPadding : function(side){
8245             return this.addStyles(side, El.paddings);
8246         },
8247
8248         /**
8249         * Set positioning with an object returned by getPositioning().
8250         * @param {Object} posCfg
8251         * @return {Roo.Element} this
8252          */
8253         setPositioning : function(pc){
8254             this.applyStyles(pc);
8255             if(pc.right == "auto"){
8256                 this.dom.style.right = "";
8257             }
8258             if(pc.bottom == "auto"){
8259                 this.dom.style.bottom = "";
8260             }
8261             return this;
8262         },
8263
8264         // private
8265         fixDisplay : function(){
8266             if(this.getStyle("display") == "none"){
8267                 this.setStyle("visibility", "hidden");
8268                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8269                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8270                     this.setStyle("display", "block");
8271                 }
8272             }
8273         },
8274
8275         /**
8276          * Quick set left and top adding default units
8277          * @param {String} left The left CSS property value
8278          * @param {String} top The top CSS property value
8279          * @return {Roo.Element} this
8280          */
8281          setLeftTop : function(left, top){
8282             this.dom.style.left = this.addUnits(left);
8283             this.dom.style.top = this.addUnits(top);
8284             return this;
8285         },
8286
8287         /**
8288          * Move this element relative to its current position.
8289          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8290          * @param {Number} distance How far to move the element in pixels
8291          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8292          * @return {Roo.Element} this
8293          */
8294          move : function(direction, distance, animate){
8295             var xy = this.getXY();
8296             direction = direction.toLowerCase();
8297             switch(direction){
8298                 case "l":
8299                 case "left":
8300                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8301                     break;
8302                case "r":
8303                case "right":
8304                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8305                     break;
8306                case "t":
8307                case "top":
8308                case "up":
8309                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8310                     break;
8311                case "b":
8312                case "bottom":
8313                case "down":
8314                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8315                     break;
8316             }
8317             return this;
8318         },
8319
8320         /**
8321          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8322          * @return {Roo.Element} this
8323          */
8324         clip : function(){
8325             if(!this.isClipped){
8326                this.isClipped = true;
8327                this.originalClip = {
8328                    "o": this.getStyle("overflow"),
8329                    "x": this.getStyle("overflow-x"),
8330                    "y": this.getStyle("overflow-y")
8331                };
8332                this.setStyle("overflow", "hidden");
8333                this.setStyle("overflow-x", "hidden");
8334                this.setStyle("overflow-y", "hidden");
8335             }
8336             return this;
8337         },
8338
8339         /**
8340          *  Return clipping (overflow) to original clipping before clip() was called
8341          * @return {Roo.Element} this
8342          */
8343         unclip : function(){
8344             if(this.isClipped){
8345                 this.isClipped = false;
8346                 var o = this.originalClip;
8347                 if(o.o){this.setStyle("overflow", o.o);}
8348                 if(o.x){this.setStyle("overflow-x", o.x);}
8349                 if(o.y){this.setStyle("overflow-y", o.y);}
8350             }
8351             return this;
8352         },
8353
8354
8355         /**
8356          * Gets the x,y coordinates specified by the anchor position on the element.
8357          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8358          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8359          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8360          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8361          * @return {Array} [x, y] An array containing the element's x and y coordinates
8362          */
8363         getAnchorXY : function(anchor, local, s){
8364             //Passing a different size is useful for pre-calculating anchors,
8365             //especially for anchored animations that change the el size.
8366
8367             var w, h, vp = false;
8368             if(!s){
8369                 var d = this.dom;
8370                 if(d == document.body || d == document){
8371                     vp = true;
8372                     w = D.getViewWidth(); h = D.getViewHeight();
8373                 }else{
8374                     w = this.getWidth(); h = this.getHeight();
8375                 }
8376             }else{
8377                 w = s.width;  h = s.height;
8378             }
8379             var x = 0, y = 0, r = Math.round;
8380             switch((anchor || "tl").toLowerCase()){
8381                 case "c":
8382                     x = r(w*.5);
8383                     y = r(h*.5);
8384                 break;
8385                 case "t":
8386                     x = r(w*.5);
8387                     y = 0;
8388                 break;
8389                 case "l":
8390                     x = 0;
8391                     y = r(h*.5);
8392                 break;
8393                 case "r":
8394                     x = w;
8395                     y = r(h*.5);
8396                 break;
8397                 case "b":
8398                     x = r(w*.5);
8399                     y = h;
8400                 break;
8401                 case "tl":
8402                     x = 0;
8403                     y = 0;
8404                 break;
8405                 case "bl":
8406                     x = 0;
8407                     y = h;
8408                 break;
8409                 case "br":
8410                     x = w;
8411                     y = h;
8412                 break;
8413                 case "tr":
8414                     x = w;
8415                     y = 0;
8416                 break;
8417             }
8418             if(local === true){
8419                 return [x, y];
8420             }
8421             if(vp){
8422                 var sc = this.getScroll();
8423                 return [x + sc.left, y + sc.top];
8424             }
8425             //Add the element's offset xy
8426             var o = this.getXY();
8427             return [x+o[0], y+o[1]];
8428         },
8429
8430         /**
8431          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8432          * supported position values.
8433          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8434          * @param {String} position The position to align to.
8435          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8436          * @return {Array} [x, y]
8437          */
8438         getAlignToXY : function(el, p, o){
8439             el = Roo.get(el);
8440             var d = this.dom;
8441             if(!el.dom){
8442                 throw "Element.alignTo with an element that doesn't exist";
8443             }
8444             var c = false; //constrain to viewport
8445             var p1 = "", p2 = "";
8446             o = o || [0,0];
8447
8448             if(!p){
8449                 p = "tl-bl";
8450             }else if(p == "?"){
8451                 p = "tl-bl?";
8452             }else if(p.indexOf("-") == -1){
8453                 p = "tl-" + p;
8454             }
8455             p = p.toLowerCase();
8456             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8457             if(!m){
8458                throw "Element.alignTo with an invalid alignment " + p;
8459             }
8460             p1 = m[1]; p2 = m[2]; c = !!m[3];
8461
8462             //Subtract the aligned el's internal xy from the target's offset xy
8463             //plus custom offset to get the aligned el's new offset xy
8464             var a1 = this.getAnchorXY(p1, true);
8465             var a2 = el.getAnchorXY(p2, false);
8466             var x = a2[0] - a1[0] + o[0];
8467             var y = a2[1] - a1[1] + o[1];
8468             if(c){
8469                 //constrain the aligned el to viewport if necessary
8470                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8471                 // 5px of margin for ie
8472                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8473
8474                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8475                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8476                 //otherwise swap the aligned el to the opposite border of the target.
8477                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8478                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8479                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t"));
8480                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8481
8482                var doc = document;
8483                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8484                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8485
8486                if((x+w) > dw + scrollX){
8487                     x = swapX ? r.left-w : dw+scrollX-w;
8488                 }
8489                if(x < scrollX){
8490                    x = swapX ? r.right : scrollX;
8491                }
8492                if((y+h) > dh + scrollY){
8493                     y = swapY ? r.top-h : dh+scrollY-h;
8494                 }
8495                if (y < scrollY){
8496                    y = swapY ? r.bottom : scrollY;
8497                }
8498             }
8499             return [x,y];
8500         },
8501
8502         // private
8503         getConstrainToXY : function(){
8504             var os = {top:0, left:0, bottom:0, right: 0};
8505
8506             return function(el, local, offsets, proposedXY){
8507                 el = Roo.get(el);
8508                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8509
8510                 var vw, vh, vx = 0, vy = 0;
8511                 if(el.dom == document.body || el.dom == document){
8512                     vw = Roo.lib.Dom.getViewWidth();
8513                     vh = Roo.lib.Dom.getViewHeight();
8514                 }else{
8515                     vw = el.dom.clientWidth;
8516                     vh = el.dom.clientHeight;
8517                     if(!local){
8518                         var vxy = el.getXY();
8519                         vx = vxy[0];
8520                         vy = vxy[1];
8521                     }
8522                 }
8523
8524                 var s = el.getScroll();
8525
8526                 vx += offsets.left + s.left;
8527                 vy += offsets.top + s.top;
8528
8529                 vw -= offsets.right;
8530                 vh -= offsets.bottom;
8531
8532                 var vr = vx+vw;
8533                 var vb = vy+vh;
8534
8535                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8536                 var x = xy[0], y = xy[1];
8537                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8538
8539                 // only move it if it needs it
8540                 var moved = false;
8541
8542                 // first validate right/bottom
8543                 if((x + w) > vr){
8544                     x = vr - w;
8545                     moved = true;
8546                 }
8547                 if((y + h) > vb){
8548                     y = vb - h;
8549                     moved = true;
8550                 }
8551                 // then make sure top/left isn't negative
8552                 if(x < vx){
8553                     x = vx;
8554                     moved = true;
8555                 }
8556                 if(y < vy){
8557                     y = vy;
8558                     moved = true;
8559                 }
8560                 return moved ? [x, y] : false;
8561             };
8562         }(),
8563
8564         // private
8565         adjustForConstraints : function(xy, parent, offsets){
8566             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8567         },
8568
8569         /**
8570          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8571          * document it aligns it to the viewport.
8572          * The position parameter is optional, and can be specified in any one of the following formats:
8573          * <ul>
8574          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8575          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8576          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8577          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8578          *   <li><b>Two anchors</b>: If two values from the table below are passed separated by a dash, the first value is used as the
8579          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8580          * </ul>
8581          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8582          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8583          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8584          * that specified in order to enforce the viewport constraints.
8585          * Following are all of the supported anchor positions:
8586     <pre>
8587     Value  Description
8588     -----  -----------------------------
8589     tl     The top left corner (default)
8590     t      The center of the top edge
8591     tr     The top right corner
8592     l      The center of the left edge
8593     c      In the center of the element
8594     r      The center of the right edge
8595     bl     The bottom left corner
8596     b      The center of the bottom edge
8597     br     The bottom right corner
8598     </pre>
8599     Example Usage:
8600     <pre><code>
8601     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8602     el.alignTo("other-el");
8603
8604     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8605     el.alignTo("other-el", "tr?");
8606
8607     // align the bottom right corner of el with the center left edge of other-el
8608     el.alignTo("other-el", "br-l?");
8609
8610     // align the center of el with the bottom left corner of other-el and
8611     // adjust the x position by -6 pixels (and the y position by 0)
8612     el.alignTo("other-el", "c-bl", [-6, 0]);
8613     </code></pre>
8614          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8615          * @param {String} position The position to align to.
8616          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8617          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8618          * @return {Roo.Element} this
8619          */
8620         alignTo : function(element, position, offsets, animate){
8621             var xy = this.getAlignToXY(element, position, offsets);
8622             this.setXY(xy, this.preanim(arguments, 3));
8623             return this;
8624         },
8625
8626         /**
8627          * Anchors an element to another element and realigns it when the window is resized.
8628          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8629          * @param {String} position The position to align to.
8630          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8631          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8632          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8633          * is a number, it is used as the buffer delay (defaults to 50ms).
8634          * @param {Function} callback The function to call after the animation finishes
8635          * @return {Roo.Element} this
8636          */
8637         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8638             var action = function(){
8639                 this.alignTo(el, alignment, offsets, animate);
8640                 Roo.callback(callback, this);
8641             };
8642             Roo.EventManager.onWindowResize(action, this);
8643             var tm = typeof monitorScroll;
8644             if(tm != 'undefined'){
8645                 Roo.EventManager.on(window, 'scroll', action, this,
8646                     {buffer: tm == 'number' ? monitorScroll : 50});
8647             }
8648             action.call(this); // align immediately
8649             return this;
8650         },
8651         /**
8652          * Clears any opacity settings from this element. Required in some cases for IE.
8653          * @return {Roo.Element} this
8654          */
8655         clearOpacity : function(){
8656             if (window.ActiveXObject) {
8657                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8658                     this.dom.style.filter = "";
8659                 }
8660             } else {
8661                 this.dom.style.opacity = "";
8662                 this.dom.style["-moz-opacity"] = "";
8663                 this.dom.style["-khtml-opacity"] = "";
8664             }
8665             return this;
8666         },
8667
8668         /**
8669          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8670          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8671          * @return {Roo.Element} this
8672          */
8673         hide : function(animate){
8674             this.setVisible(false, this.preanim(arguments, 0));
8675             return this;
8676         },
8677
8678         /**
8679         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8680         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8681          * @return {Roo.Element} this
8682          */
8683         show : function(animate){
8684             this.setVisible(true, this.preanim(arguments, 0));
8685             return this;
8686         },
8687
8688         /**
8689          * @private Test if size has a unit, otherwise appends the default
8690          */
8691         addUnits : function(size){
8692             return Roo.Element.addUnits(size, this.defaultUnit);
8693         },
8694
8695         /**
8696          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8697          * @return {Roo.Element} this
8698          */
8699         beginMeasure : function(){
8700             var el = this.dom;
8701             if(el.offsetWidth || el.offsetHeight){
8702                 return this; // offsets work already
8703             }
8704             var changed = [];
8705             var p = this.dom, b = document.body; // start with this element
8706             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8707                 var pe = Roo.get(p);
8708                 if(pe.getStyle('display') == 'none'){
8709                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8710                     p.style.visibility = "hidden";
8711                     p.style.display = "block";
8712                 }
8713                 p = p.parentNode;
8714             }
8715             this._measureChanged = changed;
8716             return this;
8717
8718         },
8719
8720         /**
8721          * Restores displays to before beginMeasure was called
8722          * @return {Roo.Element} this
8723          */
8724         endMeasure : function(){
8725             var changed = this._measureChanged;
8726             if(changed){
8727                 for(var i = 0, len = changed.length; i < len; i++) {
8728                     var r = changed[i];
8729                     r.el.style.visibility = r.visibility;
8730                     r.el.style.display = "none";
8731                 }
8732                 this._measureChanged = null;
8733             }
8734             return this;
8735         },
8736
8737         /**
8738         * Update the innerHTML of this element, optionally searching for and processing scripts
8739         * @param {String} html The new HTML
8740         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8741         * @param {Function} callback For async script loading you can be noticed when the update completes
8742         * @return {Roo.Element} this
8743          */
8744         update : function(html, loadScripts, callback){
8745             if(typeof html == "undefined"){
8746                 html = "";
8747             }
8748             if(loadScripts !== true){
8749                 this.dom.innerHTML = html;
8750                 if(typeof callback == "function"){
8751                     callback();
8752                 }
8753                 return this;
8754             }
8755             var id = Roo.id();
8756             var dom = this.dom;
8757
8758             html += '<span id="' + id + '"></span>';
8759
8760             E.onAvailable(id, function(){
8761                 var hd = document.getElementsByTagName("head")[0];
8762                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8763                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8764                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8765
8766                 var match;
8767                 while(match = re.exec(html)){
8768                     var attrs = match[1];
8769                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8770                     if(srcMatch && srcMatch[2]){
8771                        var s = document.createElement("script");
8772                        s.src = srcMatch[2];
8773                        var typeMatch = attrs.match(typeRe);
8774                        if(typeMatch && typeMatch[2]){
8775                            s.type = typeMatch[2];
8776                        }
8777                        hd.appendChild(s);
8778                     }else if(match[2] && match[2].length > 0){
8779                         if(window.execScript) {
8780                            window.execScript(match[2]);
8781                         } else {
8782                             /**
8783                              * eval:var:id
8784                              * eval:var:dom
8785                              * eval:var:html
8786                              * 
8787                              */
8788                            window.eval(match[2]);
8789                         }
8790                     }
8791                 }
8792                 var el = document.getElementById(id);
8793                 if(el){el.parentNode.removeChild(el);}
8794                 if(typeof callback == "function"){
8795                     callback();
8796                 }
8797             });
8798             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8799             return this;
8800         },
8801
8802         /**
8803          * Direct access to the UpdateManager update() method (takes the same parameters).
8804          * @param {String/Function} url The url for this request or a function to call to get the url
8805          * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
8806          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
8807          * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used url. If true, it will not store the url.
8808          * @return {Roo.Element} this
8809          */
8810         load : function(){
8811             var um = this.getUpdateManager();
8812             um.update.apply(um, arguments);
8813             return this;
8814         },
8815
8816         /**
8817         * Gets this element's UpdateManager
8818         * @return {Roo.UpdateManager} The UpdateManager
8819         */
8820         getUpdateManager : function(){
8821             if(!this.updateManager){
8822                 this.updateManager = new Roo.UpdateManager(this);
8823             }
8824             return this.updateManager;
8825         },
8826
8827         /**
8828          * Disables text selection for this element (normalized across browsers)
8829          * @return {Roo.Element} this
8830          */
8831         unselectable : function(){
8832             this.dom.unselectable = "on";
8833             this.swallowEvent("selectstart", true);
8834             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
8835             this.addClass("x-unselectable");
8836             return this;
8837         },
8838
8839         /**
8840         * Calculates the x, y to center this element on the screen
8841         * @return {Array} The x, y values [x, y]
8842         */
8843         getCenterXY : function(){
8844             return this.getAlignToXY(document, 'c-c');
8845         },
8846
8847         /**
8848         * Centers the Element in either the viewport, or another Element.
8849         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
8850         */
8851         center : function(centerIn){
8852             this.alignTo(centerIn || document, 'c-c');
8853             return this;
8854         },
8855
8856         /**
8857          * Tests various css rules/browsers to determine if this element uses a border box
8858          * @return {Boolean}
8859          */
8860         isBorderBox : function(){
8861             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
8862         },
8863
8864         /**
8865          * Return a box {x, y, width, height} that can be used to set another elements
8866          * size/location to match this element.
8867          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
8868          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
8869          * @return {Object} box An object in the format {x, y, width, height}
8870          */
8871         getBox : function(contentBox, local){
8872             var xy;
8873             if(!local){
8874                 xy = this.getXY();
8875             }else{
8876                 var left = parseInt(this.getStyle("left"), 10) || 0;
8877                 var top = parseInt(this.getStyle("top"), 10) || 0;
8878                 xy = [left, top];
8879             }
8880             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
8881             if(!contentBox){
8882                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
8883             }else{
8884                 var l = this.getBorderWidth("l")+this.getPadding("l");
8885                 var r = this.getBorderWidth("r")+this.getPadding("r");
8886                 var t = this.getBorderWidth("t")+this.getPadding("t");
8887                 var b = this.getBorderWidth("b")+this.getPadding("b");
8888                 bx = {x: xy[0]+l, y: xy[1]+t, 0: xy[0]+l, 1: xy[1]+t, width: w-(l+r), height: h-(t+b)};
8889             }
8890             bx.right = bx.x + bx.width;
8891             bx.bottom = bx.y + bx.height;
8892             return bx;
8893         },
8894
8895         /**
8896          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
8897          for more information about the sides.
8898          * @param {String} sides
8899          * @return {Number}
8900          */
8901         getFrameWidth : function(sides, onlyContentBox){
8902             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
8903         },
8904
8905         /**
8906          * Sets the element's box. Use getBox() on another element to get a box obj. If animate is true then width, height, x and y will be animated concurrently.
8907          * @param {Object} box The box to fill {x, y, width, height}
8908          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
8909          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8910          * @return {Roo.Element} this
8911          */
8912         setBox : function(box, adjust, animate){
8913             var w = box.width, h = box.height;
8914             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
8915                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8916                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8917             }
8918             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
8919             return this;
8920         },
8921
8922         /**
8923          * Forces the browser to repaint this element
8924          * @return {Roo.Element} this
8925          */
8926          repaint : function(){
8927             var dom = this.dom;
8928             this.addClass("x-repaint");
8929             setTimeout(function(){
8930                 Roo.get(dom).removeClass("x-repaint");
8931             }, 1);
8932             return this;
8933         },
8934
8935         /**
8936          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
8937          * then it returns the calculated width of the sides (see getPadding)
8938          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
8939          * @return {Object/Number}
8940          */
8941         getMargins : function(side){
8942             if(!side){
8943                 return {
8944                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
8945                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
8946                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
8947                     right: parseInt(this.getStyle("margin-right"), 10) || 0
8948                 };
8949             }else{
8950                 return this.addStyles(side, El.margins);
8951              }
8952         },
8953
8954         // private
8955         addStyles : function(sides, styles){
8956             var val = 0, v, w;
8957             for(var i = 0, len = sides.length; i < len; i++){
8958                 v = this.getStyle(styles[sides.charAt(i)]);
8959                 if(v){
8960                      w = parseInt(v, 10);
8961                      if(w){ val += w; }
8962                 }
8963             }
8964             return val;
8965         },
8966
8967         /**
8968          * Creates a proxy element of this element
8969          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
8970          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
8971          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
8972          * @return {Roo.Element} The new proxy element
8973          */
8974         createProxy : function(config, renderTo, matchBox){
8975             if(renderTo){
8976                 renderTo = Roo.getDom(renderTo);
8977             }else{
8978                 renderTo = document.body;
8979             }
8980             config = typeof config == "object" ?
8981                 config : {tag : "div", cls: config};
8982             var proxy = Roo.DomHelper.append(renderTo, config, true);
8983             if(matchBox){
8984                proxy.setBox(this.getBox());
8985             }
8986             return proxy;
8987         },
8988
8989         /**
8990          * Puts a mask over this element to disable user interaction. Requires core.css.
8991          * This method can only be applied to elements which accept child nodes.
8992          * @param {String} msg (optional) A message to display in the mask
8993          * @param {String} msgCls (optional) A css class to apply to the msg element
8994          * @return {Element} The mask  element
8995          */
8996         mask : function(msg, msgCls)
8997         {
8998             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
8999                 this.setStyle("position", "relative");
9000             }
9001             if(!this._mask){
9002                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9003             }
9004             this.addClass("x-masked");
9005             this._mask.setDisplayed(true);
9006             
9007             // we wander
9008             var z = 0;
9009             var dom = this.dom
9010             while (dom && dom.style) {
9011                 if (!isNaN(parseInt(dom.style.zIndex))) {
9012                     z = Math.max(z, parseInt(dom.style.zIndex));
9013                 }
9014                 dom = dom.parentNode;
9015             }
9016             // if we are masking the body - then it hides everything..
9017             if (this.dom == document.body) {
9018                 z = 1000000;
9019                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9020                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9021             }
9022            
9023             if(typeof msg == 'string'){
9024                 if(!this._maskMsg){
9025                     this._maskMsg = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask-msg", cn:{tag:'div'}}, true);
9026                 }
9027                 var mm = this._maskMsg;
9028                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9029                 if (mm.dom.firstChild) { // weird IE issue?
9030                     mm.dom.firstChild.innerHTML = msg;
9031                 }
9032                 mm.setDisplayed(true);
9033                 mm.center(this);
9034                 mm.setStyle('z-index', z + 102);
9035             }
9036             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9037                 this._mask.setHeight(this.getHeight());
9038             }
9039             this._mask.setStyle('z-index', z + 100);
9040             
9041             return this._mask;
9042         },
9043
9044         /**
9045          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9046          * it is cached for reuse.
9047          */
9048         unmask : function(removeEl){
9049             if(this._mask){
9050                 if(removeEl === true){
9051                     this._mask.remove();
9052                     delete this._mask;
9053                     if(this._maskMsg){
9054                         this._maskMsg.remove();
9055                         delete this._maskMsg;
9056                     }
9057                 }else{
9058                     this._mask.setDisplayed(false);
9059                     if(this._maskMsg){
9060                         this._maskMsg.setDisplayed(false);
9061                     }
9062                 }
9063             }
9064             this.removeClass("x-masked");
9065         },
9066
9067         /**
9068          * Returns true if this element is masked
9069          * @return {Boolean}
9070          */
9071         isMasked : function(){
9072             return this._mask && this._mask.isVisible();
9073         },
9074
9075         /**
9076          * Creates an iframe shim for this element to keep selects and other windowed objects from
9077          * showing through.
9078          * @return {Roo.Element} The new shim element
9079          */
9080         createShim : function(){
9081             var el = document.createElement('iframe');
9082             el.frameBorder = 'no';
9083             el.className = 'roo-shim';
9084             if(Roo.isIE && Roo.isSecure){
9085                 el.src = Roo.SSL_SECURE_URL;
9086             }
9087             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9088             shim.autoBoxAdjust = false;
9089             return shim;
9090         },
9091
9092         /**
9093          * Removes this element from the DOM and deletes it from the cache
9094          */
9095         remove : function(){
9096             if(this.dom.parentNode){
9097                 this.dom.parentNode.removeChild(this.dom);
9098             }
9099             delete El.cache[this.dom.id];
9100         },
9101
9102         /**
9103          * Sets up event handlers to add and remove a css class when the mouse is over this element
9104          * @param {String} className
9105          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9106          * mouseout events for children elements
9107          * @return {Roo.Element} this
9108          */
9109         addClassOnOver : function(className, preventFlicker){
9110             this.on("mouseover", function(){
9111                 Roo.fly(this, '_internal').addClass(className);
9112             }, this.dom);
9113             var removeFn = function(e){
9114                 if(preventFlicker !== true || !e.within(this, true)){
9115                     Roo.fly(this, '_internal').removeClass(className);
9116                 }
9117             };
9118             this.on("mouseout", removeFn, this.dom);
9119             return this;
9120         },
9121
9122         /**
9123          * Sets up event handlers to add and remove a css class when this element has the focus
9124          * @param {String} className
9125          * @return {Roo.Element} this
9126          */
9127         addClassOnFocus : function(className){
9128             this.on("focus", function(){
9129                 Roo.fly(this, '_internal').addClass(className);
9130             }, this.dom);
9131             this.on("blur", function(){
9132                 Roo.fly(this, '_internal').removeClass(className);
9133             }, this.dom);
9134             return this;
9135         },
9136         /**
9137          * Sets up event handlers to add and remove a css class when the mouse is down and then up on this element (a click effect)
9138          * @param {String} className
9139          * @return {Roo.Element} this
9140          */
9141         addClassOnClick : function(className){
9142             var dom = this.dom;
9143             this.on("mousedown", function(){
9144                 Roo.fly(dom, '_internal').addClass(className);
9145                 var d = Roo.get(document);
9146                 var fn = function(){
9147                     Roo.fly(dom, '_internal').removeClass(className);
9148                     d.removeListener("mouseup", fn);
9149                 };
9150                 d.on("mouseup", fn);
9151             });
9152             return this;
9153         },
9154
9155         /**
9156          * Stops the specified event from bubbling and optionally prevents the default action
9157          * @param {String} eventName
9158          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9159          * @return {Roo.Element} this
9160          */
9161         swallowEvent : function(eventName, preventDefault){
9162             var fn = function(e){
9163                 e.stopPropagation();
9164                 if(preventDefault){
9165                     e.preventDefault();
9166                 }
9167             };
9168             if(eventName instanceof Array){
9169                 for(var i = 0, len = eventName.length; i < len; i++){
9170                      this.on(eventName[i], fn);
9171                 }
9172                 return this;
9173             }
9174             this.on(eventName, fn);
9175             return this;
9176         },
9177
9178         /**
9179          * @private
9180          */
9181       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9182
9183         /**
9184          * Sizes this element to its parent element's dimensions performing
9185          * neccessary box adjustments.
9186          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9187          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9188          * @return {Roo.Element} this
9189          */
9190         fitToParent : function(monitorResize, targetParent) {
9191           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9192           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9193           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9194             return;
9195           }
9196           var p = Roo.get(targetParent || this.dom.parentNode);
9197           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9198           if (monitorResize === true) {
9199             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9200             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9201           }
9202           return this;
9203         },
9204
9205         /**
9206          * Gets the next sibling, skipping text nodes
9207          * @return {HTMLElement} The next sibling or null
9208          */
9209         getNextSibling : function(){
9210             var n = this.dom.nextSibling;
9211             while(n && n.nodeType != 1){
9212                 n = n.nextSibling;
9213             }
9214             return n;
9215         },
9216
9217         /**
9218          * Gets the previous sibling, skipping text nodes
9219          * @return {HTMLElement} The previous sibling or null
9220          */
9221         getPrevSibling : function(){
9222             var n = this.dom.previousSibling;
9223             while(n && n.nodeType != 1){
9224                 n = n.previousSibling;
9225             }
9226             return n;
9227         },
9228
9229
9230         /**
9231          * Appends the passed element(s) to this element
9232          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9233          * @return {Roo.Element} this
9234          */
9235         appendChild: function(el){
9236             el = Roo.get(el);
9237             el.appendTo(this);
9238             return this;
9239         },
9240
9241         /**
9242          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9243          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9244          * automatically generated with the specified attributes.
9245          * @param {HTMLElement} insertBefore (optional) a child element of this element
9246          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9247          * @return {Roo.Element} The new child element
9248          */
9249         createChild: function(config, insertBefore, returnDom){
9250             config = config || {tag:'div'};
9251             if(insertBefore){
9252                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9253             }
9254             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9255         },
9256
9257         /**
9258          * Appends this element to the passed element
9259          * @param {String/HTMLElement/Element} el The new parent element
9260          * @return {Roo.Element} this
9261          */
9262         appendTo: function(el){
9263             el = Roo.getDom(el);
9264             el.appendChild(this.dom);
9265             return this;
9266         },
9267
9268         /**
9269          * Inserts this element before the passed element in the DOM
9270          * @param {String/HTMLElement/Element} el The element to insert before
9271          * @return {Roo.Element} this
9272          */
9273         insertBefore: function(el){
9274             el = Roo.getDom(el);
9275             el.parentNode.insertBefore(this.dom, el);
9276             return this;
9277         },
9278
9279         /**
9280          * Inserts this element after the passed element in the DOM
9281          * @param {String/HTMLElement/Element} el The element to insert after
9282          * @return {Roo.Element} this
9283          */
9284         insertAfter: function(el){
9285             el = Roo.getDom(el);
9286             el.parentNode.insertBefore(this.dom, el.nextSibling);
9287             return this;
9288         },
9289
9290         /**
9291          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9292          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9293          * @return {Roo.Element} The new child
9294          */
9295         insertFirst: function(el, returnDom){
9296             el = el || {};
9297             if(typeof el == 'object' && !el.nodeType){ // dh config
9298                 return this.createChild(el, this.dom.firstChild, returnDom);
9299             }else{
9300                 el = Roo.getDom(el);
9301                 this.dom.insertBefore(el, this.dom.firstChild);
9302                 return !returnDom ? Roo.get(el) : el;
9303             }
9304         },
9305
9306         /**
9307          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9308          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9309          * @param {String} where (optional) 'before' or 'after' defaults to before
9310          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9311          * @return {Roo.Element} the inserted Element
9312          */
9313         insertSibling: function(el, where, returnDom){
9314             where = where ? where.toLowerCase() : 'before';
9315             el = el || {};
9316             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9317
9318             if(typeof el == 'object' && !el.nodeType){ // dh config
9319                 if(where == 'after' && !this.dom.nextSibling){
9320                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9321                 }else{
9322                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9323                 }
9324
9325             }else{
9326                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9327                             where == 'before' ? this.dom : this.dom.nextSibling);
9328                 if(!returnDom){
9329                     rt = Roo.get(rt);
9330                 }
9331             }
9332             return rt;
9333         },
9334
9335         /**
9336          * Creates and wraps this element with another element
9337          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9338          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9339          * @return {HTMLElement/Element} The newly created wrapper element
9340          */
9341         wrap: function(config, returnDom){
9342             if(!config){
9343                 config = {tag: "div"};
9344             }
9345             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9346             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9347             return newEl;
9348         },
9349
9350         /**
9351          * Replaces the passed element with this element
9352          * @param {String/HTMLElement/Element} el The element to replace
9353          * @return {Roo.Element} this
9354          */
9355         replace: function(el){
9356             el = Roo.get(el);
9357             this.insertBefore(el);
9358             el.remove();
9359             return this;
9360         },
9361
9362         /**
9363          * Inserts an html fragment into this element
9364          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9365          * @param {String} html The HTML fragment
9366          * @param {Boolean} returnEl True to return an Roo.Element
9367          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9368          */
9369         insertHtml : function(where, html, returnEl){
9370             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9371             return returnEl ? Roo.get(el) : el;
9372         },
9373
9374         /**
9375          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9376          * @param {Object} o The object with the attributes
9377          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9378          * @return {Roo.Element} this
9379          */
9380         set : function(o, useSet){
9381             var el = this.dom;
9382             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9383             for(var attr in o){
9384                 if(attr == "style" || typeof o[attr] == "function") continue;
9385                 if(attr=="cls"){
9386                     el.className = o["cls"];
9387                 }else{
9388                     if(useSet) el.setAttribute(attr, o[attr]);
9389                     else el[attr] = o[attr];
9390                 }
9391             }
9392             if(o.style){
9393                 Roo.DomHelper.applyStyles(el, o.style);
9394             }
9395             return this;
9396         },
9397
9398         /**
9399          * Convenience method for constructing a KeyMap
9400          * @param {Number/Array/Object/String} key Either a string with the keys to listen for, the numeric key code, array of key codes or an object with the following options:
9401          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9402          * @param {Function} fn The function to call
9403          * @param {Object} scope (optional) The scope of the function
9404          * @return {Roo.KeyMap} The KeyMap created
9405          */
9406         addKeyListener : function(key, fn, scope){
9407             var config;
9408             if(typeof key != "object" || key instanceof Array){
9409                 config = {
9410                     key: key,
9411                     fn: fn,
9412                     scope: scope
9413                 };
9414             }else{
9415                 config = {
9416                     key : key.key,
9417                     shift : key.shift,
9418                     ctrl : key.ctrl,
9419                     alt : key.alt,
9420                     fn: fn,
9421                     scope: scope
9422                 };
9423             }
9424             return new Roo.KeyMap(this, config);
9425         },
9426
9427         /**
9428          * Creates a KeyMap for this element
9429          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9430          * @return {Roo.KeyMap} The KeyMap created
9431          */
9432         addKeyMap : function(config){
9433             return new Roo.KeyMap(this, config);
9434         },
9435
9436         /**
9437          * Returns true if this element is scrollable.
9438          * @return {Boolean}
9439          */
9440          isScrollable : function(){
9441             var dom = this.dom;
9442             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9443         },
9444
9445         /**
9446          * Scrolls this element the specified scroll point. It does NOT do bounds checking so if you scroll to a weird value it will try to do it. For auto bounds checking, use scroll().
9447          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9448          * @param {Number} value The new scroll value
9449          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9450          * @return {Element} this
9451          */
9452
9453         scrollTo : function(side, value, animate){
9454             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9455             if(!animate || !A){
9456                 this.dom[prop] = value;
9457             }else{
9458                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9459                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9460             }
9461             return this;
9462         },
9463
9464         /**
9465          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9466          * within this element's scrollable range.
9467          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9468          * @param {Number} distance How far to scroll the element in pixels
9469          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9470          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9471          * was scrolled as far as it could go.
9472          */
9473          scroll : function(direction, distance, animate){
9474              if(!this.isScrollable()){
9475                  return;
9476              }
9477              var el = this.dom;
9478              var l = el.scrollLeft, t = el.scrollTop;
9479              var w = el.scrollWidth, h = el.scrollHeight;
9480              var cw = el.clientWidth, ch = el.clientHeight;
9481              direction = direction.toLowerCase();
9482              var scrolled = false;
9483              var a = this.preanim(arguments, 2);
9484              switch(direction){
9485                  case "l":
9486                  case "left":
9487                      if(w - l > cw){
9488                          var v = Math.min(l + distance, w-cw);
9489                          this.scrollTo("left", v, a);
9490                          scrolled = true;
9491                      }
9492                      break;
9493                 case "r":
9494                 case "right":
9495                      if(l > 0){
9496                          var v = Math.max(l - distance, 0);
9497                          this.scrollTo("left", v, a);
9498                          scrolled = true;
9499                      }
9500                      break;
9501                 case "t":
9502                 case "top":
9503                 case "up":
9504                      if(t > 0){
9505                          var v = Math.max(t - distance, 0);
9506                          this.scrollTo("top", v, a);
9507                          scrolled = true;
9508                      }
9509                      break;
9510                 case "b":
9511                 case "bottom":
9512                 case "down":
9513                      if(h - t > ch){
9514                          var v = Math.min(t + distance, h-ch);
9515                          this.scrollTo("top", v, a);
9516                          scrolled = true;
9517                      }
9518                      break;
9519              }
9520              return scrolled;
9521         },
9522
9523         /**
9524          * Translates the passed page coordinates into left/top css values for this element
9525          * @param {Number/Array} x The page x or an array containing [x, y]
9526          * @param {Number} y The page y
9527          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9528          */
9529         translatePoints : function(x, y){
9530             if(typeof x == 'object' || x instanceof Array){
9531                 y = x[1]; x = x[0];
9532             }
9533             var p = this.getStyle('position');
9534             var o = this.getXY();
9535
9536             var l = parseInt(this.getStyle('left'), 10);
9537             var t = parseInt(this.getStyle('top'), 10);
9538
9539             if(isNaN(l)){
9540                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9541             }
9542             if(isNaN(t)){
9543                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9544             }
9545
9546             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9547         },
9548
9549         /**
9550          * Returns the current scroll position of the element.
9551          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9552          */
9553         getScroll : function(){
9554             var d = this.dom, doc = document;
9555             if(d == doc || d == doc.body){
9556                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9557                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9558                 return {left: l, top: t};
9559             }else{
9560                 return {left: d.scrollLeft, top: d.scrollTop};
9561             }
9562         },
9563
9564         /**
9565          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9566          * are convert to standard 6 digit hex color.
9567          * @param {String} attr The css attribute
9568          * @param {String} defaultValue The default value to use when a valid color isn't found
9569          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9570          * YUI color anims.
9571          */
9572         getColor : function(attr, defaultValue, prefix){
9573             var v = this.getStyle(attr);
9574             if(!v || v == "transparent" || v == "inherit") {
9575                 return defaultValue;
9576             }
9577             var color = typeof prefix == "undefined" ? "#" : prefix;
9578             if(v.substr(0, 4) == "rgb("){
9579                 var rvs = v.slice(4, v.length -1).split(",");
9580                 for(var i = 0; i < 3; i++){
9581                     var h = parseInt(rvs[i]).toString(16);
9582                     if(h < 16){
9583                         h = "0" + h;
9584                     }
9585                     color += h;
9586                 }
9587             } else {
9588                 if(v.substr(0, 1) == "#"){
9589                     if(v.length == 4) {
9590                         for(var i = 1; i < 4; i++){
9591                             var c = v.charAt(i);
9592                             color +=  c + c;
9593                         }
9594                     }else if(v.length == 7){
9595                         color += v.substr(1);
9596                     }
9597                 }
9598             }
9599             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9600         },
9601
9602         /**
9603          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9604          * gradient background, rounded corners and a 4-way shadow.
9605          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9606          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9607          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9608          * @return {Roo.Element} this
9609          */
9610         boxWrap : function(cls){
9611             cls = cls || 'x-box';
9612             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9613             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9614             return el;
9615         },
9616
9617         /**
9618          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9619          * @param {String} namespace The namespace in which to look for the attribute
9620          * @param {String} name The attribute name
9621          * @return {String} The attribute value
9622          */
9623         getAttributeNS : Roo.isIE ? function(ns, name){
9624             var d = this.dom;
9625             var type = typeof d[ns+":"+name];
9626             if(type != 'undefined' && type != 'unknown'){
9627                 return d[ns+":"+name];
9628             }
9629             return d[name];
9630         } : function(ns, name){
9631             var d = this.dom;
9632             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9633         },
9634         
9635         
9636         /**
9637          * Sets or Returns the value the dom attribute value
9638          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9639          * @param {String} value (optional) The value to set the attribute to
9640          * @return {String} The attribute value
9641          */
9642         attr : function(name){
9643             if (arguments.length > 1) {
9644                 this.dom.setAttribute(name, arguments[1]);
9645                 return arguments[1];
9646             }
9647             if (typeof(name) == 'object') {
9648                 for(var i in name) {
9649                     this.attr(i, name[i]);
9650                 }
9651                 return name;
9652             }
9653             
9654             
9655             if (!this.dom.hasAttribute(name)) {
9656                 return undefined;
9657             }
9658             return this.dom.getAttribute(name);
9659         }
9660         
9661         
9662         
9663     };
9664
9665     var ep = El.prototype;
9666
9667     /**
9668      * Appends an event handler (Shorthand for addListener)
9669      * @param {String}   eventName     The type of event to append
9670      * @param {Function} fn        The method the event invokes
9671      * @param {Object} scope       (optional) The scope (this object) of the fn
9672      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9673      * @method
9674      */
9675     ep.on = ep.addListener;
9676         // backwards compat
9677     ep.mon = ep.addListener;
9678
9679     /**
9680      * Removes an event handler from this element (shorthand for removeListener)
9681      * @param {String} eventName the type of event to remove
9682      * @param {Function} fn the method the event invokes
9683      * @return {Roo.Element} this
9684      * @method
9685      */
9686     ep.un = ep.removeListener;
9687
9688     /**
9689      * true to automatically adjust width and height settings for box-model issues (default to true)
9690      */
9691     ep.autoBoxAdjust = true;
9692
9693     // private
9694     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9695
9696     // private
9697     El.addUnits = function(v, defaultUnit){
9698         if(v === "" || v == "auto"){
9699             return v;
9700         }
9701         if(v === undefined){
9702             return '';
9703         }
9704         if(typeof v == "number" || !El.unitPattern.test(v)){
9705             return v + (defaultUnit || 'px');
9706         }
9707         return v;
9708     };
9709
9710     // special markup used throughout Roo when box wrapping elements
9711     El.boxMarkup = '<div class="{0}-tl"><div class="{0}-tr"><div class="{0}-tc"></div></div></div><div class="{0}-ml"><div class="{0}-mr"><div class="{0}-mc"></div></div></div><div class="{0}-bl"><div class="{0}-br"><div class="{0}-bc"></div></div></div>';
9712     /**
9713      * Visibility mode constant - Use visibility to hide element
9714      * @static
9715      * @type Number
9716      */
9717     El.VISIBILITY = 1;
9718     /**
9719      * Visibility mode constant - Use display to hide element
9720      * @static
9721      * @type Number
9722      */
9723     El.DISPLAY = 2;
9724
9725     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9726     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9727     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9728
9729
9730
9731     /**
9732      * @private
9733      */
9734     El.cache = {};
9735
9736     var docEl;
9737
9738     /**
9739      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9740      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9741      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9742      * @return {Element} The Element object
9743      * @static
9744      */
9745     El.get = function(el){
9746         var ex, elm, id;
9747         if(!el){ return null; }
9748         if(typeof el == "string"){ // element id
9749             if(!(elm = document.getElementById(el))){
9750                 return null;
9751             }
9752             if(ex = El.cache[el]){
9753                 ex.dom = elm;
9754             }else{
9755                 ex = El.cache[el] = new El(elm);
9756             }
9757             return ex;
9758         }else if(el.tagName){ // dom element
9759             if(!(id = el.id)){
9760                 id = Roo.id(el);
9761             }
9762             if(ex = El.cache[id]){
9763                 ex.dom = el;
9764             }else{
9765                 ex = El.cache[id] = new El(el);
9766             }
9767             return ex;
9768         }else if(el instanceof El){
9769             if(el != docEl){
9770                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9771                                                               // catch case where it hasn't been appended
9772                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9773             }
9774             return el;
9775         }else if(el.isComposite){
9776             return el;
9777         }else if(el instanceof Array){
9778             return El.select(el);
9779         }else if(el == document){
9780             // create a bogus element object representing the document object
9781             if(!docEl){
9782                 var f = function(){};
9783                 f.prototype = El.prototype;
9784                 docEl = new f();
9785                 docEl.dom = document;
9786             }
9787             return docEl;
9788         }
9789         return null;
9790     };
9791
9792     // private
9793     El.uncache = function(el){
9794         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
9795             if(a[i]){
9796                 delete El.cache[a[i].id || a[i]];
9797             }
9798         }
9799     };
9800
9801     // private
9802     // Garbage collection - uncache elements/purge listeners on orphaned elements
9803     // so we don't hold a reference and cause the browser to retain them
9804     El.garbageCollect = function(){
9805         if(!Roo.enableGarbageCollector){
9806             clearInterval(El.collectorThread);
9807             return;
9808         }
9809         for(var eid in El.cache){
9810             var el = El.cache[eid], d = el.dom;
9811             // -------------------------------------------------------
9812             // Determining what is garbage:
9813             // -------------------------------------------------------
9814             // !d
9815             // dom node is null, definitely garbage
9816             // -------------------------------------------------------
9817             // !d.parentNode
9818             // no parentNode == direct orphan, definitely garbage
9819             // -------------------------------------------------------
9820             // !d.offsetParent && !document.getElementById(eid)
9821             // display none elements have no offsetParent so we will
9822             // also try to look it up by it's id. However, check
9823             // offsetParent first so we don't do unneeded lookups.
9824             // This enables collection of elements that are not orphans
9825             // directly, but somewhere up the line they have an orphan
9826             // parent.
9827             // -------------------------------------------------------
9828             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
9829                 delete El.cache[eid];
9830                 if(d && Roo.enableListenerCollection){
9831                     E.purgeElement(d);
9832                 }
9833             }
9834         }
9835     }
9836     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
9837
9838
9839     // dom is optional
9840     El.Flyweight = function(dom){
9841         this.dom = dom;
9842     };
9843     El.Flyweight.prototype = El.prototype;
9844
9845     El._flyweights = {};
9846     /**
9847      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9848      * the dom node can be overwritten by other code.
9849      * @param {String/HTMLElement} el The dom node or id
9850      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9851      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9852      * @static
9853      * @return {Element} The shared Element object
9854      */
9855     El.fly = function(el, named){
9856         named = named || '_global';
9857         el = Roo.getDom(el);
9858         if(!el){
9859             return null;
9860         }
9861         if(!El._flyweights[named]){
9862             El._flyweights[named] = new El.Flyweight();
9863         }
9864         El._flyweights[named].dom = el;
9865         return El._flyweights[named];
9866     };
9867
9868     /**
9869      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9870      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9871      * Shorthand of {@link Roo.Element#get}
9872      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9873      * @return {Element} The Element object
9874      * @member Roo
9875      * @method get
9876      */
9877     Roo.get = El.get;
9878     /**
9879      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9880      * the dom node can be overwritten by other code.
9881      * Shorthand of {@link Roo.Element#fly}
9882      * @param {String/HTMLElement} el The dom node or id
9883      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9884      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9885      * @static
9886      * @return {Element} The shared Element object
9887      * @member Roo
9888      * @method fly
9889      */
9890     Roo.fly = El.fly;
9891
9892     // speedy lookup for elements never to box adjust
9893     var noBoxAdjust = Roo.isStrict ? {
9894         select:1
9895     } : {
9896         input:1, select:1, textarea:1
9897     };
9898     if(Roo.isIE || Roo.isGecko){
9899         noBoxAdjust['button'] = 1;
9900     }
9901
9902
9903     Roo.EventManager.on(window, 'unload', function(){
9904         delete El.cache;
9905         delete El._flyweights;
9906     });
9907 })();
9908
9909
9910
9911
9912 if(Roo.DomQuery){
9913     Roo.Element.selectorFunction = Roo.DomQuery.select;
9914 }
9915
9916 Roo.Element.select = function(selector, unique, root){
9917     var els;
9918     if(typeof selector == "string"){
9919         els = Roo.Element.selectorFunction(selector, root);
9920     }else if(selector.length !== undefined){
9921         els = selector;
9922     }else{
9923         throw "Invalid selector";
9924     }
9925     if(unique === true){
9926         return new Roo.CompositeElement(els);
9927     }else{
9928         return new Roo.CompositeElementLite(els);
9929     }
9930 };
9931 /**
9932  * Selects elements based on the passed CSS selector to enable working on them as 1.
9933  * @param {String/Array} selector The CSS selector or an array of elements
9934  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
9935  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
9936  * @return {CompositeElementLite/CompositeElement}
9937  * @member Roo
9938  * @method select
9939  */
9940 Roo.select = Roo.Element.select;
9941
9942
9943
9944
9945
9946
9947
9948
9949
9950
9951
9952
9953
9954
9955 /*
9956  * Based on:
9957  * Ext JS Library 1.1.1
9958  * Copyright(c) 2006-2007, Ext JS, LLC.
9959  *
9960  * Originally Released Under LGPL - original licence link has changed is not relivant.
9961  *
9962  * Fork - LGPL
9963  * <script type="text/javascript">
9964  */
9965
9966
9967
9968 //Notifies Element that fx methods are available
9969 Roo.enableFx = true;
9970
9971 /**
9972  * @class Roo.Fx
9973  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
9974  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
9975  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
9976  * Element effects to work.</p><br/>
9977  *
9978  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
9979  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
9980  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
9981  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
9982  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
9983  * expected results and should be done with care.</p><br/>
9984  *
9985  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
9986  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
9987 <pre>
9988 Value  Description
9989 -----  -----------------------------
9990 tl     The top left corner
9991 t      The center of the top edge
9992 tr     The top right corner
9993 l      The center of the left edge
9994 r      The center of the right edge
9995 bl     The bottom left corner
9996 b      The center of the bottom edge
9997 br     The bottom right corner
9998 </pre>
9999  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10000  * below are common options that can be passed to any Fx method.</b>
10001  * @cfg {Function} callback A function called when the effect is finished
10002  * @cfg {Object} scope The scope of the effect function
10003  * @cfg {String} easing A valid Easing value for the effect
10004  * @cfg {String} afterCls A css class to apply after the effect
10005  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10006  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10007  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10008  * effects that end with the element being visually hidden, ignored otherwise)
10009  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10010  * a function which returns such a specification that will be applied to the Element after the effect finishes
10011  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10012  * @cfg {Boolean} concurrent Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence
10013  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10014  */
10015 Roo.Fx = {
10016         /**
10017          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10018          * origin for the slide effect.  This function automatically handles wrapping the element with
10019          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10020          * Usage:
10021          *<pre><code>
10022 // default: slide the element in from the top
10023 el.slideIn();
10024
10025 // custom: slide the element in from the right with a 2-second duration
10026 el.slideIn('r', { duration: 2 });
10027
10028 // common config options shown with default values
10029 el.slideIn('t', {
10030     easing: 'easeOut',
10031     duration: .5
10032 });
10033 </code></pre>
10034          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10035          * @param {Object} options (optional) Object literal with any of the Fx config options
10036          * @return {Roo.Element} The Element
10037          */
10038     slideIn : function(anchor, o){
10039         var el = this.getFxEl();
10040         o = o || {};
10041
10042         el.queueFx(o, function(){
10043
10044             anchor = anchor || "t";
10045
10046             // fix display to visibility
10047             this.fixDisplay();
10048
10049             // restore values after effect
10050             var r = this.getFxRestore();
10051             var b = this.getBox();
10052             // fixed size for slide
10053             this.setSize(b);
10054
10055             // wrap if needed
10056             var wrap = this.fxWrap(r.pos, o, "hidden");
10057
10058             var st = this.dom.style;
10059             st.visibility = "visible";
10060             st.position = "absolute";
10061
10062             // clear out temp styles after slide and unwrap
10063             var after = function(){
10064                 el.fxUnwrap(wrap, r.pos, o);
10065                 st.width = r.width;
10066                 st.height = r.height;
10067                 el.afterFx(o);
10068             };
10069             // time to calc the positions
10070             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10071
10072             switch(anchor.toLowerCase()){
10073                 case "t":
10074                     wrap.setSize(b.width, 0);
10075                     st.left = st.bottom = "0";
10076                     a = {height: bh};
10077                 break;
10078                 case "l":
10079                     wrap.setSize(0, b.height);
10080                     st.right = st.top = "0";
10081                     a = {width: bw};
10082                 break;
10083                 case "r":
10084                     wrap.setSize(0, b.height);
10085                     wrap.setX(b.right);
10086                     st.left = st.top = "0";
10087                     a = {width: bw, points: pt};
10088                 break;
10089                 case "b":
10090                     wrap.setSize(b.width, 0);
10091                     wrap.setY(b.bottom);
10092                     st.left = st.top = "0";
10093                     a = {height: bh, points: pt};
10094                 break;
10095                 case "tl":
10096                     wrap.setSize(0, 0);
10097                     st.right = st.bottom = "0";
10098                     a = {width: bw, height: bh};
10099                 break;
10100                 case "bl":
10101                     wrap.setSize(0, 0);
10102                     wrap.setY(b.y+b.height);
10103                     st.right = st.top = "0";
10104                     a = {width: bw, height: bh, points: pt};
10105                 break;
10106                 case "br":
10107                     wrap.setSize(0, 0);
10108                     wrap.setXY([b.right, b.bottom]);
10109                     st.left = st.top = "0";
10110                     a = {width: bw, height: bh, points: pt};
10111                 break;
10112                 case "tr":
10113                     wrap.setSize(0, 0);
10114                     wrap.setX(b.x+b.width);
10115                     st.left = st.bottom = "0";
10116                     a = {width: bw, height: bh, points: pt};
10117                 break;
10118             }
10119             this.dom.style.visibility = "visible";
10120             wrap.show();
10121
10122             arguments.callee.anim = wrap.fxanim(a,
10123                 o,
10124                 'motion',
10125                 .5,
10126                 'easeOut', after);
10127         });
10128         return this;
10129     },
10130     
10131         /**
10132          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10133          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10134          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10135          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10136          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10137          * Usage:
10138          *<pre><code>
10139 // default: slide the element out to the top
10140 el.slideOut();
10141
10142 // custom: slide the element out to the right with a 2-second duration
10143 el.slideOut('r', { duration: 2 });
10144
10145 // common config options shown with default values
10146 el.slideOut('t', {
10147     easing: 'easeOut',
10148     duration: .5,
10149     remove: false,
10150     useDisplay: false
10151 });
10152 </code></pre>
10153          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10154          * @param {Object} options (optional) Object literal with any of the Fx config options
10155          * @return {Roo.Element} The Element
10156          */
10157     slideOut : function(anchor, o){
10158         var el = this.getFxEl();
10159         o = o || {};
10160
10161         el.queueFx(o, function(){
10162
10163             anchor = anchor || "t";
10164
10165             // restore values after effect
10166             var r = this.getFxRestore();
10167             
10168             var b = this.getBox();
10169             // fixed size for slide
10170             this.setSize(b);
10171
10172             // wrap if needed
10173             var wrap = this.fxWrap(r.pos, o, "visible");
10174
10175             var st = this.dom.style;
10176             st.visibility = "visible";
10177             st.position = "absolute";
10178
10179             wrap.setSize(b);
10180
10181             var after = function(){
10182                 if(o.useDisplay){
10183                     el.setDisplayed(false);
10184                 }else{
10185                     el.hide();
10186                 }
10187
10188                 el.fxUnwrap(wrap, r.pos, o);
10189
10190                 st.width = r.width;
10191                 st.height = r.height;
10192
10193                 el.afterFx(o);
10194             };
10195
10196             var a, zero = {to: 0};
10197             switch(anchor.toLowerCase()){
10198                 case "t":
10199                     st.left = st.bottom = "0";
10200                     a = {height: zero};
10201                 break;
10202                 case "l":
10203                     st.right = st.top = "0";
10204                     a = {width: zero};
10205                 break;
10206                 case "r":
10207                     st.left = st.top = "0";
10208                     a = {width: zero, points: {to:[b.right, b.y]}};
10209                 break;
10210                 case "b":
10211                     st.left = st.top = "0";
10212                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10213                 break;
10214                 case "tl":
10215                     st.right = st.bottom = "0";
10216                     a = {width: zero, height: zero};
10217                 break;
10218                 case "bl":
10219                     st.right = st.top = "0";
10220                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10221                 break;
10222                 case "br":
10223                     st.left = st.top = "0";
10224                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10225                 break;
10226                 case "tr":
10227                     st.left = st.bottom = "0";
10228                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10229                 break;
10230             }
10231
10232             arguments.callee.anim = wrap.fxanim(a,
10233                 o,
10234                 'motion',
10235                 .5,
10236                 "easeOut", after);
10237         });
10238         return this;
10239     },
10240
10241         /**
10242          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10243          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10244          * The element must be removed from the DOM using the 'remove' config option if desired.
10245          * Usage:
10246          *<pre><code>
10247 // default
10248 el.puff();
10249
10250 // common config options shown with default values
10251 el.puff({
10252     easing: 'easeOut',
10253     duration: .5,
10254     remove: false,
10255     useDisplay: false
10256 });
10257 </code></pre>
10258          * @param {Object} options (optional) Object literal with any of the Fx config options
10259          * @return {Roo.Element} The Element
10260          */
10261     puff : function(o){
10262         var el = this.getFxEl();
10263         o = o || {};
10264
10265         el.queueFx(o, function(){
10266             this.clearOpacity();
10267             this.show();
10268
10269             // restore values after effect
10270             var r = this.getFxRestore();
10271             var st = this.dom.style;
10272
10273             var after = function(){
10274                 if(o.useDisplay){
10275                     el.setDisplayed(false);
10276                 }else{
10277                     el.hide();
10278                 }
10279
10280                 el.clearOpacity();
10281
10282                 el.setPositioning(r.pos);
10283                 st.width = r.width;
10284                 st.height = r.height;
10285                 st.fontSize = '';
10286                 el.afterFx(o);
10287             };
10288
10289             var width = this.getWidth();
10290             var height = this.getHeight();
10291
10292             arguments.callee.anim = this.fxanim({
10293                     width : {to: this.adjustWidth(width * 2)},
10294                     height : {to: this.adjustHeight(height * 2)},
10295                     points : {by: [-(width * .5), -(height * .5)]},
10296                     opacity : {to: 0},
10297                     fontSize: {to:200, unit: "%"}
10298                 },
10299                 o,
10300                 'motion',
10301                 .5,
10302                 "easeOut", after);
10303         });
10304         return this;
10305     },
10306
10307         /**
10308          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10309          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10310          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10311          * Usage:
10312          *<pre><code>
10313 // default
10314 el.switchOff();
10315
10316 // all config options shown with default values
10317 el.switchOff({
10318     easing: 'easeIn',
10319     duration: .3,
10320     remove: false,
10321     useDisplay: false
10322 });
10323 </code></pre>
10324          * @param {Object} options (optional) Object literal with any of the Fx config options
10325          * @return {Roo.Element} The Element
10326          */
10327     switchOff : function(o){
10328         var el = this.getFxEl();
10329         o = o || {};
10330
10331         el.queueFx(o, function(){
10332             this.clearOpacity();
10333             this.clip();
10334
10335             // restore values after effect
10336             var r = this.getFxRestore();
10337             var st = this.dom.style;
10338
10339             var after = function(){
10340                 if(o.useDisplay){
10341                     el.setDisplayed(false);
10342                 }else{
10343                     el.hide();
10344                 }
10345
10346                 el.clearOpacity();
10347                 el.setPositioning(r.pos);
10348                 st.width = r.width;
10349                 st.height = r.height;
10350
10351                 el.afterFx(o);
10352             };
10353
10354             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10355                 this.clearOpacity();
10356                 (function(){
10357                     this.fxanim({
10358                         height:{to:1},
10359                         points:{by:[0, this.getHeight() * .5]}
10360                     }, o, 'motion', 0.3, 'easeIn', after);
10361                 }).defer(100, this);
10362             });
10363         });
10364         return this;
10365     },
10366
10367     /**
10368      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10369      * changed using the "attr" config option) and then fading back to the original color. If no original
10370      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10371      * Usage:
10372 <pre><code>
10373 // default: highlight background to yellow
10374 el.highlight();
10375
10376 // custom: highlight foreground text to blue for 2 seconds
10377 el.highlight("0000ff", { attr: 'color', duration: 2 });
10378
10379 // common config options shown with default values
10380 el.highlight("ffff9c", {
10381     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10382     endColor: (current color) or "ffffff",
10383     easing: 'easeIn',
10384     duration: 1
10385 });
10386 </code></pre>
10387      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10388      * @param {Object} options (optional) Object literal with any of the Fx config options
10389      * @return {Roo.Element} The Element
10390      */ 
10391     highlight : function(color, o){
10392         var el = this.getFxEl();
10393         o = o || {};
10394
10395         el.queueFx(o, function(){
10396             color = color || "ffff9c";
10397             attr = o.attr || "backgroundColor";
10398
10399             this.clearOpacity();
10400             this.show();
10401
10402             var origColor = this.getColor(attr);
10403             var restoreColor = this.dom.style[attr];
10404             endColor = (o.endColor || origColor) || "ffffff";
10405
10406             var after = function(){
10407                 el.dom.style[attr] = restoreColor;
10408                 el.afterFx(o);
10409             };
10410
10411             var a = {};
10412             a[attr] = {from: color, to: endColor};
10413             arguments.callee.anim = this.fxanim(a,
10414                 o,
10415                 'color',
10416                 1,
10417                 'easeIn', after);
10418         });
10419         return this;
10420     },
10421
10422    /**
10423     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10424     * Usage:
10425 <pre><code>
10426 // default: a single light blue ripple
10427 el.frame();
10428
10429 // custom: 3 red ripples lasting 3 seconds total
10430 el.frame("ff0000", 3, { duration: 3 });
10431
10432 // common config options shown with default values
10433 el.frame("C3DAF9", 1, {
10434     duration: 1 //duration of entire animation (not each individual ripple)
10435     // Note: Easing is not configurable and will be ignored if included
10436 });
10437 </code></pre>
10438     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10439     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10440     * @param {Object} options (optional) Object literal with any of the Fx config options
10441     * @return {Roo.Element} The Element
10442     */
10443     frame : function(color, count, o){
10444         var el = this.getFxEl();
10445         o = o || {};
10446
10447         el.queueFx(o, function(){
10448             color = color || "#C3DAF9";
10449             if(color.length == 6){
10450                 color = "#" + color;
10451             }
10452             count = count || 1;
10453             duration = o.duration || 1;
10454             this.show();
10455
10456             var b = this.getBox();
10457             var animFn = function(){
10458                 var proxy = this.createProxy({
10459
10460                      style:{
10461                         visbility:"hidden",
10462                         position:"absolute",
10463                         "z-index":"35000", // yee haw
10464                         border:"0px solid " + color
10465                      }
10466                   });
10467                 var scale = Roo.isBorderBox ? 2 : 1;
10468                 proxy.animate({
10469                     top:{from:b.y, to:b.y - 20},
10470                     left:{from:b.x, to:b.x - 20},
10471                     borderWidth:{from:0, to:10},
10472                     opacity:{from:1, to:0},
10473                     height:{from:b.height, to:(b.height + (20*scale))},
10474                     width:{from:b.width, to:(b.width + (20*scale))}
10475                 }, duration, function(){
10476                     proxy.remove();
10477                 });
10478                 if(--count > 0){
10479                      animFn.defer((duration/2)*1000, this);
10480                 }else{
10481                     el.afterFx(o);
10482                 }
10483             };
10484             animFn.call(this);
10485         });
10486         return this;
10487     },
10488
10489    /**
10490     * Creates a pause before any subsequent queued effects begin.  If there are
10491     * no effects queued after the pause it will have no effect.
10492     * Usage:
10493 <pre><code>
10494 el.pause(1);
10495 </code></pre>
10496     * @param {Number} seconds The length of time to pause (in seconds)
10497     * @return {Roo.Element} The Element
10498     */
10499     pause : function(seconds){
10500         var el = this.getFxEl();
10501         var o = {};
10502
10503         el.queueFx(o, function(){
10504             setTimeout(function(){
10505                 el.afterFx(o);
10506             }, seconds * 1000);
10507         });
10508         return this;
10509     },
10510
10511    /**
10512     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10513     * using the "endOpacity" config option.
10514     * Usage:
10515 <pre><code>
10516 // default: fade in from opacity 0 to 100%
10517 el.fadeIn();
10518
10519 // custom: fade in from opacity 0 to 75% over 2 seconds
10520 el.fadeIn({ endOpacity: .75, duration: 2});
10521
10522 // common config options shown with default values
10523 el.fadeIn({
10524     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10525     easing: 'easeOut',
10526     duration: .5
10527 });
10528 </code></pre>
10529     * @param {Object} options (optional) Object literal with any of the Fx config options
10530     * @return {Roo.Element} The Element
10531     */
10532     fadeIn : function(o){
10533         var el = this.getFxEl();
10534         o = o || {};
10535         el.queueFx(o, function(){
10536             this.setOpacity(0);
10537             this.fixDisplay();
10538             this.dom.style.visibility = 'visible';
10539             var to = o.endOpacity || 1;
10540             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10541                 o, null, .5, "easeOut", function(){
10542                 if(to == 1){
10543                     this.clearOpacity();
10544                 }
10545                 el.afterFx(o);
10546             });
10547         });
10548         return this;
10549     },
10550
10551    /**
10552     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10553     * using the "endOpacity" config option.
10554     * Usage:
10555 <pre><code>
10556 // default: fade out from the element's current opacity to 0
10557 el.fadeOut();
10558
10559 // custom: fade out from the element's current opacity to 25% over 2 seconds
10560 el.fadeOut({ endOpacity: .25, duration: 2});
10561
10562 // common config options shown with default values
10563 el.fadeOut({
10564     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10565     easing: 'easeOut',
10566     duration: .5
10567     remove: false,
10568     useDisplay: false
10569 });
10570 </code></pre>
10571     * @param {Object} options (optional) Object literal with any of the Fx config options
10572     * @return {Roo.Element} The Element
10573     */
10574     fadeOut : function(o){
10575         var el = this.getFxEl();
10576         o = o || {};
10577         el.queueFx(o, function(){
10578             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10579                 o, null, .5, "easeOut", function(){
10580                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10581                      this.dom.style.display = "none";
10582                 }else{
10583                      this.dom.style.visibility = "hidden";
10584                 }
10585                 this.clearOpacity();
10586                 el.afterFx(o);
10587             });
10588         });
10589         return this;
10590     },
10591
10592    /**
10593     * Animates the transition of an element's dimensions from a starting height/width
10594     * to an ending height/width.
10595     * Usage:
10596 <pre><code>
10597 // change height and width to 100x100 pixels
10598 el.scale(100, 100);
10599
10600 // common config options shown with default values.  The height and width will default to
10601 // the element's existing values if passed as null.
10602 el.scale(
10603     [element's width],
10604     [element's height], {
10605     easing: 'easeOut',
10606     duration: .35
10607 });
10608 </code></pre>
10609     * @param {Number} width  The new width (pass undefined to keep the original width)
10610     * @param {Number} height  The new height (pass undefined to keep the original height)
10611     * @param {Object} options (optional) Object literal with any of the Fx config options
10612     * @return {Roo.Element} The Element
10613     */
10614     scale : function(w, h, o){
10615         this.shift(Roo.apply({}, o, {
10616             width: w,
10617             height: h
10618         }));
10619         return this;
10620     },
10621
10622    /**
10623     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10624     * Any of these properties not specified in the config object will not be changed.  This effect 
10625     * requires that at least one new dimension, position or opacity setting must be passed in on
10626     * the config object in order for the function to have any effect.
10627     * Usage:
10628 <pre><code>
10629 // slide the element horizontally to x position 200 while changing the height and opacity
10630 el.shift({ x: 200, height: 50, opacity: .8 });
10631
10632 // common config options shown with default values.
10633 el.shift({
10634     width: [element's width],
10635     height: [element's height],
10636     x: [element's x position],
10637     y: [element's y position],
10638     opacity: [element's opacity],
10639     easing: 'easeOut',
10640     duration: .35
10641 });
10642 </code></pre>
10643     * @param {Object} options  Object literal with any of the Fx config options
10644     * @return {Roo.Element} The Element
10645     */
10646     shift : function(o){
10647         var el = this.getFxEl();
10648         o = o || {};
10649         el.queueFx(o, function(){
10650             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10651             if(w !== undefined){
10652                 a.width = {to: this.adjustWidth(w)};
10653             }
10654             if(h !== undefined){
10655                 a.height = {to: this.adjustHeight(h)};
10656             }
10657             if(x !== undefined || y !== undefined){
10658                 a.points = {to: [
10659                     x !== undefined ? x : this.getX(),
10660                     y !== undefined ? y : this.getY()
10661                 ]};
10662             }
10663             if(op !== undefined){
10664                 a.opacity = {to: op};
10665             }
10666             if(o.xy !== undefined){
10667                 a.points = {to: o.xy};
10668             }
10669             arguments.callee.anim = this.fxanim(a,
10670                 o, 'motion', .35, "easeOut", function(){
10671                 el.afterFx(o);
10672             });
10673         });
10674         return this;
10675     },
10676
10677         /**
10678          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10679          * ending point of the effect.
10680          * Usage:
10681          *<pre><code>
10682 // default: slide the element downward while fading out
10683 el.ghost();
10684
10685 // custom: slide the element out to the right with a 2-second duration
10686 el.ghost('r', { duration: 2 });
10687
10688 // common config options shown with default values
10689 el.ghost('b', {
10690     easing: 'easeOut',
10691     duration: .5
10692     remove: false,
10693     useDisplay: false
10694 });
10695 </code></pre>
10696          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10697          * @param {Object} options (optional) Object literal with any of the Fx config options
10698          * @return {Roo.Element} The Element
10699          */
10700     ghost : function(anchor, o){
10701         var el = this.getFxEl();
10702         o = o || {};
10703
10704         el.queueFx(o, function(){
10705             anchor = anchor || "b";
10706
10707             // restore values after effect
10708             var r = this.getFxRestore();
10709             var w = this.getWidth(),
10710                 h = this.getHeight();
10711
10712             var st = this.dom.style;
10713
10714             var after = function(){
10715                 if(o.useDisplay){
10716                     el.setDisplayed(false);
10717                 }else{
10718                     el.hide();
10719                 }
10720
10721                 el.clearOpacity();
10722                 el.setPositioning(r.pos);
10723                 st.width = r.width;
10724                 st.height = r.height;
10725
10726                 el.afterFx(o);
10727             };
10728
10729             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10730             switch(anchor.toLowerCase()){
10731                 case "t":
10732                     pt.by = [0, -h];
10733                 break;
10734                 case "l":
10735                     pt.by = [-w, 0];
10736                 break;
10737                 case "r":
10738                     pt.by = [w, 0];
10739                 break;
10740                 case "b":
10741                     pt.by = [0, h];
10742                 break;
10743                 case "tl":
10744                     pt.by = [-w, -h];
10745                 break;
10746                 case "bl":
10747                     pt.by = [-w, h];
10748                 break;
10749                 case "br":
10750                     pt.by = [w, h];
10751                 break;
10752                 case "tr":
10753                     pt.by = [w, -h];
10754                 break;
10755             }
10756
10757             arguments.callee.anim = this.fxanim(a,
10758                 o,
10759                 'motion',
10760                 .5,
10761                 "easeOut", after);
10762         });
10763         return this;
10764     },
10765
10766         /**
10767          * Ensures that all effects queued after syncFx is called on the element are
10768          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10769          * @return {Roo.Element} The Element
10770          */
10771     syncFx : function(){
10772         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10773             block : false,
10774             concurrent : true,
10775             stopFx : false
10776         });
10777         return this;
10778     },
10779
10780         /**
10781          * Ensures that all effects queued after sequenceFx is called on the element are
10782          * run in sequence.  This is the opposite of {@link #syncFx}.
10783          * @return {Roo.Element} The Element
10784          */
10785     sequenceFx : function(){
10786         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10787             block : false,
10788             concurrent : false,
10789             stopFx : false
10790         });
10791         return this;
10792     },
10793
10794         /* @private */
10795     nextFx : function(){
10796         var ef = this.fxQueue[0];
10797         if(ef){
10798             ef.call(this);
10799         }
10800     },
10801
10802         /**
10803          * Returns true if the element has any effects actively running or queued, else returns false.
10804          * @return {Boolean} True if element has active effects, else false
10805          */
10806     hasActiveFx : function(){
10807         return this.fxQueue && this.fxQueue[0];
10808     },
10809
10810         /**
10811          * Stops any running effects and clears the element's internal effects queue if it contains
10812          * any additional effects that haven't started yet.
10813          * @return {Roo.Element} The Element
10814          */
10815     stopFx : function(){
10816         if(this.hasActiveFx()){
10817             var cur = this.fxQueue[0];
10818             if(cur && cur.anim && cur.anim.isAnimated()){
10819                 this.fxQueue = [cur]; // clear out others
10820                 cur.anim.stop(true);
10821             }
10822         }
10823         return this;
10824     },
10825
10826         /* @private */
10827     beforeFx : function(o){
10828         if(this.hasActiveFx() && !o.concurrent){
10829            if(o.stopFx){
10830                this.stopFx();
10831                return true;
10832            }
10833            return false;
10834         }
10835         return true;
10836     },
10837
10838         /**
10839          * Returns true if the element is currently blocking so that no other effect can be queued
10840          * until this effect is finished, else returns false if blocking is not set.  This is commonly
10841          * used to ensure that an effect initiated by a user action runs to completion prior to the
10842          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
10843          * @return {Boolean} True if blocking, else false
10844          */
10845     hasFxBlock : function(){
10846         var q = this.fxQueue;
10847         return q && q[0] && q[0].block;
10848     },
10849
10850         /* @private */
10851     queueFx : function(o, fn){
10852         if(!this.fxQueue){
10853             this.fxQueue = [];
10854         }
10855         if(!this.hasFxBlock()){
10856             Roo.applyIf(o, this.fxDefaults);
10857             if(!o.concurrent){
10858                 var run = this.beforeFx(o);
10859                 fn.block = o.block;
10860                 this.fxQueue.push(fn);
10861                 if(run){
10862                     this.nextFx();
10863                 }
10864             }else{
10865                 fn.call(this);
10866             }
10867         }
10868         return this;
10869     },
10870
10871         /* @private */
10872     fxWrap : function(pos, o, vis){
10873         var wrap;
10874         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
10875             var wrapXY;
10876             if(o.fixPosition){
10877                 wrapXY = this.getXY();
10878             }
10879             var div = document.createElement("div");
10880             div.style.visibility = vis;
10881             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
10882             wrap.setPositioning(pos);
10883             if(wrap.getStyle("position") == "static"){
10884                 wrap.position("relative");
10885             }
10886             this.clearPositioning('auto');
10887             wrap.clip();
10888             wrap.dom.appendChild(this.dom);
10889             if(wrapXY){
10890                 wrap.setXY(wrapXY);
10891             }
10892         }
10893         return wrap;
10894     },
10895
10896         /* @private */
10897     fxUnwrap : function(wrap, pos, o){
10898         this.clearPositioning();
10899         this.setPositioning(pos);
10900         if(!o.wrap){
10901             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
10902             wrap.remove();
10903         }
10904     },
10905
10906         /* @private */
10907     getFxRestore : function(){
10908         var st = this.dom.style;
10909         return {pos: this.getPositioning(), width: st.width, height : st.height};
10910     },
10911
10912         /* @private */
10913     afterFx : function(o){
10914         if(o.afterStyle){
10915             this.applyStyles(o.afterStyle);
10916         }
10917         if(o.afterCls){
10918             this.addClass(o.afterCls);
10919         }
10920         if(o.remove === true){
10921             this.remove();
10922         }
10923         Roo.callback(o.callback, o.scope, [this]);
10924         if(!o.concurrent){
10925             this.fxQueue.shift();
10926             this.nextFx();
10927         }
10928     },
10929
10930         /* @private */
10931     getFxEl : function(){ // support for composite element fx
10932         return Roo.get(this.dom);
10933     },
10934
10935         /* @private */
10936     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
10937         animType = animType || 'run';
10938         opt = opt || {};
10939         var anim = Roo.lib.Anim[animType](
10940             this.dom, args,
10941             (opt.duration || defaultDur) || .35,
10942             (opt.easing || defaultEase) || 'easeOut',
10943             function(){
10944                 Roo.callback(cb, this);
10945             },
10946             this
10947         );
10948         opt.anim = anim;
10949         return anim;
10950     }
10951 };
10952
10953 // backwords compat
10954 Roo.Fx.resize = Roo.Fx.scale;
10955
10956 //When included, Roo.Fx is automatically applied to Element so that all basic
10957 //effects are available directly via the Element API
10958 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
10959  * Based on:
10960  * Ext JS Library 1.1.1
10961  * Copyright(c) 2006-2007, Ext JS, LLC.
10962  *
10963  * Originally Released Under LGPL - original licence link has changed is not relivant.
10964  *
10965  * Fork - LGPL
10966  * <script type="text/javascript">
10967  */
10968
10969
10970 /**
10971  * @class Roo.CompositeElement
10972  * Standard composite class. Creates a Roo.Element for every element in the collection.
10973  * <br><br>
10974  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
10975  * actions will be performed on all the elements in this collection.</b>
10976  * <br><br>
10977  * All methods return <i>this</i> and can be chained.
10978  <pre><code>
10979  var els = Roo.select("#some-el div.some-class", true);
10980  // or select directly from an existing element
10981  var el = Roo.get('some-el');
10982  el.select('div.some-class', true);
10983
10984  els.setWidth(100); // all elements become 100 width
10985  els.hide(true); // all elements fade out and hide
10986  // or
10987  els.setWidth(100).hide(true);
10988  </code></pre>
10989  */
10990 Roo.CompositeElement = function(els){
10991     this.elements = [];
10992     this.addElements(els);
10993 };
10994 Roo.CompositeElement.prototype = {
10995     isComposite: true,
10996     addElements : function(els){
10997         if(!els) return this;
10998         if(typeof els == "string"){
10999             els = Roo.Element.selectorFunction(els);
11000         }
11001         var yels = this.elements;
11002         var index = yels.length-1;
11003         for(var i = 0, len = els.length; i < len; i++) {
11004                 yels[++index] = Roo.get(els[i]);
11005         }
11006         return this;
11007     },
11008
11009     /**
11010     * Clears this composite and adds the elements returned by the passed selector.
11011     * @param {String/Array} els A string CSS selector, an array of elements or an element
11012     * @return {CompositeElement} this
11013     */
11014     fill : function(els){
11015         this.elements = [];
11016         this.add(els);
11017         return this;
11018     },
11019
11020     /**
11021     * Filters this composite to only elements that match the passed selector.
11022     * @param {String} selector A string CSS selector
11023     * @param {Boolean} inverse return inverse filter (not matches)
11024     * @return {CompositeElement} this
11025     */
11026     filter : function(selector, inverse){
11027         var els = [];
11028         inverse = inverse || false;
11029         this.each(function(el){
11030             var match = inverse ? !el.is(selector) : el.is(selector);
11031             if(match){
11032                 els[els.length] = el.dom;
11033             }
11034         });
11035         this.fill(els);
11036         return this;
11037     },
11038
11039     invoke : function(fn, args){
11040         var els = this.elements;
11041         for(var i = 0, len = els.length; i < len; i++) {
11042                 Roo.Element.prototype[fn].apply(els[i], args);
11043         }
11044         return this;
11045     },
11046     /**
11047     * Adds elements to this composite.
11048     * @param {String/Array} els A string CSS selector, an array of elements or an element
11049     * @return {CompositeElement} this
11050     */
11051     add : function(els){
11052         if(typeof els == "string"){
11053             this.addElements(Roo.Element.selectorFunction(els));
11054         }else if(els.length !== undefined){
11055             this.addElements(els);
11056         }else{
11057             this.addElements([els]);
11058         }
11059         return this;
11060     },
11061     /**
11062     * Calls the passed function passing (el, this, index) for each element in this composite.
11063     * @param {Function} fn The function to call
11064     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11065     * @return {CompositeElement} this
11066     */
11067     each : function(fn, scope){
11068         var els = this.elements;
11069         for(var i = 0, len = els.length; i < len; i++){
11070             if(fn.call(scope || els[i], els[i], this, i) === false) {
11071                 break;
11072             }
11073         }
11074         return this;
11075     },
11076
11077     /**
11078      * Returns the Element object at the specified index
11079      * @param {Number} index
11080      * @return {Roo.Element}
11081      */
11082     item : function(index){
11083         return this.elements[index] || null;
11084     },
11085
11086     /**
11087      * Returns the first Element
11088      * @return {Roo.Element}
11089      */
11090     first : function(){
11091         return this.item(0);
11092     },
11093
11094     /**
11095      * Returns the last Element
11096      * @return {Roo.Element}
11097      */
11098     last : function(){
11099         return this.item(this.elements.length-1);
11100     },
11101
11102     /**
11103      * Returns the number of elements in this composite
11104      * @return Number
11105      */
11106     getCount : function(){
11107         return this.elements.length;
11108     },
11109
11110     /**
11111      * Returns true if this composite contains the passed element
11112      * @return Boolean
11113      */
11114     contains : function(el){
11115         return this.indexOf(el) !== -1;
11116     },
11117
11118     /**
11119      * Returns true if this composite contains the passed element
11120      * @return Boolean
11121      */
11122     indexOf : function(el){
11123         return this.elements.indexOf(Roo.get(el));
11124     },
11125
11126
11127     /**
11128     * Removes the specified element(s).
11129     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11130     * or an array of any of those.
11131     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11132     * @return {CompositeElement} this
11133     */
11134     removeElement : function(el, removeDom){
11135         if(el instanceof Array){
11136             for(var i = 0, len = el.length; i < len; i++){
11137                 this.removeElement(el[i]);
11138             }
11139             return this;
11140         }
11141         var index = typeof el == 'number' ? el : this.indexOf(el);
11142         if(index !== -1){
11143             if(removeDom){
11144                 var d = this.elements[index];
11145                 if(d.dom){
11146                     d.remove();
11147                 }else{
11148                     d.parentNode.removeChild(d);
11149                 }
11150             }
11151             this.elements.splice(index, 1);
11152         }
11153         return this;
11154     },
11155
11156     /**
11157     * Replaces the specified element with the passed element.
11158     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11159     * to replace.
11160     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11161     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11162     * @return {CompositeElement} this
11163     */
11164     replaceElement : function(el, replacement, domReplace){
11165         var index = typeof el == 'number' ? el : this.indexOf(el);
11166         if(index !== -1){
11167             if(domReplace){
11168                 this.elements[index].replaceWith(replacement);
11169             }else{
11170                 this.elements.splice(index, 1, Roo.get(replacement))
11171             }
11172         }
11173         return this;
11174     },
11175
11176     /**
11177      * Removes all elements.
11178      */
11179     clear : function(){
11180         this.elements = [];
11181     }
11182 };
11183 (function(){
11184     Roo.CompositeElement.createCall = function(proto, fnName){
11185         if(!proto[fnName]){
11186             proto[fnName] = function(){
11187                 return this.invoke(fnName, arguments);
11188             };
11189         }
11190     };
11191     for(var fnName in Roo.Element.prototype){
11192         if(typeof Roo.Element.prototype[fnName] == "function"){
11193             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11194         }
11195     };
11196 })();
11197 /*
11198  * Based on:
11199  * Ext JS Library 1.1.1
11200  * Copyright(c) 2006-2007, Ext JS, LLC.
11201  *
11202  * Originally Released Under LGPL - original licence link has changed is not relivant.
11203  *
11204  * Fork - LGPL
11205  * <script type="text/javascript">
11206  */
11207
11208 /**
11209  * @class Roo.CompositeElementLite
11210  * @extends Roo.CompositeElement
11211  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11212  <pre><code>
11213  var els = Roo.select("#some-el div.some-class");
11214  // or select directly from an existing element
11215  var el = Roo.get('some-el');
11216  el.select('div.some-class');
11217
11218  els.setWidth(100); // all elements become 100 width
11219  els.hide(true); // all elements fade out and hide
11220  // or
11221  els.setWidth(100).hide(true);
11222  </code></pre><br><br>
11223  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11224  * actions will be performed on all the elements in this collection.</b>
11225  */
11226 Roo.CompositeElementLite = function(els){
11227     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11228     this.el = new Roo.Element.Flyweight();
11229 };
11230 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11231     addElements : function(els){
11232         if(els){
11233             if(els instanceof Array){
11234                 this.elements = this.elements.concat(els);
11235             }else{
11236                 var yels = this.elements;
11237                 var index = yels.length-1;
11238                 for(var i = 0, len = els.length; i < len; i++) {
11239                     yels[++index] = els[i];
11240                 }
11241             }
11242         }
11243         return this;
11244     },
11245     invoke : function(fn, args){
11246         var els = this.elements;
11247         var el = this.el;
11248         for(var i = 0, len = els.length; i < len; i++) {
11249             el.dom = els[i];
11250                 Roo.Element.prototype[fn].apply(el, args);
11251         }
11252         return this;
11253     },
11254     /**
11255      * Returns a flyweight Element of the dom element object at the specified index
11256      * @param {Number} index
11257      * @return {Roo.Element}
11258      */
11259     item : function(index){
11260         if(!this.elements[index]){
11261             return null;
11262         }
11263         this.el.dom = this.elements[index];
11264         return this.el;
11265     },
11266
11267     // fixes scope with flyweight
11268     addListener : function(eventName, handler, scope, opt){
11269         var els = this.elements;
11270         for(var i = 0, len = els.length; i < len; i++) {
11271             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11272         }
11273         return this;
11274     },
11275
11276     /**
11277     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11278     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11279     * a reference to the dom node, use el.dom.</b>
11280     * @param {Function} fn The function to call
11281     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11282     * @return {CompositeElement} this
11283     */
11284     each : function(fn, scope){
11285         var els = this.elements;
11286         var el = this.el;
11287         for(var i = 0, len = els.length; i < len; i++){
11288             el.dom = els[i];
11289                 if(fn.call(scope || el, el, this, i) === false){
11290                 break;
11291             }
11292         }
11293         return this;
11294     },
11295
11296     indexOf : function(el){
11297         return this.elements.indexOf(Roo.getDom(el));
11298     },
11299
11300     replaceElement : function(el, replacement, domReplace){
11301         var index = typeof el == 'number' ? el : this.indexOf(el);
11302         if(index !== -1){
11303             replacement = Roo.getDom(replacement);
11304             if(domReplace){
11305                 var d = this.elements[index];
11306                 d.parentNode.insertBefore(replacement, d);
11307                 d.parentNode.removeChild(d);
11308             }
11309             this.elements.splice(index, 1, replacement);
11310         }
11311         return this;
11312     }
11313 });
11314 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11315
11316 /*
11317  * Based on:
11318  * Ext JS Library 1.1.1
11319  * Copyright(c) 2006-2007, Ext JS, LLC.
11320  *
11321  * Originally Released Under LGPL - original licence link has changed is not relivant.
11322  *
11323  * Fork - LGPL
11324  * <script type="text/javascript">
11325  */
11326
11327  
11328
11329 /**
11330  * @class Roo.data.Connection
11331  * @extends Roo.util.Observable
11332  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11333  * either to a configured URL, or to a URL specified at request time.<br><br>
11334  * <p>
11335  * Requests made by this class are asynchronous, and will return immediately. No data from
11336  * the server will be available to the statement immediately following the {@link #request} call.
11337  * To process returned data, use a callback in the request options object, or an event listener.</p><br>
11338  * <p>
11339  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11340  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11341  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11342  * property and, if present, the IFRAME's XML document as the responseXML property.</p><br>
11343  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11344  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11345  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11346  * standard DOM methods.
11347  * @constructor
11348  * @param {Object} config a configuration object.
11349  */
11350 Roo.data.Connection = function(config){
11351     Roo.apply(this, config);
11352     this.addEvents({
11353         /**
11354          * @event beforerequest
11355          * Fires before a network request is made to retrieve a data object.
11356          * @param {Connection} conn This Connection object.
11357          * @param {Object} options The options config object passed to the {@link #request} method.
11358          */
11359         "beforerequest" : true,
11360         /**
11361          * @event requestcomplete
11362          * Fires if the request was successfully completed.
11363          * @param {Connection} conn This Connection object.
11364          * @param {Object} response The XHR object containing the response data.
11365          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11366          * @param {Object} options The options config object passed to the {@link #request} method.
11367          */
11368         "requestcomplete" : true,
11369         /**
11370          * @event requestexception
11371          * Fires if an error HTTP status was returned from the server.
11372          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11373          * @param {Connection} conn This Connection object.
11374          * @param {Object} response The XHR object containing the response data.
11375          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11376          * @param {Object} options The options config object passed to the {@link #request} method.
11377          */
11378         "requestexception" : true
11379     });
11380     Roo.data.Connection.superclass.constructor.call(this);
11381 };
11382
11383 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11384     /**
11385      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11386      */
11387     /**
11388      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11389      * extra parameters to each request made by this object. (defaults to undefined)
11390      */
11391     /**
11392      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11393      *  to each request made by this object. (defaults to undefined)
11394      */
11395     /**
11396      * @cfg {String} method (Optional) The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
11397      */
11398     /**
11399      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11400      */
11401     timeout : 30000,
11402     /**
11403      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11404      * @type Boolean
11405      */
11406     autoAbort:false,
11407
11408     /**
11409      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11410      * @type Boolean
11411      */
11412     disableCaching: true,
11413
11414     /**
11415      * Sends an HTTP request to a remote server.
11416      * @param {Object} options An object which may contain the following properties:<ul>
11417      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11418      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11419      * request, a url encoded string or a function to call to get either.</li>
11420      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11421      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11422      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11423      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11424      * <li>options {Object} The parameter to the request call.</li>
11425      * <li>success {Boolean} True if the request succeeded.</li>
11426      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11427      * </ul></li>
11428      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11429      * The callback is passed the following parameters:<ul>
11430      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11431      * <li>options {Object} The parameter to the request call.</li>
11432      * </ul></li>
11433      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11434      * The callback is passed the following parameters:<ul>
11435      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11436      * <li>options {Object} The parameter to the request call.</li>
11437      * </ul></li>
11438      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11439      * for the callback function. Defaults to the browser window.</li>
11440      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11441      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11442      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11443      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11444      * params for the post data. Any params will be appended to the URL.</li>
11445      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11446      * </ul>
11447      * @return {Number} transactionId
11448      */
11449     request : function(o){
11450         if(this.fireEvent("beforerequest", this, o) !== false){
11451             var p = o.params;
11452
11453             if(typeof p == "function"){
11454                 p = p.call(o.scope||window, o);
11455             }
11456             if(typeof p == "object"){
11457                 p = Roo.urlEncode(o.params);
11458             }
11459             if(this.extraParams){
11460                 var extras = Roo.urlEncode(this.extraParams);
11461                 p = p ? (p + '&' + extras) : extras;
11462             }
11463
11464             var url = o.url || this.url;
11465             if(typeof url == 'function'){
11466                 url = url.call(o.scope||window, o);
11467             }
11468
11469             if(o.form){
11470                 var form = Roo.getDom(o.form);
11471                 url = url || form.action;
11472
11473                 var enctype = form.getAttribute("enctype");
11474                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11475                     return this.doFormUpload(o, p, url);
11476                 }
11477                 var f = Roo.lib.Ajax.serializeForm(form);
11478                 p = p ? (p + '&' + f) : f;
11479             }
11480
11481             var hs = o.headers;
11482             if(this.defaultHeaders){
11483                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11484                 if(!o.headers){
11485                     o.headers = hs;
11486                 }
11487             }
11488
11489             var cb = {
11490                 success: this.handleResponse,
11491                 failure: this.handleFailure,
11492                 scope: this,
11493                 argument: {options: o},
11494                 timeout : o.timeout || this.timeout
11495             };
11496
11497             var method = o.method||this.method||(p ? "POST" : "GET");
11498
11499             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11500                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11501             }
11502
11503             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11504                 if(o.autoAbort){
11505                     this.abort();
11506                 }
11507             }else if(this.autoAbort !== false){
11508                 this.abort();
11509             }
11510
11511             if((method == 'GET' && p) || o.xmlData){
11512                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11513                 p = '';
11514             }
11515             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11516             return this.transId;
11517         }else{
11518             Roo.callback(o.callback, o.scope, [o, null, null]);
11519             return null;
11520         }
11521     },
11522
11523     /**
11524      * Determine whether this object has a request outstanding.
11525      * @param {Number} transactionId (Optional) defaults to the last transaction
11526      * @return {Boolean} True if there is an outstanding request.
11527      */
11528     isLoading : function(transId){
11529         if(transId){
11530             return Roo.lib.Ajax.isCallInProgress(transId);
11531         }else{
11532             return this.transId ? true : false;
11533         }
11534     },
11535
11536     /**
11537      * Aborts any outstanding request.
11538      * @param {Number} transactionId (Optional) defaults to the last transaction
11539      */
11540     abort : function(transId){
11541         if(transId || this.isLoading()){
11542             Roo.lib.Ajax.abort(transId || this.transId);
11543         }
11544     },
11545
11546     // private
11547     handleResponse : function(response){
11548         this.transId = false;
11549         var options = response.argument.options;
11550         response.argument = options ? options.argument : null;
11551         this.fireEvent("requestcomplete", this, response, options);
11552         Roo.callback(options.success, options.scope, [response, options]);
11553         Roo.callback(options.callback, options.scope, [options, true, response]);
11554     },
11555
11556     // private
11557     handleFailure : function(response, e){
11558         this.transId = false;
11559         var options = response.argument.options;
11560         response.argument = options ? options.argument : null;
11561         this.fireEvent("requestexception", this, response, options, e);
11562         Roo.callback(options.failure, options.scope, [response, options]);
11563         Roo.callback(options.callback, options.scope, [options, false, response]);
11564     },
11565
11566     // private
11567     doFormUpload : function(o, ps, url){
11568         var id = Roo.id();
11569         var frame = document.createElement('iframe');
11570         frame.id = id;
11571         frame.name = id;
11572         frame.className = 'x-hidden';
11573         if(Roo.isIE){
11574             frame.src = Roo.SSL_SECURE_URL;
11575         }
11576         document.body.appendChild(frame);
11577
11578         if(Roo.isIE){
11579            document.frames[id].name = id;
11580         }
11581
11582         var form = Roo.getDom(o.form);
11583         form.target = id;
11584         form.method = 'POST';
11585         form.enctype = form.encoding = 'multipart/form-data';
11586         if(url){
11587             form.action = url;
11588         }
11589
11590         var hiddens, hd;
11591         if(ps){ // add dynamic params
11592             hiddens = [];
11593             ps = Roo.urlDecode(ps, false);
11594             for(var k in ps){
11595                 if(ps.hasOwnProperty(k)){
11596                     hd = document.createElement('input');
11597                     hd.type = 'hidden';
11598                     hd.name = k;
11599                     hd.value = ps[k];
11600                     form.appendChild(hd);
11601                     hiddens.push(hd);
11602                 }
11603             }
11604         }
11605
11606         function cb(){
11607             var r = {  // bogus response object
11608                 responseText : '',
11609                 responseXML : null
11610             };
11611
11612             r.argument = o ? o.argument : null;
11613
11614             try { //
11615                 var doc;
11616                 if(Roo.isIE){
11617                     doc = frame.contentWindow.document;
11618                 }else {
11619                     doc = (frame.contentDocument || window.frames[id].document);
11620                 }
11621                 if(doc && doc.body){
11622                     r.responseText = doc.body.innerHTML;
11623                 }
11624                 if(doc && doc.XMLDocument){
11625                     r.responseXML = doc.XMLDocument;
11626                 }else {
11627                     r.responseXML = doc;
11628                 }
11629             }
11630             catch(e) {
11631                 // ignore
11632             }
11633
11634             Roo.EventManager.removeListener(frame, 'load', cb, this);
11635
11636             this.fireEvent("requestcomplete", this, r, o);
11637             Roo.callback(o.success, o.scope, [r, o]);
11638             Roo.callback(o.callback, o.scope, [o, true, r]);
11639
11640             setTimeout(function(){document.body.removeChild(frame);}, 100);
11641         }
11642
11643         Roo.EventManager.on(frame, 'load', cb, this);
11644         form.submit();
11645
11646         if(hiddens){ // remove dynamic params
11647             for(var i = 0, len = hiddens.length; i < len; i++){
11648                 form.removeChild(hiddens[i]);
11649             }
11650         }
11651     }
11652 });
11653 /*
11654  * Based on:
11655  * Ext JS Library 1.1.1
11656  * Copyright(c) 2006-2007, Ext JS, LLC.
11657  *
11658  * Originally Released Under LGPL - original licence link has changed is not relivant.
11659  *
11660  * Fork - LGPL
11661  * <script type="text/javascript">
11662  */
11663  
11664 /**
11665  * Global Ajax request class.
11666  * 
11667  * @class Roo.Ajax
11668  * @extends Roo.data.Connection
11669  * @static
11670  * 
11671  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11672  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11673  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11674  * @cfg {String} method (Optional)  The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
11675  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11676  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11677  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11678  */
11679 Roo.Ajax = new Roo.data.Connection({
11680     // fix up the docs
11681     /**
11682      * @scope Roo.Ajax
11683      * @type {Boolear} 
11684      */
11685     autoAbort : false,
11686
11687     /**
11688      * Serialize the passed form into a url encoded string
11689      * @scope Roo.Ajax
11690      * @param {String/HTMLElement} form
11691      * @return {String}
11692      */
11693     serializeForm : function(form){
11694         return Roo.lib.Ajax.serializeForm(form);
11695     }
11696 });/*
11697  * Based on:
11698  * Ext JS Library 1.1.1
11699  * Copyright(c) 2006-2007, Ext JS, LLC.
11700  *
11701  * Originally Released Under LGPL - original licence link has changed is not relivant.
11702  *
11703  * Fork - LGPL
11704  * <script type="text/javascript">
11705  */
11706
11707  
11708 /**
11709  * @class Roo.UpdateManager
11710  * @extends Roo.util.Observable
11711  * Provides AJAX-style update for Element object.<br><br>
11712  * Usage:<br>
11713  * <pre><code>
11714  * // Get it from a Roo.Element object
11715  * var el = Roo.get("foo");
11716  * var mgr = el.getUpdateManager();
11717  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11718  * ...
11719  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11720  * <br>
11721  * // or directly (returns the same UpdateManager instance)
11722  * var mgr = new Roo.UpdateManager("myElementId");
11723  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11724  * mgr.on("update", myFcnNeedsToKnow);
11725  * <br>
11726    // short handed call directly from the element object
11727    Roo.get("foo").load({
11728         url: "bar.php",
11729         scripts:true,
11730         params: "for=bar",
11731         text: "Loading Foo..."
11732    });
11733  * </code></pre>
11734  * @constructor
11735  * Create new UpdateManager directly.
11736  * @param {String/HTMLElement/Roo.Element} el The element to update
11737  * @param {Boolean} forceNew (optional) By default the constructor checks to see if the passed element already has an UpdateManager and if it does it returns the same instance. This will skip that check (useful for extending this class).
11738  */
11739 Roo.UpdateManager = function(el, forceNew){
11740     el = Roo.get(el);
11741     if(!forceNew && el.updateManager){
11742         return el.updateManager;
11743     }
11744     /**
11745      * The Element object
11746      * @type Roo.Element
11747      */
11748     this.el = el;
11749     /**
11750      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
11751      * @type String
11752      */
11753     this.defaultUrl = null;
11754
11755     this.addEvents({
11756         /**
11757          * @event beforeupdate
11758          * Fired before an update is made, return false from your handler and the update is cancelled.
11759          * @param {Roo.Element} el
11760          * @param {String/Object/Function} url
11761          * @param {String/Object} params
11762          */
11763         "beforeupdate": true,
11764         /**
11765          * @event update
11766          * Fired after successful update is made.
11767          * @param {Roo.Element} el
11768          * @param {Object} oResponseObject The response Object
11769          */
11770         "update": true,
11771         /**
11772          * @event failure
11773          * Fired on update failure.
11774          * @param {Roo.Element} el
11775          * @param {Object} oResponseObject The response Object
11776          */
11777         "failure": true
11778     });
11779     var d = Roo.UpdateManager.defaults;
11780     /**
11781      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
11782      * @type String
11783      */
11784     this.sslBlankUrl = d.sslBlankUrl;
11785     /**
11786      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
11787      * @type Boolean
11788      */
11789     this.disableCaching = d.disableCaching;
11790     /**
11791      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
11792      * @type String
11793      */
11794     this.indicatorText = d.indicatorText;
11795     /**
11796      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
11797      * @type String
11798      */
11799     this.showLoadIndicator = d.showLoadIndicator;
11800     /**
11801      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
11802      * @type Number
11803      */
11804     this.timeout = d.timeout;
11805
11806     /**
11807      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
11808      * @type Boolean
11809      */
11810     this.loadScripts = d.loadScripts;
11811
11812     /**
11813      * Transaction object of current executing transaction
11814      */
11815     this.transaction = null;
11816
11817     /**
11818      * @private
11819      */
11820     this.autoRefreshProcId = null;
11821     /**
11822      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
11823      * @type Function
11824      */
11825     this.refreshDelegate = this.refresh.createDelegate(this);
11826     /**
11827      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
11828      * @type Function
11829      */
11830     this.updateDelegate = this.update.createDelegate(this);
11831     /**
11832      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
11833      * @type Function
11834      */
11835     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
11836     /**
11837      * @private
11838      */
11839     this.successDelegate = this.processSuccess.createDelegate(this);
11840     /**
11841      * @private
11842      */
11843     this.failureDelegate = this.processFailure.createDelegate(this);
11844
11845     if(!this.renderer){
11846      /**
11847       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
11848       */
11849     this.renderer = new Roo.UpdateManager.BasicRenderer();
11850     }
11851     
11852     Roo.UpdateManager.superclass.constructor.call(this);
11853 };
11854
11855 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
11856     /**
11857      * Get the Element this UpdateManager is bound to
11858      * @return {Roo.Element} The element
11859      */
11860     getEl : function(){
11861         return this.el;
11862     },
11863     /**
11864      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
11865      * @param {Object/String/Function} url The url for this request or a function to call to get the url or a config object containing any of the following options:
11866 <pre><code>
11867 um.update({<br/>
11868     url: "your-url.php",<br/>
11869     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
11870     callback: yourFunction,<br/>
11871     scope: yourObject, //(optional scope)  <br/>
11872     discardUrl: false, <br/>
11873     nocache: false,<br/>
11874     text: "Loading...",<br/>
11875     timeout: 30,<br/>
11876     scripts: false<br/>
11877 });
11878 </code></pre>
11879      * The only required property is url. The optional properties nocache, text and scripts
11880      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
11881      * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
11882      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
11883      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used url. If true, it will not store the url.
11884      */
11885     update : function(url, params, callback, discardUrl){
11886         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
11887             var method = this.method,
11888                 cfg;
11889             if(typeof url == "object"){ // must be config object
11890                 cfg = url;
11891                 url = cfg.url;
11892                 params = params || cfg.params;
11893                 callback = callback || cfg.callback;
11894                 discardUrl = discardUrl || cfg.discardUrl;
11895                 if(callback && cfg.scope){
11896                     callback = callback.createDelegate(cfg.scope);
11897                 }
11898                 if(typeof cfg.method != "undefined"){method = cfg.method;};
11899                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
11900                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
11901                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
11902                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
11903             }
11904             this.showLoading();
11905             if(!discardUrl){
11906                 this.defaultUrl = url;
11907             }
11908             if(typeof url == "function"){
11909                 url = url.call(this);
11910             }
11911
11912             method = method || (params ? "POST" : "GET");
11913             if(method == "GET"){
11914                 url = this.prepareUrl(url);
11915             }
11916
11917             var o = Roo.apply(cfg ||{}, {
11918                 url : url,
11919                 params: params,
11920                 success: this.successDelegate,
11921                 failure: this.failureDelegate,
11922                 callback: undefined,
11923                 timeout: (this.timeout*1000),
11924                 argument: {"url": url, "form": null, "callback": callback, "params": params}
11925             });
11926             Roo.log("updated manager called with timeout of " + o.timeout);
11927             this.transaction = Roo.Ajax.request(o);
11928         }
11929     },
11930
11931     /**
11932      * Performs an async form post, updating this element with the response. If the form has the attribute enctype="multipart/form-data", it assumes it's a file upload.
11933      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
11934      * @param {String/HTMLElement} form The form Id or form element
11935      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
11936      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
11937      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
11938      */
11939     formUpdate : function(form, url, reset, callback){
11940         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
11941             if(typeof url == "function"){
11942                 url = url.call(this);
11943             }
11944             form = Roo.getDom(form);
11945             this.transaction = Roo.Ajax.request({
11946                 form: form,
11947                 url:url,
11948                 success: this.successDelegate,
11949                 failure: this.failureDelegate,
11950                 timeout: (this.timeout*1000),
11951                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
11952             });
11953             this.showLoading.defer(1, this);
11954         }
11955     },
11956
11957     /**
11958      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
11959      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
11960      */
11961     refresh : function(callback){
11962         if(this.defaultUrl == null){
11963             return;
11964         }
11965         this.update(this.defaultUrl, null, callback, true);
11966     },
11967
11968     /**
11969      * Set this element to auto refresh.
11970      * @param {Number} interval How often to update (in seconds).
11971      * @param {String/Function} url (optional) The url for this request or a function to call to get the url (Defaults to the last used url)
11972      * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "&param1=1&param2=2" or as an object {param1: 1, param2: 2}
11973      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
11974      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
11975      */
11976     startAutoRefresh : function(interval, url, params, callback, refreshNow){
11977         if(refreshNow){
11978             this.update(url || this.defaultUrl, params, callback, true);
11979         }
11980         if(this.autoRefreshProcId){
11981             clearInterval(this.autoRefreshProcId);
11982         }
11983         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
11984     },
11985
11986     /**
11987      * Stop auto refresh on this element.
11988      */
11989      stopAutoRefresh : function(){
11990         if(this.autoRefreshProcId){
11991             clearInterval(this.autoRefreshProcId);
11992             delete this.autoRefreshProcId;
11993         }
11994     },
11995
11996     isAutoRefreshing : function(){
11997        return this.autoRefreshProcId ? true : false;
11998     },
11999     /**
12000      * Called to update the element to "Loading" state. Override to perform custom action.
12001      */
12002     showLoading : function(){
12003         if(this.showLoadIndicator){
12004             this.el.update(this.indicatorText);
12005         }
12006     },
12007
12008     /**
12009      * Adds unique parameter to query string if disableCaching = true
12010      * @private
12011      */
12012     prepareUrl : function(url){
12013         if(this.disableCaching){
12014             var append = "_dc=" + (new Date().getTime());
12015             if(url.indexOf("?") !== -1){
12016                 url += "&" + append;
12017             }else{
12018                 url += "?" + append;
12019             }
12020         }
12021         return url;
12022     },
12023
12024     /**
12025      * @private
12026      */
12027     processSuccess : function(response){
12028         this.transaction = null;
12029         if(response.argument.form && response.argument.reset){
12030             try{ // put in try/catch since some older FF releases had problems with this
12031                 response.argument.form.reset();
12032             }catch(e){}
12033         }
12034         if(this.loadScripts){
12035             this.renderer.render(this.el, response, this,
12036                 this.updateComplete.createDelegate(this, [response]));
12037         }else{
12038             this.renderer.render(this.el, response, this);
12039             this.updateComplete(response);
12040         }
12041     },
12042
12043     updateComplete : function(response){
12044         this.fireEvent("update", this.el, response);
12045         if(typeof response.argument.callback == "function"){
12046             response.argument.callback(this.el, true, response);
12047         }
12048     },
12049
12050     /**
12051      * @private
12052      */
12053     processFailure : function(response){
12054         this.transaction = null;
12055         this.fireEvent("failure", this.el, response);
12056         if(typeof response.argument.callback == "function"){
12057             response.argument.callback(this.el, false, response);
12058         }
12059     },
12060
12061     /**
12062      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12063      * @param {Object} renderer The object implementing the render() method
12064      */
12065     setRenderer : function(renderer){
12066         this.renderer = renderer;
12067     },
12068
12069     getRenderer : function(){
12070        return this.renderer;
12071     },
12072
12073     /**
12074      * Set the defaultUrl used for updates
12075      * @param {String/Function} defaultUrl The url or a function to call to get the url
12076      */
12077     setDefaultUrl : function(defaultUrl){
12078         this.defaultUrl = defaultUrl;
12079     },
12080
12081     /**
12082      * Aborts the executing transaction
12083      */
12084     abort : function(){
12085         if(this.transaction){
12086             Roo.Ajax.abort(this.transaction);
12087         }
12088     },
12089
12090     /**
12091      * Returns true if an update is in progress
12092      * @return {Boolean}
12093      */
12094     isUpdating : function(){
12095         if(this.transaction){
12096             return Roo.Ajax.isLoading(this.transaction);
12097         }
12098         return false;
12099     }
12100 });
12101
12102 /**
12103  * @class Roo.UpdateManager.defaults
12104  * @static (not really - but it helps the doc tool)
12105  * The defaults collection enables customizing the default properties of UpdateManager
12106  */
12107    Roo.UpdateManager.defaults = {
12108        /**
12109          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12110          * @type Number
12111          */
12112          timeout : 30,
12113
12114          /**
12115          * True to process scripts by default (Defaults to false).
12116          * @type Boolean
12117          */
12118         loadScripts : false,
12119
12120         /**
12121         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12122         * @type String
12123         */
12124         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12125         /**
12126          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12127          * @type Boolean
12128          */
12129         disableCaching : false,
12130         /**
12131          * Whether to show indicatorText when loading (Defaults to true).
12132          * @type Boolean
12133          */
12134         showLoadIndicator : true,
12135         /**
12136          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12137          * @type String
12138          */
12139         indicatorText : '<div class="loading-indicator">Loading...</div>'
12140    };
12141
12142 /**
12143  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12144  *Usage:
12145  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12146  * @param {String/HTMLElement/Roo.Element} el The element to update
12147  * @param {String} url The url
12148  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12149  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12150  * @static
12151  * @deprecated
12152  * @member Roo.UpdateManager
12153  */
12154 Roo.UpdateManager.updateElement = function(el, url, params, options){
12155     var um = Roo.get(el, true).getUpdateManager();
12156     Roo.apply(um, options);
12157     um.update(url, params, options ? options.callback : null);
12158 };
12159 // alias for backwards compat
12160 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12161 /**
12162  * @class Roo.UpdateManager.BasicRenderer
12163  * Default Content renderer. Updates the elements innerHTML with the responseText.
12164  */
12165 Roo.UpdateManager.BasicRenderer = function(){};
12166
12167 Roo.UpdateManager.BasicRenderer.prototype = {
12168     /**
12169      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12170      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12171      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12172      * @param {Roo.Element} el The element being rendered
12173      * @param {Object} response The YUI Connect response object
12174      * @param {UpdateManager} updateManager The calling update manager
12175      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12176      */
12177      render : function(el, response, updateManager, callback){
12178         el.update(response.responseText, updateManager.loadScripts, callback);
12179     }
12180 };
12181 /*
12182  * Based on:
12183  * Roo JS
12184  * (c)) Alan Knowles
12185  * Licence : LGPL
12186  */
12187
12188
12189 /**
12190  * @class Roo.DomTemplate
12191  * @extends Roo.Template
12192  * An effort at a dom based template engine..
12193  *
12194  * Similar to XTemplate, except it uses dom parsing to create the template..
12195  *
12196  * Supported features:
12197  *
12198  *  Tags:
12199
12200 <pre><code>
12201       {a_variable} - output encoded.
12202       {a_variable.format:("Y-m-d")} - call a method on the variable
12203       {a_variable:raw} - unencoded output
12204       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12205       {a_variable:this.method_on_template(...)} - call a method on the template object.
12206  
12207 </code></pre>
12208  *  The tpl tag:
12209 <pre><code>
12210         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12211         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12212         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12213         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12214   
12215 </code></pre>
12216  *      
12217  */
12218 Roo.DomTemplate = function()
12219 {
12220      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12221      if (this.html) {
12222         this.compile();
12223      }
12224 };
12225
12226
12227 Roo.extend(Roo.DomTemplate, Roo.Template, {
12228     /**
12229      * id counter for sub templates.
12230      */
12231     id : 0,
12232     /**
12233      * flag to indicate if dom parser is inside a pre,
12234      * it will strip whitespace if not.
12235      */
12236     inPre : false,
12237     
12238     /**
12239      * The various sub templates
12240      */
12241     tpls : false,
12242     
12243     
12244     
12245     /**
12246      *
12247      * basic tag replacing syntax
12248      * WORD:WORD()
12249      *
12250      * // you can fake an object call by doing this
12251      *  x.t:(test,tesT) 
12252      * 
12253      */
12254     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12255     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12256     
12257     iterChild : function (node, method) {
12258         
12259         var oldPre = this.inPre;
12260         if (node.tagName == 'PRE') {
12261             this.inPre = true;
12262         }
12263         for( var i = 0; i < node.childNodes.length; i++) {
12264             method.call(this, node.childNodes[i]);
12265         }
12266         this.inPre = oldPre;
12267     },
12268     
12269     
12270     
12271     /**
12272      * compile the template
12273      *
12274      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12275      *
12276      */
12277     compile: function()
12278     {
12279         var s = this.html;
12280         
12281         // covert the html into DOM...
12282         var doc = false;
12283         var div =false;
12284         try {
12285             doc = document.implementation.createHTMLDocument("");
12286             doc.documentElement.innerHTML =   this.html  ;
12287             div = doc.documentElement;
12288         } catch (e) {
12289             // old IE... - nasty -- it causes all sorts of issues.. with
12290             // images getting pulled from server..
12291             div = document.createElement('div');
12292             div.innerHTML = this.html;
12293         }
12294         //doc.documentElement.innerHTML = htmlBody
12295          
12296         
12297         
12298         this.tpls = [];
12299         var _t = this;
12300         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12301         
12302         var tpls = this.tpls;
12303         
12304         // create a top level template from the snippet..
12305         
12306         //Roo.log(div.innerHTML);
12307         
12308         var tpl = {
12309             uid : 'master',
12310             id : this.id++,
12311             attr : false,
12312             value : false,
12313             body : div.innerHTML,
12314             
12315             forCall : false,
12316             execCall : false,
12317             dom : div,
12318             isTop : true
12319             
12320         };
12321         tpls.unshift(tpl);
12322         
12323         
12324         // compile them...
12325         this.tpls = [];
12326         Roo.each(tpls, function(tp){
12327             this.compileTpl(tp);
12328             this.tpls[tp.id] = tp;
12329         }, this);
12330         
12331         this.master = tpls[0];
12332         return this;
12333         
12334         
12335     },
12336     
12337     compileNode : function(node, istop) {
12338         // test for
12339         //Roo.log(node);
12340         
12341         
12342         // skip anything not a tag..
12343         if (node.nodeType != 1) {
12344             if (node.nodeType == 3 && !this.inPre) {
12345                 // reduce white space..
12346                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12347                 
12348             }
12349             return;
12350         }
12351         
12352         var tpl = {
12353             uid : false,
12354             id : false,
12355             attr : false,
12356             value : false,
12357             body : '',
12358             
12359             forCall : false,
12360             execCall : false,
12361             dom : false,
12362             isTop : istop
12363             
12364             
12365         };
12366         
12367         
12368         switch(true) {
12369             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12370             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12371             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12372             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12373             // no default..
12374         }
12375         
12376         
12377         if (!tpl.attr) {
12378             // just itterate children..
12379             this.iterChild(node,this.compileNode);
12380             return;
12381         }
12382         tpl.uid = this.id++;
12383         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12384         node.removeAttribute('roo-'+ tpl.attr);
12385         if (tpl.attr != 'name') {
12386             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12387             node.parentNode.replaceChild(placeholder,  node);
12388         } else {
12389             
12390             var placeholder =  document.createElement('span');
12391             placeholder.className = 'roo-tpl-' + tpl.value;
12392             node.parentNode.replaceChild(placeholder,  node);
12393         }
12394         
12395         // parent now sees '{domtplXXXX}
12396         this.iterChild(node,this.compileNode);
12397         
12398         // we should now have node body...
12399         var div = document.createElement('div');
12400         div.appendChild(node);
12401         tpl.dom = node;
12402         // this has the unfortunate side effect of converting tagged attributes
12403         // eg. href="{...}" into %7C...%7D
12404         // this has been fixed by searching for those combo's although it's a bit hacky..
12405         
12406         
12407         tpl.body = div.innerHTML;
12408         
12409         
12410          
12411         tpl.id = tpl.uid;
12412         switch(tpl.attr) {
12413             case 'for' :
12414                 switch (tpl.value) {
12415                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12416                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12417                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12418                 }
12419                 break;
12420             
12421             case 'exec':
12422                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12423                 break;
12424             
12425             case 'if':     
12426                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12427                 break;
12428             
12429             case 'name':
12430                 tpl.id  = tpl.value; // replace non characters???
12431                 break;
12432             
12433         }
12434         
12435         
12436         this.tpls.push(tpl);
12437         
12438         
12439         
12440     },
12441     
12442     
12443     
12444     
12445     /**
12446      * Compile a segment of the template into a 'sub-template'
12447      *
12448      * 
12449      * 
12450      *
12451      */
12452     compileTpl : function(tpl)
12453     {
12454         var fm = Roo.util.Format;
12455         var useF = this.disableFormats !== true;
12456         
12457         var sep = Roo.isGecko ? "+\n" : ",\n";
12458         
12459         var undef = function(str) {
12460             Roo.debug && Roo.log("Property not found :"  + str);
12461             return '';
12462         };
12463           
12464         //Roo.log(tpl.body);
12465         
12466         
12467         
12468         var fn = function(m, lbrace, name, format, args)
12469         {
12470             //Roo.log("ARGS");
12471             //Roo.log(arguments);
12472             args = args ? args.replace(/\\'/g,"'") : args;
12473             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12474             if (typeof(format) == 'undefined') {
12475                 format =  'htmlEncode'; 
12476             }
12477             if (format == 'raw' ) {
12478                 format = false;
12479             }
12480             
12481             if(name.substr(0, 6) == 'domtpl'){
12482                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12483             }
12484             
12485             // build an array of options to determine if value is undefined..
12486             
12487             // basically get 'xxxx.yyyy' then do
12488             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12489             //    (function () { Roo.log("Property not found"); return ''; })() :
12490             //    ......
12491             
12492             var udef_ar = [];
12493             var lookfor = '';
12494             Roo.each(name.split('.'), function(st) {
12495                 lookfor += (lookfor.length ? '.': '') + st;
12496                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12497             });
12498             
12499             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12500             
12501             
12502             if(format && useF){
12503                 
12504                 args = args ? ',' + args : "";
12505                  
12506                 if(format.substr(0, 5) != "this."){
12507                     format = "fm." + format + '(';
12508                 }else{
12509                     format = 'this.call("'+ format.substr(5) + '", ';
12510                     args = ", values";
12511                 }
12512                 
12513                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12514             }
12515              
12516             if (args && args.length) {
12517                 // called with xxyx.yuu:(test,test)
12518                 // change to ()
12519                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12520             }
12521             // raw.. - :raw modifier..
12522             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12523             
12524         };
12525         var body;
12526         // branched to use + in gecko and [].join() in others
12527         if(Roo.isGecko){
12528             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12529                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12530                     "';};};";
12531         }else{
12532             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12533             body.push(tpl.body.replace(/(\r\n|\n)/g,
12534                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12535             body.push("'].join('');};};");
12536             body = body.join('');
12537         }
12538         
12539         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12540        
12541         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12542         eval(body);
12543         
12544         return this;
12545     },
12546      
12547     /**
12548      * same as applyTemplate, except it's done to one of the subTemplates
12549      * when using named templates, you can do:
12550      *
12551      * var str = pl.applySubTemplate('your-name', values);
12552      *
12553      * 
12554      * @param {Number} id of the template
12555      * @param {Object} values to apply to template
12556      * @param {Object} parent (normaly the instance of this object)
12557      */
12558     applySubTemplate : function(id, values, parent)
12559     {
12560         
12561         
12562         var t = this.tpls[id];
12563         
12564         
12565         try { 
12566             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12567                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12568                 return '';
12569             }
12570         } catch(e) {
12571             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12572             Roo.log(values);
12573           
12574             return '';
12575         }
12576         try { 
12577             
12578             if(t.execCall && t.execCall.call(this, values, parent)){
12579                 return '';
12580             }
12581         } catch(e) {
12582             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12583             Roo.log(values);
12584             return '';
12585         }
12586         
12587         try {
12588             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12589             parent = t.target ? values : parent;
12590             if(t.forCall && vs instanceof Array){
12591                 var buf = [];
12592                 for(var i = 0, len = vs.length; i < len; i++){
12593                     try {
12594                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12595                     } catch (e) {
12596                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12597                         Roo.log(e.body);
12598                         //Roo.log(t.compiled);
12599                         Roo.log(vs[i]);
12600                     }   
12601                 }
12602                 return buf.join('');
12603             }
12604         } catch (e) {
12605             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12606             Roo.log(values);
12607             return '';
12608         }
12609         try {
12610             return t.compiled.call(this, vs, parent);
12611         } catch (e) {
12612             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12613             Roo.log(e.body);
12614             //Roo.log(t.compiled);
12615             Roo.log(values);
12616             return '';
12617         }
12618     },
12619
12620    
12621
12622     applyTemplate : function(values){
12623         return this.master.compiled.call(this, values, {});
12624         //var s = this.subs;
12625     },
12626
12627     apply : function(){
12628         return this.applyTemplate.apply(this, arguments);
12629     }
12630
12631  });
12632
12633 Roo.DomTemplate.from = function(el){
12634     el = Roo.getDom(el);
12635     return new Roo.Domtemplate(el.value || el.innerHTML);
12636 };/*
12637  * Based on:
12638  * Ext JS Library 1.1.1
12639  * Copyright(c) 2006-2007, Ext JS, LLC.
12640  *
12641  * Originally Released Under LGPL - original licence link has changed is not relivant.
12642  *
12643  * Fork - LGPL
12644  * <script type="text/javascript">
12645  */
12646
12647 /**
12648  * @class Roo.util.DelayedTask
12649  * Provides a convenient method of performing setTimeout where a new
12650  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12651  * You can use this class to buffer
12652  * the keypress events for a certain number of milliseconds, and perform only if they stop
12653  * for that amount of time.
12654  * @constructor The parameters to this constructor serve as defaults and are not required.
12655  * @param {Function} fn (optional) The default function to timeout
12656  * @param {Object} scope (optional) The default scope of that timeout
12657  * @param {Array} args (optional) The default Array of arguments
12658  */
12659 Roo.util.DelayedTask = function(fn, scope, args){
12660     var id = null, d, t;
12661
12662     var call = function(){
12663         var now = new Date().getTime();
12664         if(now - t >= d){
12665             clearInterval(id);
12666             id = null;
12667             fn.apply(scope, args || []);
12668         }
12669     };
12670     /**
12671      * Cancels any pending timeout and queues a new one
12672      * @param {Number} delay The milliseconds to delay
12673      * @param {Function} newFn (optional) Overrides function passed to constructor
12674      * @param {Object} newScope (optional) Overrides scope passed to constructor
12675      * @param {Array} newArgs (optional) Overrides args passed to constructor
12676      */
12677     this.delay = function(delay, newFn, newScope, newArgs){
12678         if(id && delay != d){
12679             this.cancel();
12680         }
12681         d = delay;
12682         t = new Date().getTime();
12683         fn = newFn || fn;
12684         scope = newScope || scope;
12685         args = newArgs || args;
12686         if(!id){
12687             id = setInterval(call, d);
12688         }
12689     };
12690
12691     /**
12692      * Cancel the last queued timeout
12693      */
12694     this.cancel = function(){
12695         if(id){
12696             clearInterval(id);
12697             id = null;
12698         }
12699     };
12700 };/*
12701  * Based on:
12702  * Ext JS Library 1.1.1
12703  * Copyright(c) 2006-2007, Ext JS, LLC.
12704  *
12705  * Originally Released Under LGPL - original licence link has changed is not relivant.
12706  *
12707  * Fork - LGPL
12708  * <script type="text/javascript">
12709  */
12710  
12711  
12712 Roo.util.TaskRunner = function(interval){
12713     interval = interval || 10;
12714     var tasks = [], removeQueue = [];
12715     var id = 0;
12716     var running = false;
12717
12718     var stopThread = function(){
12719         running = false;
12720         clearInterval(id);
12721         id = 0;
12722     };
12723
12724     var startThread = function(){
12725         if(!running){
12726             running = true;
12727             id = setInterval(runTasks, interval);
12728         }
12729     };
12730
12731     var removeTask = function(task){
12732         removeQueue.push(task);
12733         if(task.onStop){
12734             task.onStop();
12735         }
12736     };
12737
12738     var runTasks = function(){
12739         if(removeQueue.length > 0){
12740             for(var i = 0, len = removeQueue.length; i < len; i++){
12741                 tasks.remove(removeQueue[i]);
12742             }
12743             removeQueue = [];
12744             if(tasks.length < 1){
12745                 stopThread();
12746                 return;
12747             }
12748         }
12749         var now = new Date().getTime();
12750         for(var i = 0, len = tasks.length; i < len; ++i){
12751             var t = tasks[i];
12752             var itime = now - t.taskRunTime;
12753             if(t.interval <= itime){
12754                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
12755                 t.taskRunTime = now;
12756                 if(rt === false || t.taskRunCount === t.repeat){
12757                     removeTask(t);
12758                     return;
12759                 }
12760             }
12761             if(t.duration && t.duration <= (now - t.taskStartTime)){
12762                 removeTask(t);
12763             }
12764         }
12765     };
12766
12767     /**
12768      * Queues a new task.
12769      * @param {Object} task
12770      */
12771     this.start = function(task){
12772         tasks.push(task);
12773         task.taskStartTime = new Date().getTime();
12774         task.taskRunTime = 0;
12775         task.taskRunCount = 0;
12776         startThread();
12777         return task;
12778     };
12779
12780     this.stop = function(task){
12781         removeTask(task);
12782         return task;
12783     };
12784
12785     this.stopAll = function(){
12786         stopThread();
12787         for(var i = 0, len = tasks.length; i < len; i++){
12788             if(tasks[i].onStop){
12789                 tasks[i].onStop();
12790             }
12791         }
12792         tasks = [];
12793         removeQueue = [];
12794     };
12795 };
12796
12797 Roo.TaskMgr = new Roo.util.TaskRunner();/*
12798  * Based on:
12799  * Ext JS Library 1.1.1
12800  * Copyright(c) 2006-2007, Ext JS, LLC.
12801  *
12802  * Originally Released Under LGPL - original licence link has changed is not relivant.
12803  *
12804  * Fork - LGPL
12805  * <script type="text/javascript">
12806  */
12807
12808  
12809 /**
12810  * @class Roo.util.MixedCollection
12811  * @extends Roo.util.Observable
12812  * A Collection class that maintains both numeric indexes and keys and exposes events.
12813  * @constructor
12814  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
12815  * collection (defaults to false)
12816  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
12817  * and return the key value for that item.  This is used when available to look up the key on items that
12818  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
12819  * equivalent to providing an implementation for the {@link #getKey} method.
12820  */
12821 Roo.util.MixedCollection = function(allowFunctions, keyFn){
12822     this.items = [];
12823     this.map = {};
12824     this.keys = [];
12825     this.length = 0;
12826     this.addEvents({
12827         /**
12828          * @event clear
12829          * Fires when the collection is cleared.
12830          */
12831         "clear" : true,
12832         /**
12833          * @event add
12834          * Fires when an item is added to the collection.
12835          * @param {Number} index The index at which the item was added.
12836          * @param {Object} o The item added.
12837          * @param {String} key The key associated with the added item.
12838          */
12839         "add" : true,
12840         /**
12841          * @event replace
12842          * Fires when an item is replaced in the collection.
12843          * @param {String} key he key associated with the new added.
12844          * @param {Object} old The item being replaced.
12845          * @param {Object} new The new item.
12846          */
12847         "replace" : true,
12848         /**
12849          * @event remove
12850          * Fires when an item is removed from the collection.
12851          * @param {Object} o The item being removed.
12852          * @param {String} key (optional) The key associated with the removed item.
12853          */
12854         "remove" : true,
12855         "sort" : true
12856     });
12857     this.allowFunctions = allowFunctions === true;
12858     if(keyFn){
12859         this.getKey = keyFn;
12860     }
12861     Roo.util.MixedCollection.superclass.constructor.call(this);
12862 };
12863
12864 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
12865     allowFunctions : false,
12866     
12867 /**
12868  * Adds an item to the collection.
12869  * @param {String} key The key to associate with the item
12870  * @param {Object} o The item to add.
12871  * @return {Object} The item added.
12872  */
12873     add : function(key, o){
12874         if(arguments.length == 1){
12875             o = arguments[0];
12876             key = this.getKey(o);
12877         }
12878         if(typeof key == "undefined" || key === null){
12879             this.length++;
12880             this.items.push(o);
12881             this.keys.push(null);
12882         }else{
12883             var old = this.map[key];
12884             if(old){
12885                 return this.replace(key, o);
12886             }
12887             this.length++;
12888             this.items.push(o);
12889             this.map[key] = o;
12890             this.keys.push(key);
12891         }
12892         this.fireEvent("add", this.length-1, o, key);
12893         return o;
12894     },
12895        
12896 /**
12897   * MixedCollection has a generic way to fetch keys if you implement getKey.
12898 <pre><code>
12899 // normal way
12900 var mc = new Roo.util.MixedCollection();
12901 mc.add(someEl.dom.id, someEl);
12902 mc.add(otherEl.dom.id, otherEl);
12903 //and so on
12904
12905 // using getKey
12906 var mc = new Roo.util.MixedCollection();
12907 mc.getKey = function(el){
12908    return el.dom.id;
12909 };
12910 mc.add(someEl);
12911 mc.add(otherEl);
12912
12913 // or via the constructor
12914 var mc = new Roo.util.MixedCollection(false, function(el){
12915    return el.dom.id;
12916 });
12917 mc.add(someEl);
12918 mc.add(otherEl);
12919 </code></pre>
12920  * @param o {Object} The item for which to find the key.
12921  * @return {Object} The key for the passed item.
12922  */
12923     getKey : function(o){
12924          return o.id; 
12925     },
12926    
12927 /**
12928  * Replaces an item in the collection.
12929  * @param {String} key The key associated with the item to replace, or the item to replace.
12930  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
12931  * @return {Object}  The new item.
12932  */
12933     replace : function(key, o){
12934         if(arguments.length == 1){
12935             o = arguments[0];
12936             key = this.getKey(o);
12937         }
12938         var old = this.item(key);
12939         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
12940              return this.add(key, o);
12941         }
12942         var index = this.indexOfKey(key);
12943         this.items[index] = o;
12944         this.map[key] = o;
12945         this.fireEvent("replace", key, old, o);
12946         return o;
12947     },
12948    
12949 /**
12950  * Adds all elements of an Array or an Object to the collection.
12951  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
12952  * an Array of values, each of which are added to the collection.
12953  */
12954     addAll : function(objs){
12955         if(arguments.length > 1 || objs instanceof Array){
12956             var args = arguments.length > 1 ? arguments : objs;
12957             for(var i = 0, len = args.length; i < len; i++){
12958                 this.add(args[i]);
12959             }
12960         }else{
12961             for(var key in objs){
12962                 if(this.allowFunctions || typeof objs[key] != "function"){
12963                     this.add(key, objs[key]);
12964                 }
12965             }
12966         }
12967     },
12968    
12969 /**
12970  * Executes the specified function once for every item in the collection, passing each
12971  * item as the first and only parameter. returning false from the function will stop the iteration.
12972  * @param {Function} fn The function to execute for each item.
12973  * @param {Object} scope (optional) The scope in which to execute the function.
12974  */
12975     each : function(fn, scope){
12976         var items = [].concat(this.items); // each safe for removal
12977         for(var i = 0, len = items.length; i < len; i++){
12978             if(fn.call(scope || items[i], items[i], i, len) === false){
12979                 break;
12980             }
12981         }
12982     },
12983    
12984 /**
12985  * Executes the specified function once for every key in the collection, passing each
12986  * key, and its associated item as the first two parameters.
12987  * @param {Function} fn The function to execute for each item.
12988  * @param {Object} scope (optional) The scope in which to execute the function.
12989  */
12990     eachKey : function(fn, scope){
12991         for(var i = 0, len = this.keys.length; i < len; i++){
12992             fn.call(scope || window, this.keys[i], this.items[i], i, len);
12993         }
12994     },
12995    
12996 /**
12997  * Returns the first item in the collection which elicits a true return value from the
12998  * passed selection function.
12999  * @param {Function} fn The selection function to execute for each item.
13000  * @param {Object} scope (optional) The scope in which to execute the function.
13001  * @return {Object} The first item in the collection which returned true from the selection function.
13002  */
13003     find : function(fn, scope){
13004         for(var i = 0, len = this.items.length; i < len; i++){
13005             if(fn.call(scope || window, this.items[i], this.keys[i])){
13006                 return this.items[i];
13007             }
13008         }
13009         return null;
13010     },
13011    
13012 /**
13013  * Inserts an item at the specified index in the collection.
13014  * @param {Number} index The index to insert the item at.
13015  * @param {String} key The key to associate with the new item, or the item itself.
13016  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13017  * @return {Object} The item inserted.
13018  */
13019     insert : function(index, key, o){
13020         if(arguments.length == 2){
13021             o = arguments[1];
13022             key = this.getKey(o);
13023         }
13024         if(index >= this.length){
13025             return this.add(key, o);
13026         }
13027         this.length++;
13028         this.items.splice(index, 0, o);
13029         if(typeof key != "undefined" && key != null){
13030             this.map[key] = o;
13031         }
13032         this.keys.splice(index, 0, key);
13033         this.fireEvent("add", index, o, key);
13034         return o;
13035     },
13036    
13037 /**
13038  * Removed an item from the collection.
13039  * @param {Object} o The item to remove.
13040  * @return {Object} The item removed.
13041  */
13042     remove : function(o){
13043         return this.removeAt(this.indexOf(o));
13044     },
13045    
13046 /**
13047  * Remove an item from a specified index in the collection.
13048  * @param {Number} index The index within the collection of the item to remove.
13049  */
13050     removeAt : function(index){
13051         if(index < this.length && index >= 0){
13052             this.length--;
13053             var o = this.items[index];
13054             this.items.splice(index, 1);
13055             var key = this.keys[index];
13056             if(typeof key != "undefined"){
13057                 delete this.map[key];
13058             }
13059             this.keys.splice(index, 1);
13060             this.fireEvent("remove", o, key);
13061         }
13062     },
13063    
13064 /**
13065  * Removed an item associated with the passed key fom the collection.
13066  * @param {String} key The key of the item to remove.
13067  */
13068     removeKey : function(key){
13069         return this.removeAt(this.indexOfKey(key));
13070     },
13071    
13072 /**
13073  * Returns the number of items in the collection.
13074  * @return {Number} the number of items in the collection.
13075  */
13076     getCount : function(){
13077         return this.length; 
13078     },
13079    
13080 /**
13081  * Returns index within the collection of the passed Object.
13082  * @param {Object} o The item to find the index of.
13083  * @return {Number} index of the item.
13084  */
13085     indexOf : function(o){
13086         if(!this.items.indexOf){
13087             for(var i = 0, len = this.items.length; i < len; i++){
13088                 if(this.items[i] == o) return i;
13089             }
13090             return -1;
13091         }else{
13092             return this.items.indexOf(o);
13093         }
13094     },
13095    
13096 /**
13097  * Returns index within the collection of the passed key.
13098  * @param {String} key The key to find the index of.
13099  * @return {Number} index of the key.
13100  */
13101     indexOfKey : function(key){
13102         if(!this.keys.indexOf){
13103             for(var i = 0, len = this.keys.length; i < len; i++){
13104                 if(this.keys[i] == key) return i;
13105             }
13106             return -1;
13107         }else{
13108             return this.keys.indexOf(key);
13109         }
13110     },
13111    
13112 /**
13113  * Returns the item associated with the passed key OR index. Key has priority over index.
13114  * @param {String/Number} key The key or index of the item.
13115  * @return {Object} The item associated with the passed key.
13116  */
13117     item : function(key){
13118         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13119         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13120     },
13121     
13122 /**
13123  * Returns the item at the specified index.
13124  * @param {Number} index The index of the item.
13125  * @return {Object}
13126  */
13127     itemAt : function(index){
13128         return this.items[index];
13129     },
13130     
13131 /**
13132  * Returns the item associated with the passed key.
13133  * @param {String/Number} key The key of the item.
13134  * @return {Object} The item associated with the passed key.
13135  */
13136     key : function(key){
13137         return this.map[key];
13138     },
13139    
13140 /**
13141  * Returns true if the collection contains the passed Object as an item.
13142  * @param {Object} o  The Object to look for in the collection.
13143  * @return {Boolean} True if the collection contains the Object as an item.
13144  */
13145     contains : function(o){
13146         return this.indexOf(o) != -1;
13147     },
13148    
13149 /**
13150  * Returns true if the collection contains the passed Object as a key.
13151  * @param {String} key The key to look for in the collection.
13152  * @return {Boolean} True if the collection contains the Object as a key.
13153  */
13154     containsKey : function(key){
13155         return typeof this.map[key] != "undefined";
13156     },
13157    
13158 /**
13159  * Removes all items from the collection.
13160  */
13161     clear : function(){
13162         this.length = 0;
13163         this.items = [];
13164         this.keys = [];
13165         this.map = {};
13166         this.fireEvent("clear");
13167     },
13168    
13169 /**
13170  * Returns the first item in the collection.
13171  * @return {Object} the first item in the collection..
13172  */
13173     first : function(){
13174         return this.items[0]; 
13175     },
13176    
13177 /**
13178  * Returns the last item in the collection.
13179  * @return {Object} the last item in the collection..
13180  */
13181     last : function(){
13182         return this.items[this.length-1];   
13183     },
13184     
13185     _sort : function(property, dir, fn){
13186         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13187         fn = fn || function(a, b){
13188             return a-b;
13189         };
13190         var c = [], k = this.keys, items = this.items;
13191         for(var i = 0, len = items.length; i < len; i++){
13192             c[c.length] = {key: k[i], value: items[i], index: i};
13193         }
13194         c.sort(function(a, b){
13195             var v = fn(a[property], b[property]) * dsc;
13196             if(v == 0){
13197                 v = (a.index < b.index ? -1 : 1);
13198             }
13199             return v;
13200         });
13201         for(var i = 0, len = c.length; i < len; i++){
13202             items[i] = c[i].value;
13203             k[i] = c[i].key;
13204         }
13205         this.fireEvent("sort", this);
13206     },
13207     
13208     /**
13209      * Sorts this collection with the passed comparison function
13210      * @param {String} direction (optional) "ASC" or "DESC"
13211      * @param {Function} fn (optional) comparison function
13212      */
13213     sort : function(dir, fn){
13214         this._sort("value", dir, fn);
13215     },
13216     
13217     /**
13218      * Sorts this collection by keys
13219      * @param {String} direction (optional) "ASC" or "DESC"
13220      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13221      */
13222     keySort : function(dir, fn){
13223         this._sort("key", dir, fn || function(a, b){
13224             return String(a).toUpperCase()-String(b).toUpperCase();
13225         });
13226     },
13227     
13228     /**
13229      * Returns a range of items in this collection
13230      * @param {Number} startIndex (optional) defaults to 0
13231      * @param {Number} endIndex (optional) default to the last item
13232      * @return {Array} An array of items
13233      */
13234     getRange : function(start, end){
13235         var items = this.items;
13236         if(items.length < 1){
13237             return [];
13238         }
13239         start = start || 0;
13240         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13241         var r = [];
13242         if(start <= end){
13243             for(var i = start; i <= end; i++) {
13244                     r[r.length] = items[i];
13245             }
13246         }else{
13247             for(var i = start; i >= end; i--) {
13248                     r[r.length] = items[i];
13249             }
13250         }
13251         return r;
13252     },
13253         
13254     /**
13255      * Filter the <i>objects</i> in this collection by a specific property. 
13256      * Returns a new collection that has been filtered.
13257      * @param {String} property A property on your objects
13258      * @param {String/RegExp} value Either string that the property values 
13259      * should start with or a RegExp to test against the property
13260      * @return {MixedCollection} The new filtered collection
13261      */
13262     filter : function(property, value){
13263         if(!value.exec){ // not a regex
13264             value = String(value);
13265             if(value.length == 0){
13266                 return this.clone();
13267             }
13268             value = new RegExp("^" + Roo.escapeRe(value), "i");
13269         }
13270         return this.filterBy(function(o){
13271             return o && value.test(o[property]);
13272         });
13273         },
13274     
13275     /**
13276      * Filter by a function. * Returns a new collection that has been filtered.
13277      * The passed function will be called with each 
13278      * object in the collection. If the function returns true, the value is included 
13279      * otherwise it is filtered.
13280      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13281      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13282      * @return {MixedCollection} The new filtered collection
13283      */
13284     filterBy : function(fn, scope){
13285         var r = new Roo.util.MixedCollection();
13286         r.getKey = this.getKey;
13287         var k = this.keys, it = this.items;
13288         for(var i = 0, len = it.length; i < len; i++){
13289             if(fn.call(scope||this, it[i], k[i])){
13290                                 r.add(k[i], it[i]);
13291                         }
13292         }
13293         return r;
13294     },
13295     
13296     /**
13297      * Creates a duplicate of this collection
13298      * @return {MixedCollection}
13299      */
13300     clone : function(){
13301         var r = new Roo.util.MixedCollection();
13302         var k = this.keys, it = this.items;
13303         for(var i = 0, len = it.length; i < len; i++){
13304             r.add(k[i], it[i]);
13305         }
13306         r.getKey = this.getKey;
13307         return r;
13308     }
13309 });
13310 /**
13311  * Returns the item associated with the passed key or index.
13312  * @method
13313  * @param {String/Number} key The key or index of the item.
13314  * @return {Object} The item associated with the passed key.
13315  */
13316 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13317  * Based on:
13318  * Ext JS Library 1.1.1
13319  * Copyright(c) 2006-2007, Ext JS, LLC.
13320  *
13321  * Originally Released Under LGPL - original licence link has changed is not relivant.
13322  *
13323  * Fork - LGPL
13324  * <script type="text/javascript">
13325  */
13326 /**
13327  * @class Roo.util.JSON
13328  * Modified version of Douglas Crockford"s json.js that doesn"t
13329  * mess with the Object prototype 
13330  * http://www.json.org/js.html
13331  * @singleton
13332  */
13333 Roo.util.JSON = new (function(){
13334     var useHasOwn = {}.hasOwnProperty ? true : false;
13335     
13336     // crashes Safari in some instances
13337     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13338     
13339     var pad = function(n) {
13340         return n < 10 ? "0" + n : n;
13341     };
13342     
13343     var m = {
13344         "\b": '\\b',
13345         "\t": '\\t',
13346         "\n": '\\n',
13347         "\f": '\\f',
13348         "\r": '\\r',
13349         '"' : '\\"',
13350         "\\": '\\\\'
13351     };
13352
13353     var encodeString = function(s){
13354         if (/["\\\x00-\x1f]/.test(s)) {
13355             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13356                 var c = m[b];
13357                 if(c){
13358                     return c;
13359                 }
13360                 c = b.charCodeAt();
13361                 return "\\u00" +
13362                     Math.floor(c / 16).toString(16) +
13363                     (c % 16).toString(16);
13364             }) + '"';
13365         }
13366         return '"' + s + '"';
13367     };
13368     
13369     var encodeArray = function(o){
13370         var a = ["["], b, i, l = o.length, v;
13371             for (i = 0; i < l; i += 1) {
13372                 v = o[i];
13373                 switch (typeof v) {
13374                     case "undefined":
13375                     case "function":
13376                     case "unknown":
13377                         break;
13378                     default:
13379                         if (b) {
13380                             a.push(',');
13381                         }
13382                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13383                         b = true;
13384                 }
13385             }
13386             a.push("]");
13387             return a.join("");
13388     };
13389     
13390     var encodeDate = function(o){
13391         return '"' + o.getFullYear() + "-" +
13392                 pad(o.getMonth() + 1) + "-" +
13393                 pad(o.getDate()) + "T" +
13394                 pad(o.getHours()) + ":" +
13395                 pad(o.getMinutes()) + ":" +
13396                 pad(o.getSeconds()) + '"';
13397     };
13398     
13399     /**
13400      * Encodes an Object, Array or other value
13401      * @param {Mixed} o The variable to encode
13402      * @return {String} The JSON string
13403      */
13404     this.encode = function(o)
13405     {
13406         // should this be extended to fully wrap stringify..
13407         
13408         if(typeof o == "undefined" || o === null){
13409             return "null";
13410         }else if(o instanceof Array){
13411             return encodeArray(o);
13412         }else if(o instanceof Date){
13413             return encodeDate(o);
13414         }else if(typeof o == "string"){
13415             return encodeString(o);
13416         }else if(typeof o == "number"){
13417             return isFinite(o) ? String(o) : "null";
13418         }else if(typeof o == "boolean"){
13419             return String(o);
13420         }else {
13421             var a = ["{"], b, i, v;
13422             for (i in o) {
13423                 if(!useHasOwn || o.hasOwnProperty(i)) {
13424                     v = o[i];
13425                     switch (typeof v) {
13426                     case "undefined":
13427                     case "function":
13428                     case "unknown":
13429                         break;
13430                     default:
13431                         if(b){
13432                             a.push(',');
13433                         }
13434                         a.push(this.encode(i), ":",
13435                                 v === null ? "null" : this.encode(v));
13436                         b = true;
13437                     }
13438                 }
13439             }
13440             a.push("}");
13441             return a.join("");
13442         }
13443     };
13444     
13445     /**
13446      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13447      * @param {String} json The JSON string
13448      * @return {Object} The resulting object
13449      */
13450     this.decode = function(json){
13451         
13452         return  /** eval:var:json */ eval("(" + json + ')');
13453     };
13454 })();
13455 /** 
13456  * Shorthand for {@link Roo.util.JSON#encode}
13457  * @member Roo encode 
13458  * @method */
13459 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13460 /** 
13461  * Shorthand for {@link Roo.util.JSON#decode}
13462  * @member Roo decode 
13463  * @method */
13464 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13465 /*
13466  * Based on:
13467  * Ext JS Library 1.1.1
13468  * Copyright(c) 2006-2007, Ext JS, LLC.
13469  *
13470  * Originally Released Under LGPL - original licence link has changed is not relivant.
13471  *
13472  * Fork - LGPL
13473  * <script type="text/javascript">
13474  */
13475  
13476 /**
13477  * @class Roo.util.Format
13478  * Reusable data formatting functions
13479  * @singleton
13480  */
13481 Roo.util.Format = function(){
13482     var trimRe = /^\s+|\s+$/g;
13483     return {
13484         /**
13485          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13486          * @param {String} value The string to truncate
13487          * @param {Number} length The maximum length to allow before truncating
13488          * @return {String} The converted text
13489          */
13490         ellipsis : function(value, len){
13491             if(value && value.length > len){
13492                 return value.substr(0, len-3)+"...";
13493             }
13494             return value;
13495         },
13496
13497         /**
13498          * Checks a reference and converts it to empty string if it is undefined
13499          * @param {Mixed} value Reference to check
13500          * @return {Mixed} Empty string if converted, otherwise the original value
13501          */
13502         undef : function(value){
13503             return typeof value != "undefined" ? value : "";
13504         },
13505
13506         /**
13507          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13508          * @param {String} value The string to encode
13509          * @return {String} The encoded text
13510          */
13511         htmlEncode : function(value){
13512             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13513         },
13514
13515         /**
13516          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13517          * @param {String} value The string to decode
13518          * @return {String} The decoded text
13519          */
13520         htmlDecode : function(value){
13521             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13522         },
13523
13524         /**
13525          * Trims any whitespace from either side of a string
13526          * @param {String} value The text to trim
13527          * @return {String} The trimmed text
13528          */
13529         trim : function(value){
13530             return String(value).replace(trimRe, "");
13531         },
13532
13533         /**
13534          * Returns a substring from within an original string
13535          * @param {String} value The original text
13536          * @param {Number} start The start index of the substring
13537          * @param {Number} length The length of the substring
13538          * @return {String} The substring
13539          */
13540         substr : function(value, start, length){
13541             return String(value).substr(start, length);
13542         },
13543
13544         /**
13545          * Converts a string to all lower case letters
13546          * @param {String} value The text to convert
13547          * @return {String} The converted text
13548          */
13549         lowercase : function(value){
13550             return String(value).toLowerCase();
13551         },
13552
13553         /**
13554          * Converts a string to all upper case letters
13555          * @param {String} value The text to convert
13556          * @return {String} The converted text
13557          */
13558         uppercase : function(value){
13559             return String(value).toUpperCase();
13560         },
13561
13562         /**
13563          * Converts the first character only of a string to upper case
13564          * @param {String} value The text to convert
13565          * @return {String} The converted text
13566          */
13567         capitalize : function(value){
13568             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13569         },
13570
13571         // private
13572         call : function(value, fn){
13573             if(arguments.length > 2){
13574                 var args = Array.prototype.slice.call(arguments, 2);
13575                 args.unshift(value);
13576                  
13577                 return /** eval:var:value */  eval(fn).apply(window, args);
13578             }else{
13579                 /** eval:var:value */
13580                 return /** eval:var:value */ eval(fn).call(window, value);
13581             }
13582         },
13583
13584        
13585         /**
13586          * safer version of Math.toFixed..??/
13587          * @param {Number/String} value The numeric value to format
13588          * @param {Number/String} value Decimal places 
13589          * @return {String} The formatted currency string
13590          */
13591         toFixed : function(v, n)
13592         {
13593             // why not use to fixed - precision is buggered???
13594             if (!n) {
13595                 return Math.round(v-0);
13596             }
13597             var fact = Math.pow(10,n+1);
13598             v = (Math.round((v-0)*fact))/fact;
13599             var z = (''+fact).substring(2);
13600             if (v == Math.floor(v)) {
13601                 return Math.floor(v) + '.' + z;
13602             }
13603             
13604             // now just padd decimals..
13605             var ps = String(v).split('.');
13606             var fd = (ps[1] + z);
13607             var r = fd.substring(0,n); 
13608             var rm = fd.substring(n); 
13609             if (rm < 5) {
13610                 return ps[0] + '.' + r;
13611             }
13612             r*=1; // turn it into a number;
13613             r++;
13614             if (String(r).length != n) {
13615                 ps[0]*=1;
13616                 ps[0]++;
13617                 r = String(r).substring(1); // chop the end off.
13618             }
13619             
13620             return ps[0] + '.' + r;
13621              
13622         },
13623         
13624         /**
13625          * Format a number as US currency
13626          * @param {Number/String} value The numeric value to format
13627          * @return {String} The formatted currency string
13628          */
13629         usMoney : function(v){
13630             return '$' + Roo.util.Format.number(v);
13631         },
13632         
13633         /**
13634          * Format a number
13635          * eventually this should probably emulate php's number_format
13636          * @param {Number/String} value The numeric value to format
13637          * @param {Number} decimals number of decimal places
13638          * @return {String} The formatted currency string
13639          */
13640         number : function(v,decimals)
13641         {
13642             // multiply and round.
13643             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13644             var mul = Math.pow(10, decimals);
13645             var zero = String(mul).substring(1);
13646             v = (Math.round((v-0)*mul))/mul;
13647             
13648             // if it's '0' number.. then
13649             
13650             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13651             v = String(v);
13652             var ps = v.split('.');
13653             var whole = ps[0];
13654             
13655             
13656             var r = /(\d+)(\d{3})/;
13657             // add comma's
13658             while (r.test(whole)) {
13659                 whole = whole.replace(r, '$1' + ',' + '$2');
13660             }
13661             
13662             
13663             var sub = ps[1] ?
13664                     // has decimals..
13665                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13666                     // does not have decimals
13667                     (decimals ? ('.' + zero) : '');
13668             
13669             
13670             return whole + sub ;
13671         },
13672         
13673         /**
13674          * Parse a value into a formatted date using the specified format pattern.
13675          * @param {Mixed} value The value to format
13676          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13677          * @return {String} The formatted date string
13678          */
13679         date : function(v, format){
13680             if(!v){
13681                 return "";
13682             }
13683             if(!(v instanceof Date)){
13684                 v = new Date(Date.parse(v));
13685             }
13686             return v.dateFormat(format || Roo.util.Format.defaults.date);
13687         },
13688
13689         /**
13690          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13691          * @param {String} format Any valid date format string
13692          * @return {Function} The date formatting function
13693          */
13694         dateRenderer : function(format){
13695             return function(v){
13696                 return Roo.util.Format.date(v, format);  
13697             };
13698         },
13699
13700         // private
13701         stripTagsRE : /<\/?[^>]+>/gi,
13702         
13703         /**
13704          * Strips all HTML tags
13705          * @param {Mixed} value The text from which to strip tags
13706          * @return {String} The stripped text
13707          */
13708         stripTags : function(v){
13709             return !v ? v : String(v).replace(this.stripTagsRE, "");
13710         }
13711     };
13712 }();
13713 Roo.util.Format.defaults = {
13714     date : 'd/M/Y'
13715 };/*
13716  * Based on:
13717  * Ext JS Library 1.1.1
13718  * Copyright(c) 2006-2007, Ext JS, LLC.
13719  *
13720  * Originally Released Under LGPL - original licence link has changed is not relivant.
13721  *
13722  * Fork - LGPL
13723  * <script type="text/javascript">
13724  */
13725
13726
13727  
13728
13729 /**
13730  * @class Roo.MasterTemplate
13731  * @extends Roo.Template
13732  * Provides a template that can have child templates. The syntax is:
13733 <pre><code>
13734 var t = new Roo.MasterTemplate(
13735         '&lt;select name="{name}"&gt;',
13736                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
13737         '&lt;/select&gt;'
13738 );
13739 t.add('options', {value: 'foo', text: 'bar'});
13740 // or you can add multiple child elements in one shot
13741 t.addAll('options', [
13742     {value: 'foo', text: 'bar'},
13743     {value: 'foo2', text: 'bar2'},
13744     {value: 'foo3', text: 'bar3'}
13745 ]);
13746 // then append, applying the master template values
13747 t.append('my-form', {name: 'my-select'});
13748 </code></pre>
13749 * A name attribute for the child template is not required if you have only one child
13750 * template or you want to refer to them by index.
13751  */
13752 Roo.MasterTemplate = function(){
13753     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
13754     this.originalHtml = this.html;
13755     var st = {};
13756     var m, re = this.subTemplateRe;
13757     re.lastIndex = 0;
13758     var subIndex = 0;
13759     while(m = re.exec(this.html)){
13760         var name = m[1], content = m[2];
13761         st[subIndex] = {
13762             name: name,
13763             index: subIndex,
13764             buffer: [],
13765             tpl : new Roo.Template(content)
13766         };
13767         if(name){
13768             st[name] = st[subIndex];
13769         }
13770         st[subIndex].tpl.compile();
13771         st[subIndex].tpl.call = this.call.createDelegate(this);
13772         subIndex++;
13773     }
13774     this.subCount = subIndex;
13775     this.subs = st;
13776 };
13777 Roo.extend(Roo.MasterTemplate, Roo.Template, {
13778     /**
13779     * The regular expression used to match sub templates
13780     * @type RegExp
13781     * @property
13782     */
13783     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
13784
13785     /**
13786      * Applies the passed values to a child template.
13787      * @param {String/Number} name (optional) The name or index of the child template
13788      * @param {Array/Object} values The values to be applied to the template
13789      * @return {MasterTemplate} this
13790      */
13791      add : function(name, values){
13792         if(arguments.length == 1){
13793             values = arguments[0];
13794             name = 0;
13795         }
13796         var s = this.subs[name];
13797         s.buffer[s.buffer.length] = s.tpl.apply(values);
13798         return this;
13799     },
13800
13801     /**
13802      * Applies all the passed values to a child template.
13803      * @param {String/Number} name (optional) The name or index of the child template
13804      * @param {Array} values The values to be applied to the template, this should be an array of objects.
13805      * @param {Boolean} reset (optional) True to reset the template first
13806      * @return {MasterTemplate} this
13807      */
13808     fill : function(name, values, reset){
13809         var a = arguments;
13810         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
13811             values = a[0];
13812             name = 0;
13813             reset = a[1];
13814         }
13815         if(reset){
13816             this.reset();
13817         }
13818         for(var i = 0, len = values.length; i < len; i++){
13819             this.add(name, values[i]);
13820         }
13821         return this;
13822     },
13823
13824     /**
13825      * Resets the template for reuse
13826      * @return {MasterTemplate} this
13827      */
13828      reset : function(){
13829         var s = this.subs;
13830         for(var i = 0; i < this.subCount; i++){
13831             s[i].buffer = [];
13832         }
13833         return this;
13834     },
13835
13836     applyTemplate : function(values){
13837         var s = this.subs;
13838         var replaceIndex = -1;
13839         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
13840             return s[++replaceIndex].buffer.join("");
13841         });
13842         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
13843     },
13844
13845     apply : function(){
13846         return this.applyTemplate.apply(this, arguments);
13847     },
13848
13849     compile : function(){return this;}
13850 });
13851
13852 /**
13853  * Alias for fill().
13854  * @method
13855  */
13856 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
13857  /**
13858  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
13859  * var tpl = Roo.MasterTemplate.from('element-id');
13860  * @param {String/HTMLElement} el
13861  * @param {Object} config
13862  * @static
13863  */
13864 Roo.MasterTemplate.from = function(el, config){
13865     el = Roo.getDom(el);
13866     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
13867 };/*
13868  * Based on:
13869  * Ext JS Library 1.1.1
13870  * Copyright(c) 2006-2007, Ext JS, LLC.
13871  *
13872  * Originally Released Under LGPL - original licence link has changed is not relivant.
13873  *
13874  * Fork - LGPL
13875  * <script type="text/javascript">
13876  */
13877
13878  
13879 /**
13880  * @class Roo.util.CSS
13881  * Utility class for manipulating CSS rules
13882  * @singleton
13883  */
13884 Roo.util.CSS = function(){
13885         var rules = null;
13886         var doc = document;
13887
13888     var camelRe = /(-[a-z])/gi;
13889     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
13890
13891    return {
13892    /**
13893     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
13894     * tag and appended to the HEAD of the document.
13895     * @param {String|Object} cssText The text containing the css rules
13896     * @param {String} id An id to add to the stylesheet for later removal
13897     * @return {StyleSheet}
13898     */
13899     createStyleSheet : function(cssText, id){
13900         var ss;
13901         var head = doc.getElementsByTagName("head")[0];
13902         var nrules = doc.createElement("style");
13903         nrules.setAttribute("type", "text/css");
13904         if(id){
13905             nrules.setAttribute("id", id);
13906         }
13907         if (typeof(cssText) != 'string') {
13908             // support object maps..
13909             // not sure if this a good idea.. 
13910             // perhaps it should be merged with the general css handling
13911             // and handle js style props.
13912             var cssTextNew = [];
13913             for(var n in cssText) {
13914                 var citems = [];
13915                 for(var k in cssText[n]) {
13916                     citems.push( k + ' : ' +cssText[n][k] + ';' );
13917                 }
13918                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
13919                 
13920             }
13921             cssText = cssTextNew.join("\n");
13922             
13923         }
13924        
13925        
13926        if(Roo.isIE){
13927            head.appendChild(nrules);
13928            ss = nrules.styleSheet;
13929            ss.cssText = cssText;
13930        }else{
13931            try{
13932                 nrules.appendChild(doc.createTextNode(cssText));
13933            }catch(e){
13934                nrules.cssText = cssText; 
13935            }
13936            head.appendChild(nrules);
13937            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
13938        }
13939        this.cacheStyleSheet(ss);
13940        return ss;
13941    },
13942
13943    /**
13944     * Removes a style or link tag by id
13945     * @param {String} id The id of the tag
13946     */
13947    removeStyleSheet : function(id){
13948        var existing = doc.getElementById(id);
13949        if(existing){
13950            existing.parentNode.removeChild(existing);
13951        }
13952    },
13953
13954    /**
13955     * Dynamically swaps an existing stylesheet reference for a new one
13956     * @param {String} id The id of an existing link tag to remove
13957     * @param {String} url The href of the new stylesheet to include
13958     */
13959    swapStyleSheet : function(id, url){
13960        this.removeStyleSheet(id);
13961        var ss = doc.createElement("link");
13962        ss.setAttribute("rel", "stylesheet");
13963        ss.setAttribute("type", "text/css");
13964        ss.setAttribute("id", id);
13965        ss.setAttribute("href", url);
13966        doc.getElementsByTagName("head")[0].appendChild(ss);
13967    },
13968    
13969    /**
13970     * Refresh the rule cache if you have dynamically added stylesheets
13971     * @return {Object} An object (hash) of rules indexed by selector
13972     */
13973    refreshCache : function(){
13974        return this.getRules(true);
13975    },
13976
13977    // private
13978    cacheStyleSheet : function(stylesheet){
13979        if(!rules){
13980            rules = {};
13981        }
13982        try{// try catch for cross domain access issue
13983            var ssRules = stylesheet.cssRules || stylesheet.rules;
13984            for(var j = ssRules.length-1; j >= 0; --j){
13985                rules[ssRules[j].selectorText] = ssRules[j];
13986            }
13987        }catch(e){}
13988    },
13989    
13990    /**
13991     * Gets all css rules for the document
13992     * @param {Boolean} refreshCache true to refresh the internal cache
13993     * @return {Object} An object (hash) of rules indexed by selector
13994     */
13995    getRules : function(refreshCache){
13996                 if(rules == null || refreshCache){
13997                         rules = {};
13998                         var ds = doc.styleSheets;
13999                         for(var i =0, len = ds.length; i < len; i++){
14000                             try{
14001                         this.cacheStyleSheet(ds[i]);
14002                     }catch(e){} 
14003                 }
14004                 }
14005                 return rules;
14006         },
14007         
14008         /**
14009     * Gets an an individual CSS rule by selector(s)
14010     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14011     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14012     * @return {CSSRule} The CSS rule or null if one is not found
14013     */
14014    getRule : function(selector, refreshCache){
14015                 var rs = this.getRules(refreshCache);
14016                 if(!(selector instanceof Array)){
14017                     return rs[selector];
14018                 }
14019                 for(var i = 0; i < selector.length; i++){
14020                         if(rs[selector[i]]){
14021                                 return rs[selector[i]];
14022                         }
14023                 }
14024                 return null;
14025         },
14026         
14027         
14028         /**
14029     * Updates a rule property
14030     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14031     * @param {String} property The css property
14032     * @param {String} value The new value for the property
14033     * @return {Boolean} true If a rule was found and updated
14034     */
14035    updateRule : function(selector, property, value){
14036                 if(!(selector instanceof Array)){
14037                         var rule = this.getRule(selector);
14038                         if(rule){
14039                                 rule.style[property.replace(camelRe, camelFn)] = value;
14040                                 return true;
14041                         }
14042                 }else{
14043                         for(var i = 0; i < selector.length; i++){
14044                                 if(this.updateRule(selector[i], property, value)){
14045                                         return true;
14046                                 }
14047                         }
14048                 }
14049                 return false;
14050         }
14051    };   
14052 }();/*
14053  * Based on:
14054  * Ext JS Library 1.1.1
14055  * Copyright(c) 2006-2007, Ext JS, LLC.
14056  *
14057  * Originally Released Under LGPL - original licence link has changed is not relivant.
14058  *
14059  * Fork - LGPL
14060  * <script type="text/javascript">
14061  */
14062
14063  
14064
14065 /**
14066  * @class Roo.util.ClickRepeater
14067  * @extends Roo.util.Observable
14068  * 
14069  * A wrapper class which can be applied to any element. Fires a "click" event while the
14070  * mouse is pressed. The interval between firings may be specified in the config but
14071  * defaults to 10 milliseconds.
14072  * 
14073  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14074  * 
14075  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14076  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14077  * Similar to an autorepeat key delay.
14078  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14079  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14080  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14081  *           "interval" and "delay" are ignored. "immediate" is honored.
14082  * @cfg {Boolean} preventDefault True to prevent the default click event
14083  * @cfg {Boolean} stopDefault True to stop the default click event
14084  * 
14085  * @history
14086  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14087  *     2007-02-02 jvs Renamed to ClickRepeater
14088  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14089  *
14090  *  @constructor
14091  * @param {String/HTMLElement/Element} el The element to listen on
14092  * @param {Object} config
14093  **/
14094 Roo.util.ClickRepeater = function(el, config)
14095 {
14096     this.el = Roo.get(el);
14097     this.el.unselectable();
14098
14099     Roo.apply(this, config);
14100
14101     this.addEvents({
14102     /**
14103      * @event mousedown
14104      * Fires when the mouse button is depressed.
14105      * @param {Roo.util.ClickRepeater} this
14106      */
14107         "mousedown" : true,
14108     /**
14109      * @event click
14110      * Fires on a specified interval during the time the element is pressed.
14111      * @param {Roo.util.ClickRepeater} this
14112      */
14113         "click" : true,
14114     /**
14115      * @event mouseup
14116      * Fires when the mouse key is released.
14117      * @param {Roo.util.ClickRepeater} this
14118      */
14119         "mouseup" : true
14120     });
14121
14122     this.el.on("mousedown", this.handleMouseDown, this);
14123     if(this.preventDefault || this.stopDefault){
14124         this.el.on("click", function(e){
14125             if(this.preventDefault){
14126                 e.preventDefault();
14127             }
14128             if(this.stopDefault){
14129                 e.stopEvent();
14130             }
14131         }, this);
14132     }
14133
14134     // allow inline handler
14135     if(this.handler){
14136         this.on("click", this.handler,  this.scope || this);
14137     }
14138
14139     Roo.util.ClickRepeater.superclass.constructor.call(this);
14140 };
14141
14142 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14143     interval : 20,
14144     delay: 250,
14145     preventDefault : true,
14146     stopDefault : false,
14147     timer : 0,
14148
14149     // private
14150     handleMouseDown : function(){
14151         clearTimeout(this.timer);
14152         this.el.blur();
14153         if(this.pressClass){
14154             this.el.addClass(this.pressClass);
14155         }
14156         this.mousedownTime = new Date();
14157
14158         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14159         this.el.on("mouseout", this.handleMouseOut, this);
14160
14161         this.fireEvent("mousedown", this);
14162         this.fireEvent("click", this);
14163         
14164         this.timer = this.click.defer(this.delay || this.interval, this);
14165     },
14166
14167     // private
14168     click : function(){
14169         this.fireEvent("click", this);
14170         this.timer = this.click.defer(this.getInterval(), this);
14171     },
14172
14173     // private
14174     getInterval: function(){
14175         if(!this.accelerate){
14176             return this.interval;
14177         }
14178         var pressTime = this.mousedownTime.getElapsed();
14179         if(pressTime < 500){
14180             return 400;
14181         }else if(pressTime < 1700){
14182             return 320;
14183         }else if(pressTime < 2600){
14184             return 250;
14185         }else if(pressTime < 3500){
14186             return 180;
14187         }else if(pressTime < 4400){
14188             return 140;
14189         }else if(pressTime < 5300){
14190             return 80;
14191         }else if(pressTime < 6200){
14192             return 50;
14193         }else{
14194             return 10;
14195         }
14196     },
14197
14198     // private
14199     handleMouseOut : function(){
14200         clearTimeout(this.timer);
14201         if(this.pressClass){
14202             this.el.removeClass(this.pressClass);
14203         }
14204         this.el.on("mouseover", this.handleMouseReturn, this);
14205     },
14206
14207     // private
14208     handleMouseReturn : function(){
14209         this.el.un("mouseover", this.handleMouseReturn);
14210         if(this.pressClass){
14211             this.el.addClass(this.pressClass);
14212         }
14213         this.click();
14214     },
14215
14216     // private
14217     handleMouseUp : function(){
14218         clearTimeout(this.timer);
14219         this.el.un("mouseover", this.handleMouseReturn);
14220         this.el.un("mouseout", this.handleMouseOut);
14221         Roo.get(document).un("mouseup", this.handleMouseUp);
14222         this.el.removeClass(this.pressClass);
14223         this.fireEvent("mouseup", this);
14224     }
14225 });/*
14226  * Based on:
14227  * Ext JS Library 1.1.1
14228  * Copyright(c) 2006-2007, Ext JS, LLC.
14229  *
14230  * Originally Released Under LGPL - original licence link has changed is not relivant.
14231  *
14232  * Fork - LGPL
14233  * <script type="text/javascript">
14234  */
14235
14236  
14237 /**
14238  * @class Roo.KeyNav
14239  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14240  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14241  * way to implement custom navigation schemes for any UI component.</p>
14242  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14243  * pageUp, pageDown, del, home, end.  Usage:</p>
14244  <pre><code>
14245 var nav = new Roo.KeyNav("my-element", {
14246     "left" : function(e){
14247         this.moveLeft(e.ctrlKey);
14248     },
14249     "right" : function(e){
14250         this.moveRight(e.ctrlKey);
14251     },
14252     "enter" : function(e){
14253         this.save();
14254     },
14255     scope : this
14256 });
14257 </code></pre>
14258  * @constructor
14259  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14260  * @param {Object} config The config
14261  */
14262 Roo.KeyNav = function(el, config){
14263     this.el = Roo.get(el);
14264     Roo.apply(this, config);
14265     if(!this.disabled){
14266         this.disabled = true;
14267         this.enable();
14268     }
14269 };
14270
14271 Roo.KeyNav.prototype = {
14272     /**
14273      * @cfg {Boolean} disabled
14274      * True to disable this KeyNav instance (defaults to false)
14275      */
14276     disabled : false,
14277     /**
14278      * @cfg {String} defaultEventAction
14279      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14280      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14281      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14282      */
14283     defaultEventAction: "stopEvent",
14284     /**
14285      * @cfg {Boolean} forceKeyDown
14286      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14287      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14288      * handle keydown instead of keypress.
14289      */
14290     forceKeyDown : false,
14291
14292     // private
14293     prepareEvent : function(e){
14294         var k = e.getKey();
14295         var h = this.keyToHandler[k];
14296         //if(h && this[h]){
14297         //    e.stopPropagation();
14298         //}
14299         if(Roo.isSafari && h && k >= 37 && k <= 40){
14300             e.stopEvent();
14301         }
14302     },
14303
14304     // private
14305     relay : function(e){
14306         var k = e.getKey();
14307         var h = this.keyToHandler[k];
14308         if(h && this[h]){
14309             if(this.doRelay(e, this[h], h) !== true){
14310                 e[this.defaultEventAction]();
14311             }
14312         }
14313     },
14314
14315     // private
14316     doRelay : function(e, h, hname){
14317         return h.call(this.scope || this, e);
14318     },
14319
14320     // possible handlers
14321     enter : false,
14322     left : false,
14323     right : false,
14324     up : false,
14325     down : false,
14326     tab : false,
14327     esc : false,
14328     pageUp : false,
14329     pageDown : false,
14330     del : false,
14331     home : false,
14332     end : false,
14333
14334     // quick lookup hash
14335     keyToHandler : {
14336         37 : "left",
14337         39 : "right",
14338         38 : "up",
14339         40 : "down",
14340         33 : "pageUp",
14341         34 : "pageDown",
14342         46 : "del",
14343         36 : "home",
14344         35 : "end",
14345         13 : "enter",
14346         27 : "esc",
14347         9  : "tab"
14348     },
14349
14350         /**
14351          * Enable this KeyNav
14352          */
14353         enable: function(){
14354                 if(this.disabled){
14355             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14356             // the EventObject will normalize Safari automatically
14357             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14358                 this.el.on("keydown", this.relay,  this);
14359             }else{
14360                 this.el.on("keydown", this.prepareEvent,  this);
14361                 this.el.on("keypress", this.relay,  this);
14362             }
14363                     this.disabled = false;
14364                 }
14365         },
14366
14367         /**
14368          * Disable this KeyNav
14369          */
14370         disable: function(){
14371                 if(!this.disabled){
14372                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14373                 this.el.un("keydown", this.relay);
14374             }else{
14375                 this.el.un("keydown", this.prepareEvent);
14376                 this.el.un("keypress", this.relay);
14377             }
14378                     this.disabled = true;
14379                 }
14380         }
14381 };/*
14382  * Based on:
14383  * Ext JS Library 1.1.1
14384  * Copyright(c) 2006-2007, Ext JS, LLC.
14385  *
14386  * Originally Released Under LGPL - original licence link has changed is not relivant.
14387  *
14388  * Fork - LGPL
14389  * <script type="text/javascript">
14390  */
14391
14392  
14393 /**
14394  * @class Roo.KeyMap
14395  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14396  * The constructor accepts the same config object as defined by {@link #addBinding}.
14397  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14398  * combination it will call the function with this signature (if the match is a multi-key
14399  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14400  * A KeyMap can also handle a string representation of keys.<br />
14401  * Usage:
14402  <pre><code>
14403 // map one key by key code
14404 var map = new Roo.KeyMap("my-element", {
14405     key: 13, // or Roo.EventObject.ENTER
14406     fn: myHandler,
14407     scope: myObject
14408 });
14409
14410 // map multiple keys to one action by string
14411 var map = new Roo.KeyMap("my-element", {
14412     key: "a\r\n\t",
14413     fn: myHandler,
14414     scope: myObject
14415 });
14416
14417 // map multiple keys to multiple actions by strings and array of codes
14418 var map = new Roo.KeyMap("my-element", [
14419     {
14420         key: [10,13],
14421         fn: function(){ alert("Return was pressed"); }
14422     }, {
14423         key: "abc",
14424         fn: function(){ alert('a, b or c was pressed'); }
14425     }, {
14426         key: "\t",
14427         ctrl:true,
14428         shift:true,
14429         fn: function(){ alert('Control + shift + tab was pressed.'); }
14430     }
14431 ]);
14432 </code></pre>
14433  * <b>Note: A KeyMap starts enabled</b>
14434  * @constructor
14435  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14436  * @param {Object} config The config (see {@link #addBinding})
14437  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14438  */
14439 Roo.KeyMap = function(el, config, eventName){
14440     this.el  = Roo.get(el);
14441     this.eventName = eventName || "keydown";
14442     this.bindings = [];
14443     if(config){
14444         this.addBinding(config);
14445     }
14446     this.enable();
14447 };
14448
14449 Roo.KeyMap.prototype = {
14450     /**
14451      * True to stop the event from bubbling and prevent the default browser action if the
14452      * key was handled by the KeyMap (defaults to false)
14453      * @type Boolean
14454      */
14455     stopEvent : false,
14456
14457     /**
14458      * Add a new binding to this KeyMap. The following config object properties are supported:
14459      * <pre>
14460 Property    Type             Description
14461 ----------  ---------------  ----------------------------------------------------------------------
14462 key         String/Array     A single keycode or an array of keycodes to handle
14463 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14464 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14465 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14466 fn          Function         The function to call when KeyMap finds the expected key combination
14467 scope       Object           The scope of the callback function
14468 </pre>
14469      *
14470      * Usage:
14471      * <pre><code>
14472 // Create a KeyMap
14473 var map = new Roo.KeyMap(document, {
14474     key: Roo.EventObject.ENTER,
14475     fn: handleKey,
14476     scope: this
14477 });
14478
14479 //Add a new binding to the existing KeyMap later
14480 map.addBinding({
14481     key: 'abc',
14482     shift: true,
14483     fn: handleKey,
14484     scope: this
14485 });
14486 </code></pre>
14487      * @param {Object/Array} config A single KeyMap config or an array of configs
14488      */
14489         addBinding : function(config){
14490         if(config instanceof Array){
14491             for(var i = 0, len = config.length; i < len; i++){
14492                 this.addBinding(config[i]);
14493             }
14494             return;
14495         }
14496         var keyCode = config.key,
14497             shift = config.shift, 
14498             ctrl = config.ctrl, 
14499             alt = config.alt,
14500             fn = config.fn,
14501             scope = config.scope;
14502         if(typeof keyCode == "string"){
14503             var ks = [];
14504             var keyString = keyCode.toUpperCase();
14505             for(var j = 0, len = keyString.length; j < len; j++){
14506                 ks.push(keyString.charCodeAt(j));
14507             }
14508             keyCode = ks;
14509         }
14510         var keyArray = keyCode instanceof Array;
14511         var handler = function(e){
14512             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14513                 var k = e.getKey();
14514                 if(keyArray){
14515                     for(var i = 0, len = keyCode.length; i < len; i++){
14516                         if(keyCode[i] == k){
14517                           if(this.stopEvent){
14518                               e.stopEvent();
14519                           }
14520                           fn.call(scope || window, k, e);
14521                           return;
14522                         }
14523                     }
14524                 }else{
14525                     if(k == keyCode){
14526                         if(this.stopEvent){
14527                            e.stopEvent();
14528                         }
14529                         fn.call(scope || window, k, e);
14530                     }
14531                 }
14532             }
14533         };
14534         this.bindings.push(handler);  
14535         },
14536
14537     /**
14538      * Shorthand for adding a single key listener
14539      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14540      * following options:
14541      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14542      * @param {Function} fn The function to call
14543      * @param {Object} scope (optional) The scope of the function
14544      */
14545     on : function(key, fn, scope){
14546         var keyCode, shift, ctrl, alt;
14547         if(typeof key == "object" && !(key instanceof Array)){
14548             keyCode = key.key;
14549             shift = key.shift;
14550             ctrl = key.ctrl;
14551             alt = key.alt;
14552         }else{
14553             keyCode = key;
14554         }
14555         this.addBinding({
14556             key: keyCode,
14557             shift: shift,
14558             ctrl: ctrl,
14559             alt: alt,
14560             fn: fn,
14561             scope: scope
14562         })
14563     },
14564
14565     // private
14566     handleKeyDown : function(e){
14567             if(this.enabled){ //just in case
14568             var b = this.bindings;
14569             for(var i = 0, len = b.length; i < len; i++){
14570                 b[i].call(this, e);
14571             }
14572             }
14573         },
14574         
14575         /**
14576          * Returns true if this KeyMap is enabled
14577          * @return {Boolean} 
14578          */
14579         isEnabled : function(){
14580             return this.enabled;  
14581         },
14582         
14583         /**
14584          * Enables this KeyMap
14585          */
14586         enable: function(){
14587                 if(!this.enabled){
14588                     this.el.on(this.eventName, this.handleKeyDown, this);
14589                     this.enabled = true;
14590                 }
14591         },
14592
14593         /**
14594          * Disable this KeyMap
14595          */
14596         disable: function(){
14597                 if(this.enabled){
14598                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14599                     this.enabled = false;
14600                 }
14601         }
14602 };/*
14603  * Based on:
14604  * Ext JS Library 1.1.1
14605  * Copyright(c) 2006-2007, Ext JS, LLC.
14606  *
14607  * Originally Released Under LGPL - original licence link has changed is not relivant.
14608  *
14609  * Fork - LGPL
14610  * <script type="text/javascript">
14611  */
14612
14613  
14614 /**
14615  * @class Roo.util.TextMetrics
14616  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14617  * wide, in pixels, a given block of text will be.
14618  * @singleton
14619  */
14620 Roo.util.TextMetrics = function(){
14621     var shared;
14622     return {
14623         /**
14624          * Measures the size of the specified text
14625          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14626          * that can affect the size of the rendered text
14627          * @param {String} text The text to measure
14628          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14629          * in order to accurately measure the text height
14630          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14631          */
14632         measure : function(el, text, fixedWidth){
14633             if(!shared){
14634                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14635             }
14636             shared.bind(el);
14637             shared.setFixedWidth(fixedWidth || 'auto');
14638             return shared.getSize(text);
14639         },
14640
14641         /**
14642          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14643          * the overhead of multiple calls to initialize the style properties on each measurement.
14644          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14645          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14646          * in order to accurately measure the text height
14647          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14648          */
14649         createInstance : function(el, fixedWidth){
14650             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14651         }
14652     };
14653 }();
14654
14655  
14656
14657 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14658     var ml = new Roo.Element(document.createElement('div'));
14659     document.body.appendChild(ml.dom);
14660     ml.position('absolute');
14661     ml.setLeftTop(-1000, -1000);
14662     ml.hide();
14663
14664     if(fixedWidth){
14665         ml.setWidth(fixedWidth);
14666     }
14667      
14668     var instance = {
14669         /**
14670          * Returns the size of the specified text based on the internal element's style and width properties
14671          * @memberOf Roo.util.TextMetrics.Instance#
14672          * @param {String} text The text to measure
14673          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14674          */
14675         getSize : function(text){
14676             ml.update(text);
14677             var s = ml.getSize();
14678             ml.update('');
14679             return s;
14680         },
14681
14682         /**
14683          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
14684          * that can affect the size of the rendered text
14685          * @memberOf Roo.util.TextMetrics.Instance#
14686          * @param {String/HTMLElement} el The element, dom node or id
14687          */
14688         bind : function(el){
14689             ml.setStyle(
14690                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
14691             );
14692         },
14693
14694         /**
14695          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
14696          * to set a fixed width in order to accurately measure the text height.
14697          * @memberOf Roo.util.TextMetrics.Instance#
14698          * @param {Number} width The width to set on the element
14699          */
14700         setFixedWidth : function(width){
14701             ml.setWidth(width);
14702         },
14703
14704         /**
14705          * Returns the measured width of the specified text
14706          * @memberOf Roo.util.TextMetrics.Instance#
14707          * @param {String} text The text to measure
14708          * @return {Number} width The width in pixels
14709          */
14710         getWidth : function(text){
14711             ml.dom.style.width = 'auto';
14712             return this.getSize(text).width;
14713         },
14714
14715         /**
14716          * Returns the measured height of the specified text.  For multiline text, be sure to call
14717          * {@link #setFixedWidth} if necessary.
14718          * @memberOf Roo.util.TextMetrics.Instance#
14719          * @param {String} text The text to measure
14720          * @return {Number} height The height in pixels
14721          */
14722         getHeight : function(text){
14723             return this.getSize(text).height;
14724         }
14725     };
14726
14727     instance.bind(bindTo);
14728
14729     return instance;
14730 };
14731
14732 // backwards compat
14733 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
14734  * Based on:
14735  * Ext JS Library 1.1.1
14736  * Copyright(c) 2006-2007, Ext JS, LLC.
14737  *
14738  * Originally Released Under LGPL - original licence link has changed is not relivant.
14739  *
14740  * Fork - LGPL
14741  * <script type="text/javascript">
14742  */
14743
14744 /**
14745  * @class Roo.state.Provider
14746  * Abstract base class for state provider implementations. This class provides methods
14747  * for encoding and decoding <b>typed</b> variables including dates and defines the 
14748  * Provider interface.
14749  */
14750 Roo.state.Provider = function(){
14751     /**
14752      * @event statechange
14753      * Fires when a state change occurs.
14754      * @param {Provider} this This state provider
14755      * @param {String} key The state key which was changed
14756      * @param {String} value The encoded value for the state
14757      */
14758     this.addEvents({
14759         "statechange": true
14760     });
14761     this.state = {};
14762     Roo.state.Provider.superclass.constructor.call(this);
14763 };
14764 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
14765     /**
14766      * Returns the current value for a key
14767      * @param {String} name The key name
14768      * @param {Mixed} defaultValue A default value to return if the key's value is not found
14769      * @return {Mixed} The state data
14770      */
14771     get : function(name, defaultValue){
14772         return typeof this.state[name] == "undefined" ?
14773             defaultValue : this.state[name];
14774     },
14775     
14776     /**
14777      * Clears a value from the state
14778      * @param {String} name The key name
14779      */
14780     clear : function(name){
14781         delete this.state[name];
14782         this.fireEvent("statechange", this, name, null);
14783     },
14784     
14785     /**
14786      * Sets the value for a key
14787      * @param {String} name The key name
14788      * @param {Mixed} value The value to set
14789      */
14790     set : function(name, value){
14791         this.state[name] = value;
14792         this.fireEvent("statechange", this, name, value);
14793     },
14794     
14795     /**
14796      * Decodes a string previously encoded with {@link #encodeValue}.
14797      * @param {String} value The value to decode
14798      * @return {Mixed} The decoded value
14799      */
14800     decodeValue : function(cookie){
14801         var re = /^(a|n|d|b|s|o)\:(.*)$/;
14802         var matches = re.exec(unescape(cookie));
14803         if(!matches || !matches[1]) return; // non state cookie
14804         var type = matches[1];
14805         var v = matches[2];
14806         switch(type){
14807             case "n":
14808                 return parseFloat(v);
14809             case "d":
14810                 return new Date(Date.parse(v));
14811             case "b":
14812                 return (v == "1");
14813             case "a":
14814                 var all = [];
14815                 var values = v.split("^");
14816                 for(var i = 0, len = values.length; i < len; i++){
14817                     all.push(this.decodeValue(values[i]));
14818                 }
14819                 return all;
14820            case "o":
14821                 var all = {};
14822                 var values = v.split("^");
14823                 for(var i = 0, len = values.length; i < len; i++){
14824                     var kv = values[i].split("=");
14825                     all[kv[0]] = this.decodeValue(kv[1]);
14826                 }
14827                 return all;
14828            default:
14829                 return v;
14830         }
14831     },
14832     
14833     /**
14834      * Encodes a value including type information.  Decode with {@link #decodeValue}.
14835      * @param {Mixed} value The value to encode
14836      * @return {String} The encoded value
14837      */
14838     encodeValue : function(v){
14839         var enc;
14840         if(typeof v == "number"){
14841             enc = "n:" + v;
14842         }else if(typeof v == "boolean"){
14843             enc = "b:" + (v ? "1" : "0");
14844         }else if(v instanceof Date){
14845             enc = "d:" + v.toGMTString();
14846         }else if(v instanceof Array){
14847             var flat = "";
14848             for(var i = 0, len = v.length; i < len; i++){
14849                 flat += this.encodeValue(v[i]);
14850                 if(i != len-1) flat += "^";
14851             }
14852             enc = "a:" + flat;
14853         }else if(typeof v == "object"){
14854             var flat = "";
14855             for(var key in v){
14856                 if(typeof v[key] != "function"){
14857                     flat += key + "=" + this.encodeValue(v[key]) + "^";
14858                 }
14859             }
14860             enc = "o:" + flat.substring(0, flat.length-1);
14861         }else{
14862             enc = "s:" + v;
14863         }
14864         return escape(enc);        
14865     }
14866 });
14867
14868 /*
14869  * Based on:
14870  * Ext JS Library 1.1.1
14871  * Copyright(c) 2006-2007, Ext JS, LLC.
14872  *
14873  * Originally Released Under LGPL - original licence link has changed is not relivant.
14874  *
14875  * Fork - LGPL
14876  * <script type="text/javascript">
14877  */
14878 /**
14879  * @class Roo.state.Manager
14880  * This is the global state manager. By default all components that are "state aware" check this class
14881  * for state information if you don't pass them a custom state provider. In order for this class
14882  * to be useful, it must be initialized with a provider when your application initializes.
14883  <pre><code>
14884 // in your initialization function
14885 init : function(){
14886    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
14887    ...
14888    // supposed you have a {@link Roo.BorderLayout}
14889    var layout = new Roo.BorderLayout(...);
14890    layout.restoreState();
14891    // or a {Roo.BasicDialog}
14892    var dialog = new Roo.BasicDialog(...);
14893    dialog.restoreState();
14894  </code></pre>
14895  * @singleton
14896  */
14897 Roo.state.Manager = function(){
14898     var provider = new Roo.state.Provider();
14899     
14900     return {
14901         /**
14902          * Configures the default state provider for your application
14903          * @param {Provider} stateProvider The state provider to set
14904          */
14905         setProvider : function(stateProvider){
14906             provider = stateProvider;
14907         },
14908         
14909         /**
14910          * Returns the current value for a key
14911          * @param {String} name The key name
14912          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
14913          * @return {Mixed} The state data
14914          */
14915         get : function(key, defaultValue){
14916             return provider.get(key, defaultValue);
14917         },
14918         
14919         /**
14920          * Sets the value for a key
14921          * @param {String} name The key name
14922          * @param {Mixed} value The state data
14923          */
14924          set : function(key, value){
14925             provider.set(key, value);
14926         },
14927         
14928         /**
14929          * Clears a value from the state
14930          * @param {String} name The key name
14931          */
14932         clear : function(key){
14933             provider.clear(key);
14934         },
14935         
14936         /**
14937          * Gets the currently configured state provider
14938          * @return {Provider} The state provider
14939          */
14940         getProvider : function(){
14941             return provider;
14942         }
14943     };
14944 }();
14945 /*
14946  * Based on:
14947  * Ext JS Library 1.1.1
14948  * Copyright(c) 2006-2007, Ext JS, LLC.
14949  *
14950  * Originally Released Under LGPL - original licence link has changed is not relivant.
14951  *
14952  * Fork - LGPL
14953  * <script type="text/javascript">
14954  */
14955 /**
14956  * @class Roo.state.CookieProvider
14957  * @extends Roo.state.Provider
14958  * The default Provider implementation which saves state via cookies.
14959  * <br />Usage:
14960  <pre><code>
14961    var cp = new Roo.state.CookieProvider({
14962        path: "/cgi-bin/",
14963        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
14964        domain: "roojs.com"
14965    })
14966    Roo.state.Manager.setProvider(cp);
14967  </code></pre>
14968  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
14969  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
14970  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
14971  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
14972  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
14973  * domain the page is running on including the 'www' like 'www.roojs.com')
14974  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
14975  * @constructor
14976  * Create a new CookieProvider
14977  * @param {Object} config The configuration object
14978  */
14979 Roo.state.CookieProvider = function(config){
14980     Roo.state.CookieProvider.superclass.constructor.call(this);
14981     this.path = "/";
14982     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
14983     this.domain = null;
14984     this.secure = false;
14985     Roo.apply(this, config);
14986     this.state = this.readCookies();
14987 };
14988
14989 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
14990     // private
14991     set : function(name, value){
14992         if(typeof value == "undefined" || value === null){
14993             this.clear(name);
14994             return;
14995         }
14996         this.setCookie(name, value);
14997         Roo.state.CookieProvider.superclass.set.call(this, name, value);
14998     },
14999
15000     // private
15001     clear : function(name){
15002         this.clearCookie(name);
15003         Roo.state.CookieProvider.superclass.clear.call(this, name);
15004     },
15005
15006     // private
15007     readCookies : function(){
15008         var cookies = {};
15009         var c = document.cookie + ";";
15010         var re = /\s?(.*?)=(.*?);/g;
15011         var matches;
15012         while((matches = re.exec(c)) != null){
15013             var name = matches[1];
15014             var value = matches[2];
15015             if(name && name.substring(0,3) == "ys-"){
15016                 cookies[name.substr(3)] = this.decodeValue(value);
15017             }
15018         }
15019         return cookies;
15020     },
15021
15022     // private
15023     setCookie : function(name, value){
15024         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15025            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15026            ((this.path == null) ? "" : ("; path=" + this.path)) +
15027            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15028            ((this.secure == true) ? "; secure" : "");
15029     },
15030
15031     // private
15032     clearCookie : function(name){
15033         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15034            ((this.path == null) ? "" : ("; path=" + this.path)) +
15035            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15036            ((this.secure == true) ? "; secure" : "");
15037     }
15038 });/*
15039  * Based on:
15040  * Ext JS Library 1.1.1
15041  * Copyright(c) 2006-2007, Ext JS, LLC.
15042  *
15043  * Originally Released Under LGPL - original licence link has changed is not relivant.
15044  *
15045  * Fork - LGPL
15046  * <script type="text/javascript">
15047  */
15048  
15049
15050 /**
15051  * @class Roo.ComponentMgr
15052  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15053  * @singleton
15054  */
15055 Roo.ComponentMgr = function(){
15056     var all = new Roo.util.MixedCollection();
15057
15058     return {
15059         /**
15060          * Registers a component.
15061          * @param {Roo.Component} c The component
15062          */
15063         register : function(c){
15064             all.add(c);
15065         },
15066
15067         /**
15068          * Unregisters a component.
15069          * @param {Roo.Component} c The component
15070          */
15071         unregister : function(c){
15072             all.remove(c);
15073         },
15074
15075         /**
15076          * Returns a component by id
15077          * @param {String} id The component id
15078          */
15079         get : function(id){
15080             return all.get(id);
15081         },
15082
15083         /**
15084          * Registers a function that will be called when a specified component is added to ComponentMgr
15085          * @param {String} id The component id
15086          * @param {Funtction} fn The callback function
15087          * @param {Object} scope The scope of the callback
15088          */
15089         onAvailable : function(id, fn, scope){
15090             all.on("add", function(index, o){
15091                 if(o.id == id){
15092                     fn.call(scope || o, o);
15093                     all.un("add", fn, scope);
15094                 }
15095             });
15096         }
15097     };
15098 }();/*
15099  * Based on:
15100  * Ext JS Library 1.1.1
15101  * Copyright(c) 2006-2007, Ext JS, LLC.
15102  *
15103  * Originally Released Under LGPL - original licence link has changed is not relivant.
15104  *
15105  * Fork - LGPL
15106  * <script type="text/javascript">
15107  */
15108  
15109 /**
15110  * @class Roo.Component
15111  * @extends Roo.util.Observable
15112  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15113  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15114  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15115  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15116  * All visual components (widgets) that require rendering into a layout should subclass Component.
15117  * @constructor
15118  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15119  * element and its id used as the component id.  If a string is passed, it is assumed to be the id of an existing element
15120  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15121  */
15122 Roo.Component = function(config){
15123     config = config || {};
15124     if(config.tagName || config.dom || typeof config == "string"){ // element object
15125         config = {el: config, id: config.id || config};
15126     }
15127     this.initialConfig = config;
15128
15129     Roo.apply(this, config);
15130     this.addEvents({
15131         /**
15132          * @event disable
15133          * Fires after the component is disabled.
15134              * @param {Roo.Component} this
15135              */
15136         disable : true,
15137         /**
15138          * @event enable
15139          * Fires after the component is enabled.
15140              * @param {Roo.Component} this
15141              */
15142         enable : true,
15143         /**
15144          * @event beforeshow
15145          * Fires before the component is shown.  Return false to stop the show.
15146              * @param {Roo.Component} this
15147              */
15148         beforeshow : true,
15149         /**
15150          * @event show
15151          * Fires after the component is shown.
15152              * @param {Roo.Component} this
15153              */
15154         show : true,
15155         /**
15156          * @event beforehide
15157          * Fires before the component is hidden. Return false to stop the hide.
15158              * @param {Roo.Component} this
15159              */
15160         beforehide : true,
15161         /**
15162          * @event hide
15163          * Fires after the component is hidden.
15164              * @param {Roo.Component} this
15165              */
15166         hide : true,
15167         /**
15168          * @event beforerender
15169          * Fires before the component is rendered. Return false to stop the render.
15170              * @param {Roo.Component} this
15171              */
15172         beforerender : true,
15173         /**
15174          * @event render
15175          * Fires after the component is rendered.
15176              * @param {Roo.Component} this
15177              */
15178         render : true,
15179         /**
15180          * @event beforedestroy
15181          * Fires before the component is destroyed. Return false to stop the destroy.
15182              * @param {Roo.Component} this
15183              */
15184         beforedestroy : true,
15185         /**
15186          * @event destroy
15187          * Fires after the component is destroyed.
15188              * @param {Roo.Component} this
15189              */
15190         destroy : true
15191     });
15192     if(!this.id){
15193         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15194     }
15195     Roo.ComponentMgr.register(this);
15196     Roo.Component.superclass.constructor.call(this);
15197     this.initComponent();
15198     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15199         this.render(this.renderTo);
15200         delete this.renderTo;
15201     }
15202 };
15203
15204 /** @private */
15205 Roo.Component.AUTO_ID = 1000;
15206
15207 Roo.extend(Roo.Component, Roo.util.Observable, {
15208     /**
15209      * @scope Roo.Component.prototype
15210      * @type {Boolean}
15211      * true if this component is hidden. Read-only.
15212      */
15213     hidden : false,
15214     /**
15215      * @type {Boolean}
15216      * true if this component is disabled. Read-only.
15217      */
15218     disabled : false,
15219     /**
15220      * @type {Boolean}
15221      * true if this component has been rendered. Read-only.
15222      */
15223     rendered : false,
15224     
15225     /** @cfg {String} disableClass
15226      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15227      */
15228     disabledClass : "x-item-disabled",
15229         /** @cfg {Boolean} allowDomMove
15230          * Whether the component can move the Dom node when rendering (defaults to true).
15231          */
15232     allowDomMove : true,
15233     /** @cfg {String} hideMode (display|visibility)
15234      * How this component should hidden. Supported values are
15235      * "visibility" (css visibility), "offsets" (negative offset position) and
15236      * "display" (css display) - defaults to "display".
15237      */
15238     hideMode: 'display',
15239
15240     /** @private */
15241     ctype : "Roo.Component",
15242
15243     /**
15244      * @cfg {String} actionMode 
15245      * which property holds the element that used for  hide() / show() / disable() / enable()
15246      * default is 'el' 
15247      */
15248     actionMode : "el",
15249
15250     /** @private */
15251     getActionEl : function(){
15252         return this[this.actionMode];
15253     },
15254
15255     initComponent : Roo.emptyFn,
15256     /**
15257      * If this is a lazy rendering component, render it to its container element.
15258      * @param {String/HTMLElement/Element} container (optional) The element this component should be rendered into. If it is being applied to existing markup, this should be left off.
15259      */
15260     render : function(container, position){
15261         if(!this.rendered && this.fireEvent("beforerender", this) !== false){
15262             if(!container && this.el){
15263                 this.el = Roo.get(this.el);
15264                 container = this.el.dom.parentNode;
15265                 this.allowDomMove = false;
15266             }
15267             this.container = Roo.get(container);
15268             this.rendered = true;
15269             if(position !== undefined){
15270                 if(typeof position == 'number'){
15271                     position = this.container.dom.childNodes[position];
15272                 }else{
15273                     position = Roo.getDom(position);
15274                 }
15275             }
15276             this.onRender(this.container, position || null);
15277             if(this.cls){
15278                 this.el.addClass(this.cls);
15279                 delete this.cls;
15280             }
15281             if(this.style){
15282                 this.el.applyStyles(this.style);
15283                 delete this.style;
15284             }
15285             this.fireEvent("render", this);
15286             this.afterRender(this.container);
15287             if(this.hidden){
15288                 this.hide();
15289             }
15290             if(this.disabled){
15291                 this.disable();
15292             }
15293         }
15294         return this;
15295     },
15296
15297     /** @private */
15298     // default function is not really useful
15299     onRender : function(ct, position){
15300         if(this.el){
15301             this.el = Roo.get(this.el);
15302             if(this.allowDomMove !== false){
15303                 ct.dom.insertBefore(this.el.dom, position);
15304             }
15305         }
15306     },
15307
15308     /** @private */
15309     getAutoCreate : function(){
15310         var cfg = typeof this.autoCreate == "object" ?
15311                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15312         if(this.id && !cfg.id){
15313             cfg.id = this.id;
15314         }
15315         return cfg;
15316     },
15317
15318     /** @private */
15319     afterRender : Roo.emptyFn,
15320
15321     /**
15322      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15323      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15324      */
15325     destroy : function(){
15326         if(this.fireEvent("beforedestroy", this) !== false){
15327             this.purgeListeners();
15328             this.beforeDestroy();
15329             if(this.rendered){
15330                 this.el.removeAllListeners();
15331                 this.el.remove();
15332                 if(this.actionMode == "container"){
15333                     this.container.remove();
15334                 }
15335             }
15336             this.onDestroy();
15337             Roo.ComponentMgr.unregister(this);
15338             this.fireEvent("destroy", this);
15339         }
15340     },
15341
15342         /** @private */
15343     beforeDestroy : function(){
15344
15345     },
15346
15347         /** @private */
15348         onDestroy : function(){
15349
15350     },
15351
15352     /**
15353      * Returns the underlying {@link Roo.Element}.
15354      * @return {Roo.Element} The element
15355      */
15356     getEl : function(){
15357         return this.el;
15358     },
15359
15360     /**
15361      * Returns the id of this component.
15362      * @return {String}
15363      */
15364     getId : function(){
15365         return this.id;
15366     },
15367
15368     /**
15369      * Try to focus this component.
15370      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15371      * @return {Roo.Component} this
15372      */
15373     focus : function(selectText){
15374         if(this.rendered){
15375             this.el.focus();
15376             if(selectText === true){
15377                 this.el.dom.select();
15378             }
15379         }
15380         return this;
15381     },
15382
15383     /** @private */
15384     blur : function(){
15385         if(this.rendered){
15386             this.el.blur();
15387         }
15388         return this;
15389     },
15390
15391     /**
15392      * Disable this component.
15393      * @return {Roo.Component} this
15394      */
15395     disable : function(){
15396         if(this.rendered){
15397             this.onDisable();
15398         }
15399         this.disabled = true;
15400         this.fireEvent("disable", this);
15401         return this;
15402     },
15403
15404         // private
15405     onDisable : function(){
15406         this.getActionEl().addClass(this.disabledClass);
15407         this.el.dom.disabled = true;
15408     },
15409
15410     /**
15411      * Enable this component.
15412      * @return {Roo.Component} this
15413      */
15414     enable : function(){
15415         if(this.rendered){
15416             this.onEnable();
15417         }
15418         this.disabled = false;
15419         this.fireEvent("enable", this);
15420         return this;
15421     },
15422
15423         // private
15424     onEnable : function(){
15425         this.getActionEl().removeClass(this.disabledClass);
15426         this.el.dom.disabled = false;
15427     },
15428
15429     /**
15430      * Convenience function for setting disabled/enabled by boolean.
15431      * @param {Boolean} disabled
15432      */
15433     setDisabled : function(disabled){
15434         this[disabled ? "disable" : "enable"]();
15435     },
15436
15437     /**
15438      * Show this component.
15439      * @return {Roo.Component} this
15440      */
15441     show: function(){
15442         if(this.fireEvent("beforeshow", this) !== false){
15443             this.hidden = false;
15444             if(this.rendered){
15445                 this.onShow();
15446             }
15447             this.fireEvent("show", this);
15448         }
15449         return this;
15450     },
15451
15452     // private
15453     onShow : function(){
15454         var ae = this.getActionEl();
15455         if(this.hideMode == 'visibility'){
15456             ae.dom.style.visibility = "visible";
15457         }else if(this.hideMode == 'offsets'){
15458             ae.removeClass('x-hidden');
15459         }else{
15460             ae.dom.style.display = "";
15461         }
15462     },
15463
15464     /**
15465      * Hide this component.
15466      * @return {Roo.Component} this
15467      */
15468     hide: function(){
15469         if(this.fireEvent("beforehide", this) !== false){
15470             this.hidden = true;
15471             if(this.rendered){
15472                 this.onHide();
15473             }
15474             this.fireEvent("hide", this);
15475         }
15476         return this;
15477     },
15478
15479     // private
15480     onHide : function(){
15481         var ae = this.getActionEl();
15482         if(this.hideMode == 'visibility'){
15483             ae.dom.style.visibility = "hidden";
15484         }else if(this.hideMode == 'offsets'){
15485             ae.addClass('x-hidden');
15486         }else{
15487             ae.dom.style.display = "none";
15488         }
15489     },
15490
15491     /**
15492      * Convenience function to hide or show this component by boolean.
15493      * @param {Boolean} visible True to show, false to hide
15494      * @return {Roo.Component} this
15495      */
15496     setVisible: function(visible){
15497         if(visible) {
15498             this.show();
15499         }else{
15500             this.hide();
15501         }
15502         return this;
15503     },
15504
15505     /**
15506      * Returns true if this component is visible.
15507      */
15508     isVisible : function(){
15509         return this.getActionEl().isVisible();
15510     },
15511
15512     cloneConfig : function(overrides){
15513         overrides = overrides || {};
15514         var id = overrides.id || Roo.id();
15515         var cfg = Roo.applyIf(overrides, this.initialConfig);
15516         cfg.id = id; // prevent dup id
15517         return new this.constructor(cfg);
15518     }
15519 });/*
15520  * Based on:
15521  * Ext JS Library 1.1.1
15522  * Copyright(c) 2006-2007, Ext JS, LLC.
15523  *
15524  * Originally Released Under LGPL - original licence link has changed is not relivant.
15525  *
15526  * Fork - LGPL
15527  * <script type="text/javascript">
15528  */
15529
15530 /**
15531  * @class Roo.BoxComponent
15532  * @extends Roo.Component
15533  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15534  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15535  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15536  * layout containers.
15537  * @constructor
15538  * @param {Roo.Element/String/Object} config The configuration options.
15539  */
15540 Roo.BoxComponent = function(config){
15541     Roo.Component.call(this, config);
15542     this.addEvents({
15543         /**
15544          * @event resize
15545          * Fires after the component is resized.
15546              * @param {Roo.Component} this
15547              * @param {Number} adjWidth The box-adjusted width that was set
15548              * @param {Number} adjHeight The box-adjusted height that was set
15549              * @param {Number} rawWidth The width that was originally specified
15550              * @param {Number} rawHeight The height that was originally specified
15551              */
15552         resize : true,
15553         /**
15554          * @event move
15555          * Fires after the component is moved.
15556              * @param {Roo.Component} this
15557              * @param {Number} x The new x position
15558              * @param {Number} y The new y position
15559              */
15560         move : true
15561     });
15562 };
15563
15564 Roo.extend(Roo.BoxComponent, Roo.Component, {
15565     // private, set in afterRender to signify that the component has been rendered
15566     boxReady : false,
15567     // private, used to defer height settings to subclasses
15568     deferHeight: false,
15569     /** @cfg {Number} width
15570      * width (optional) size of component
15571      */
15572      /** @cfg {Number} height
15573      * height (optional) size of component
15574      */
15575      
15576     /**
15577      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15578      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15579      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15580      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15581      * @return {Roo.BoxComponent} this
15582      */
15583     setSize : function(w, h){
15584         // support for standard size objects
15585         if(typeof w == 'object'){
15586             h = w.height;
15587             w = w.width;
15588         }
15589         // not rendered
15590         if(!this.boxReady){
15591             this.width = w;
15592             this.height = h;
15593             return this;
15594         }
15595
15596         // prevent recalcs when not needed
15597         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15598             return this;
15599         }
15600         this.lastSize = {width: w, height: h};
15601
15602         var adj = this.adjustSize(w, h);
15603         var aw = adj.width, ah = adj.height;
15604         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15605             var rz = this.getResizeEl();
15606             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15607                 rz.setSize(aw, ah);
15608             }else if(!this.deferHeight && ah !== undefined){
15609                 rz.setHeight(ah);
15610             }else if(aw !== undefined){
15611                 rz.setWidth(aw);
15612             }
15613             this.onResize(aw, ah, w, h);
15614             this.fireEvent('resize', this, aw, ah, w, h);
15615         }
15616         return this;
15617     },
15618
15619     /**
15620      * Gets the current size of the component's underlying element.
15621      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15622      */
15623     getSize : function(){
15624         return this.el.getSize();
15625     },
15626
15627     /**
15628      * Gets the current XY position of the component's underlying element.
15629      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15630      * @return {Array} The XY position of the element (e.g., [100, 200])
15631      */
15632     getPosition : function(local){
15633         if(local === true){
15634             return [this.el.getLeft(true), this.el.getTop(true)];
15635         }
15636         return this.xy || this.el.getXY();
15637     },
15638
15639     /**
15640      * Gets the current box measurements of the component's underlying element.
15641      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15642      * @returns {Object} box An object in the format {x, y, width, height}
15643      */
15644     getBox : function(local){
15645         var s = this.el.getSize();
15646         if(local){
15647             s.x = this.el.getLeft(true);
15648             s.y = this.el.getTop(true);
15649         }else{
15650             var xy = this.xy || this.el.getXY();
15651             s.x = xy[0];
15652             s.y = xy[1];
15653         }
15654         return s;
15655     },
15656
15657     /**
15658      * Sets the current box measurements of the component's underlying element.
15659      * @param {Object} box An object in the format {x, y, width, height}
15660      * @returns {Roo.BoxComponent} this
15661      */
15662     updateBox : function(box){
15663         this.setSize(box.width, box.height);
15664         this.setPagePosition(box.x, box.y);
15665         return this;
15666     },
15667
15668     // protected
15669     getResizeEl : function(){
15670         return this.resizeEl || this.el;
15671     },
15672
15673     // protected
15674     getPositionEl : function(){
15675         return this.positionEl || this.el;
15676     },
15677
15678     /**
15679      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
15680      * This method fires the move event.
15681      * @param {Number} left The new left
15682      * @param {Number} top The new top
15683      * @returns {Roo.BoxComponent} this
15684      */
15685     setPosition : function(x, y){
15686         this.x = x;
15687         this.y = y;
15688         if(!this.boxReady){
15689             return this;
15690         }
15691         var adj = this.adjustPosition(x, y);
15692         var ax = adj.x, ay = adj.y;
15693
15694         var el = this.getPositionEl();
15695         if(ax !== undefined || ay !== undefined){
15696             if(ax !== undefined && ay !== undefined){
15697                 el.setLeftTop(ax, ay);
15698             }else if(ax !== undefined){
15699                 el.setLeft(ax);
15700             }else if(ay !== undefined){
15701                 el.setTop(ay);
15702             }
15703             this.onPosition(ax, ay);
15704             this.fireEvent('move', this, ax, ay);
15705         }
15706         return this;
15707     },
15708
15709     /**
15710      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
15711      * This method fires the move event.
15712      * @param {Number} x The new x position
15713      * @param {Number} y The new y position
15714      * @returns {Roo.BoxComponent} this
15715      */
15716     setPagePosition : function(x, y){
15717         this.pageX = x;
15718         this.pageY = y;
15719         if(!this.boxReady){
15720             return;
15721         }
15722         if(x === undefined || y === undefined){ // cannot translate undefined points
15723             return;
15724         }
15725         var p = this.el.translatePoints(x, y);
15726         this.setPosition(p.left, p.top);
15727         return this;
15728     },
15729
15730     // private
15731     onRender : function(ct, position){
15732         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
15733         if(this.resizeEl){
15734             this.resizeEl = Roo.get(this.resizeEl);
15735         }
15736         if(this.positionEl){
15737             this.positionEl = Roo.get(this.positionEl);
15738         }
15739     },
15740
15741     // private
15742     afterRender : function(){
15743         Roo.BoxComponent.superclass.afterRender.call(this);
15744         this.boxReady = true;
15745         this.setSize(this.width, this.height);
15746         if(this.x || this.y){
15747             this.setPosition(this.x, this.y);
15748         }
15749         if(this.pageX || this.pageY){
15750             this.setPagePosition(this.pageX, this.pageY);
15751         }
15752     },
15753
15754     /**
15755      * Force the component's size to recalculate based on the underlying element's current height and width.
15756      * @returns {Roo.BoxComponent} this
15757      */
15758     syncSize : function(){
15759         delete this.lastSize;
15760         this.setSize(this.el.getWidth(), this.el.getHeight());
15761         return this;
15762     },
15763
15764     /**
15765      * Called after the component is resized, this method is empty by default but can be implemented by any
15766      * subclass that needs to perform custom logic after a resize occurs.
15767      * @param {Number} adjWidth The box-adjusted width that was set
15768      * @param {Number} adjHeight The box-adjusted height that was set
15769      * @param {Number} rawWidth The width that was originally specified
15770      * @param {Number} rawHeight The height that was originally specified
15771      */
15772     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
15773
15774     },
15775
15776     /**
15777      * Called after the component is moved, this method is empty by default but can be implemented by any
15778      * subclass that needs to perform custom logic after a move occurs.
15779      * @param {Number} x The new x position
15780      * @param {Number} y The new y position
15781      */
15782     onPosition : function(x, y){
15783
15784     },
15785
15786     // private
15787     adjustSize : function(w, h){
15788         if(this.autoWidth){
15789             w = 'auto';
15790         }
15791         if(this.autoHeight){
15792             h = 'auto';
15793         }
15794         return {width : w, height: h};
15795     },
15796
15797     // private
15798     adjustPosition : function(x, y){
15799         return {x : x, y: y};
15800     }
15801 });/*
15802  * Original code for Roojs - LGPL
15803  * <script type="text/javascript">
15804  */
15805  
15806 /**
15807  * @class Roo.XComponent
15808  * A delayed Element creator...
15809  * Or a way to group chunks of interface together.
15810  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
15811  *  used in conjunction with XComponent.build() it will create an instance of each element,
15812  *  then call addxtype() to build the User interface.
15813  * 
15814  * Mypart.xyx = new Roo.XComponent({
15815
15816     parent : 'Mypart.xyz', // empty == document.element.!!
15817     order : '001',
15818     name : 'xxxx'
15819     region : 'xxxx'
15820     disabled : function() {} 
15821      
15822     tree : function() { // return an tree of xtype declared components
15823         var MODULE = this;
15824         return 
15825         {
15826             xtype : 'NestedLayoutPanel',
15827             // technicall
15828         }
15829      ]
15830  *})
15831  *
15832  *
15833  * It can be used to build a big heiracy, with parent etc.
15834  * or you can just use this to render a single compoent to a dom element
15835  * MYPART.render(Roo.Element | String(id) | dom_element )
15836  *
15837  *
15838  * Usage patterns.
15839  *
15840  * Classic Roo
15841  *
15842  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
15843  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
15844  *
15845  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
15846  *
15847  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
15848  * - if mulitple topModules exist, the last one is defined as the top module.
15849  *
15850  * Embeded Roo
15851  * 
15852  * When the top level or multiple modules are to embedded into a existing HTML page,
15853  * the parent element can container '#id' of the element where the module will be drawn.
15854  *
15855  * Bootstrap Roo
15856  *
15857  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
15858  * it relies more on a include mechanism, where sub modules are included into an outer page.
15859  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
15860  * 
15861  * Bootstrap Roo Included elements
15862  *
15863  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
15864  * hence confusing the component builder as it thinks there are multiple top level elements. 
15865  *
15866  * 
15867  * 
15868  * @extends Roo.util.Observable
15869  * @constructor
15870  * @param cfg {Object} configuration of component
15871  * 
15872  */
15873 Roo.XComponent = function(cfg) {
15874     Roo.apply(this, cfg);
15875     this.addEvents({ 
15876         /**
15877              * @event built
15878              * Fires when this the componnt is built
15879              * @param {Roo.XComponent} c the component
15880              */
15881         'built' : true
15882         
15883     });
15884     this.region = this.region || 'center'; // default..
15885     Roo.XComponent.register(this);
15886     this.modules = false;
15887     this.el = false; // where the layout goes..
15888     
15889     
15890 }
15891 Roo.extend(Roo.XComponent, Roo.util.Observable, {
15892     /**
15893      * @property el
15894      * The created element (with Roo.factory())
15895      * @type {Roo.Layout}
15896      */
15897     el  : false,
15898     
15899     /**
15900      * @property el
15901      * for BC  - use el in new code
15902      * @type {Roo.Layout}
15903      */
15904     panel : false,
15905     
15906     /**
15907      * @property layout
15908      * for BC  - use el in new code
15909      * @type {Roo.Layout}
15910      */
15911     layout : false,
15912     
15913      /**
15914      * @cfg {Function|boolean} disabled
15915      * If this module is disabled by some rule, return true from the funtion
15916      */
15917     disabled : false,
15918     
15919     /**
15920      * @cfg {String} parent 
15921      * Name of parent element which it get xtype added to..
15922      */
15923     parent: false,
15924     
15925     /**
15926      * @cfg {String} order
15927      * Used to set the order in which elements are created (usefull for multiple tabs)
15928      */
15929     
15930     order : false,
15931     /**
15932      * @cfg {String} name
15933      * String to display while loading.
15934      */
15935     name : false,
15936     /**
15937      * @cfg {String} region
15938      * Region to render component to (defaults to center)
15939      */
15940     region : 'center',
15941     
15942     /**
15943      * @cfg {Array} items
15944      * A single item array - the first element is the root of the tree..
15945      * It's done this way to stay compatible with the Xtype system...
15946      */
15947     items : false,
15948     
15949     /**
15950      * @property _tree
15951      * The method that retuns the tree of parts that make up this compoennt 
15952      * @type {function}
15953      */
15954     _tree  : false,
15955     
15956      /**
15957      * render
15958      * render element to dom or tree
15959      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
15960      */
15961     
15962     render : function(el)
15963     {
15964         
15965         el = el || false;
15966         var hp = this.parent ? 1 : 0;
15967         Roo.debug &&  Roo.log(this);
15968         
15969         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
15970             // if parent is a '#.....' string, then let's use that..
15971             var ename = this.parent.substr(1);
15972             this.parent = false;
15973             Roo.debug && Roo.log(ename);
15974             switch (ename) {
15975                 case 'bootstrap-body' :
15976                     if (typeof(Roo.bootstrap.Body) != 'undefined') {
15977                         this.parent = { el :  new  Roo.bootstrap.Body() };
15978                         Roo.debug && Roo.log("setting el to doc body");
15979                          
15980                     } else {
15981                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
15982                     }
15983                     break;
15984                 case 'bootstrap':
15985                     this.parent = { el : true};
15986                     // fall through
15987                 default:
15988                     el = Roo.get(ename);
15989                     break;
15990             }
15991                 
15992             
15993             if (!el && !this.parent) {
15994                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
15995                 return;
15996             }
15997         }
15998         Roo.debug && Roo.log("EL:");
15999         Roo.debug && Roo.log(el);
16000         Roo.debug && Roo.log("this.parent.el:");
16001         Roo.debug && Roo.log(this.parent.el);
16002         
16003         var tree = this._tree ? this._tree() : this.tree();
16004
16005         // altertive root elements ??? - we need a better way to indicate these.
16006         var is_alt = (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16007                         (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16008         
16009         if (!this.parent && is_alt) {
16010             //el = Roo.get(document.body);
16011             this.parent = { el : true };
16012         }
16013             
16014             
16015         
16016         if (!this.parent) {
16017             
16018             Roo.debug && Roo.log("no parent - creating one");
16019             
16020             el = el ? Roo.get(el) : false;      
16021             
16022             // it's a top level one..
16023             this.parent =  {
16024                 el : new Roo.BorderLayout(el || document.body, {
16025                 
16026                      center: {
16027                          titlebar: false,
16028                          autoScroll:false,
16029                          closeOnTab: true,
16030                          tabPosition: 'top',
16031                           //resizeTabs: true,
16032                          alwaysShowTabs: el && hp? false :  true,
16033                          hideTabs: el || !hp ? true :  false,
16034                          minTabWidth: 140
16035                      }
16036                  })
16037             }
16038         }
16039         
16040         if (!this.parent.el) {
16041                 // probably an old style ctor, which has been disabled.
16042                 return;
16043
16044         }
16045                 // The 'tree' method is  '_tree now' 
16046             
16047         tree.region = tree.region || this.region;
16048         
16049         if (this.parent.el === true) {
16050             // bootstrap... - body..
16051             this.parent.el = Roo.factory(tree);
16052         }
16053         
16054         this.el = this.parent.el.addxtype(tree);
16055         this.fireEvent('built', this);
16056         
16057         this.panel = this.el;
16058         this.layout = this.panel.layout;
16059         this.parentLayout = this.parent.layout  || false;  
16060          
16061     }
16062     
16063 });
16064
16065 Roo.apply(Roo.XComponent, {
16066     /**
16067      * @property  hideProgress
16068      * true to disable the building progress bar.. usefull on single page renders.
16069      * @type Boolean
16070      */
16071     hideProgress : false,
16072     /**
16073      * @property  buildCompleted
16074      * True when the builder has completed building the interface.
16075      * @type Boolean
16076      */
16077     buildCompleted : false,
16078      
16079     /**
16080      * @property  topModule
16081      * the upper most module - uses document.element as it's constructor.
16082      * @type Object
16083      */
16084      
16085     topModule  : false,
16086       
16087     /**
16088      * @property  modules
16089      * array of modules to be created by registration system.
16090      * @type {Array} of Roo.XComponent
16091      */
16092     
16093     modules : [],
16094     /**
16095      * @property  elmodules
16096      * array of modules to be created by which use #ID 
16097      * @type {Array} of Roo.XComponent
16098      */
16099      
16100     elmodules : [],
16101
16102      /**
16103      * @property  build_from_html
16104      * Build elements from html - used by bootstrap HTML stuff 
16105      *    - this is cleared after build is completed
16106      * @type {boolean} true  (default false)
16107      */
16108      
16109     build_from_html : false,
16110
16111     /**
16112      * Register components to be built later.
16113      *
16114      * This solves the following issues
16115      * - Building is not done on page load, but after an authentication process has occured.
16116      * - Interface elements are registered on page load
16117      * - Parent Interface elements may not be loaded before child, so this handles that..
16118      * 
16119      *
16120      * example:
16121      * 
16122      * MyApp.register({
16123           order : '000001',
16124           module : 'Pman.Tab.projectMgr',
16125           region : 'center',
16126           parent : 'Pman.layout',
16127           disabled : false,  // or use a function..
16128         })
16129      
16130      * * @param {Object} details about module
16131      */
16132     register : function(obj) {
16133                 
16134         Roo.XComponent.event.fireEvent('register', obj);
16135         switch(typeof(obj.disabled) ) {
16136                 
16137             case 'undefined':
16138                 break;
16139             
16140             case 'function':
16141                 if ( obj.disabled() ) {
16142                         return;
16143                 }
16144                 break;
16145             
16146             default:
16147                 if (obj.disabled) {
16148                         return;
16149                 }
16150                 break;
16151         }
16152                 
16153         this.modules.push(obj);
16154          
16155     },
16156     /**
16157      * convert a string to an object..
16158      * eg. 'AAA.BBB' -> finds AAA.BBB
16159
16160      */
16161     
16162     toObject : function(str)
16163     {
16164         if (!str || typeof(str) == 'object') {
16165             return str;
16166         }
16167         if (str.substring(0,1) == '#') {
16168             return str;
16169         }
16170
16171         var ar = str.split('.');
16172         var rt, o;
16173         rt = ar.shift();
16174             /** eval:var:o */
16175         try {
16176             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
16177         } catch (e) {
16178             throw "Module not found : " + str;
16179         }
16180         
16181         if (o === false) {
16182             throw "Module not found : " + str;
16183         }
16184         Roo.each(ar, function(e) {
16185             if (typeof(o[e]) == 'undefined') {
16186                 throw "Module not found : " + str;
16187             }
16188             o = o[e];
16189         });
16190         
16191         return o;
16192         
16193     },
16194     
16195     
16196     /**
16197      * move modules into their correct place in the tree..
16198      * 
16199      */
16200     preBuild : function ()
16201     {
16202         var _t = this;
16203         Roo.each(this.modules , function (obj)
16204         {
16205             Roo.XComponent.event.fireEvent('beforebuild', obj);
16206             
16207             var opar = obj.parent;
16208             try { 
16209                 obj.parent = this.toObject(opar);
16210             } catch(e) {
16211                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
16212                 return;
16213             }
16214             
16215             if (!obj.parent) {
16216                 Roo.debug && Roo.log("GOT top level module");
16217                 Roo.debug && Roo.log(obj);
16218                 obj.modules = new Roo.util.MixedCollection(false, 
16219                     function(o) { return o.order + '' }
16220                 );
16221                 this.topModule = obj;
16222                 return;
16223             }
16224                         // parent is a string (usually a dom element name..)
16225             if (typeof(obj.parent) == 'string') {
16226                 this.elmodules.push(obj);
16227                 return;
16228             }
16229             if (obj.parent.constructor != Roo.XComponent) {
16230                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
16231             }
16232             if (!obj.parent.modules) {
16233                 obj.parent.modules = new Roo.util.MixedCollection(false, 
16234                     function(o) { return o.order + '' }
16235                 );
16236             }
16237             if (obj.parent.disabled) {
16238                 obj.disabled = true;
16239             }
16240             obj.parent.modules.add(obj);
16241         }, this);
16242     },
16243     
16244      /**
16245      * make a list of modules to build.
16246      * @return {Array} list of modules. 
16247      */ 
16248     
16249     buildOrder : function()
16250     {
16251         var _this = this;
16252         var cmp = function(a,b) {   
16253             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
16254         };
16255         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
16256             throw "No top level modules to build";
16257         }
16258         
16259         // make a flat list in order of modules to build.
16260         var mods = this.topModule ? [ this.topModule ] : [];
16261                 
16262         
16263         // elmodules (is a list of DOM based modules )
16264         Roo.each(this.elmodules, function(e) {
16265             mods.push(e);
16266             if (!this.topModule &&
16267                 typeof(e.parent) == 'string' &&
16268                 e.parent.substring(0,1) == '#' &&
16269                 Roo.get(e.parent.substr(1))
16270                ) {
16271                 
16272                 _this.topModule = e;
16273             }
16274             
16275         });
16276
16277         
16278         // add modules to their parents..
16279         var addMod = function(m) {
16280             Roo.debug && Roo.log("build Order: add: " + m.name);
16281                 
16282             mods.push(m);
16283             if (m.modules && !m.disabled) {
16284                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
16285                 m.modules.keySort('ASC',  cmp );
16286                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
16287     
16288                 m.modules.each(addMod);
16289             } else {
16290                 Roo.debug && Roo.log("build Order: no child modules");
16291             }
16292             // not sure if this is used any more..
16293             if (m.finalize) {
16294                 m.finalize.name = m.name + " (clean up) ";
16295                 mods.push(m.finalize);
16296             }
16297             
16298         }
16299         if (this.topModule && this.topModule.modules) { 
16300             this.topModule.modules.keySort('ASC',  cmp );
16301             this.topModule.modules.each(addMod);
16302         } 
16303         return mods;
16304     },
16305     
16306      /**
16307      * Build the registered modules.
16308      * @param {Object} parent element.
16309      * @param {Function} optional method to call after module has been added.
16310      * 
16311      */ 
16312    
16313     build : function(opts) 
16314     {
16315         
16316         if (typeof(opts) != 'undefined') {
16317             Roo.apply(this,opts);
16318         }
16319         
16320         this.preBuild();
16321         var mods = this.buildOrder();
16322       
16323         //this.allmods = mods;
16324         //Roo.debug && Roo.log(mods);
16325         //return;
16326         if (!mods.length) { // should not happen
16327             throw "NO modules!!!";
16328         }
16329         
16330         
16331         var msg = "Building Interface...";
16332         // flash it up as modal - so we store the mask!?
16333         if (!this.hideProgress && Roo.MessageBox) {
16334             Roo.MessageBox.show({ title: 'loading' });
16335             Roo.MessageBox.show({
16336                title: "Please wait...",
16337                msg: msg,
16338                width:450,
16339                progress:true,
16340                closable:false,
16341                modal: false
16342               
16343             });
16344         }
16345         var total = mods.length;
16346         
16347         var _this = this;
16348         var progressRun = function() {
16349             if (!mods.length) {
16350                 Roo.debug && Roo.log('hide?');
16351                 if (!this.hideProgress && Roo.MessageBox) {
16352                     Roo.MessageBox.hide();
16353                 }
16354                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
16355                 
16356                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
16357                 
16358                 // THE END...
16359                 return false;   
16360             }
16361             
16362             var m = mods.shift();
16363             
16364             
16365             Roo.debug && Roo.log(m);
16366             // not sure if this is supported any more.. - modules that are are just function
16367             if (typeof(m) == 'function') { 
16368                 m.call(this);
16369                 return progressRun.defer(10, _this);
16370             } 
16371             
16372             
16373             msg = "Building Interface " + (total  - mods.length) + 
16374                     " of " + total + 
16375                     (m.name ? (' - ' + m.name) : '');
16376                         Roo.debug && Roo.log(msg);
16377             if (!this.hideProgress &&  Roo.MessageBox) { 
16378                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
16379             }
16380             
16381          
16382             // is the module disabled?
16383             var disabled = (typeof(m.disabled) == 'function') ?
16384                 m.disabled.call(m.module.disabled) : m.disabled;    
16385             
16386             
16387             if (disabled) {
16388                 return progressRun(); // we do not update the display!
16389             }
16390             
16391             // now build 
16392             
16393                         
16394                         
16395             m.render();
16396             // it's 10 on top level, and 1 on others??? why...
16397             return progressRun.defer(10, _this);
16398              
16399         }
16400         progressRun.defer(1, _this);
16401      
16402         
16403         
16404     },
16405         
16406         
16407         /**
16408          * Event Object.
16409          *
16410          *
16411          */
16412         event: false, 
16413     /**
16414          * wrapper for event.on - aliased later..  
16415          * Typically use to register a event handler for register:
16416          *
16417          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
16418          *
16419          */
16420     on : false
16421    
16422     
16423     
16424 });
16425
16426 Roo.XComponent.event = new Roo.util.Observable({
16427                 events : { 
16428                         /**
16429                          * @event register
16430                          * Fires when an Component is registered,
16431                          * set the disable property on the Component to stop registration.
16432                          * @param {Roo.XComponent} c the component being registerd.
16433                          * 
16434                          */
16435                         'register' : true,
16436             /**
16437                          * @event beforebuild
16438                          * Fires before each Component is built
16439                          * can be used to apply permissions.
16440                          * @param {Roo.XComponent} c the component being registerd.
16441                          * 
16442                          */
16443                         'beforebuild' : true,
16444                         /**
16445                          * @event buildcomplete
16446                          * Fires on the top level element when all elements have been built
16447                          * @param {Roo.XComponent} the top level component.
16448                          */
16449                         'buildcomplete' : true
16450                         
16451                 }
16452 });
16453
16454 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
16455