Fix #6883 - image loading tidy up
[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         isEdge = ua.indexOf("edge") > -1,
61         isGecko = !isSafari && ua.indexOf("gecko") > -1,
62         isBorderBox = isIE && !isStrict,
63         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
64         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
65         isLinux = (ua.indexOf("linux") != -1),
66         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
67         isIOS = /iphone|ipad/.test(ua),
68         isAndroid = /android/.test(ua),
69         isTouch =  (function() {
70             try {
71                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
72                     window.addEventListener('touchstart', function __set_has_touch__ () {
73                         Roo.isTouch = true;
74                         window.removeEventListener('touchstart', __set_has_touch__);
75                     });
76                     return false; // no touch on chrome!?
77                 }
78                 document.createEvent("TouchEvent");  
79                 return true;  
80             } catch (e) {  
81                 return false;  
82             } 
83             
84         })();
85     // remove css image flicker
86         if(isIE && !isIE7){
87         try{
88             document.execCommand("BackgroundImageCache", false, true);
89         }catch(e){}
90     }
91     
92     Roo.apply(Roo, {
93         /**
94          * True if the browser is in strict mode
95          * @type Boolean
96          */
97         isStrict : isStrict,
98         /**
99          * True if the page is running over SSL
100          * @type Boolean
101          */
102         isSecure : isSecure,
103         /**
104          * True when the document is fully initialized and ready for action
105          * @type Boolean
106          */
107         isReady : false,
108         /**
109          * Turn on debugging output (currently only the factory uses this)
110          * @type Boolean
111          */
112         
113         debug: false,
114
115         /**
116          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
117          * @type Boolean
118          */
119         enableGarbageCollector : true,
120
121         /**
122          * True to automatically purge event listeners after uncaching an element (defaults to false).
123          * Note: this only happens if enableGarbageCollector is true.
124          * @type Boolean
125          */
126         enableListenerCollection:false,
127
128         /**
129          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
130          * the IE insecure content warning (defaults to javascript:false).
131          * @type String
132          */
133         SSL_SECURE_URL : "javascript:false",
134
135         /**
136          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
137          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
138          * @type String
139          */
140         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
141
142         emptyFn : function(){},
143         
144         /**
145          * Copies all the properties of config to obj if they don't already exist.
146          * @param {Object} obj The receiver of the properties
147          * @param {Object} config The source of the properties
148          * @return {Object} returns obj
149          */
150         applyIf : function(o, c){
151             if(o && c){
152                 for(var p in c){
153                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
154                 }
155             }
156             return o;
157         },
158
159         /**
160          * Applies event listeners to elements by selectors when the document is ready.
161          * The event name is specified with an @ suffix.
162 <pre><code>
163 Roo.addBehaviors({
164    // add a listener for click on all anchors in element with id foo
165    '#foo a@click' : function(e, t){
166        // do something
167    },
168
169    // add the same listener to multiple selectors (separated by comma BEFORE the @)
170    '#foo a, #bar span.some-class@mouseover' : function(){
171        // do something
172    }
173 });
174 </code></pre>
175          * @param {Object} obj The list of behaviors to apply
176          */
177         addBehaviors : function(o){
178             if(!Roo.isReady){
179                 Roo.onReady(function(){
180                     Roo.addBehaviors(o);
181                 });
182                 return;
183             }
184             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
185             for(var b in o){
186                 var parts = b.split('@');
187                 if(parts[1]){ // for Object prototype breakers
188                     var s = parts[0];
189                     if(!cache[s]){
190                         cache[s] = Roo.select(s);
191                     }
192                     cache[s].on(parts[1], o[b]);
193                 }
194             }
195             cache = null;
196         },
197
198         /**
199          * Generates unique ids. If the element already has an id, it is unchanged
200          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
201          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
202          * @return {String} The generated Id.
203          */
204         id : function(el, prefix){
205             prefix = prefix || "roo-gen";
206             el = Roo.getDom(el);
207             var id = prefix + (++idSeed);
208             return el ? (el.id ? el.id : (el.id = id)) : id;
209         },
210          
211        
212         /**
213          * Extends one class with another class and optionally overrides members with the passed literal. This class
214          * also adds the function "override()" to the class that can be used to override
215          * members on an instance.
216          * @param {Object} subclass The class inheriting the functionality
217          * @param {Object} superclass The class being extended
218          * @param {Object} overrides (optional) A literal with members
219          * @method extend
220          */
221         extend : function(){
222             // inline overrides
223             var io = function(o){
224                 for(var m in o){
225                     this[m] = o[m];
226                 }
227             };
228             return function(sb, sp, overrides){
229                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
230                     overrides = sp;
231                     sp = sb;
232                     sb = function(){sp.apply(this, arguments);};
233                 }
234                 var F = function(){}, sbp, spp = sp.prototype;
235                 F.prototype = spp;
236                 sbp = sb.prototype = new F();
237                 sbp.constructor=sb;
238                 sb.superclass=spp;
239                 
240                 if(spp.constructor == Object.prototype.constructor){
241                     spp.constructor=sp;
242                    
243                 }
244                 
245                 sb.override = function(o){
246                     Roo.override(sb, o);
247                 };
248                 sbp.override = io;
249                 Roo.override(sb, overrides);
250                 return sb;
251             };
252         }(),
253
254         /**
255          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
256          * Usage:<pre><code>
257 Roo.override(MyClass, {
258     newMethod1: function(){
259         // etc.
260     },
261     newMethod2: function(foo){
262         // etc.
263     }
264 });
265  </code></pre>
266          * @param {Object} origclass The class to override
267          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
268          * containing one or more methods.
269          * @method override
270          */
271         override : function(origclass, overrides){
272             if(overrides){
273                 var p = origclass.prototype;
274                 for(var method in overrides){
275                     p[method] = overrides[method];
276                 }
277             }
278         },
279         /**
280          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
281          * <pre><code>
282 Roo.namespace('Company', 'Company.data');
283 Company.Widget = function() { ... }
284 Company.data.CustomStore = function(config) { ... }
285 </code></pre>
286          * @param {String} namespace1
287          * @param {String} namespace2
288          * @param {String} etc
289          * @method namespace
290          */
291         namespace : function(){
292             var a=arguments, o=null, i, j, d, rt;
293             for (i=0; i<a.length; ++i) {
294                 d=a[i].split(".");
295                 rt = d[0];
296                 /** eval:var:o */
297                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
298                 for (j=1; j<d.length; ++j) {
299                     o[d[j]]=o[d[j]] || {};
300                     o=o[d[j]];
301                 }
302             }
303         },
304         /**
305          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
306          * <pre><code>
307 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
308 Roo.factory(conf, Roo.data);
309 </code></pre>
310          * @param {String} classname
311          * @param {String} namespace (optional)
312          * @method factory
313          */
314          
315         factory : function(c, ns)
316         {
317             // no xtype, no ns or c.xns - or forced off by c.xns
318             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
319                 return c;
320             }
321             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
322             if (c.constructor == ns[c.xtype]) {// already created...
323                 return c;
324             }
325             if (ns[c.xtype]) {
326                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
327                 var ret = new ns[c.xtype](c);
328                 ret.xns = false;
329                 return ret;
330             }
331             c.xns = false; // prevent recursion..
332             return c;
333         },
334          /**
335          * Logs to console if it can.
336          *
337          * @param {String|Object} string
338          * @method log
339          */
340         log : function(s)
341         {
342             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
343                 return; // alerT?
344             }
345             
346             console.log(s);
347         },
348         /**
349          * 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.
350          * @param {Object} o
351          * @return {String}
352          */
353         urlEncode : function(o){
354             if(!o){
355                 return "";
356             }
357             var buf = [];
358             for(var key in o){
359                 var ov = o[key], k = Roo.encodeURIComponent(key);
360                 var type = typeof ov;
361                 if(type == 'undefined'){
362                     buf.push(k, "=&");
363                 }else if(type != "function" && type != "object"){
364                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
365                 }else if(ov instanceof Array){
366                     if (ov.length) {
367                             for(var i = 0, len = ov.length; i < len; i++) {
368                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
369                             }
370                         } else {
371                             buf.push(k, "=&");
372                         }
373                 }
374             }
375             buf.pop();
376             return buf.join("");
377         },
378          /**
379          * Safe version of encodeURIComponent
380          * @param {String} data 
381          * @return {String} 
382          */
383         
384         encodeURIComponent : function (data)
385         {
386             try {
387                 return encodeURIComponent(data);
388             } catch(e) {} // should be an uri encode error.
389             
390             if (data == '' || data == null){
391                return '';
392             }
393             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
394             function nibble_to_hex(nibble){
395                 var chars = '0123456789ABCDEF';
396                 return chars.charAt(nibble);
397             }
398             data = data.toString();
399             var buffer = '';
400             for(var i=0; i<data.length; i++){
401                 var c = data.charCodeAt(i);
402                 var bs = new Array();
403                 if (c > 0x10000){
404                         // 4 bytes
405                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
406                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
407                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
408                     bs[3] = 0x80 | (c & 0x3F);
409                 }else if (c > 0x800){
410                          // 3 bytes
411                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
412                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
413                     bs[2] = 0x80 | (c & 0x3F);
414                 }else if (c > 0x80){
415                        // 2 bytes
416                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
417                     bs[1] = 0x80 | (c & 0x3F);
418                 }else{
419                         // 1 byte
420                     bs[0] = c;
421                 }
422                 for(var j=0; j<bs.length; j++){
423                     var b = bs[j];
424                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
425                             + nibble_to_hex(b &0x0F);
426                     buffer += '%'+hex;
427                }
428             }
429             return buffer;    
430              
431         },
432
433         /**
434          * 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]}.
435          * @param {String} string
436          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
437          * @return {Object} A literal with members
438          */
439         urlDecode : function(string, overwrite){
440             if(!string || !string.length){
441                 return {};
442             }
443             var obj = {};
444             var pairs = string.split('&');
445             var pair, name, value;
446             for(var i = 0, len = pairs.length; i < len; i++){
447                 pair = pairs[i].split('=');
448                 name = decodeURIComponent(pair[0]);
449                 value = decodeURIComponent(pair[1]);
450                 if(overwrite !== true){
451                     if(typeof obj[name] == "undefined"){
452                         obj[name] = value;
453                     }else if(typeof obj[name] == "string"){
454                         obj[name] = [obj[name]];
455                         obj[name].push(value);
456                     }else{
457                         obj[name].push(value);
458                     }
459                 }else{
460                     obj[name] = value;
461                 }
462             }
463             return obj;
464         },
465
466         /**
467          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
468          * passed array is not really an array, your function is called once with it.
469          * The supplied function is called with (Object item, Number index, Array allItems).
470          * @param {Array/NodeList/Mixed} array
471          * @param {Function} fn
472          * @param {Object} scope
473          */
474         each : function(array, fn, scope){
475             if(typeof array.length == "undefined" || typeof array == "string"){
476                 array = [array];
477             }
478             for(var i = 0, len = array.length; i < len; i++){
479                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
480             }
481         },
482
483         // deprecated
484         combine : function(){
485             var as = arguments, l = as.length, r = [];
486             for(var i = 0; i < l; i++){
487                 var a = as[i];
488                 if(a instanceof Array){
489                     r = r.concat(a);
490                 }else if(a.length !== undefined && !a.substr){
491                     r = r.concat(Array.prototype.slice.call(a, 0));
492                 }else{
493                     r.push(a);
494                 }
495             }
496             return r;
497         },
498
499         /**
500          * Escapes the passed string for use in a regular expression
501          * @param {String} str
502          * @return {String}
503          */
504         escapeRe : function(s) {
505             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
506         },
507
508         // internal
509         callback : function(cb, scope, args, delay){
510             if(typeof cb == "function"){
511                 if(delay){
512                     cb.defer(delay, scope, args || []);
513                 }else{
514                     cb.apply(scope, args || []);
515                 }
516             }
517         },
518
519         /**
520          * Return the dom node for the passed string (id), dom node, or Roo.Element
521          * @param {String/HTMLElement/Roo.Element} el
522          * @return HTMLElement
523          */
524         getDom : function(el){
525             if(!el){
526                 return null;
527             }
528             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
529         },
530
531         /**
532         * Shorthand for {@link Roo.ComponentMgr#get}
533         * @param {String} id
534         * @return Roo.Component
535         */
536         getCmp : function(id){
537             return Roo.ComponentMgr.get(id);
538         },
539          
540         num : function(v, defaultValue){
541             if(typeof v != 'number'){
542                 return defaultValue;
543             }
544             return v;
545         },
546
547         destroy : function(){
548             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
549                 var as = a[i];
550                 if(as){
551                     if(as.dom){
552                         as.removeAllListeners();
553                         as.remove();
554                         continue;
555                     }
556                     if(typeof as.purgeListeners == 'function'){
557                         as.purgeListeners();
558                     }
559                     if(typeof as.destroy == 'function'){
560                         as.destroy();
561                     }
562                 }
563             }
564         },
565
566         // inpired by a similar function in mootools library
567         /**
568          * Returns the type of object that is passed in. If the object passed in is null or undefined it
569          * return false otherwise it returns one of the following values:<ul>
570          * <li><b>string</b>: If the object passed is a string</li>
571          * <li><b>number</b>: If the object passed is a number</li>
572          * <li><b>boolean</b>: If the object passed is a boolean value</li>
573          * <li><b>function</b>: If the object passed is a function reference</li>
574          * <li><b>object</b>: If the object passed is an object</li>
575          * <li><b>array</b>: If the object passed is an array</li>
576          * <li><b>regexp</b>: If the object passed is a regular expression</li>
577          * <li><b>element</b>: If the object passed is a DOM Element</li>
578          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
579          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
580          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
581          * @param {Mixed} object
582          * @return {String}
583          */
584         type : function(o){
585             if(o === undefined || o === null){
586                 return false;
587             }
588             if(o.htmlElement){
589                 return 'element';
590             }
591             var t = typeof o;
592             if(t == 'object' && o.nodeName) {
593                 switch(o.nodeType) {
594                     case 1: return 'element';
595                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
596                 }
597             }
598             if(t == 'object' || t == 'function') {
599                 switch(o.constructor) {
600                     case Array: return 'array';
601                     case RegExp: return 'regexp';
602                 }
603                 if(typeof o.length == 'number' && typeof o.item == 'function') {
604                     return 'nodelist';
605                 }
606             }
607             return t;
608         },
609
610         /**
611          * Returns true if the passed value is null, undefined or an empty string (optional).
612          * @param {Mixed} value The value to test
613          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
614          * @return {Boolean}
615          */
616         isEmpty : function(v, allowBlank){
617             return v === null || v === undefined || (!allowBlank ? v === '' : false);
618         },
619         
620         /** @type Boolean */
621         isOpera : isOpera,
622         /** @type Boolean */
623         isSafari : isSafari,
624         /** @type Boolean */
625         isFirefox : isFirefox,
626         /** @type Boolean */
627         isIE : isIE,
628         /** @type Boolean */
629         isIE7 : isIE7,
630         /** @type Boolean */
631         isIE11 : isIE11,
632         /** @type Boolean */
633         isEdge : isEdge,
634         /** @type Boolean */
635         isGecko : isGecko,
636         /** @type Boolean */
637         isBorderBox : isBorderBox,
638         /** @type Boolean */
639         isWindows : isWindows,
640         /** @type Boolean */
641         isLinux : isLinux,
642         /** @type Boolean */
643         isMac : isMac,
644         /** @type Boolean */
645         isIOS : isIOS,
646         /** @type Boolean */
647         isAndroid : isAndroid,
648         /** @type Boolean */
649         isTouch : isTouch,
650
651         /**
652          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
653          * you may want to set this to true.
654          * @type Boolean
655          */
656         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
657         
658         
659                 
660         /**
661          * Selects a single element as a Roo Element
662          * This is about as close as you can get to jQuery's $('do crazy stuff')
663          * @param {String} selector The selector/xpath query
664          * @param {Node} root (optional) The start of the query (defaults to document).
665          * @return {Roo.Element}
666          */
667         selectNode : function(selector, root) 
668         {
669             var node = Roo.DomQuery.selectNode(selector,root);
670             return node ? Roo.get(node) : new Roo.Element(false);
671         }
672         
673     });
674
675
676 })();
677
678 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
679                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
680                 "Roo.app", "Roo.ux",
681                 "Roo.bootstrap",
682                 "Roo.bootstrap.dash");
683 /*
684  * Based on:
685  * Ext JS Library 1.1.1
686  * Copyright(c) 2006-2007, Ext JS, LLC.
687  *
688  * Originally Released Under LGPL - original licence link has changed is not relivant.
689  *
690  * Fork - LGPL
691  * <script type="text/javascript">
692  */
693
694 (function() {    
695     // wrappedn so fnCleanup is not in global scope...
696     if(Roo.isIE) {
697         function fnCleanUp() {
698             var p = Function.prototype;
699             delete p.createSequence;
700             delete p.defer;
701             delete p.createDelegate;
702             delete p.createCallback;
703             delete p.createInterceptor;
704
705             window.detachEvent("onunload", fnCleanUp);
706         }
707         window.attachEvent("onunload", fnCleanUp);
708     }
709 })();
710
711
712 /**
713  * @class Function
714  * These functions are available on every Function object (any JavaScript function).
715  */
716 Roo.apply(Function.prototype, {
717      /**
718      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
719      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
720      * Will create a function that is bound to those 2 args.
721      * @return {Function} The new function
722     */
723     createCallback : function(/*args...*/){
724         // make args available, in function below
725         var args = arguments;
726         var method = this;
727         return function() {
728             return method.apply(window, args);
729         };
730     },
731
732     /**
733      * Creates a delegate (callback) that sets the scope to obj.
734      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
735      * Will create a function that is automatically scoped to this.
736      * @param {Object} obj (optional) The object for which the scope is set
737      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
738      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
739      *                                             if a number the args are inserted at the specified position
740      * @return {Function} The new function
741      */
742     createDelegate : function(obj, args, appendArgs){
743         var method = this;
744         return function() {
745             var callArgs = args || arguments;
746             if(appendArgs === true){
747                 callArgs = Array.prototype.slice.call(arguments, 0);
748                 callArgs = callArgs.concat(args);
749             }else if(typeof appendArgs == "number"){
750                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
751                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
752                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
753             }
754             return method.apply(obj || window, callArgs);
755         };
756     },
757
758     /**
759      * Calls this function after the number of millseconds specified.
760      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
761      * @param {Object} obj (optional) The object for which the scope is set
762      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
763      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
764      *                                             if a number the args are inserted at the specified position
765      * @return {Number} The timeout id that can be used with clearTimeout
766      */
767     defer : function(millis, obj, args, appendArgs){
768         var fn = this.createDelegate(obj, args, appendArgs);
769         if(millis){
770             return setTimeout(fn, millis);
771         }
772         fn();
773         return 0;
774     },
775     /**
776      * Create a combined function call sequence of the original function + the passed function.
777      * The resulting function returns the results of the original function.
778      * The passed fcn is called with the parameters of the original function
779      * @param {Function} fcn The function to sequence
780      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
781      * @return {Function} The new function
782      */
783     createSequence : function(fcn, scope){
784         if(typeof fcn != "function"){
785             return this;
786         }
787         var method = this;
788         return function() {
789             var retval = method.apply(this || window, arguments);
790             fcn.apply(scope || this || window, arguments);
791             return retval;
792         };
793     },
794
795     /**
796      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
797      * The resulting function returns the results of the original function.
798      * The passed fcn is called with the parameters of the original function.
799      * @addon
800      * @param {Function} fcn The function to call before the original
801      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
802      * @return {Function} The new function
803      */
804     createInterceptor : function(fcn, scope){
805         if(typeof fcn != "function"){
806             return this;
807         }
808         var method = this;
809         return function() {
810             fcn.target = this;
811             fcn.method = method;
812             if(fcn.apply(scope || this || window, arguments) === false){
813                 return;
814             }
815             return method.apply(this || window, arguments);
816         };
817     }
818 });
819 /*
820  * Based on:
821  * Ext JS Library 1.1.1
822  * Copyright(c) 2006-2007, Ext JS, LLC.
823  *
824  * Originally Released Under LGPL - original licence link has changed is not relivant.
825  *
826  * Fork - LGPL
827  * <script type="text/javascript">
828  */
829
830 Roo.applyIf(String, {
831     
832     /** @scope String */
833     
834     /**
835      * Escapes the passed string for ' and \
836      * @param {String} string The string to escape
837      * @return {String} The escaped string
838      * @static
839      */
840     escape : function(string) {
841         return string.replace(/('|\\)/g, "\\$1");
842     },
843
844     /**
845      * Pads the left side of a string with a specified character.  This is especially useful
846      * for normalizing number and date strings.  Example usage:
847      * <pre><code>
848 var s = String.leftPad('123', 5, '0');
849 // s now contains the string: '00123'
850 </code></pre>
851      * @param {String} string The original string
852      * @param {Number} size The total length of the output string
853      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
854      * @return {String} The padded string
855      * @static
856      */
857     leftPad : function (val, size, ch) {
858         var result = new String(val);
859         if(ch === null || ch === undefined || ch === '') {
860             ch = " ";
861         }
862         while (result.length < size) {
863             result = ch + result;
864         }
865         return result;
866     },
867
868     /**
869      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
870      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
871      * <pre><code>
872 var cls = 'my-class', text = 'Some text';
873 var s = String.format('<div class="{0}">{1}</div>', cls, text);
874 // s now contains the string: '<div class="my-class">Some text</div>'
875 </code></pre>
876      * @param {String} string The tokenized string to be formatted
877      * @param {String} value1 The value to replace token {0}
878      * @param {String} value2 Etc...
879      * @return {String} The formatted string
880      * @static
881      */
882     format : function(format){
883         var args = Array.prototype.slice.call(arguments, 1);
884         return format.replace(/\{(\d+)\}/g, function(m, i){
885             return Roo.util.Format.htmlEncode(args[i]);
886         });
887     }
888   
889     
890 });
891
892 /**
893  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
894  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
895  * they are already different, the first value passed in is returned.  Note that this method returns the new value
896  * but does not change the current string.
897  * <pre><code>
898 // alternate sort directions
899 sort = sort.toggle('ASC', 'DESC');
900
901 // instead of conditional logic:
902 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
903 </code></pre>
904  * @param {String} value The value to compare to the current string
905  * @param {String} other The new value to use if the string already equals the first value passed in
906  * @return {String} The new value
907  */
908  
909 String.prototype.toggle = function(value, other){
910     return this == value ? other : value;
911 };
912
913
914 /**
915   * Remove invalid unicode characters from a string 
916   *
917   * @return {String} The clean string
918   */
919 String.prototype.unicodeClean = function () {
920     return this.replace(/[\s\S]/g,
921         function(character) {
922             if (character.charCodeAt()< 256) {
923               return character;
924            }
925            try {
926                 encodeURIComponent(character);
927            } catch(e) { 
928               return '';
929            }
930            return character;
931         }
932     );
933 };
934   
935 /*
936  * Based on:
937  * Ext JS Library 1.1.1
938  * Copyright(c) 2006-2007, Ext JS, LLC.
939  *
940  * Originally Released Under LGPL - original licence link has changed is not relivant.
941  *
942  * Fork - LGPL
943  * <script type="text/javascript">
944  */
945
946  /**
947  * @class Number
948  */
949 Roo.applyIf(Number.prototype, {
950     /**
951      * Checks whether or not the current number is within a desired range.  If the number is already within the
952      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
953      * exceeded.  Note that this method returns the constrained value but does not change the current number.
954      * @param {Number} min The minimum number in the range
955      * @param {Number} max The maximum number in the range
956      * @return {Number} The constrained value if outside the range, otherwise the current value
957      */
958     constrain : function(min, max){
959         return Math.min(Math.max(this, min), max);
960     }
961 });/*
962  * Based on:
963  * Ext JS Library 1.1.1
964  * Copyright(c) 2006-2007, Ext JS, LLC.
965  *
966  * Originally Released Under LGPL - original licence link has changed is not relivant.
967  *
968  * Fork - LGPL
969  * <script type="text/javascript">
970  */
971  /**
972  * @class Array
973  */
974 Roo.applyIf(Array.prototype, {
975     /**
976      * 
977      * Checks whether or not the specified object exists in the array.
978      * @param {Object} o The object to check for
979      * @return {Number} The index of o in the array (or -1 if it is not found)
980      */
981     indexOf : function(o){
982        for (var i = 0, len = this.length; i < len; i++){
983               if(this[i] == o) { return i; }
984        }
985            return -1;
986     },
987
988     /**
989      * Removes the specified object from the array.  If the object is not found nothing happens.
990      * @param {Object} o The object to remove
991      */
992     remove : function(o){
993        var index = this.indexOf(o);
994        if(index != -1){
995            this.splice(index, 1);
996        }
997     },
998     /**
999      * Map (JS 1.6 compatibility)
1000      * @param {Function} function  to call
1001      */
1002     map : function(fun )
1003     {
1004         var len = this.length >>> 0;
1005         if (typeof fun != "function") {
1006             throw new TypeError();
1007         }
1008         var res = new Array(len);
1009         var thisp = arguments[1];
1010         for (var i = 0; i < len; i++)
1011         {
1012             if (i in this) {
1013                 res[i] = fun.call(thisp, this[i], i, this);
1014             }
1015         }
1016
1017         return res;
1018     },
1019     /**
1020      * equals
1021      * @param {Array} o The array to compare to
1022      * @returns {Boolean} true if the same
1023      */
1024     equals : function(b)
1025     {
1026         // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1027         if (this === b) {
1028             return true;
1029          }
1030         if (b == null) {
1031             return false;
1032         }
1033         if (this.length !== b.length) {
1034             return false;
1035         }
1036       
1037         // sort?? a.sort().equals(b.sort());
1038       
1039         for (var i = 0; i < this.length; ++i) {
1040             if (this[i] !== b[i]) {
1041                 return false;
1042             }
1043         }
1044         return true;
1045     }
1046 });
1047
1048
1049  
1050 /*
1051  * Based on:
1052  * Ext JS Library 1.1.1
1053  * Copyright(c) 2006-2007, Ext JS, LLC.
1054  *
1055  * Originally Released Under LGPL - original licence link has changed is not relivant.
1056  *
1057  * Fork - LGPL
1058  * <script type="text/javascript">
1059  */
1060
1061 /**
1062  * @class Date
1063  *
1064  * The date parsing and format syntax is a subset of
1065  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1066  * supported will provide results equivalent to their PHP versions.
1067  *
1068  * Following is the list of all currently supported formats:
1069  *<pre>
1070 Sample date:
1071 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1072
1073 Format  Output      Description
1074 ------  ----------  --------------------------------------------------------------
1075   d      10         Day of the month, 2 digits with leading zeros
1076   D      Wed        A textual representation of a day, three letters
1077   j      10         Day of the month without leading zeros
1078   l      Wednesday  A full textual representation of the day of the week
1079   S      th         English ordinal day of month suffix, 2 chars (use with j)
1080   w      3          Numeric representation of the day of the week
1081   z      9          The julian date, or day of the year (0-365)
1082   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1083   F      January    A full textual representation of the month
1084   m      01         Numeric representation of a month, with leading zeros
1085   M      Jan        Month name abbreviation, three letters
1086   n      1          Numeric representation of a month, without leading zeros
1087   t      31         Number of days in the given month
1088   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1089   Y      2007       A full numeric representation of a year, 4 digits
1090   y      07         A two digit representation of a year
1091   a      pm         Lowercase Ante meridiem and Post meridiem
1092   A      PM         Uppercase Ante meridiem and Post meridiem
1093   g      3          12-hour format of an hour without leading zeros
1094   G      15         24-hour format of an hour without leading zeros
1095   h      03         12-hour format of an hour with leading zeros
1096   H      15         24-hour format of an hour with leading zeros
1097   i      05         Minutes with leading zeros
1098   s      01         Seconds, with leading zeros
1099   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1100   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1101   T      CST        Timezone setting of the machine running the code
1102   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1103 </pre>
1104  *
1105  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1106  * <pre><code>
1107 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1108 document.write(dt.format('Y-m-d'));                         //2007-01-10
1109 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1110 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
1111  </code></pre>
1112  *
1113  * Here are some standard date/time patterns that you might find helpful.  They
1114  * are not part of the source of Date.js, but to use them you can simply copy this
1115  * block of code into any script that is included after Date.js and they will also become
1116  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1117  * <pre><code>
1118 Date.patterns = {
1119     ISO8601Long:"Y-m-d H:i:s",
1120     ISO8601Short:"Y-m-d",
1121     ShortDate: "n/j/Y",
1122     LongDate: "l, F d, Y",
1123     FullDateTime: "l, F d, Y g:i:s A",
1124     MonthDay: "F d",
1125     ShortTime: "g:i A",
1126     LongTime: "g:i:s A",
1127     SortableDateTime: "Y-m-d\\TH:i:s",
1128     UniversalSortableDateTime: "Y-m-d H:i:sO",
1129     YearMonth: "F, Y"
1130 };
1131 </code></pre>
1132  *
1133  * Example usage:
1134  * <pre><code>
1135 var dt = new Date();
1136 document.write(dt.format(Date.patterns.ShortDate));
1137  </code></pre>
1138  */
1139
1140 /*
1141  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1142  * They generate precompiled functions from date formats instead of parsing and
1143  * processing the pattern every time you format a date.  These functions are available
1144  * on every Date object (any javascript function).
1145  *
1146  * The original article and download are here:
1147  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1148  *
1149  */
1150  
1151  
1152  // was in core
1153 /**
1154  Returns the number of milliseconds between this date and date
1155  @param {Date} date (optional) Defaults to now
1156  @return {Number} The diff in milliseconds
1157  @member Date getElapsed
1158  */
1159 Date.prototype.getElapsed = function(date) {
1160         return Math.abs((date || new Date()).getTime()-this.getTime());
1161 };
1162 // was in date file..
1163
1164
1165 // private
1166 Date.parseFunctions = {count:0};
1167 // private
1168 Date.parseRegexes = [];
1169 // private
1170 Date.formatFunctions = {count:0};
1171
1172 // private
1173 Date.prototype.dateFormat = function(format) {
1174     if (Date.formatFunctions[format] == null) {
1175         Date.createNewFormat(format);
1176     }
1177     var func = Date.formatFunctions[format];
1178     return this[func]();
1179 };
1180
1181
1182 /**
1183  * Formats a date given the supplied format string
1184  * @param {String} format The format string
1185  * @return {String} The formatted date
1186  * @method
1187  */
1188 Date.prototype.format = Date.prototype.dateFormat;
1189
1190 // private
1191 Date.createNewFormat = function(format) {
1192     var funcName = "format" + Date.formatFunctions.count++;
1193     Date.formatFunctions[format] = funcName;
1194     var code = "Date.prototype." + funcName + " = function(){return ";
1195     var special = false;
1196     var ch = '';
1197     for (var i = 0; i < format.length; ++i) {
1198         ch = format.charAt(i);
1199         if (!special && ch == "\\") {
1200             special = true;
1201         }
1202         else if (special) {
1203             special = false;
1204             code += "'" + String.escape(ch) + "' + ";
1205         }
1206         else {
1207             code += Date.getFormatCode(ch);
1208         }
1209     }
1210     /** eval:var:zzzzzzzzzzzzz */
1211     eval(code.substring(0, code.length - 3) + ";}");
1212 };
1213
1214 // private
1215 Date.getFormatCode = function(character) {
1216     switch (character) {
1217     case "d":
1218         return "String.leftPad(this.getDate(), 2, '0') + ";
1219     case "D":
1220         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1221     case "j":
1222         return "this.getDate() + ";
1223     case "l":
1224         return "Date.dayNames[this.getDay()] + ";
1225     case "S":
1226         return "this.getSuffix() + ";
1227     case "w":
1228         return "this.getDay() + ";
1229     case "z":
1230         return "this.getDayOfYear() + ";
1231     case "W":
1232         return "this.getWeekOfYear() + ";
1233     case "F":
1234         return "Date.monthNames[this.getMonth()] + ";
1235     case "m":
1236         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1237     case "M":
1238         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1239     case "n":
1240         return "(this.getMonth() + 1) + ";
1241     case "t":
1242         return "this.getDaysInMonth() + ";
1243     case "L":
1244         return "(this.isLeapYear() ? 1 : 0) + ";
1245     case "Y":
1246         return "this.getFullYear() + ";
1247     case "y":
1248         return "('' + this.getFullYear()).substring(2, 4) + ";
1249     case "a":
1250         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1251     case "A":
1252         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1253     case "g":
1254         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1255     case "G":
1256         return "this.getHours() + ";
1257     case "h":
1258         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1259     case "H":
1260         return "String.leftPad(this.getHours(), 2, '0') + ";
1261     case "i":
1262         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1263     case "s":
1264         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1265     case "O":
1266         return "this.getGMTOffset() + ";
1267     case "P":
1268         return "this.getGMTColonOffset() + ";
1269     case "T":
1270         return "this.getTimezone() + ";
1271     case "Z":
1272         return "(this.getTimezoneOffset() * -60) + ";
1273     default:
1274         return "'" + String.escape(character) + "' + ";
1275     }
1276 };
1277
1278 /**
1279  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1280  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1281  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1282  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1283  * string or the parse operation will fail.
1284  * Example Usage:
1285 <pre><code>
1286 //dt = Fri May 25 2007 (current date)
1287 var dt = new Date();
1288
1289 //dt = Thu May 25 2006 (today's month/day in 2006)
1290 dt = Date.parseDate("2006", "Y");
1291
1292 //dt = Sun Jan 15 2006 (all date parts specified)
1293 dt = Date.parseDate("2006-1-15", "Y-m-d");
1294
1295 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1296 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1297 </code></pre>
1298  * @param {String} input The unparsed date as a string
1299  * @param {String} format The format the date is in
1300  * @return {Date} The parsed date
1301  * @static
1302  */
1303 Date.parseDate = function(input, format) {
1304     if (Date.parseFunctions[format] == null) {
1305         Date.createParser(format);
1306     }
1307     var func = Date.parseFunctions[format];
1308     return Date[func](input);
1309 };
1310 /**
1311  * @private
1312  */
1313
1314 Date.createParser = function(format) {
1315     var funcName = "parse" + Date.parseFunctions.count++;
1316     var regexNum = Date.parseRegexes.length;
1317     var currentGroup = 1;
1318     Date.parseFunctions[format] = funcName;
1319
1320     var code = "Date." + funcName + " = function(input){\n"
1321         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1322         + "var d = new Date();\n"
1323         + "y = d.getFullYear();\n"
1324         + "m = d.getMonth();\n"
1325         + "d = d.getDate();\n"
1326         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1327         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1328         + "if (results && results.length > 0) {";
1329     var regex = "";
1330
1331     var special = false;
1332     var ch = '';
1333     for (var i = 0; i < format.length; ++i) {
1334         ch = format.charAt(i);
1335         if (!special && ch == "\\") {
1336             special = true;
1337         }
1338         else if (special) {
1339             special = false;
1340             regex += String.escape(ch);
1341         }
1342         else {
1343             var obj = Date.formatCodeToRegex(ch, currentGroup);
1344             currentGroup += obj.g;
1345             regex += obj.s;
1346             if (obj.g && obj.c) {
1347                 code += obj.c;
1348             }
1349         }
1350     }
1351
1352     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1353         + "{v = new Date(y, m, d, h, i, s);}\n"
1354         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1355         + "{v = new Date(y, m, d, h, i);}\n"
1356         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1357         + "{v = new Date(y, m, d, h);}\n"
1358         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1359         + "{v = new Date(y, m, d);}\n"
1360         + "else if (y >= 0 && m >= 0)\n"
1361         + "{v = new Date(y, m);}\n"
1362         + "else if (y >= 0)\n"
1363         + "{v = new Date(y);}\n"
1364         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1365         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1366         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1367         + ";}";
1368
1369     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1370     /** eval:var:zzzzzzzzzzzzz */
1371     eval(code);
1372 };
1373
1374 // private
1375 Date.formatCodeToRegex = function(character, currentGroup) {
1376     switch (character) {
1377     case "D":
1378         return {g:0,
1379         c:null,
1380         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1381     case "j":
1382         return {g:1,
1383             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1384             s:"(\\d{1,2})"}; // day of month without leading zeroes
1385     case "d":
1386         return {g:1,
1387             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1388             s:"(\\d{2})"}; // day of month with leading zeroes
1389     case "l":
1390         return {g:0,
1391             c:null,
1392             s:"(?:" + Date.dayNames.join("|") + ")"};
1393     case "S":
1394         return {g:0,
1395             c:null,
1396             s:"(?:st|nd|rd|th)"};
1397     case "w":
1398         return {g:0,
1399             c:null,
1400             s:"\\d"};
1401     case "z":
1402         return {g:0,
1403             c:null,
1404             s:"(?:\\d{1,3})"};
1405     case "W":
1406         return {g:0,
1407             c:null,
1408             s:"(?:\\d{2})"};
1409     case "F":
1410         return {g:1,
1411             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1412             s:"(" + Date.monthNames.join("|") + ")"};
1413     case "M":
1414         return {g:1,
1415             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1416             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1417     case "n":
1418         return {g:1,
1419             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1420             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1421     case "m":
1422         return {g:1,
1423             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1424             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1425     case "t":
1426         return {g:0,
1427             c:null,
1428             s:"\\d{1,2}"};
1429     case "L":
1430         return {g:0,
1431             c:null,
1432             s:"(?:1|0)"};
1433     case "Y":
1434         return {g:1,
1435             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1436             s:"(\\d{4})"};
1437     case "y":
1438         return {g:1,
1439             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1440                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1441             s:"(\\d{1,2})"};
1442     case "a":
1443         return {g:1,
1444             c:"if (results[" + currentGroup + "] == 'am') {\n"
1445                 + "if (h == 12) { h = 0; }\n"
1446                 + "} else { if (h < 12) { h += 12; }}",
1447             s:"(am|pm)"};
1448     case "A":
1449         return {g:1,
1450             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1451                 + "if (h == 12) { h = 0; }\n"
1452                 + "} else { if (h < 12) { h += 12; }}",
1453             s:"(AM|PM)"};
1454     case "g":
1455     case "G":
1456         return {g:1,
1457             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1458             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1459     case "h":
1460     case "H":
1461         return {g:1,
1462             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1463             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1464     case "i":
1465         return {g:1,
1466             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1467             s:"(\\d{2})"};
1468     case "s":
1469         return {g:1,
1470             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1471             s:"(\\d{2})"};
1472     case "O":
1473         return {g:1,
1474             c:[
1475                 "o = results[", currentGroup, "];\n",
1476                 "var sn = o.substring(0,1);\n", // get + / - sign
1477                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1478                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1479                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1480                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1481             ].join(""),
1482             s:"([+\-]\\d{2,4})"};
1483     
1484     
1485     case "P":
1486         return {g:1,
1487                 c:[
1488                    "o = results[", currentGroup, "];\n",
1489                    "var sn = o.substring(0,1);\n",
1490                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1491                    "var mn = o.substring(4,6) % 60;\n",
1492                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1493                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1494             ].join(""),
1495             s:"([+\-]\\d{4})"};
1496     case "T":
1497         return {g:0,
1498             c:null,
1499             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1500     case "Z":
1501         return {g:1,
1502             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1503                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1504             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1505     default:
1506         return {g:0,
1507             c:null,
1508             s:String.escape(character)};
1509     }
1510 };
1511
1512 /**
1513  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1514  * @return {String} The abbreviated timezone name (e.g. 'CST')
1515  */
1516 Date.prototype.getTimezone = function() {
1517     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1518 };
1519
1520 /**
1521  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1522  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1523  */
1524 Date.prototype.getGMTOffset = function() {
1525     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1526         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1527         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1528 };
1529
1530 /**
1531  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1532  * @return {String} 2-characters representing hours and 2-characters representing minutes
1533  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1534  */
1535 Date.prototype.getGMTColonOffset = function() {
1536         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1537                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1538                 + ":"
1539                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1540 }
1541
1542 /**
1543  * Get the numeric day number of the year, adjusted for leap year.
1544  * @return {Number} 0 through 364 (365 in leap years)
1545  */
1546 Date.prototype.getDayOfYear = function() {
1547     var num = 0;
1548     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1549     for (var i = 0; i < this.getMonth(); ++i) {
1550         num += Date.daysInMonth[i];
1551     }
1552     return num + this.getDate() - 1;
1553 };
1554
1555 /**
1556  * Get the string representation of the numeric week number of the year
1557  * (equivalent to the format specifier 'W').
1558  * @return {String} '00' through '52'
1559  */
1560 Date.prototype.getWeekOfYear = function() {
1561     // Skip to Thursday of this week
1562     var now = this.getDayOfYear() + (4 - this.getDay());
1563     // Find the first Thursday of the year
1564     var jan1 = new Date(this.getFullYear(), 0, 1);
1565     var then = (7 - jan1.getDay() + 4);
1566     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1567 };
1568
1569 /**
1570  * Whether or not the current date is in a leap year.
1571  * @return {Boolean} True if the current date is in a leap year, else false
1572  */
1573 Date.prototype.isLeapYear = function() {
1574     var year = this.getFullYear();
1575     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1576 };
1577
1578 /**
1579  * Get the first day of the current month, adjusted for leap year.  The returned value
1580  * is the numeric day index within the week (0-6) which can be used in conjunction with
1581  * the {@link #monthNames} array to retrieve the textual day name.
1582  * Example:
1583  *<pre><code>
1584 var dt = new Date('1/10/2007');
1585 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1586 </code></pre>
1587  * @return {Number} The day number (0-6)
1588  */
1589 Date.prototype.getFirstDayOfMonth = function() {
1590     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1591     return (day < 0) ? (day + 7) : day;
1592 };
1593
1594 /**
1595  * Get the last day of the current month, adjusted for leap year.  The returned value
1596  * is the numeric day index within the week (0-6) which can be used in conjunction with
1597  * the {@link #monthNames} array to retrieve the textual day name.
1598  * Example:
1599  *<pre><code>
1600 var dt = new Date('1/10/2007');
1601 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1602 </code></pre>
1603  * @return {Number} The day number (0-6)
1604  */
1605 Date.prototype.getLastDayOfMonth = function() {
1606     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1607     return (day < 0) ? (day + 7) : day;
1608 };
1609
1610
1611 /**
1612  * Get the first date of this date's month
1613  * @return {Date}
1614  */
1615 Date.prototype.getFirstDateOfMonth = function() {
1616     return new Date(this.getFullYear(), this.getMonth(), 1);
1617 };
1618
1619 /**
1620  * Get the last date of this date's month
1621  * @return {Date}
1622  */
1623 Date.prototype.getLastDateOfMonth = function() {
1624     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1625 };
1626 /**
1627  * Get the number of days in the current month, adjusted for leap year.
1628  * @return {Number} The number of days in the month
1629  */
1630 Date.prototype.getDaysInMonth = function() {
1631     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1632     return Date.daysInMonth[this.getMonth()];
1633 };
1634
1635 /**
1636  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1637  * @return {String} 'st, 'nd', 'rd' or 'th'
1638  */
1639 Date.prototype.getSuffix = function() {
1640     switch (this.getDate()) {
1641         case 1:
1642         case 21:
1643         case 31:
1644             return "st";
1645         case 2:
1646         case 22:
1647             return "nd";
1648         case 3:
1649         case 23:
1650             return "rd";
1651         default:
1652             return "th";
1653     }
1654 };
1655
1656 // private
1657 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1658
1659 /**
1660  * An array of textual month names.
1661  * Override these values for international dates, for example...
1662  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1663  * @type Array
1664  * @static
1665  */
1666 Date.monthNames =
1667    ["January",
1668     "February",
1669     "March",
1670     "April",
1671     "May",
1672     "June",
1673     "July",
1674     "August",
1675     "September",
1676     "October",
1677     "November",
1678     "December"];
1679
1680 /**
1681  * An array of textual day names.
1682  * Override these values for international dates, for example...
1683  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1684  * @type Array
1685  * @static
1686  */
1687 Date.dayNames =
1688    ["Sunday",
1689     "Monday",
1690     "Tuesday",
1691     "Wednesday",
1692     "Thursday",
1693     "Friday",
1694     "Saturday"];
1695
1696 // private
1697 Date.y2kYear = 50;
1698 // private
1699 Date.monthNumbers = {
1700     Jan:0,
1701     Feb:1,
1702     Mar:2,
1703     Apr:3,
1704     May:4,
1705     Jun:5,
1706     Jul:6,
1707     Aug:7,
1708     Sep:8,
1709     Oct:9,
1710     Nov:10,
1711     Dec:11};
1712
1713 /**
1714  * Creates and returns a new Date instance with the exact same date value as the called instance.
1715  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1716  * variable will also be changed.  When the intention is to create a new variable that will not
1717  * modify the original instance, you should create a clone.
1718  *
1719  * Example of correctly cloning a date:
1720  * <pre><code>
1721 //wrong way:
1722 var orig = new Date('10/1/2006');
1723 var copy = orig;
1724 copy.setDate(5);
1725 document.write(orig);  //returns 'Thu Oct 05 2006'!
1726
1727 //correct way:
1728 var orig = new Date('10/1/2006');
1729 var copy = orig.clone();
1730 copy.setDate(5);
1731 document.write(orig);  //returns 'Thu Oct 01 2006'
1732 </code></pre>
1733  * @return {Date} The new Date instance
1734  */
1735 Date.prototype.clone = function() {
1736         return new Date(this.getTime());
1737 };
1738
1739 /**
1740  * Clears any time information from this date
1741  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1742  @return {Date} this or the clone
1743  */
1744 Date.prototype.clearTime = function(clone){
1745     if(clone){
1746         return this.clone().clearTime();
1747     }
1748     this.setHours(0);
1749     this.setMinutes(0);
1750     this.setSeconds(0);
1751     this.setMilliseconds(0);
1752     return this;
1753 };
1754
1755 // private
1756 // safari setMonth is broken -- check that this is only donw once...
1757 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1758     Date.brokenSetMonth = Date.prototype.setMonth;
1759         Date.prototype.setMonth = function(num){
1760                 if(num <= -1){
1761                         var n = Math.ceil(-num);
1762                         var back_year = Math.ceil(n/12);
1763                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1764                         this.setFullYear(this.getFullYear() - back_year);
1765                         return Date.brokenSetMonth.call(this, month);
1766                 } else {
1767                         return Date.brokenSetMonth.apply(this, arguments);
1768                 }
1769         };
1770 }
1771
1772 /** Date interval constant 
1773 * @static 
1774 * @type String */
1775 Date.MILLI = "ms";
1776 /** Date interval constant 
1777 * @static 
1778 * @type String */
1779 Date.SECOND = "s";
1780 /** Date interval constant 
1781 * @static 
1782 * @type String */
1783 Date.MINUTE = "mi";
1784 /** Date interval constant 
1785 * @static 
1786 * @type String */
1787 Date.HOUR = "h";
1788 /** Date interval constant 
1789 * @static 
1790 * @type String */
1791 Date.DAY = "d";
1792 /** Date interval constant 
1793 * @static 
1794 * @type String */
1795 Date.MONTH = "mo";
1796 /** Date interval constant 
1797 * @static 
1798 * @type String */
1799 Date.YEAR = "y";
1800
1801 /**
1802  * Provides a convenient method of performing basic date arithmetic.  This method
1803  * does not modify the Date instance being called - it creates and returns
1804  * a new Date instance containing the resulting date value.
1805  *
1806  * Examples:
1807  * <pre><code>
1808 //Basic usage:
1809 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1810 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1811
1812 //Negative values will subtract correctly:
1813 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1814 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1815
1816 //You can even chain several calls together in one line!
1817 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1818 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1819  </code></pre>
1820  *
1821  * @param {String} interval   A valid date interval enum value
1822  * @param {Number} value      The amount to add to the current date
1823  * @return {Date} The new Date instance
1824  */
1825 Date.prototype.add = function(interval, value){
1826   var d = this.clone();
1827   if (!interval || value === 0) { return d; }
1828   switch(interval.toLowerCase()){
1829     case Date.MILLI:
1830       d.setMilliseconds(this.getMilliseconds() + value);
1831       break;
1832     case Date.SECOND:
1833       d.setSeconds(this.getSeconds() + value);
1834       break;
1835     case Date.MINUTE:
1836       d.setMinutes(this.getMinutes() + value);
1837       break;
1838     case Date.HOUR:
1839       d.setHours(this.getHours() + value);
1840       break;
1841     case Date.DAY:
1842       d.setDate(this.getDate() + value);
1843       break;
1844     case Date.MONTH:
1845       var day = this.getDate();
1846       if(day > 28){
1847           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1848       }
1849       d.setDate(day);
1850       d.setMonth(this.getMonth() + value);
1851       break;
1852     case Date.YEAR:
1853       d.setFullYear(this.getFullYear() + value);
1854       break;
1855   }
1856   return d;
1857 };
1858 /*
1859  * Based on:
1860  * Ext JS Library 1.1.1
1861  * Copyright(c) 2006-2007, Ext JS, LLC.
1862  *
1863  * Originally Released Under LGPL - original licence link has changed is not relivant.
1864  *
1865  * Fork - LGPL
1866  * <script type="text/javascript">
1867  */
1868
1869 /**
1870  * @class Roo.lib.Dom
1871  * @static
1872  * 
1873  * Dom utils (from YIU afaik)
1874  * 
1875  **/
1876 Roo.lib.Dom = {
1877     /**
1878      * Get the view width
1879      * @param {Boolean} full True will get the full document, otherwise it's the view width
1880      * @return {Number} The width
1881      */
1882      
1883     getViewWidth : function(full) {
1884         return full ? this.getDocumentWidth() : this.getViewportWidth();
1885     },
1886     /**
1887      * Get the view height
1888      * @param {Boolean} full True will get the full document, otherwise it's the view height
1889      * @return {Number} The height
1890      */
1891     getViewHeight : function(full) {
1892         return full ? this.getDocumentHeight() : this.getViewportHeight();
1893     },
1894
1895     getDocumentHeight: function() {
1896         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1897         return Math.max(scrollHeight, this.getViewportHeight());
1898     },
1899
1900     getDocumentWidth: function() {
1901         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1902         return Math.max(scrollWidth, this.getViewportWidth());
1903     },
1904
1905     getViewportHeight: function() {
1906         var height = self.innerHeight;
1907         var mode = document.compatMode;
1908
1909         if ((mode || Roo.isIE) && !Roo.isOpera) {
1910             height = (mode == "CSS1Compat") ?
1911                      document.documentElement.clientHeight :
1912                      document.body.clientHeight;
1913         }
1914
1915         return height;
1916     },
1917
1918     getViewportWidth: function() {
1919         var width = self.innerWidth;
1920         var mode = document.compatMode;
1921
1922         if (mode || Roo.isIE) {
1923             width = (mode == "CSS1Compat") ?
1924                     document.documentElement.clientWidth :
1925                     document.body.clientWidth;
1926         }
1927         return width;
1928     },
1929
1930     isAncestor : function(p, c) {
1931         p = Roo.getDom(p);
1932         c = Roo.getDom(c);
1933         if (!p || !c) {
1934             return false;
1935         }
1936
1937         if (p.contains && !Roo.isSafari) {
1938             return p.contains(c);
1939         } else if (p.compareDocumentPosition) {
1940             return !!(p.compareDocumentPosition(c) & 16);
1941         } else {
1942             var parent = c.parentNode;
1943             while (parent) {
1944                 if (parent == p) {
1945                     return true;
1946                 }
1947                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1948                     return false;
1949                 }
1950                 parent = parent.parentNode;
1951             }
1952             return false;
1953         }
1954     },
1955
1956     getRegion : function(el) {
1957         return Roo.lib.Region.getRegion(el);
1958     },
1959
1960     getY : function(el) {
1961         return this.getXY(el)[1];
1962     },
1963
1964     getX : function(el) {
1965         return this.getXY(el)[0];
1966     },
1967
1968     getXY : function(el) {
1969         var p, pe, b, scroll, bd = document.body;
1970         el = Roo.getDom(el);
1971         var fly = Roo.lib.AnimBase.fly;
1972         if (el.getBoundingClientRect) {
1973             b = el.getBoundingClientRect();
1974             scroll = fly(document).getScroll();
1975             return [b.left + scroll.left, b.top + scroll.top];
1976         }
1977         var x = 0, y = 0;
1978
1979         p = el;
1980
1981         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1982
1983         while (p) {
1984
1985             x += p.offsetLeft;
1986             y += p.offsetTop;
1987
1988             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1989                 hasAbsolute = true;
1990             }
1991
1992             if (Roo.isGecko) {
1993                 pe = fly(p);
1994
1995                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1996                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1997
1998
1999                 x += bl;
2000                 y += bt;
2001
2002
2003                 if (p != el && pe.getStyle('overflow') != 'visible') {
2004                     x += bl;
2005                     y += bt;
2006                 }
2007             }
2008             p = p.offsetParent;
2009         }
2010
2011         if (Roo.isSafari && hasAbsolute) {
2012             x -= bd.offsetLeft;
2013             y -= bd.offsetTop;
2014         }
2015
2016         if (Roo.isGecko && !hasAbsolute) {
2017             var dbd = fly(bd);
2018             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2019             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2020         }
2021
2022         p = el.parentNode;
2023         while (p && p != bd) {
2024             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2025                 x -= p.scrollLeft;
2026                 y -= p.scrollTop;
2027             }
2028             p = p.parentNode;
2029         }
2030         return [x, y];
2031     },
2032  
2033   
2034
2035
2036     setXY : function(el, xy) {
2037         el = Roo.fly(el, '_setXY');
2038         el.position();
2039         var pts = el.translatePoints(xy);
2040         if (xy[0] !== false) {
2041             el.dom.style.left = pts.left + "px";
2042         }
2043         if (xy[1] !== false) {
2044             el.dom.style.top = pts.top + "px";
2045         }
2046     },
2047
2048     setX : function(el, x) {
2049         this.setXY(el, [x, false]);
2050     },
2051
2052     setY : function(el, y) {
2053         this.setXY(el, [false, y]);
2054     }
2055 };
2056 /*
2057  * Portions of this file are based on pieces of Yahoo User Interface Library
2058  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2059  * YUI licensed under the BSD License:
2060  * http://developer.yahoo.net/yui/license.txt
2061  * <script type="text/javascript">
2062  *
2063  */
2064
2065 Roo.lib.Event = function() {
2066     var loadComplete = false;
2067     var listeners = [];
2068     var unloadListeners = [];
2069     var retryCount = 0;
2070     var onAvailStack = [];
2071     var counter = 0;
2072     var lastError = null;
2073
2074     return {
2075         POLL_RETRYS: 200,
2076         POLL_INTERVAL: 20,
2077         EL: 0,
2078         TYPE: 1,
2079         FN: 2,
2080         WFN: 3,
2081         OBJ: 3,
2082         ADJ_SCOPE: 4,
2083         _interval: null,
2084
2085         startInterval: function() {
2086             if (!this._interval) {
2087                 var self = this;
2088                 var callback = function() {
2089                     self._tryPreloadAttach();
2090                 };
2091                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2092
2093             }
2094         },
2095
2096         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2097             onAvailStack.push({ id:         p_id,
2098                 fn:         p_fn,
2099                 obj:        p_obj,
2100                 override:   p_override,
2101                 checkReady: false    });
2102
2103             retryCount = this.POLL_RETRYS;
2104             this.startInterval();
2105         },
2106
2107
2108         addListener: function(el, eventName, fn) {
2109             el = Roo.getDom(el);
2110             if (!el || !fn) {
2111                 return false;
2112             }
2113
2114             if ("unload" == eventName) {
2115                 unloadListeners[unloadListeners.length] =
2116                 [el, eventName, fn];
2117                 return true;
2118             }
2119
2120             var wrappedFn = function(e) {
2121                 return fn(Roo.lib.Event.getEvent(e));
2122             };
2123
2124             var li = [el, eventName, fn, wrappedFn];
2125
2126             var index = listeners.length;
2127             listeners[index] = li;
2128
2129             this.doAdd(el, eventName, wrappedFn, false);
2130             return true;
2131
2132         },
2133
2134
2135         removeListener: function(el, eventName, fn) {
2136             var i, len;
2137
2138             el = Roo.getDom(el);
2139
2140             if(!fn) {
2141                 return this.purgeElement(el, false, eventName);
2142             }
2143
2144
2145             if ("unload" == eventName) {
2146
2147                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2148                     var li = unloadListeners[i];
2149                     if (li &&
2150                         li[0] == el &&
2151                         li[1] == eventName &&
2152                         li[2] == fn) {
2153                         unloadListeners.splice(i, 1);
2154                         return true;
2155                     }
2156                 }
2157
2158                 return false;
2159             }
2160
2161             var cacheItem = null;
2162
2163
2164             var index = arguments[3];
2165
2166             if ("undefined" == typeof index) {
2167                 index = this._getCacheIndex(el, eventName, fn);
2168             }
2169
2170             if (index >= 0) {
2171                 cacheItem = listeners[index];
2172             }
2173
2174             if (!el || !cacheItem) {
2175                 return false;
2176             }
2177
2178             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2179
2180             delete listeners[index][this.WFN];
2181             delete listeners[index][this.FN];
2182             listeners.splice(index, 1);
2183
2184             return true;
2185
2186         },
2187
2188
2189         getTarget: function(ev, resolveTextNode) {
2190             ev = ev.browserEvent || ev;
2191             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2192             var t = ev.target || ev.srcElement;
2193             return this.resolveTextNode(t);
2194         },
2195
2196
2197         resolveTextNode: function(node) {
2198             if (Roo.isSafari && node && 3 == node.nodeType) {
2199                 return node.parentNode;
2200             } else {
2201                 return node;
2202             }
2203         },
2204
2205
2206         getPageX: function(ev) {
2207             ev = ev.browserEvent || ev;
2208             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2209             var x = ev.pageX;
2210             if (!x && 0 !== x) {
2211                 x = ev.clientX || 0;
2212
2213                 if (Roo.isIE) {
2214                     x += this.getScroll()[1];
2215                 }
2216             }
2217
2218             return x;
2219         },
2220
2221
2222         getPageY: function(ev) {
2223             ev = ev.browserEvent || ev;
2224             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2225             var y = ev.pageY;
2226             if (!y && 0 !== y) {
2227                 y = ev.clientY || 0;
2228
2229                 if (Roo.isIE) {
2230                     y += this.getScroll()[0];
2231                 }
2232             }
2233
2234
2235             return y;
2236         },
2237
2238
2239         getXY: function(ev) {
2240             ev = ev.browserEvent || ev;
2241             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2242             return [this.getPageX(ev), this.getPageY(ev)];
2243         },
2244
2245
2246         getRelatedTarget: function(ev) {
2247             ev = ev.browserEvent || ev;
2248             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2249             var t = ev.relatedTarget;
2250             if (!t) {
2251                 if (ev.type == "mouseout") {
2252                     t = ev.toElement;
2253                 } else if (ev.type == "mouseover") {
2254                     t = ev.fromElement;
2255                 }
2256             }
2257
2258             return this.resolveTextNode(t);
2259         },
2260
2261
2262         getTime: function(ev) {
2263             ev = ev.browserEvent || ev;
2264             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2265             if (!ev.time) {
2266                 var t = new Date().getTime();
2267                 try {
2268                     ev.time = t;
2269                 } catch(ex) {
2270                     this.lastError = ex;
2271                     return t;
2272                 }
2273             }
2274
2275             return ev.time;
2276         },
2277
2278
2279         stopEvent: function(ev) {
2280             this.stopPropagation(ev);
2281             this.preventDefault(ev);
2282         },
2283
2284
2285         stopPropagation: function(ev) {
2286             ev = ev.browserEvent || ev;
2287             if (ev.stopPropagation) {
2288                 ev.stopPropagation();
2289             } else {
2290                 ev.cancelBubble = true;
2291             }
2292         },
2293
2294
2295         preventDefault: function(ev) {
2296             ev = ev.browserEvent || ev;
2297             if(ev.preventDefault) {
2298                 ev.preventDefault();
2299             } else {
2300                 ev.returnValue = false;
2301             }
2302         },
2303
2304
2305         getEvent: function(e) {
2306             var ev = e || window.event;
2307             if (!ev) {
2308                 var c = this.getEvent.caller;
2309                 while (c) {
2310                     ev = c.arguments[0];
2311                     if (ev && Event == ev.constructor) {
2312                         break;
2313                     }
2314                     c = c.caller;
2315                 }
2316             }
2317             return ev;
2318         },
2319
2320
2321         getCharCode: function(ev) {
2322             ev = ev.browserEvent || ev;
2323             return ev.charCode || ev.keyCode || 0;
2324         },
2325
2326
2327         _getCacheIndex: function(el, eventName, fn) {
2328             for (var i = 0,len = listeners.length; i < len; ++i) {
2329                 var li = listeners[i];
2330                 if (li &&
2331                     li[this.FN] == fn &&
2332                     li[this.EL] == el &&
2333                     li[this.TYPE] == eventName) {
2334                     return i;
2335                 }
2336             }
2337
2338             return -1;
2339         },
2340
2341
2342         elCache: {},
2343
2344
2345         getEl: function(id) {
2346             return document.getElementById(id);
2347         },
2348
2349
2350         clearCache: function() {
2351         },
2352
2353
2354         _load: function(e) {
2355             loadComplete = true;
2356             var EU = Roo.lib.Event;
2357
2358
2359             if (Roo.isIE) {
2360                 EU.doRemove(window, "load", EU._load);
2361             }
2362         },
2363
2364
2365         _tryPreloadAttach: function() {
2366
2367             if (this.locked) {
2368                 return false;
2369             }
2370
2371             this.locked = true;
2372
2373
2374             var tryAgain = !loadComplete;
2375             if (!tryAgain) {
2376                 tryAgain = (retryCount > 0);
2377             }
2378
2379
2380             var notAvail = [];
2381             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2382                 var item = onAvailStack[i];
2383                 if (item) {
2384                     var el = this.getEl(item.id);
2385
2386                     if (el) {
2387                         if (!item.checkReady ||
2388                             loadComplete ||
2389                             el.nextSibling ||
2390                             (document && document.body)) {
2391
2392                             var scope = el;
2393                             if (item.override) {
2394                                 if (item.override === true) {
2395                                     scope = item.obj;
2396                                 } else {
2397                                     scope = item.override;
2398                                 }
2399                             }
2400                             item.fn.call(scope, item.obj);
2401                             onAvailStack[i] = null;
2402                         }
2403                     } else {
2404                         notAvail.push(item);
2405                     }
2406                 }
2407             }
2408
2409             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2410
2411             if (tryAgain) {
2412
2413                 this.startInterval();
2414             } else {
2415                 clearInterval(this._interval);
2416                 this._interval = null;
2417             }
2418
2419             this.locked = false;
2420
2421             return true;
2422
2423         },
2424
2425
2426         purgeElement: function(el, recurse, eventName) {
2427             var elListeners = this.getListeners(el, eventName);
2428             if (elListeners) {
2429                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2430                     var l = elListeners[i];
2431                     this.removeListener(el, l.type, l.fn);
2432                 }
2433             }
2434
2435             if (recurse && el && el.childNodes) {
2436                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2437                     this.purgeElement(el.childNodes[i], recurse, eventName);
2438                 }
2439             }
2440         },
2441
2442
2443         getListeners: function(el, eventName) {
2444             var results = [], searchLists;
2445             if (!eventName) {
2446                 searchLists = [listeners, unloadListeners];
2447             } else if (eventName == "unload") {
2448                 searchLists = [unloadListeners];
2449             } else {
2450                 searchLists = [listeners];
2451             }
2452
2453             for (var j = 0; j < searchLists.length; ++j) {
2454                 var searchList = searchLists[j];
2455                 if (searchList && searchList.length > 0) {
2456                     for (var i = 0,len = searchList.length; i < len; ++i) {
2457                         var l = searchList[i];
2458                         if (l && l[this.EL] === el &&
2459                             (!eventName || eventName === l[this.TYPE])) {
2460                             results.push({
2461                                 type:   l[this.TYPE],
2462                                 fn:     l[this.FN],
2463                                 obj:    l[this.OBJ],
2464                                 adjust: l[this.ADJ_SCOPE],
2465                                 index:  i
2466                             });
2467                         }
2468                     }
2469                 }
2470             }
2471
2472             return (results.length) ? results : null;
2473         },
2474
2475
2476         _unload: function(e) {
2477
2478             var EU = Roo.lib.Event, i, j, l, len, index;
2479
2480             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2481                 l = unloadListeners[i];
2482                 if (l) {
2483                     var scope = window;
2484                     if (l[EU.ADJ_SCOPE]) {
2485                         if (l[EU.ADJ_SCOPE] === true) {
2486                             scope = l[EU.OBJ];
2487                         } else {
2488                             scope = l[EU.ADJ_SCOPE];
2489                         }
2490                     }
2491                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2492                     unloadListeners[i] = null;
2493                     l = null;
2494                     scope = null;
2495                 }
2496             }
2497
2498             unloadListeners = null;
2499
2500             if (listeners && listeners.length > 0) {
2501                 j = listeners.length;
2502                 while (j) {
2503                     index = j - 1;
2504                     l = listeners[index];
2505                     if (l) {
2506                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2507                                 l[EU.FN], index);
2508                     }
2509                     j = j - 1;
2510                 }
2511                 l = null;
2512
2513                 EU.clearCache();
2514             }
2515
2516             EU.doRemove(window, "unload", EU._unload);
2517
2518         },
2519
2520
2521         getScroll: function() {
2522             var dd = document.documentElement, db = document.body;
2523             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2524                 return [dd.scrollTop, dd.scrollLeft];
2525             } else if (db) {
2526                 return [db.scrollTop, db.scrollLeft];
2527             } else {
2528                 return [0, 0];
2529             }
2530         },
2531
2532
2533         doAdd: function () {
2534             if (window.addEventListener) {
2535                 return function(el, eventName, fn, capture) {
2536                     el.addEventListener(eventName, fn, (capture));
2537                 };
2538             } else if (window.attachEvent) {
2539                 return function(el, eventName, fn, capture) {
2540                     el.attachEvent("on" + eventName, fn);
2541                 };
2542             } else {
2543                 return function() {
2544                 };
2545             }
2546         }(),
2547
2548
2549         doRemove: function() {
2550             if (window.removeEventListener) {
2551                 return function (el, eventName, fn, capture) {
2552                     el.removeEventListener(eventName, fn, (capture));
2553                 };
2554             } else if (window.detachEvent) {
2555                 return function (el, eventName, fn) {
2556                     el.detachEvent("on" + eventName, fn);
2557                 };
2558             } else {
2559                 return function() {
2560                 };
2561             }
2562         }()
2563     };
2564     
2565 }();
2566 (function() {     
2567    
2568     var E = Roo.lib.Event;
2569     E.on = E.addListener;
2570     E.un = E.removeListener;
2571
2572     if (document && document.body) {
2573         E._load();
2574     } else {
2575         E.doAdd(window, "load", E._load);
2576     }
2577     E.doAdd(window, "unload", E._unload);
2578     E._tryPreloadAttach();
2579 })();
2580
2581 /*
2582  * Portions of this file are based on pieces of Yahoo User Interface Library
2583  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2584  * YUI licensed under the BSD License:
2585  * http://developer.yahoo.net/yui/license.txt
2586  * <script type="text/javascript">
2587  *
2588  */
2589
2590 (function() {
2591     /**
2592      * @class Roo.lib.Ajax
2593      *
2594      */
2595     Roo.lib.Ajax = {
2596         /**
2597          * @static 
2598          */
2599         request : function(method, uri, cb, data, options) {
2600             if(options){
2601                 var hs = options.headers;
2602                 if(hs){
2603                     for(var h in hs){
2604                         if(hs.hasOwnProperty(h)){
2605                             this.initHeader(h, hs[h], false);
2606                         }
2607                     }
2608                 }
2609                 if(options.xmlData){
2610                     this.initHeader('Content-Type', 'text/xml', false);
2611                     method = 'POST';
2612                     data = options.xmlData;
2613                 }
2614             }
2615
2616             return this.asyncRequest(method, uri, cb, data);
2617         },
2618
2619         serializeForm : function(form) {
2620             if(typeof form == 'string') {
2621                 form = (document.getElementById(form) || document.forms[form]);
2622             }
2623
2624             var el, name, val, disabled, data = '', hasSubmit = false;
2625             for (var i = 0; i < form.elements.length; i++) {
2626                 el = form.elements[i];
2627                 disabled = form.elements[i].disabled;
2628                 name = form.elements[i].name;
2629                 val = form.elements[i].value;
2630
2631                 if (!disabled && name){
2632                     switch (el.type)
2633                             {
2634                         case 'select-one':
2635                         case 'select-multiple':
2636                             for (var j = 0; j < el.options.length; j++) {
2637                                 if (el.options[j].selected) {
2638                                     if (Roo.isIE) {
2639                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2640                                     }
2641                                     else {
2642                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2643                                     }
2644                                 }
2645                             }
2646                             break;
2647                         case 'radio':
2648                         case 'checkbox':
2649                             if (el.checked) {
2650                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2651                             }
2652                             break;
2653                         case 'file':
2654
2655                         case undefined:
2656
2657                         case 'reset':
2658
2659                         case 'button':
2660
2661                             break;
2662                         case 'submit':
2663                             if(hasSubmit == false) {
2664                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2665                                 hasSubmit = true;
2666                             }
2667                             break;
2668                         default:
2669                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2670                             break;
2671                     }
2672                 }
2673             }
2674             data = data.substr(0, data.length - 1);
2675             return data;
2676         },
2677
2678         headers:{},
2679
2680         hasHeaders:false,
2681
2682         useDefaultHeader:true,
2683
2684         defaultPostHeader:'application/x-www-form-urlencoded',
2685
2686         useDefaultXhrHeader:true,
2687
2688         defaultXhrHeader:'XMLHttpRequest',
2689
2690         hasDefaultHeaders:true,
2691
2692         defaultHeaders:{},
2693
2694         poll:{},
2695
2696         timeout:{},
2697
2698         pollInterval:50,
2699
2700         transactionId:0,
2701
2702         setProgId:function(id)
2703         {
2704             this.activeX.unshift(id);
2705         },
2706
2707         setDefaultPostHeader:function(b)
2708         {
2709             this.useDefaultHeader = b;
2710         },
2711
2712         setDefaultXhrHeader:function(b)
2713         {
2714             this.useDefaultXhrHeader = b;
2715         },
2716
2717         setPollingInterval:function(i)
2718         {
2719             if (typeof i == 'number' && isFinite(i)) {
2720                 this.pollInterval = i;
2721             }
2722         },
2723
2724         createXhrObject:function(transactionId)
2725         {
2726             var obj,http;
2727             try
2728             {
2729
2730                 http = new XMLHttpRequest();
2731
2732                 obj = { conn:http, tId:transactionId };
2733             }
2734             catch(e)
2735             {
2736                 for (var i = 0; i < this.activeX.length; ++i) {
2737                     try
2738                     {
2739
2740                         http = new ActiveXObject(this.activeX[i]);
2741
2742                         obj = { conn:http, tId:transactionId };
2743                         break;
2744                     }
2745                     catch(e) {
2746                     }
2747                 }
2748             }
2749             finally
2750             {
2751                 return obj;
2752             }
2753         },
2754
2755         getConnectionObject:function()
2756         {
2757             var o;
2758             var tId = this.transactionId;
2759
2760             try
2761             {
2762                 o = this.createXhrObject(tId);
2763                 if (o) {
2764                     this.transactionId++;
2765                 }
2766             }
2767             catch(e) {
2768             }
2769             finally
2770             {
2771                 return o;
2772             }
2773         },
2774
2775         asyncRequest:function(method, uri, callback, postData)
2776         {
2777             var o = this.getConnectionObject();
2778
2779             if (!o) {
2780                 return null;
2781             }
2782             else {
2783                 o.conn.open(method, uri, true);
2784
2785                 if (this.useDefaultXhrHeader) {
2786                     if (!this.defaultHeaders['X-Requested-With']) {
2787                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2788                     }
2789                 }
2790
2791                 if(postData && this.useDefaultHeader){
2792                     this.initHeader('Content-Type', this.defaultPostHeader);
2793                 }
2794
2795                  if (this.hasDefaultHeaders || this.hasHeaders) {
2796                     this.setHeader(o);
2797                 }
2798
2799                 this.handleReadyState(o, callback);
2800                 o.conn.send(postData || null);
2801
2802                 return o;
2803             }
2804         },
2805
2806         handleReadyState:function(o, callback)
2807         {
2808             var oConn = this;
2809
2810             if (callback && callback.timeout) {
2811                 
2812                 this.timeout[o.tId] = window.setTimeout(function() {
2813                     oConn.abort(o, callback, true);
2814                 }, callback.timeout);
2815             }
2816
2817             this.poll[o.tId] = window.setInterval(
2818                     function() {
2819                         if (o.conn && o.conn.readyState == 4) {
2820                             window.clearInterval(oConn.poll[o.tId]);
2821                             delete oConn.poll[o.tId];
2822
2823                             if(callback && callback.timeout) {
2824                                 window.clearTimeout(oConn.timeout[o.tId]);
2825                                 delete oConn.timeout[o.tId];
2826                             }
2827
2828                             oConn.handleTransactionResponse(o, callback);
2829                         }
2830                     }
2831                     , this.pollInterval);
2832         },
2833
2834         handleTransactionResponse:function(o, callback, isAbort)
2835         {
2836
2837             if (!callback) {
2838                 this.releaseObject(o);
2839                 return;
2840             }
2841
2842             var httpStatus, responseObject;
2843
2844             try
2845             {
2846                 if (o.conn.status !== undefined && o.conn.status != 0) {
2847                     httpStatus = o.conn.status;
2848                 }
2849                 else {
2850                     httpStatus = 13030;
2851                 }
2852             }
2853             catch(e) {
2854
2855
2856                 httpStatus = 13030;
2857             }
2858
2859             if (httpStatus >= 200 && httpStatus < 300) {
2860                 responseObject = this.createResponseObject(o, callback.argument);
2861                 if (callback.success) {
2862                     if (!callback.scope) {
2863                         callback.success(responseObject);
2864                     }
2865                     else {
2866
2867
2868                         callback.success.apply(callback.scope, [responseObject]);
2869                     }
2870                 }
2871             }
2872             else {
2873                 switch (httpStatus) {
2874
2875                     case 12002:
2876                     case 12029:
2877                     case 12030:
2878                     case 12031:
2879                     case 12152:
2880                     case 13030:
2881                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2882                         if (callback.failure) {
2883                             if (!callback.scope) {
2884                                 callback.failure(responseObject);
2885                             }
2886                             else {
2887                                 callback.failure.apply(callback.scope, [responseObject]);
2888                             }
2889                         }
2890                         break;
2891                     default:
2892                         responseObject = this.createResponseObject(o, callback.argument);
2893                         if (callback.failure) {
2894                             if (!callback.scope) {
2895                                 callback.failure(responseObject);
2896                             }
2897                             else {
2898                                 callback.failure.apply(callback.scope, [responseObject]);
2899                             }
2900                         }
2901                 }
2902             }
2903
2904             this.releaseObject(o);
2905             responseObject = null;
2906         },
2907
2908         createResponseObject:function(o, callbackArg)
2909         {
2910             var obj = {};
2911             var headerObj = {};
2912
2913             try
2914             {
2915                 var headerStr = o.conn.getAllResponseHeaders();
2916                 var header = headerStr.split('\n');
2917                 for (var i = 0; i < header.length; i++) {
2918                     var delimitPos = header[i].indexOf(':');
2919                     if (delimitPos != -1) {
2920                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2921                     }
2922                 }
2923             }
2924             catch(e) {
2925             }
2926
2927             obj.tId = o.tId;
2928             obj.status = o.conn.status;
2929             obj.statusText = o.conn.statusText;
2930             obj.getResponseHeader = headerObj;
2931             obj.getAllResponseHeaders = headerStr;
2932             obj.responseText = o.conn.responseText;
2933             obj.responseXML = o.conn.responseXML;
2934
2935             if (typeof callbackArg !== undefined) {
2936                 obj.argument = callbackArg;
2937             }
2938
2939             return obj;
2940         },
2941
2942         createExceptionObject:function(tId, callbackArg, isAbort)
2943         {
2944             var COMM_CODE = 0;
2945             var COMM_ERROR = 'communication failure';
2946             var ABORT_CODE = -1;
2947             var ABORT_ERROR = 'transaction aborted';
2948
2949             var obj = {};
2950
2951             obj.tId = tId;
2952             if (isAbort) {
2953                 obj.status = ABORT_CODE;
2954                 obj.statusText = ABORT_ERROR;
2955             }
2956             else {
2957                 obj.status = COMM_CODE;
2958                 obj.statusText = COMM_ERROR;
2959             }
2960
2961             if (callbackArg) {
2962                 obj.argument = callbackArg;
2963             }
2964
2965             return obj;
2966         },
2967
2968         initHeader:function(label, value, isDefault)
2969         {
2970             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2971
2972             if (headerObj[label] === undefined) {
2973                 headerObj[label] = value;
2974             }
2975             else {
2976
2977
2978                 headerObj[label] = value + "," + headerObj[label];
2979             }
2980
2981             if (isDefault) {
2982                 this.hasDefaultHeaders = true;
2983             }
2984             else {
2985                 this.hasHeaders = true;
2986             }
2987         },
2988
2989
2990         setHeader:function(o)
2991         {
2992             if (this.hasDefaultHeaders) {
2993                 for (var prop in this.defaultHeaders) {
2994                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2995                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2996                     }
2997                 }
2998             }
2999
3000             if (this.hasHeaders) {
3001                 for (var prop in this.headers) {
3002                     if (this.headers.hasOwnProperty(prop)) {
3003                         o.conn.setRequestHeader(prop, this.headers[prop]);
3004                     }
3005                 }
3006                 this.headers = {};
3007                 this.hasHeaders = false;
3008             }
3009         },
3010
3011         resetDefaultHeaders:function() {
3012             delete this.defaultHeaders;
3013             this.defaultHeaders = {};
3014             this.hasDefaultHeaders = false;
3015         },
3016
3017         abort:function(o, callback, isTimeout)
3018         {
3019             if(this.isCallInProgress(o)) {
3020                 o.conn.abort();
3021                 window.clearInterval(this.poll[o.tId]);
3022                 delete this.poll[o.tId];
3023                 if (isTimeout) {
3024                     delete this.timeout[o.tId];
3025                 }
3026
3027                 this.handleTransactionResponse(o, callback, true);
3028
3029                 return true;
3030             }
3031             else {
3032                 return false;
3033             }
3034         },
3035
3036
3037         isCallInProgress:function(o)
3038         {
3039             if (o && o.conn) {
3040                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3041             }
3042             else {
3043
3044                 return false;
3045             }
3046         },
3047
3048
3049         releaseObject:function(o)
3050         {
3051
3052             o.conn = null;
3053
3054             o = null;
3055         },
3056
3057         activeX:[
3058         'MSXML2.XMLHTTP.3.0',
3059         'MSXML2.XMLHTTP',
3060         'Microsoft.XMLHTTP'
3061         ]
3062
3063
3064     };
3065 })();/*
3066  * Portions of this file are based on pieces of Yahoo User Interface Library
3067  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3068  * YUI licensed under the BSD License:
3069  * http://developer.yahoo.net/yui/license.txt
3070  * <script type="text/javascript">
3071  *
3072  */
3073
3074 Roo.lib.Region = function(t, r, b, l) {
3075     this.top = t;
3076     this[1] = t;
3077     this.right = r;
3078     this.bottom = b;
3079     this.left = l;
3080     this[0] = l;
3081 };
3082
3083
3084 Roo.lib.Region.prototype = {
3085     contains : function(region) {
3086         return ( region.left >= this.left &&
3087                  region.right <= this.right &&
3088                  region.top >= this.top &&
3089                  region.bottom <= this.bottom    );
3090
3091     },
3092
3093     getArea : function() {
3094         return ( (this.bottom - this.top) * (this.right - this.left) );
3095     },
3096
3097     intersect : function(region) {
3098         var t = Math.max(this.top, region.top);
3099         var r = Math.min(this.right, region.right);
3100         var b = Math.min(this.bottom, region.bottom);
3101         var l = Math.max(this.left, region.left);
3102
3103         if (b >= t && r >= l) {
3104             return new Roo.lib.Region(t, r, b, l);
3105         } else {
3106             return null;
3107         }
3108     },
3109     union : function(region) {
3110         var t = Math.min(this.top, region.top);
3111         var r = Math.max(this.right, region.right);
3112         var b = Math.max(this.bottom, region.bottom);
3113         var l = Math.min(this.left, region.left);
3114
3115         return new Roo.lib.Region(t, r, b, l);
3116     },
3117
3118     adjust : function(t, l, b, r) {
3119         this.top += t;
3120         this.left += l;
3121         this.right += r;
3122         this.bottom += b;
3123         return this;
3124     }
3125 };
3126
3127 Roo.lib.Region.getRegion = function(el) {
3128     var p = Roo.lib.Dom.getXY(el);
3129
3130     var t = p[1];
3131     var r = p[0] + el.offsetWidth;
3132     var b = p[1] + el.offsetHeight;
3133     var l = p[0];
3134
3135     return new Roo.lib.Region(t, r, b, l);
3136 };
3137 /*
3138  * Portions of this file are based on pieces of Yahoo User Interface Library
3139  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3140  * YUI licensed under the BSD License:
3141  * http://developer.yahoo.net/yui/license.txt
3142  * <script type="text/javascript">
3143  *
3144  */
3145 //@@dep Roo.lib.Region
3146
3147
3148 Roo.lib.Point = function(x, y) {
3149     if (x instanceof Array) {
3150         y = x[1];
3151         x = x[0];
3152     }
3153     this.x = this.right = this.left = this[0] = x;
3154     this.y = this.top = this.bottom = this[1] = y;
3155 };
3156
3157 Roo.lib.Point.prototype = new Roo.lib.Region();
3158 /*
3159  * Portions of this file are based on pieces of Yahoo User Interface Library
3160  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3161  * YUI licensed under the BSD License:
3162  * http://developer.yahoo.net/yui/license.txt
3163  * <script type="text/javascript">
3164  *
3165  */
3166  
3167 (function() {   
3168
3169     Roo.lib.Anim = {
3170         scroll : function(el, args, duration, easing, cb, scope) {
3171             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3172         },
3173
3174         motion : function(el, args, duration, easing, cb, scope) {
3175             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3176         },
3177
3178         color : function(el, args, duration, easing, cb, scope) {
3179             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3180         },
3181
3182         run : function(el, args, duration, easing, cb, scope, type) {
3183             type = type || Roo.lib.AnimBase;
3184             if (typeof easing == "string") {
3185                 easing = Roo.lib.Easing[easing];
3186             }
3187             var anim = new type(el, args, duration, easing);
3188             anim.animateX(function() {
3189                 Roo.callback(cb, scope);
3190             });
3191             return anim;
3192         }
3193     };
3194 })();/*
3195  * Portions of this file are based on pieces of Yahoo User Interface Library
3196  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3197  * YUI licensed under the BSD License:
3198  * http://developer.yahoo.net/yui/license.txt
3199  * <script type="text/javascript">
3200  *
3201  */
3202
3203 (function() {    
3204     var libFlyweight;
3205     
3206     function fly(el) {
3207         if (!libFlyweight) {
3208             libFlyweight = new Roo.Element.Flyweight();
3209         }
3210         libFlyweight.dom = el;
3211         return libFlyweight;
3212     }
3213
3214     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3215     
3216    
3217     
3218     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3219         if (el) {
3220             this.init(el, attributes, duration, method);
3221         }
3222     };
3223
3224     Roo.lib.AnimBase.fly = fly;
3225     
3226     
3227     
3228     Roo.lib.AnimBase.prototype = {
3229
3230         toString: function() {
3231             var el = this.getEl();
3232             var id = el.id || el.tagName;
3233             return ("Anim " + id);
3234         },
3235
3236         patterns: {
3237             noNegatives:        /width|height|opacity|padding/i,
3238             offsetAttribute:  /^((width|height)|(top|left))$/,
3239             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3240             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3241         },
3242
3243
3244         doMethod: function(attr, start, end) {
3245             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3246         },
3247
3248
3249         setAttribute: function(attr, val, unit) {
3250             if (this.patterns.noNegatives.test(attr)) {
3251                 val = (val > 0) ? val : 0;
3252             }
3253
3254             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3255         },
3256
3257
3258         getAttribute: function(attr) {
3259             var el = this.getEl();
3260             var val = fly(el).getStyle(attr);
3261
3262             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3263                 return parseFloat(val);
3264             }
3265
3266             var a = this.patterns.offsetAttribute.exec(attr) || [];
3267             var pos = !!( a[3] );
3268             var box = !!( a[2] );
3269
3270
3271             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3272                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3273             } else {
3274                 val = 0;
3275             }
3276
3277             return val;
3278         },
3279
3280
3281         getDefaultUnit: function(attr) {
3282             if (this.patterns.defaultUnit.test(attr)) {
3283                 return 'px';
3284             }
3285
3286             return '';
3287         },
3288
3289         animateX : function(callback, scope) {
3290             var f = function() {
3291                 this.onComplete.removeListener(f);
3292                 if (typeof callback == "function") {
3293                     callback.call(scope || this, this);
3294                 }
3295             };
3296             this.onComplete.addListener(f, this);
3297             this.animate();
3298         },
3299
3300
3301         setRuntimeAttribute: function(attr) {
3302             var start;
3303             var end;
3304             var attributes = this.attributes;
3305
3306             this.runtimeAttributes[attr] = {};
3307
3308             var isset = function(prop) {
3309                 return (typeof prop !== 'undefined');
3310             };
3311
3312             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3313                 return false;
3314             }
3315
3316             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3317
3318
3319             if (isset(attributes[attr]['to'])) {
3320                 end = attributes[attr]['to'];
3321             } else if (isset(attributes[attr]['by'])) {
3322                 if (start.constructor == Array) {
3323                     end = [];
3324                     for (var i = 0, len = start.length; i < len; ++i) {
3325                         end[i] = start[i] + attributes[attr]['by'][i];
3326                     }
3327                 } else {
3328                     end = start + attributes[attr]['by'];
3329                 }
3330             }
3331
3332             this.runtimeAttributes[attr].start = start;
3333             this.runtimeAttributes[attr].end = end;
3334
3335
3336             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3337         },
3338
3339
3340         init: function(el, attributes, duration, method) {
3341
3342             var isAnimated = false;
3343
3344
3345             var startTime = null;
3346
3347
3348             var actualFrames = 0;
3349
3350
3351             el = Roo.getDom(el);
3352
3353
3354             this.attributes = attributes || {};
3355
3356
3357             this.duration = duration || 1;
3358
3359
3360             this.method = method || Roo.lib.Easing.easeNone;
3361
3362
3363             this.useSeconds = true;
3364
3365
3366             this.currentFrame = 0;
3367
3368
3369             this.totalFrames = Roo.lib.AnimMgr.fps;
3370
3371
3372             this.getEl = function() {
3373                 return el;
3374             };
3375
3376
3377             this.isAnimated = function() {
3378                 return isAnimated;
3379             };
3380
3381
3382             this.getStartTime = function() {
3383                 return startTime;
3384             };
3385
3386             this.runtimeAttributes = {};
3387
3388
3389             this.animate = function() {
3390                 if (this.isAnimated()) {
3391                     return false;
3392                 }
3393
3394                 this.currentFrame = 0;
3395
3396                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3397
3398                 Roo.lib.AnimMgr.registerElement(this);
3399             };
3400
3401
3402             this.stop = function(finish) {
3403                 if (finish) {
3404                     this.currentFrame = this.totalFrames;
3405                     this._onTween.fire();
3406                 }
3407                 Roo.lib.AnimMgr.stop(this);
3408             };
3409
3410             var onStart = function() {
3411                 this.onStart.fire();
3412
3413                 this.runtimeAttributes = {};
3414                 for (var attr in this.attributes) {
3415                     this.setRuntimeAttribute(attr);
3416                 }
3417
3418                 isAnimated = true;
3419                 actualFrames = 0;
3420                 startTime = new Date();
3421             };
3422
3423
3424             var onTween = function() {
3425                 var data = {
3426                     duration: new Date() - this.getStartTime(),
3427                     currentFrame: this.currentFrame
3428                 };
3429
3430                 data.toString = function() {
3431                     return (
3432                             'duration: ' + data.duration +
3433                             ', currentFrame: ' + data.currentFrame
3434                             );
3435                 };
3436
3437                 this.onTween.fire(data);
3438
3439                 var runtimeAttributes = this.runtimeAttributes;
3440
3441                 for (var attr in runtimeAttributes) {
3442                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3443                 }
3444
3445                 actualFrames += 1;
3446             };
3447
3448             var onComplete = function() {
3449                 var actual_duration = (new Date() - startTime) / 1000 ;
3450
3451                 var data = {
3452                     duration: actual_duration,
3453                     frames: actualFrames,
3454                     fps: actualFrames / actual_duration
3455                 };
3456
3457                 data.toString = function() {
3458                     return (
3459                             'duration: ' + data.duration +
3460                             ', frames: ' + data.frames +
3461                             ', fps: ' + data.fps
3462                             );
3463                 };
3464
3465                 isAnimated = false;
3466                 actualFrames = 0;
3467                 this.onComplete.fire(data);
3468             };
3469
3470
3471             this._onStart = new Roo.util.Event(this);
3472             this.onStart = new Roo.util.Event(this);
3473             this.onTween = new Roo.util.Event(this);
3474             this._onTween = new Roo.util.Event(this);
3475             this.onComplete = new Roo.util.Event(this);
3476             this._onComplete = new Roo.util.Event(this);
3477             this._onStart.addListener(onStart);
3478             this._onTween.addListener(onTween);
3479             this._onComplete.addListener(onComplete);
3480         }
3481     };
3482 })();
3483 /*
3484  * Portions of this file are based on pieces of Yahoo User Interface Library
3485  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3486  * YUI licensed under the BSD License:
3487  * http://developer.yahoo.net/yui/license.txt
3488  * <script type="text/javascript">
3489  *
3490  */
3491
3492 Roo.lib.AnimMgr = new function() {
3493
3494     var thread = null;
3495
3496
3497     var queue = [];
3498
3499
3500     var tweenCount = 0;
3501
3502
3503     this.fps = 1000;
3504
3505
3506     this.delay = 1;
3507
3508
3509     this.registerElement = function(tween) {
3510         queue[queue.length] = tween;
3511         tweenCount += 1;
3512         tween._onStart.fire();
3513         this.start();
3514     };
3515
3516
3517     this.unRegister = function(tween, index) {
3518         tween._onComplete.fire();
3519         index = index || getIndex(tween);
3520         if (index != -1) {
3521             queue.splice(index, 1);
3522         }
3523
3524         tweenCount -= 1;
3525         if (tweenCount <= 0) {
3526             this.stop();
3527         }
3528     };
3529
3530
3531     this.start = function() {
3532         if (thread === null) {
3533             thread = setInterval(this.run, this.delay);
3534         }
3535     };
3536
3537
3538     this.stop = function(tween) {
3539         if (!tween) {
3540             clearInterval(thread);
3541
3542             for (var i = 0, len = queue.length; i < len; ++i) {
3543                 if (queue[0].isAnimated()) {
3544                     this.unRegister(queue[0], 0);
3545                 }
3546             }
3547
3548             queue = [];
3549             thread = null;
3550             tweenCount = 0;
3551         }
3552         else {
3553             this.unRegister(tween);
3554         }
3555     };
3556
3557
3558     this.run = function() {
3559         for (var i = 0, len = queue.length; i < len; ++i) {
3560             var tween = queue[i];
3561             if (!tween || !tween.isAnimated()) {
3562                 continue;
3563             }
3564
3565             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3566             {
3567                 tween.currentFrame += 1;
3568
3569                 if (tween.useSeconds) {
3570                     correctFrame(tween);
3571                 }
3572                 tween._onTween.fire();
3573             }
3574             else {
3575                 Roo.lib.AnimMgr.stop(tween, i);
3576             }
3577         }
3578     };
3579
3580     var getIndex = function(anim) {
3581         for (var i = 0, len = queue.length; i < len; ++i) {
3582             if (queue[i] == anim) {
3583                 return i;
3584             }
3585         }
3586         return -1;
3587     };
3588
3589
3590     var correctFrame = function(tween) {
3591         var frames = tween.totalFrames;
3592         var frame = tween.currentFrame;
3593         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3594         var elapsed = (new Date() - tween.getStartTime());
3595         var tweak = 0;
3596
3597         if (elapsed < tween.duration * 1000) {
3598             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3599         } else {
3600             tweak = frames - (frame + 1);
3601         }
3602         if (tweak > 0 && isFinite(tweak)) {
3603             if (tween.currentFrame + tweak >= frames) {
3604                 tweak = frames - (frame + 1);
3605             }
3606
3607             tween.currentFrame += tweak;
3608         }
3609     };
3610 };
3611
3612     /*
3613  * Portions of this file are based on pieces of Yahoo User Interface Library
3614  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3615  * YUI licensed under the BSD License:
3616  * http://developer.yahoo.net/yui/license.txt
3617  * <script type="text/javascript">
3618  *
3619  */
3620 Roo.lib.Bezier = new function() {
3621
3622         this.getPosition = function(points, t) {
3623             var n = points.length;
3624             var tmp = [];
3625
3626             for (var i = 0; i < n; ++i) {
3627                 tmp[i] = [points[i][0], points[i][1]];
3628             }
3629
3630             for (var j = 1; j < n; ++j) {
3631                 for (i = 0; i < n - j; ++i) {
3632                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3633                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3634                 }
3635             }
3636
3637             return [ tmp[0][0], tmp[0][1] ];
3638
3639         };
3640     };/*
3641  * Portions of this file are based on pieces of Yahoo User Interface Library
3642  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3643  * YUI licensed under the BSD License:
3644  * http://developer.yahoo.net/yui/license.txt
3645  * <script type="text/javascript">
3646  *
3647  */
3648 (function() {
3649
3650     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3651         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3652     };
3653
3654     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3655
3656     var fly = Roo.lib.AnimBase.fly;
3657     var Y = Roo.lib;
3658     var superclass = Y.ColorAnim.superclass;
3659     var proto = Y.ColorAnim.prototype;
3660
3661     proto.toString = function() {
3662         var el = this.getEl();
3663         var id = el.id || el.tagName;
3664         return ("ColorAnim " + id);
3665     };
3666
3667     proto.patterns.color = /color$/i;
3668     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3669     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3670     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3671     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3672
3673
3674     proto.parseColor = function(s) {
3675         if (s.length == 3) {
3676             return s;
3677         }
3678
3679         var c = this.patterns.hex.exec(s);
3680         if (c && c.length == 4) {
3681             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3682         }
3683
3684         c = this.patterns.rgb.exec(s);
3685         if (c && c.length == 4) {
3686             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3687         }
3688
3689         c = this.patterns.hex3.exec(s);
3690         if (c && c.length == 4) {
3691             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3692         }
3693
3694         return null;
3695     };
3696     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3697     proto.getAttribute = function(attr) {
3698         var el = this.getEl();
3699         if (this.patterns.color.test(attr)) {
3700             var val = fly(el).getStyle(attr);
3701
3702             if (this.patterns.transparent.test(val)) {
3703                 var parent = el.parentNode;
3704                 val = fly(parent).getStyle(attr);
3705
3706                 while (parent && this.patterns.transparent.test(val)) {
3707                     parent = parent.parentNode;
3708                     val = fly(parent).getStyle(attr);
3709                     if (parent.tagName.toUpperCase() == 'HTML') {
3710                         val = '#fff';
3711                     }
3712                 }
3713             }
3714         } else {
3715             val = superclass.getAttribute.call(this, attr);
3716         }
3717
3718         return val;
3719     };
3720     proto.getAttribute = function(attr) {
3721         var el = this.getEl();
3722         if (this.patterns.color.test(attr)) {
3723             var val = fly(el).getStyle(attr);
3724
3725             if (this.patterns.transparent.test(val)) {
3726                 var parent = el.parentNode;
3727                 val = fly(parent).getStyle(attr);
3728
3729                 while (parent && this.patterns.transparent.test(val)) {
3730                     parent = parent.parentNode;
3731                     val = fly(parent).getStyle(attr);
3732                     if (parent.tagName.toUpperCase() == 'HTML') {
3733                         val = '#fff';
3734                     }
3735                 }
3736             }
3737         } else {
3738             val = superclass.getAttribute.call(this, attr);
3739         }
3740
3741         return val;
3742     };
3743
3744     proto.doMethod = function(attr, start, end) {
3745         var val;
3746
3747         if (this.patterns.color.test(attr)) {
3748             val = [];
3749             for (var i = 0, len = start.length; i < len; ++i) {
3750                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3751             }
3752
3753             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3754         }
3755         else {
3756             val = superclass.doMethod.call(this, attr, start, end);
3757         }
3758
3759         return val;
3760     };
3761
3762     proto.setRuntimeAttribute = function(attr) {
3763         superclass.setRuntimeAttribute.call(this, attr);
3764
3765         if (this.patterns.color.test(attr)) {
3766             var attributes = this.attributes;
3767             var start = this.parseColor(this.runtimeAttributes[attr].start);
3768             var end = this.parseColor(this.runtimeAttributes[attr].end);
3769
3770             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3771                 end = this.parseColor(attributes[attr].by);
3772
3773                 for (var i = 0, len = start.length; i < len; ++i) {
3774                     end[i] = start[i] + end[i];
3775                 }
3776             }
3777
3778             this.runtimeAttributes[attr].start = start;
3779             this.runtimeAttributes[attr].end = end;
3780         }
3781     };
3782 })();
3783
3784 /*
3785  * Portions of this file are based on pieces of Yahoo User Interface Library
3786  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3787  * YUI licensed under the BSD License:
3788  * http://developer.yahoo.net/yui/license.txt
3789  * <script type="text/javascript">
3790  *
3791  */
3792 Roo.lib.Easing = {
3793
3794
3795     easeNone: function (t, b, c, d) {
3796         return c * t / d + b;
3797     },
3798
3799
3800     easeIn: function (t, b, c, d) {
3801         return c * (t /= d) * t + b;
3802     },
3803
3804
3805     easeOut: function (t, b, c, d) {
3806         return -c * (t /= d) * (t - 2) + b;
3807     },
3808
3809
3810     easeBoth: function (t, b, c, d) {
3811         if ((t /= d / 2) < 1) {
3812             return c / 2 * t * t + b;
3813         }
3814
3815         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3816     },
3817
3818
3819     easeInStrong: function (t, b, c, d) {
3820         return c * (t /= d) * t * t * t + b;
3821     },
3822
3823
3824     easeOutStrong: function (t, b, c, d) {
3825         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3826     },
3827
3828
3829     easeBothStrong: function (t, b, c, d) {
3830         if ((t /= d / 2) < 1) {
3831             return c / 2 * t * t * t * t + b;
3832         }
3833
3834         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3835     },
3836
3837
3838
3839     elasticIn: function (t, b, c, d, a, p) {
3840         if (t == 0) {
3841             return b;
3842         }
3843         if ((t /= d) == 1) {
3844             return b + c;
3845         }
3846         if (!p) {
3847             p = d * .3;
3848         }
3849
3850         if (!a || a < Math.abs(c)) {
3851             a = c;
3852             var s = p / 4;
3853         }
3854         else {
3855             var s = p / (2 * Math.PI) * Math.asin(c / a);
3856         }
3857
3858         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3859     },
3860
3861
3862     elasticOut: function (t, b, c, d, a, p) {
3863         if (t == 0) {
3864             return b;
3865         }
3866         if ((t /= d) == 1) {
3867             return b + c;
3868         }
3869         if (!p) {
3870             p = d * .3;
3871         }
3872
3873         if (!a || a < Math.abs(c)) {
3874             a = c;
3875             var s = p / 4;
3876         }
3877         else {
3878             var s = p / (2 * Math.PI) * Math.asin(c / a);
3879         }
3880
3881         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3882     },
3883
3884
3885     elasticBoth: function (t, b, c, d, a, p) {
3886         if (t == 0) {
3887             return b;
3888         }
3889
3890         if ((t /= d / 2) == 2) {
3891             return b + c;
3892         }
3893
3894         if (!p) {
3895             p = d * (.3 * 1.5);
3896         }
3897
3898         if (!a || a < Math.abs(c)) {
3899             a = c;
3900             var s = p / 4;
3901         }
3902         else {
3903             var s = p / (2 * Math.PI) * Math.asin(c / a);
3904         }
3905
3906         if (t < 1) {
3907             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3908                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3909         }
3910         return a * Math.pow(2, -10 * (t -= 1)) *
3911                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3912     },
3913
3914
3915
3916     backIn: function (t, b, c, d, s) {
3917         if (typeof s == 'undefined') {
3918             s = 1.70158;
3919         }
3920         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3921     },
3922
3923
3924     backOut: function (t, b, c, d, s) {
3925         if (typeof s == 'undefined') {
3926             s = 1.70158;
3927         }
3928         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3929     },
3930
3931
3932     backBoth: function (t, b, c, d, s) {
3933         if (typeof s == 'undefined') {
3934             s = 1.70158;
3935         }
3936
3937         if ((t /= d / 2 ) < 1) {
3938             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3939         }
3940         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3941     },
3942
3943
3944     bounceIn: function (t, b, c, d) {
3945         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3946     },
3947
3948
3949     bounceOut: function (t, b, c, d) {
3950         if ((t /= d) < (1 / 2.75)) {
3951             return c * (7.5625 * t * t) + b;
3952         } else if (t < (2 / 2.75)) {
3953             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3954         } else if (t < (2.5 / 2.75)) {
3955             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3956         }
3957         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3958     },
3959
3960
3961     bounceBoth: function (t, b, c, d) {
3962         if (t < d / 2) {
3963             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3964         }
3965         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3966     }
3967 };/*
3968  * Portions of this file are based on pieces of Yahoo User Interface Library
3969  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3970  * YUI licensed under the BSD License:
3971  * http://developer.yahoo.net/yui/license.txt
3972  * <script type="text/javascript">
3973  *
3974  */
3975     (function() {
3976         Roo.lib.Motion = function(el, attributes, duration, method) {
3977             if (el) {
3978                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3979             }
3980         };
3981
3982         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3983
3984
3985         var Y = Roo.lib;
3986         var superclass = Y.Motion.superclass;
3987         var proto = Y.Motion.prototype;
3988
3989         proto.toString = function() {
3990             var el = this.getEl();
3991             var id = el.id || el.tagName;
3992             return ("Motion " + id);
3993         };
3994
3995         proto.patterns.points = /^points$/i;
3996
3997         proto.setAttribute = function(attr, val, unit) {
3998             if (this.patterns.points.test(attr)) {
3999                 unit = unit || 'px';
4000                 superclass.setAttribute.call(this, 'left', val[0], unit);
4001                 superclass.setAttribute.call(this, 'top', val[1], unit);
4002             } else {
4003                 superclass.setAttribute.call(this, attr, val, unit);
4004             }
4005         };
4006
4007         proto.getAttribute = function(attr) {
4008             if (this.patterns.points.test(attr)) {
4009                 var val = [
4010                         superclass.getAttribute.call(this, 'left'),
4011                         superclass.getAttribute.call(this, 'top')
4012                         ];
4013             } else {
4014                 val = superclass.getAttribute.call(this, attr);
4015             }
4016
4017             return val;
4018         };
4019
4020         proto.doMethod = function(attr, start, end) {
4021             var val = null;
4022
4023             if (this.patterns.points.test(attr)) {
4024                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4025                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4026             } else {
4027                 val = superclass.doMethod.call(this, attr, start, end);
4028             }
4029             return val;
4030         };
4031
4032         proto.setRuntimeAttribute = function(attr) {
4033             if (this.patterns.points.test(attr)) {
4034                 var el = this.getEl();
4035                 var attributes = this.attributes;
4036                 var start;
4037                 var control = attributes['points']['control'] || [];
4038                 var end;
4039                 var i, len;
4040
4041                 if (control.length > 0 && !(control[0] instanceof Array)) {
4042                     control = [control];
4043                 } else {
4044                     var tmp = [];
4045                     for (i = 0,len = control.length; i < len; ++i) {
4046                         tmp[i] = control[i];
4047                     }
4048                     control = tmp;
4049                 }
4050
4051                 Roo.fly(el).position();
4052
4053                 if (isset(attributes['points']['from'])) {
4054                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4055                 }
4056                 else {
4057                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4058                 }
4059
4060                 start = this.getAttribute('points');
4061
4062
4063                 if (isset(attributes['points']['to'])) {
4064                     end = translateValues.call(this, attributes['points']['to'], start);
4065
4066                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4067                     for (i = 0,len = control.length; i < len; ++i) {
4068                         control[i] = translateValues.call(this, control[i], start);
4069                     }
4070
4071
4072                 } else if (isset(attributes['points']['by'])) {
4073                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4074
4075                     for (i = 0,len = control.length; i < len; ++i) {
4076                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4077                     }
4078                 }
4079
4080                 this.runtimeAttributes[attr] = [start];
4081
4082                 if (control.length > 0) {
4083                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4084                 }
4085
4086                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4087             }
4088             else {
4089                 superclass.setRuntimeAttribute.call(this, attr);
4090             }
4091         };
4092
4093         var translateValues = function(val, start) {
4094             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4095             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4096
4097             return val;
4098         };
4099
4100         var isset = function(prop) {
4101             return (typeof prop !== 'undefined');
4102         };
4103     })();
4104 /*
4105  * Portions of this file are based on pieces of Yahoo User Interface Library
4106  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4107  * YUI licensed under the BSD License:
4108  * http://developer.yahoo.net/yui/license.txt
4109  * <script type="text/javascript">
4110  *
4111  */
4112     (function() {
4113         Roo.lib.Scroll = function(el, attributes, duration, method) {
4114             if (el) {
4115                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4116             }
4117         };
4118
4119         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4120
4121
4122         var Y = Roo.lib;
4123         var superclass = Y.Scroll.superclass;
4124         var proto = Y.Scroll.prototype;
4125
4126         proto.toString = function() {
4127             var el = this.getEl();
4128             var id = el.id || el.tagName;
4129             return ("Scroll " + id);
4130         };
4131
4132         proto.doMethod = function(attr, start, end) {
4133             var val = null;
4134
4135             if (attr == 'scroll') {
4136                 val = [
4137                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4138                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4139                         ];
4140
4141             } else {
4142                 val = superclass.doMethod.call(this, attr, start, end);
4143             }
4144             return val;
4145         };
4146
4147         proto.getAttribute = function(attr) {
4148             var val = null;
4149             var el = this.getEl();
4150
4151             if (attr == 'scroll') {
4152                 val = [ el.scrollLeft, el.scrollTop ];
4153             } else {
4154                 val = superclass.getAttribute.call(this, attr);
4155             }
4156
4157             return val;
4158         };
4159
4160         proto.setAttribute = function(attr, val, unit) {
4161             var el = this.getEl();
4162
4163             if (attr == 'scroll') {
4164                 el.scrollLeft = val[0];
4165                 el.scrollTop = val[1];
4166             } else {
4167                 superclass.setAttribute.call(this, attr, val, unit);
4168             }
4169         };
4170     })();
4171 /*
4172  * Based on:
4173  * Ext JS Library 1.1.1
4174  * Copyright(c) 2006-2007, Ext JS, LLC.
4175  *
4176  * Originally Released Under LGPL - original licence link has changed is not relivant.
4177  *
4178  * Fork - LGPL
4179  * <script type="text/javascript">
4180  */
4181
4182
4183 // nasty IE9 hack - what a pile of crap that is..
4184
4185  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4186     Range.prototype.createContextualFragment = function (html) {
4187         var doc = window.document;
4188         var container = doc.createElement("div");
4189         container.innerHTML = html;
4190         var frag = doc.createDocumentFragment(), n;
4191         while ((n = container.firstChild)) {
4192             frag.appendChild(n);
4193         }
4194         return frag;
4195     };
4196 }
4197
4198 /**
4199  * @class Roo.DomHelper
4200  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4201  * 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>.
4202  * @singleton
4203  */
4204 Roo.DomHelper = function(){
4205     var tempTableEl = null;
4206     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4207     var tableRe = /^table|tbody|tr|td$/i;
4208     var xmlns = {};
4209     // build as innerHTML where available
4210     /** @ignore */
4211     var createHtml = function(o){
4212         if(typeof o == 'string'){
4213             return o;
4214         }
4215         var b = "";
4216         if(!o.tag){
4217             o.tag = "div";
4218         }
4219         b += "<" + o.tag;
4220         for(var attr in o){
4221             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4222             if(attr == "style"){
4223                 var s = o["style"];
4224                 if(typeof s == "function"){
4225                     s = s.call();
4226                 }
4227                 if(typeof s == "string"){
4228                     b += ' style="' + s + '"';
4229                 }else if(typeof s == "object"){
4230                     b += ' style="';
4231                     for(var key in s){
4232                         if(typeof s[key] != "function"){
4233                             b += key + ":" + s[key] + ";";
4234                         }
4235                     }
4236                     b += '"';
4237                 }
4238             }else{
4239                 if(attr == "cls"){
4240                     b += ' class="' + o["cls"] + '"';
4241                 }else if(attr == "htmlFor"){
4242                     b += ' for="' + o["htmlFor"] + '"';
4243                 }else{
4244                     b += " " + attr + '="' + o[attr] + '"';
4245                 }
4246             }
4247         }
4248         if(emptyTags.test(o.tag)){
4249             b += "/>";
4250         }else{
4251             b += ">";
4252             var cn = o.children || o.cn;
4253             if(cn){
4254                 //http://bugs.kde.org/show_bug.cgi?id=71506
4255                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4256                     for(var i = 0, len = cn.length; i < len; i++) {
4257                         b += createHtml(cn[i], b);
4258                     }
4259                 }else{
4260                     b += createHtml(cn, b);
4261                 }
4262             }
4263             if(o.html){
4264                 b += o.html;
4265             }
4266             b += "</" + o.tag + ">";
4267         }
4268         return b;
4269     };
4270
4271     // build as dom
4272     /** @ignore */
4273     var createDom = function(o, parentNode){
4274          
4275         // defininition craeted..
4276         var ns = false;
4277         if (o.ns && o.ns != 'html') {
4278                
4279             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4280                 xmlns[o.ns] = o.xmlns;
4281                 ns = o.xmlns;
4282             }
4283             if (typeof(xmlns[o.ns]) == 'undefined') {
4284                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4285             }
4286             ns = xmlns[o.ns];
4287         }
4288         
4289         
4290         if (typeof(o) == 'string') {
4291             return parentNode.appendChild(document.createTextNode(o));
4292         }
4293         o.tag = o.tag || div;
4294         if (o.ns && Roo.isIE) {
4295             ns = false;
4296             o.tag = o.ns + ':' + o.tag;
4297             
4298         }
4299         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4300         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4301         for(var attr in o){
4302             
4303             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4304                     attr == "style" || typeof o[attr] == "function") { continue; }
4305                     
4306             if(attr=="cls" && Roo.isIE){
4307                 el.className = o["cls"];
4308             }else{
4309                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4310                 else { 
4311                     el[attr] = o[attr];
4312                 }
4313             }
4314         }
4315         Roo.DomHelper.applyStyles(el, o.style);
4316         var cn = o.children || o.cn;
4317         if(cn){
4318             //http://bugs.kde.org/show_bug.cgi?id=71506
4319              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4320                 for(var i = 0, len = cn.length; i < len; i++) {
4321                     createDom(cn[i], el);
4322                 }
4323             }else{
4324                 createDom(cn, el);
4325             }
4326         }
4327         if(o.html){
4328             el.innerHTML = o.html;
4329         }
4330         if(parentNode){
4331            parentNode.appendChild(el);
4332         }
4333         return el;
4334     };
4335
4336     var ieTable = function(depth, s, h, e){
4337         tempTableEl.innerHTML = [s, h, e].join('');
4338         var i = -1, el = tempTableEl;
4339         while(++i < depth){
4340             el = el.firstChild;
4341         }
4342         return el;
4343     };
4344
4345     // kill repeat to save bytes
4346     var ts = '<table>',
4347         te = '</table>',
4348         tbs = ts+'<tbody>',
4349         tbe = '</tbody>'+te,
4350         trs = tbs + '<tr>',
4351         tre = '</tr>'+tbe;
4352
4353     /**
4354      * @ignore
4355      * Nasty code for IE's broken table implementation
4356      */
4357     var insertIntoTable = function(tag, where, el, html){
4358         if(!tempTableEl){
4359             tempTableEl = document.createElement('div');
4360         }
4361         var node;
4362         var before = null;
4363         if(tag == 'td'){
4364             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4365                 return;
4366             }
4367             if(where == 'beforebegin'){
4368                 before = el;
4369                 el = el.parentNode;
4370             } else{
4371                 before = el.nextSibling;
4372                 el = el.parentNode;
4373             }
4374             node = ieTable(4, trs, html, tre);
4375         }
4376         else if(tag == 'tr'){
4377             if(where == 'beforebegin'){
4378                 before = el;
4379                 el = el.parentNode;
4380                 node = ieTable(3, tbs, html, tbe);
4381             } else if(where == 'afterend'){
4382                 before = el.nextSibling;
4383                 el = el.parentNode;
4384                 node = ieTable(3, tbs, html, tbe);
4385             } else{ // INTO a TR
4386                 if(where == 'afterbegin'){
4387                     before = el.firstChild;
4388                 }
4389                 node = ieTable(4, trs, html, tre);
4390             }
4391         } else if(tag == 'tbody'){
4392             if(where == 'beforebegin'){
4393                 before = el;
4394                 el = el.parentNode;
4395                 node = ieTable(2, ts, html, te);
4396             } else if(where == 'afterend'){
4397                 before = el.nextSibling;
4398                 el = el.parentNode;
4399                 node = ieTable(2, ts, html, te);
4400             } else{
4401                 if(where == 'afterbegin'){
4402                     before = el.firstChild;
4403                 }
4404                 node = ieTable(3, tbs, html, tbe);
4405             }
4406         } else{ // TABLE
4407             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4408                 return;
4409             }
4410             if(where == 'afterbegin'){
4411                 before = el.firstChild;
4412             }
4413             node = ieTable(2, ts, html, te);
4414         }
4415         el.insertBefore(node, before);
4416         return node;
4417     };
4418
4419     return {
4420     /** True to force the use of DOM instead of html fragments @type Boolean */
4421     useDom : false,
4422
4423     /**
4424      * Returns the markup for the passed Element(s) config
4425      * @param {Object} o The Dom object spec (and children)
4426      * @return {String}
4427      */
4428     markup : function(o){
4429         return createHtml(o);
4430     },
4431
4432     /**
4433      * Applies a style specification to an element
4434      * @param {String/HTMLElement} el The element to apply styles to
4435      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4436      * a function which returns such a specification.
4437      */
4438     applyStyles : function(el, styles){
4439         if(styles){
4440            el = Roo.fly(el);
4441            if(typeof styles == "string"){
4442                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4443                var matches;
4444                while ((matches = re.exec(styles)) != null){
4445                    el.setStyle(matches[1], matches[2]);
4446                }
4447            }else if (typeof styles == "object"){
4448                for (var style in styles){
4449                   el.setStyle(style, styles[style]);
4450                }
4451            }else if (typeof styles == "function"){
4452                 Roo.DomHelper.applyStyles(el, styles.call());
4453            }
4454         }
4455     },
4456
4457     /**
4458      * Inserts an HTML fragment into the Dom
4459      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4460      * @param {HTMLElement} el The context element
4461      * @param {String} html The HTML fragmenet
4462      * @return {HTMLElement} The new node
4463      */
4464     insertHtml : function(where, el, html){
4465         where = where.toLowerCase();
4466         if(el.insertAdjacentHTML){
4467             if(tableRe.test(el.tagName)){
4468                 var rs;
4469                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4470                     return rs;
4471                 }
4472             }
4473             switch(where){
4474                 case "beforebegin":
4475                     el.insertAdjacentHTML('BeforeBegin', html);
4476                     return el.previousSibling;
4477                 case "afterbegin":
4478                     el.insertAdjacentHTML('AfterBegin', html);
4479                     return el.firstChild;
4480                 case "beforeend":
4481                     el.insertAdjacentHTML('BeforeEnd', html);
4482                     return el.lastChild;
4483                 case "afterend":
4484                     el.insertAdjacentHTML('AfterEnd', html);
4485                     return el.nextSibling;
4486             }
4487             throw 'Illegal insertion point -> "' + where + '"';
4488         }
4489         var range = el.ownerDocument.createRange();
4490         var frag;
4491         switch(where){
4492              case "beforebegin":
4493                 range.setStartBefore(el);
4494                 frag = range.createContextualFragment(html);
4495                 el.parentNode.insertBefore(frag, el);
4496                 return el.previousSibling;
4497              case "afterbegin":
4498                 if(el.firstChild){
4499                     range.setStartBefore(el.firstChild);
4500                     frag = range.createContextualFragment(html);
4501                     el.insertBefore(frag, el.firstChild);
4502                     return el.firstChild;
4503                 }else{
4504                     el.innerHTML = html;
4505                     return el.firstChild;
4506                 }
4507             case "beforeend":
4508                 if(el.lastChild){
4509                     range.setStartAfter(el.lastChild);
4510                     frag = range.createContextualFragment(html);
4511                     el.appendChild(frag);
4512                     return el.lastChild;
4513                 }else{
4514                     el.innerHTML = html;
4515                     return el.lastChild;
4516                 }
4517             case "afterend":
4518                 range.setStartAfter(el);
4519                 frag = range.createContextualFragment(html);
4520                 el.parentNode.insertBefore(frag, el.nextSibling);
4521                 return el.nextSibling;
4522             }
4523             throw 'Illegal insertion point -> "' + where + '"';
4524     },
4525
4526     /**
4527      * Creates new Dom element(s) and inserts them before el
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     insertBefore : function(el, o, returnElement){
4534         return this.doInsert(el, o, returnElement, "beforeBegin");
4535     },
4536
4537     /**
4538      * Creates new Dom element(s) and inserts them after el
4539      * @param {String/HTMLElement/Element} el The context element
4540      * @param {Object} o The Dom object spec (and children)
4541      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4542      * @return {HTMLElement/Roo.Element} The new node
4543      */
4544     insertAfter : function(el, o, returnElement){
4545         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4546     },
4547
4548     /**
4549      * Creates new Dom element(s) and inserts them as the first child of el
4550      * @param {String/HTMLElement/Element} el The context element
4551      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4552      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4553      * @return {HTMLElement/Roo.Element} The new node
4554      */
4555     insertFirst : function(el, o, returnElement){
4556         return this.doInsert(el, o, returnElement, "afterBegin");
4557     },
4558
4559     // private
4560     doInsert : function(el, o, returnElement, pos, sibling){
4561         el = Roo.getDom(el);
4562         var newNode;
4563         if(this.useDom || o.ns){
4564             newNode = createDom(o, null);
4565             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4566         }else{
4567             var html = createHtml(o);
4568             newNode = this.insertHtml(pos, el, html);
4569         }
4570         return returnElement ? Roo.get(newNode, true) : newNode;
4571     },
4572
4573     /**
4574      * Creates new Dom element(s) and appends them to el
4575      * @param {String/HTMLElement/Element} el The context element
4576      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4577      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4578      * @return {HTMLElement/Roo.Element} The new node
4579      */
4580     append : function(el, o, returnElement){
4581         el = Roo.getDom(el);
4582         var newNode;
4583         if(this.useDom || o.ns){
4584             newNode = createDom(o, null);
4585             el.appendChild(newNode);
4586         }else{
4587             var html = createHtml(o);
4588             newNode = this.insertHtml("beforeEnd", el, html);
4589         }
4590         return returnElement ? Roo.get(newNode, true) : newNode;
4591     },
4592
4593     /**
4594      * Creates new Dom element(s) and overwrites the contents of el with them
4595      * @param {String/HTMLElement/Element} el The context element
4596      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4597      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4598      * @return {HTMLElement/Roo.Element} The new node
4599      */
4600     overwrite : function(el, o, returnElement){
4601         el = Roo.getDom(el);
4602         if (o.ns) {
4603           
4604             while (el.childNodes.length) {
4605                 el.removeChild(el.firstChild);
4606             }
4607             createDom(o, el);
4608         } else {
4609             el.innerHTML = createHtml(o);   
4610         }
4611         
4612         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4613     },
4614
4615     /**
4616      * Creates a new Roo.DomHelper.Template from the Dom object spec
4617      * @param {Object} o The Dom object spec (and children)
4618      * @return {Roo.DomHelper.Template} The new template
4619      */
4620     createTemplate : function(o){
4621         var html = createHtml(o);
4622         return new Roo.Template(html);
4623     }
4624     };
4625 }();
4626 /*
4627  * Based on:
4628  * Ext JS Library 1.1.1
4629  * Copyright(c) 2006-2007, Ext JS, LLC.
4630  *
4631  * Originally Released Under LGPL - original licence link has changed is not relivant.
4632  *
4633  * Fork - LGPL
4634  * <script type="text/javascript">
4635  */
4636  
4637 /**
4638 * @class Roo.Template
4639 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4640 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4641 * Usage:
4642 <pre><code>
4643 var t = new Roo.Template({
4644     html :  '&lt;div name="{id}"&gt;' + 
4645         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4646         '&lt;/div&gt;',
4647     myformat: function (value, allValues) {
4648         return 'XX' + value;
4649     }
4650 });
4651 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4652 </code></pre>
4653 * For more information see this blog post with examples:
4654 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4655      - Create Elements using DOM, HTML fragments and Templates</a>. 
4656 * @constructor
4657 * @param {Object} cfg - Configuration object.
4658 */
4659 Roo.Template = function(cfg){
4660     // BC!
4661     if(cfg instanceof Array){
4662         cfg = cfg.join("");
4663     }else if(arguments.length > 1){
4664         cfg = Array.prototype.join.call(arguments, "");
4665     }
4666     
4667     
4668     if (typeof(cfg) == 'object') {
4669         Roo.apply(this,cfg)
4670     } else {
4671         // bc
4672         this.html = cfg;
4673     }
4674     if (this.url) {
4675         this.load();
4676     }
4677     
4678 };
4679 Roo.Template.prototype = {
4680     
4681     /**
4682      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
4683      */
4684     onLoad : false,
4685     
4686     
4687     /**
4688      * @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..
4689      *                    it should be fixed so that template is observable...
4690      */
4691     url : false,
4692     /**
4693      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4694      */
4695     html : '',
4696     
4697     
4698     compiled : false,
4699     loaded : false,
4700     /**
4701      * Returns an HTML fragment of this template with the specified values applied.
4702      * @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'})
4703      * @return {String} The HTML fragment
4704      */
4705     
4706    
4707     
4708     applyTemplate : function(values){
4709         //Roo.log(["applyTemplate", values]);
4710         try {
4711            
4712             if(this.compiled){
4713                 return this.compiled(values);
4714             }
4715             var useF = this.disableFormats !== true;
4716             var fm = Roo.util.Format, tpl = this;
4717             var fn = function(m, name, format, args){
4718                 if(format && useF){
4719                     if(format.substr(0, 5) == "this."){
4720                         return tpl.call(format.substr(5), values[name], values);
4721                     }else{
4722                         if(args){
4723                             // quoted values are required for strings in compiled templates, 
4724                             // but for non compiled we need to strip them
4725                             // quoted reversed for jsmin
4726                             var re = /^\s*['"](.*)["']\s*$/;
4727                             args = args.split(',');
4728                             for(var i = 0, len = args.length; i < len; i++){
4729                                 args[i] = args[i].replace(re, "$1");
4730                             }
4731                             args = [values[name]].concat(args);
4732                         }else{
4733                             args = [values[name]];
4734                         }
4735                         return fm[format].apply(fm, args);
4736                     }
4737                 }else{
4738                     return values[name] !== undefined ? values[name] : "";
4739                 }
4740             };
4741             return this.html.replace(this.re, fn);
4742         } catch (e) {
4743             Roo.log(e);
4744             throw e;
4745         }
4746          
4747     },
4748     
4749     loading : false,
4750       
4751     load : function ()
4752     {
4753          
4754         if (this.loading) {
4755             return;
4756         }
4757         var _t = this;
4758         
4759         this.loading = true;
4760         this.compiled = false;
4761         
4762         var cx = new Roo.data.Connection();
4763         cx.request({
4764             url : this.url,
4765             method : 'GET',
4766             success : function (response) {
4767                 _t.loading = false;
4768                 _t.url = false;
4769                 
4770                 _t.set(response.responseText,true);
4771                 _t.loaded = true;
4772                 if (_t.onLoad) {
4773                     _t.onLoad();
4774                 }
4775              },
4776             failure : function(response) {
4777                 Roo.log("Template failed to load from " + _t.url);
4778                 _t.loading = false;
4779             }
4780         });
4781     },
4782
4783     /**
4784      * Sets the HTML used as the template and optionally compiles it.
4785      * @param {String} html
4786      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4787      * @return {Roo.Template} this
4788      */
4789     set : function(html, compile){
4790         this.html = html;
4791         this.compiled = false;
4792         if(compile){
4793             this.compile();
4794         }
4795         return this;
4796     },
4797     
4798     /**
4799      * True to disable format functions (defaults to false)
4800      * @type Boolean
4801      */
4802     disableFormats : false,
4803     
4804     /**
4805     * The regular expression used to match template variables 
4806     * @type RegExp
4807     * @property 
4808     */
4809     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4810     
4811     /**
4812      * Compiles the template into an internal function, eliminating the RegEx overhead.
4813      * @return {Roo.Template} this
4814      */
4815     compile : function(){
4816         var fm = Roo.util.Format;
4817         var useF = this.disableFormats !== true;
4818         var sep = Roo.isGecko ? "+" : ",";
4819         var fn = function(m, name, format, args){
4820             if(format && useF){
4821                 args = args ? ',' + args : "";
4822                 if(format.substr(0, 5) != "this."){
4823                     format = "fm." + format + '(';
4824                 }else{
4825                     format = 'this.call("'+ format.substr(5) + '", ';
4826                     args = ", values";
4827                 }
4828             }else{
4829                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4830             }
4831             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4832         };
4833         var body;
4834         // branched to use + in gecko and [].join() in others
4835         if(Roo.isGecko){
4836             body = "this.compiled = function(values){ return '" +
4837                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4838                     "';};";
4839         }else{
4840             body = ["this.compiled = function(values){ return ['"];
4841             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4842             body.push("'].join('');};");
4843             body = body.join('');
4844         }
4845         /**
4846          * eval:var:values
4847          * eval:var:fm
4848          */
4849         eval(body);
4850         return this;
4851     },
4852     
4853     // private function used to call members
4854     call : function(fnName, value, allValues){
4855         return this[fnName](value, allValues);
4856     },
4857     
4858     /**
4859      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4860      * @param {String/HTMLElement/Roo.Element} el The context element
4861      * @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'})
4862      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4863      * @return {HTMLElement/Roo.Element} The new node or Element
4864      */
4865     insertFirst: function(el, values, returnElement){
4866         return this.doInsert('afterBegin', el, values, returnElement);
4867     },
4868
4869     /**
4870      * Applies the supplied values to the template and inserts the new node(s) before el.
4871      * @param {String/HTMLElement/Roo.Element} el The context element
4872      * @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'})
4873      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4874      * @return {HTMLElement/Roo.Element} The new node or Element
4875      */
4876     insertBefore: function(el, values, returnElement){
4877         return this.doInsert('beforeBegin', el, values, returnElement);
4878     },
4879
4880     /**
4881      * Applies the supplied values to the template and inserts the new node(s) after el.
4882      * @param {String/HTMLElement/Roo.Element} el The context element
4883      * @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'})
4884      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4885      * @return {HTMLElement/Roo.Element} The new node or Element
4886      */
4887     insertAfter : function(el, values, returnElement){
4888         return this.doInsert('afterEnd', el, values, returnElement);
4889     },
4890     
4891     /**
4892      * Applies the supplied values to the template and appends the new node(s) to el.
4893      * @param {String/HTMLElement/Roo.Element} el The context element
4894      * @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'})
4895      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4896      * @return {HTMLElement/Roo.Element} The new node or Element
4897      */
4898     append : function(el, values, returnElement){
4899         return this.doInsert('beforeEnd', el, values, returnElement);
4900     },
4901
4902     doInsert : function(where, el, values, returnEl){
4903         el = Roo.getDom(el);
4904         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4905         return returnEl ? Roo.get(newNode, true) : newNode;
4906     },
4907
4908     /**
4909      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4910      * @param {String/HTMLElement/Roo.Element} el The context element
4911      * @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'})
4912      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4913      * @return {HTMLElement/Roo.Element} The new node or Element
4914      */
4915     overwrite : function(el, values, returnElement){
4916         el = Roo.getDom(el);
4917         el.innerHTML = this.applyTemplate(values);
4918         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4919     }
4920 };
4921 /**
4922  * Alias for {@link #applyTemplate}
4923  * @method
4924  */
4925 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4926
4927 // backwards compat
4928 Roo.DomHelper.Template = Roo.Template;
4929
4930 /**
4931  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4932  * @param {String/HTMLElement} el A DOM element or its id
4933  * @returns {Roo.Template} The created template
4934  * @static
4935  */
4936 Roo.Template.from = function(el){
4937     el = Roo.getDom(el);
4938     return new Roo.Template(el.value || el.innerHTML);
4939 };/*
4940  * Based on:
4941  * Ext JS Library 1.1.1
4942  * Copyright(c) 2006-2007, Ext JS, LLC.
4943  *
4944  * Originally Released Under LGPL - original licence link has changed is not relivant.
4945  *
4946  * Fork - LGPL
4947  * <script type="text/javascript">
4948  */
4949  
4950
4951 /*
4952  * This is code is also distributed under MIT license for use
4953  * with jQuery and prototype JavaScript libraries.
4954  */
4955 /**
4956  * @class Roo.DomQuery
4957 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).
4958 <p>
4959 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>
4960
4961 <p>
4962 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.
4963 </p>
4964 <h4>Element Selectors:</h4>
4965 <ul class="list">
4966     <li> <b>*</b> any element</li>
4967     <li> <b>E</b> an element with the tag E</li>
4968     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4969     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4970     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4971     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4972 </ul>
4973 <h4>Attribute Selectors:</h4>
4974 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4975 <ul class="list">
4976     <li> <b>E[foo]</b> has an attribute "foo"</li>
4977     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4978     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4979     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4980     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4981     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4982     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4983 </ul>
4984 <h4>Pseudo Classes:</h4>
4985 <ul class="list">
4986     <li> <b>E:first-child</b> E is the first child of its parent</li>
4987     <li> <b>E:last-child</b> E is the last child of its parent</li>
4988     <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>
4989     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4990     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4991     <li> <b>E:only-child</b> E is the only child of its parent</li>
4992     <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>
4993     <li> <b>E:first</b> the first E in the resultset</li>
4994     <li> <b>E:last</b> the last E in the resultset</li>
4995     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4996     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4997     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4998     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4999     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
5000     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
5001     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
5002     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
5003     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
5004 </ul>
5005 <h4>CSS Value Selectors:</h4>
5006 <ul class="list">
5007     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
5008     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
5009     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
5010     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
5011     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
5012     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
5013 </ul>
5014  * @singleton
5015  */
5016 Roo.DomQuery = function(){
5017     var cache = {}, simpleCache = {}, valueCache = {};
5018     var nonSpace = /\S/;
5019     var trimRe = /^\s+|\s+$/g;
5020     var tplRe = /\{(\d+)\}/g;
5021     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
5022     var tagTokenRe = /^(#)?([\w-\*]+)/;
5023     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
5024
5025     function child(p, index){
5026         var i = 0;
5027         var n = p.firstChild;
5028         while(n){
5029             if(n.nodeType == 1){
5030                if(++i == index){
5031                    return n;
5032                }
5033             }
5034             n = n.nextSibling;
5035         }
5036         return null;
5037     };
5038
5039     function next(n){
5040         while((n = n.nextSibling) && n.nodeType != 1);
5041         return n;
5042     };
5043
5044     function prev(n){
5045         while((n = n.previousSibling) && n.nodeType != 1);
5046         return n;
5047     };
5048
5049     function children(d){
5050         var n = d.firstChild, ni = -1;
5051             while(n){
5052                 var nx = n.nextSibling;
5053                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5054                     d.removeChild(n);
5055                 }else{
5056                     n.nodeIndex = ++ni;
5057                 }
5058                 n = nx;
5059             }
5060             return this;
5061         };
5062
5063     function byClassName(c, a, v){
5064         if(!v){
5065             return c;
5066         }
5067         var r = [], ri = -1, cn;
5068         for(var i = 0, ci; ci = c[i]; i++){
5069             
5070             
5071             if((' '+
5072                 ( (ci instanceof SVGElement) ? ci.className.baseVal : ci.className)
5073                  +' ').indexOf(v) != -1){
5074                 r[++ri] = ci;
5075             }
5076         }
5077         return r;
5078     };
5079
5080     function attrValue(n, attr){
5081         if(!n.tagName && typeof n.length != "undefined"){
5082             n = n[0];
5083         }
5084         if(!n){
5085             return null;
5086         }
5087         if(attr == "for"){
5088             return n.htmlFor;
5089         }
5090         if(attr == "class" || attr == "className"){
5091             return (n instanceof SVGElement) ? n.className.baseVal : n.className;
5092         }
5093         return n.getAttribute(attr) || n[attr];
5094
5095     };
5096
5097     function getNodes(ns, mode, tagName){
5098         var result = [], ri = -1, cs;
5099         if(!ns){
5100             return result;
5101         }
5102         tagName = tagName || "*";
5103         if(typeof ns.getElementsByTagName != "undefined"){
5104             ns = [ns];
5105         }
5106         if(!mode){
5107             for(var i = 0, ni; ni = ns[i]; i++){
5108                 cs = ni.getElementsByTagName(tagName);
5109                 for(var j = 0, ci; ci = cs[j]; j++){
5110                     result[++ri] = ci;
5111                 }
5112             }
5113         }else if(mode == "/" || mode == ">"){
5114             var utag = tagName.toUpperCase();
5115             for(var i = 0, ni, cn; ni = ns[i]; i++){
5116                 cn = ni.children || ni.childNodes;
5117                 for(var j = 0, cj; cj = cn[j]; j++){
5118                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5119                         result[++ri] = cj;
5120                     }
5121                 }
5122             }
5123         }else if(mode == "+"){
5124             var utag = tagName.toUpperCase();
5125             for(var i = 0, n; n = ns[i]; i++){
5126                 while((n = n.nextSibling) && n.nodeType != 1);
5127                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5128                     result[++ri] = n;
5129                 }
5130             }
5131         }else if(mode == "~"){
5132             for(var i = 0, n; n = ns[i]; i++){
5133                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5134                 if(n){
5135                     result[++ri] = n;
5136                 }
5137             }
5138         }
5139         return result;
5140     };
5141
5142     function concat(a, b){
5143         if(b.slice){
5144             return a.concat(b);
5145         }
5146         for(var i = 0, l = b.length; i < l; i++){
5147             a[a.length] = b[i];
5148         }
5149         return a;
5150     }
5151
5152     function byTag(cs, tagName){
5153         if(cs.tagName || cs == document){
5154             cs = [cs];
5155         }
5156         if(!tagName){
5157             return cs;
5158         }
5159         var r = [], ri = -1;
5160         tagName = tagName.toLowerCase();
5161         for(var i = 0, ci; ci = cs[i]; i++){
5162             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5163                 r[++ri] = ci;
5164             }
5165         }
5166         return r;
5167     };
5168
5169     function byId(cs, attr, id){
5170         if(cs.tagName || cs == document){
5171             cs = [cs];
5172         }
5173         if(!id){
5174             return cs;
5175         }
5176         var r = [], ri = -1;
5177         for(var i = 0,ci; ci = cs[i]; i++){
5178             if(ci && ci.id == id){
5179                 r[++ri] = ci;
5180                 return r;
5181             }
5182         }
5183         return r;
5184     };
5185
5186     function byAttribute(cs, attr, value, op, custom){
5187         var r = [], ri = -1, st = custom=="{";
5188         var f = Roo.DomQuery.operators[op];
5189         for(var i = 0, ci; ci = cs[i]; i++){
5190             var a;
5191             if(st){
5192                 a = Roo.DomQuery.getStyle(ci, attr);
5193             }
5194             else if(attr == "class" || attr == "className"){
5195                 a = (ci instanceof SVGElement) ? ci.className.baseVal : ci.className;
5196             }else if(attr == "for"){
5197                 a = ci.htmlFor;
5198             }else if(attr == "href"){
5199                 a = ci.getAttribute("href", 2);
5200             }else{
5201                 a = ci.getAttribute(attr);
5202             }
5203             if((f && f(a, value)) || (!f && a)){
5204                 r[++ri] = ci;
5205             }
5206         }
5207         return r;
5208     };
5209
5210     function byPseudo(cs, name, value){
5211         return Roo.DomQuery.pseudos[name](cs, value);
5212     };
5213
5214     // This is for IE MSXML which does not support expandos.
5215     // IE runs the same speed using setAttribute, however FF slows way down
5216     // and Safari completely fails so they need to continue to use expandos.
5217     var isIE = window.ActiveXObject ? true : false;
5218
5219     // this eval is stop the compressor from
5220     // renaming the variable to something shorter
5221     
5222     /** eval:var:batch */
5223     var batch = 30803; 
5224
5225     var key = 30803;
5226
5227     function nodupIEXml(cs){
5228         var d = ++key;
5229         cs[0].setAttribute("_nodup", d);
5230         var r = [cs[0]];
5231         for(var i = 1, len = cs.length; i < len; i++){
5232             var c = cs[i];
5233             if(!c.getAttribute("_nodup") != d){
5234                 c.setAttribute("_nodup", d);
5235                 r[r.length] = c;
5236             }
5237         }
5238         for(var i = 0, len = cs.length; i < len; i++){
5239             cs[i].removeAttribute("_nodup");
5240         }
5241         return r;
5242     }
5243
5244     function nodup(cs){
5245         if(!cs){
5246             return [];
5247         }
5248         var len = cs.length, c, i, r = cs, cj, ri = -1;
5249         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5250             return cs;
5251         }
5252         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5253             return nodupIEXml(cs);
5254         }
5255         var d = ++key;
5256         cs[0]._nodup = d;
5257         for(i = 1; c = cs[i]; i++){
5258             if(c._nodup != d){
5259                 c._nodup = d;
5260             }else{
5261                 r = [];
5262                 for(var j = 0; j < i; j++){
5263                     r[++ri] = cs[j];
5264                 }
5265                 for(j = i+1; cj = cs[j]; j++){
5266                     if(cj._nodup != d){
5267                         cj._nodup = d;
5268                         r[++ri] = cj;
5269                     }
5270                 }
5271                 return r;
5272             }
5273         }
5274         return r;
5275     }
5276
5277     function quickDiffIEXml(c1, c2){
5278         var d = ++key;
5279         for(var i = 0, len = c1.length; i < len; i++){
5280             c1[i].setAttribute("_qdiff", d);
5281         }
5282         var r = [];
5283         for(var i = 0, len = c2.length; i < len; i++){
5284             if(c2[i].getAttribute("_qdiff") != d){
5285                 r[r.length] = c2[i];
5286             }
5287         }
5288         for(var i = 0, len = c1.length; i < len; i++){
5289            c1[i].removeAttribute("_qdiff");
5290         }
5291         return r;
5292     }
5293
5294     function quickDiff(c1, c2){
5295         var len1 = c1.length;
5296         if(!len1){
5297             return c2;
5298         }
5299         if(isIE && c1[0].selectSingleNode){
5300             return quickDiffIEXml(c1, c2);
5301         }
5302         var d = ++key;
5303         for(var i = 0; i < len1; i++){
5304             c1[i]._qdiff = d;
5305         }
5306         var r = [];
5307         for(var i = 0, len = c2.length; i < len; i++){
5308             if(c2[i]._qdiff != d){
5309                 r[r.length] = c2[i];
5310             }
5311         }
5312         return r;
5313     }
5314
5315     function quickId(ns, mode, root, id){
5316         if(ns == root){
5317            var d = root.ownerDocument || root;
5318            return d.getElementById(id);
5319         }
5320         ns = getNodes(ns, mode, "*");
5321         return byId(ns, null, id);
5322     }
5323
5324     return {
5325         getStyle : function(el, name){
5326             return Roo.fly(el).getStyle(name);
5327         },
5328         /**
5329          * Compiles a selector/xpath query into a reusable function. The returned function
5330          * takes one parameter "root" (optional), which is the context node from where the query should start.
5331          * @param {String} selector The selector/xpath query
5332          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5333          * @return {Function}
5334          */
5335         compile : function(path, type){
5336             type = type || "select";
5337             
5338             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5339             var q = path, mode, lq;
5340             var tk = Roo.DomQuery.matchers;
5341             var tklen = tk.length;
5342             var mm;
5343
5344             // accept leading mode switch
5345             var lmode = q.match(modeRe);
5346             if(lmode && lmode[1]){
5347                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5348                 q = q.replace(lmode[1], "");
5349             }
5350             // strip leading slashes
5351             while(path.substr(0, 1)=="/"){
5352                 path = path.substr(1);
5353             }
5354
5355             while(q && lq != q){
5356                 lq = q;
5357                 var tm = q.match(tagTokenRe);
5358                 if(type == "select"){
5359                     if(tm){
5360                         if(tm[1] == "#"){
5361                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5362                         }else{
5363                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5364                         }
5365                         q = q.replace(tm[0], "");
5366                     }else if(q.substr(0, 1) != '@'){
5367                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5368                     }
5369                 }else{
5370                     if(tm){
5371                         if(tm[1] == "#"){
5372                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5373                         }else{
5374                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5375                         }
5376                         q = q.replace(tm[0], "");
5377                     }
5378                 }
5379                 while(!(mm = q.match(modeRe))){
5380                     var matched = false;
5381                     for(var j = 0; j < tklen; j++){
5382                         var t = tk[j];
5383                         var m = q.match(t.re);
5384                         if(m){
5385                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5386                                                     return m[i];
5387                                                 });
5388                             q = q.replace(m[0], "");
5389                             matched = true;
5390                             break;
5391                         }
5392                     }
5393                     // prevent infinite loop on bad selector
5394                     if(!matched){
5395                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5396                     }
5397                 }
5398                 if(mm[1]){
5399                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5400                     q = q.replace(mm[1], "");
5401                 }
5402             }
5403             fn[fn.length] = "return nodup(n);\n}";
5404             
5405              /** 
5406               * list of variables that need from compression as they are used by eval.
5407              *  eval:var:batch 
5408              *  eval:var:nodup
5409              *  eval:var:byTag
5410              *  eval:var:ById
5411              *  eval:var:getNodes
5412              *  eval:var:quickId
5413              *  eval:var:mode
5414              *  eval:var:root
5415              *  eval:var:n
5416              *  eval:var:byClassName
5417              *  eval:var:byPseudo
5418              *  eval:var:byAttribute
5419              *  eval:var:attrValue
5420              * 
5421              **/ 
5422             eval(fn.join(""));
5423             return f;
5424         },
5425
5426         /**
5427          * Selects a group of elements.
5428          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5429          * @param {Node} root (optional) The start of the query (defaults to document).
5430          * @return {Array}
5431          */
5432         select : function(path, root, type){
5433             if(!root || root == document){
5434                 root = document;
5435             }
5436             if(typeof root == "string"){
5437                 root = document.getElementById(root);
5438             }
5439             var paths = path.split(",");
5440             var results = [];
5441             for(var i = 0, len = paths.length; i < len; i++){
5442                 var p = paths[i].replace(trimRe, "");
5443                 if(!cache[p]){
5444                     cache[p] = Roo.DomQuery.compile(p);
5445                     if(!cache[p]){
5446                         throw p + " is not a valid selector";
5447                     }
5448                 }
5449                 var result = cache[p](root);
5450                 if(result && result != document){
5451                     results = results.concat(result);
5452                 }
5453             }
5454             if(paths.length > 1){
5455                 return nodup(results);
5456             }
5457             return results;
5458         },
5459
5460         /**
5461          * Selects a single element.
5462          * @param {String} selector The selector/xpath query
5463          * @param {Node} root (optional) The start of the query (defaults to document).
5464          * @return {Element}
5465          */
5466         selectNode : function(path, root){
5467             return Roo.DomQuery.select(path, root)[0];
5468         },
5469
5470         /**
5471          * Selects the value of a node, optionally replacing null with the defaultValue.
5472          * @param {String} selector The selector/xpath query
5473          * @param {Node} root (optional) The start of the query (defaults to document).
5474          * @param {String} defaultValue
5475          */
5476         selectValue : function(path, root, defaultValue){
5477             path = path.replace(trimRe, "");
5478             if(!valueCache[path]){
5479                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5480             }
5481             var n = valueCache[path](root);
5482             n = n[0] ? n[0] : n;
5483             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5484             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5485         },
5486
5487         /**
5488          * Selects the value of a node, parsing integers and floats.
5489          * @param {String} selector The selector/xpath query
5490          * @param {Node} root (optional) The start of the query (defaults to document).
5491          * @param {Number} defaultValue
5492          * @return {Number}
5493          */
5494         selectNumber : function(path, root, defaultValue){
5495             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5496             return parseFloat(v);
5497         },
5498
5499         /**
5500          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5501          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5502          * @param {String} selector The simple selector to test
5503          * @return {Boolean}
5504          */
5505         is : function(el, ss){
5506             if(typeof el == "string"){
5507                 el = document.getElementById(el);
5508             }
5509             var isArray = (el instanceof Array);
5510             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5511             return isArray ? (result.length == el.length) : (result.length > 0);
5512         },
5513
5514         /**
5515          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5516          * @param {Array} el An array of elements to filter
5517          * @param {String} selector The simple selector to test
5518          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5519          * the selector instead of the ones that match
5520          * @return {Array}
5521          */
5522         filter : function(els, ss, nonMatches){
5523             ss = ss.replace(trimRe, "");
5524             if(!simpleCache[ss]){
5525                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5526             }
5527             var result = simpleCache[ss](els);
5528             return nonMatches ? quickDiff(result, els) : result;
5529         },
5530
5531         /**
5532          * Collection of matching regular expressions and code snippets.
5533          */
5534         matchers : [{
5535                 re: /^\.([\w-]+)/,
5536                 select: 'n = byClassName(n, null, " {1} ");'
5537             }, {
5538                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5539                 select: 'n = byPseudo(n, "{1}", "{2}");'
5540             },{
5541                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5542                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5543             }, {
5544                 re: /^#([\w-]+)/,
5545                 select: 'n = byId(n, null, "{1}");'
5546             },{
5547                 re: /^@([\w-]+)/,
5548                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5549             }
5550         ],
5551
5552         /**
5553          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5554          * 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;.
5555          */
5556         operators : {
5557             "=" : function(a, v){
5558                 return a == v;
5559             },
5560             "!=" : function(a, v){
5561                 return a != v;
5562             },
5563             "^=" : function(a, v){
5564                 return a && a.substr(0, v.length) == v;
5565             },
5566             "$=" : function(a, v){
5567                 return a && a.substr(a.length-v.length) == v;
5568             },
5569             "*=" : function(a, v){
5570                 return a && a.indexOf(v) !== -1;
5571             },
5572             "%=" : function(a, v){
5573                 return (a % v) == 0;
5574             },
5575             "|=" : function(a, v){
5576                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5577             },
5578             "~=" : function(a, v){
5579                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5580             }
5581         },
5582
5583         /**
5584          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5585          * and the argument (if any) supplied in the selector.
5586          */
5587         pseudos : {
5588             "first-child" : function(c){
5589                 var r = [], ri = -1, n;
5590                 for(var i = 0, ci; ci = n = c[i]; i++){
5591                     while((n = n.previousSibling) && n.nodeType != 1);
5592                     if(!n){
5593                         r[++ri] = ci;
5594                     }
5595                 }
5596                 return r;
5597             },
5598
5599             "last-child" : function(c){
5600                 var r = [], ri = -1, n;
5601                 for(var i = 0, ci; ci = n = c[i]; i++){
5602                     while((n = n.nextSibling) && n.nodeType != 1);
5603                     if(!n){
5604                         r[++ri] = ci;
5605                     }
5606                 }
5607                 return r;
5608             },
5609
5610             "nth-child" : function(c, a) {
5611                 var r = [], ri = -1;
5612                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5613                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5614                 for(var i = 0, n; n = c[i]; i++){
5615                     var pn = n.parentNode;
5616                     if (batch != pn._batch) {
5617                         var j = 0;
5618                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5619                             if(cn.nodeType == 1){
5620                                cn.nodeIndex = ++j;
5621                             }
5622                         }
5623                         pn._batch = batch;
5624                     }
5625                     if (f == 1) {
5626                         if (l == 0 || n.nodeIndex == l){
5627                             r[++ri] = n;
5628                         }
5629                     } else if ((n.nodeIndex + l) % f == 0){
5630                         r[++ri] = n;
5631                     }
5632                 }
5633
5634                 return r;
5635             },
5636
5637             "only-child" : function(c){
5638                 var r = [], ri = -1;;
5639                 for(var i = 0, ci; ci = c[i]; i++){
5640                     if(!prev(ci) && !next(ci)){
5641                         r[++ri] = ci;
5642                     }
5643                 }
5644                 return r;
5645             },
5646
5647             "empty" : function(c){
5648                 var r = [], ri = -1;
5649                 for(var i = 0, ci; ci = c[i]; i++){
5650                     var cns = ci.childNodes, j = 0, cn, empty = true;
5651                     while(cn = cns[j]){
5652                         ++j;
5653                         if(cn.nodeType == 1 || cn.nodeType == 3){
5654                             empty = false;
5655                             break;
5656                         }
5657                     }
5658                     if(empty){
5659                         r[++ri] = ci;
5660                     }
5661                 }
5662                 return r;
5663             },
5664
5665             "contains" : function(c, v){
5666                 var r = [], ri = -1;
5667                 for(var i = 0, ci; ci = c[i]; i++){
5668                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5669                         r[++ri] = ci;
5670                     }
5671                 }
5672                 return r;
5673             },
5674
5675             "nodeValue" : function(c, v){
5676                 var r = [], ri = -1;
5677                 for(var i = 0, ci; ci = c[i]; i++){
5678                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5679                         r[++ri] = ci;
5680                     }
5681                 }
5682                 return r;
5683             },
5684
5685             "checked" : function(c){
5686                 var r = [], ri = -1;
5687                 for(var i = 0, ci; ci = c[i]; i++){
5688                     if(ci.checked == true){
5689                         r[++ri] = ci;
5690                     }
5691                 }
5692                 return r;
5693             },
5694
5695             "not" : function(c, ss){
5696                 return Roo.DomQuery.filter(c, ss, true);
5697             },
5698
5699             "odd" : function(c){
5700                 return this["nth-child"](c, "odd");
5701             },
5702
5703             "even" : function(c){
5704                 return this["nth-child"](c, "even");
5705             },
5706
5707             "nth" : function(c, a){
5708                 return c[a-1] || [];
5709             },
5710
5711             "first" : function(c){
5712                 return c[0] || [];
5713             },
5714
5715             "last" : function(c){
5716                 return c[c.length-1] || [];
5717             },
5718
5719             "has" : function(c, ss){
5720                 var s = Roo.DomQuery.select;
5721                 var r = [], ri = -1;
5722                 for(var i = 0, ci; ci = c[i]; i++){
5723                     if(s(ss, ci).length > 0){
5724                         r[++ri] = ci;
5725                     }
5726                 }
5727                 return r;
5728             },
5729
5730             "next" : function(c, ss){
5731                 var is = Roo.DomQuery.is;
5732                 var r = [], ri = -1;
5733                 for(var i = 0, ci; ci = c[i]; i++){
5734                     var n = next(ci);
5735                     if(n && is(n, ss)){
5736                         r[++ri] = ci;
5737                     }
5738                 }
5739                 return r;
5740             },
5741
5742             "prev" : function(c, ss){
5743                 var is = Roo.DomQuery.is;
5744                 var r = [], ri = -1;
5745                 for(var i = 0, ci; ci = c[i]; i++){
5746                     var n = prev(ci);
5747                     if(n && is(n, ss)){
5748                         r[++ri] = ci;
5749                     }
5750                 }
5751                 return r;
5752             }
5753         }
5754     };
5755 }();
5756
5757 /**
5758  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5759  * @param {String} path The selector/xpath query
5760  * @param {Node} root (optional) The start of the query (defaults to document).
5761  * @return {Array}
5762  * @member Roo
5763  * @method query
5764  */
5765 Roo.query = Roo.DomQuery.select;
5766 /*
5767  * Based on:
5768  * Ext JS Library 1.1.1
5769  * Copyright(c) 2006-2007, Ext JS, LLC.
5770  *
5771  * Originally Released Under LGPL - original licence link has changed is not relivant.
5772  *
5773  * Fork - LGPL
5774  * <script type="text/javascript">
5775  */
5776
5777 /**
5778  * @class Roo.util.Observable
5779  * Base class that provides a common interface for publishing events. Subclasses are expected to
5780  * to have a property "events" with all the events defined.<br>
5781  * For example:
5782  * <pre><code>
5783  Employee = function(name){
5784     this.name = name;
5785     this.addEvents({
5786         "fired" : true,
5787         "quit" : true
5788     });
5789  }
5790  Roo.extend(Employee, Roo.util.Observable);
5791 </code></pre>
5792  * @param {Object} config properties to use (incuding events / listeners)
5793  */
5794
5795 Roo.util.Observable = function(cfg){
5796     
5797     cfg = cfg|| {};
5798     this.addEvents(cfg.events || {});
5799     if (cfg.events) {
5800         delete cfg.events; // make sure
5801     }
5802      
5803     Roo.apply(this, cfg);
5804     
5805     if(this.listeners){
5806         this.on(this.listeners);
5807         delete this.listeners;
5808     }
5809 };
5810 Roo.util.Observable.prototype = {
5811     /** 
5812  * @cfg {Object} listeners  list of events and functions to call for this object, 
5813  * For example :
5814  * <pre><code>
5815     listeners :  { 
5816        'click' : function(e) {
5817            ..... 
5818         } ,
5819         .... 
5820     } 
5821   </code></pre>
5822  */
5823     
5824     
5825     /**
5826      * Fires the specified event with the passed parameters (minus the event name).
5827      * @param {String} eventName
5828      * @param {Object...} args Variable number of parameters are passed to handlers
5829      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5830      */
5831     fireEvent : function(){
5832         var ce = this.events[arguments[0].toLowerCase()];
5833         if(typeof ce == "object"){
5834             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5835         }else{
5836             return true;
5837         }
5838     },
5839
5840     // private
5841     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5842
5843     /**
5844      * Appends an event handler to this component
5845      * @param {String}   eventName The type of event to listen for
5846      * @param {Function} handler The method the event invokes
5847      * @param {Object}   scope (optional) The scope in which to execute the handler
5848      * function. The handler function's "this" context.
5849      * @param {Object}   options (optional) An object containing handler configuration
5850      * properties. This may contain any of the following properties:<ul>
5851      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5852      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5853      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5854      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5855      * by the specified number of milliseconds. If the event fires again within that time, the original
5856      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5857      * </ul><br>
5858      * <p>
5859      * <b>Combining Options</b><br>
5860      * Using the options argument, it is possible to combine different types of listeners:<br>
5861      * <br>
5862      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5863                 <pre><code>
5864                 el.on('click', this.onClick, this, {
5865                         single: true,
5866                 delay: 100,
5867                 forumId: 4
5868                 });
5869                 </code></pre>
5870      * <p>
5871      * <b>Attaching multiple handlers in 1 call</b><br>
5872      * The method also allows for a single argument to be passed which is a config object containing properties
5873      * which specify multiple handlers.
5874      * <pre><code>
5875                 el.on({
5876                         'click': {
5877                         fn: this.onClick,
5878                         scope: this,
5879                         delay: 100
5880                 }, 
5881                 'mouseover': {
5882                         fn: this.onMouseOver,
5883                         scope: this
5884                 },
5885                 'mouseout': {
5886                         fn: this.onMouseOut,
5887                         scope: this
5888                 }
5889                 });
5890                 </code></pre>
5891      * <p>
5892      * Or a shorthand syntax which passes the same scope object to all handlers:
5893         <pre><code>
5894                 el.on({
5895                         'click': this.onClick,
5896                 'mouseover': this.onMouseOver,
5897                 'mouseout': this.onMouseOut,
5898                 scope: this
5899                 });
5900                 </code></pre>
5901      */
5902     addListener : function(eventName, fn, scope, o){
5903         if(typeof eventName == "object"){
5904             o = eventName;
5905             for(var e in o){
5906                 if(this.filterOptRe.test(e)){
5907                     continue;
5908                 }
5909                 if(typeof o[e] == "function"){
5910                     // shared options
5911                     this.addListener(e, o[e], o.scope,  o);
5912                 }else{
5913                     // individual options
5914                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5915                 }
5916             }
5917             return;
5918         }
5919         o = (!o || typeof o == "boolean") ? {} : o;
5920         eventName = eventName.toLowerCase();
5921         var ce = this.events[eventName] || true;
5922         if(typeof ce == "boolean"){
5923             ce = new Roo.util.Event(this, eventName);
5924             this.events[eventName] = ce;
5925         }
5926         ce.addListener(fn, scope, o);
5927     },
5928
5929     /**
5930      * Removes a listener
5931      * @param {String}   eventName     The type of event to listen for
5932      * @param {Function} handler        The handler to remove
5933      * @param {Object}   scope  (optional) The scope (this object) for the handler
5934      */
5935     removeListener : function(eventName, fn, scope){
5936         var ce = this.events[eventName.toLowerCase()];
5937         if(typeof ce == "object"){
5938             ce.removeListener(fn, scope);
5939         }
5940     },
5941
5942     /**
5943      * Removes all listeners for this object
5944      */
5945     purgeListeners : function(){
5946         for(var evt in this.events){
5947             if(typeof this.events[evt] == "object"){
5948                  this.events[evt].clearListeners();
5949             }
5950         }
5951     },
5952
5953     relayEvents : function(o, events){
5954         var createHandler = function(ename){
5955             return function(){
5956                  
5957                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5958             };
5959         };
5960         for(var i = 0, len = events.length; i < len; i++){
5961             var ename = events[i];
5962             if(!this.events[ename]){
5963                 this.events[ename] = true;
5964             };
5965             o.on(ename, createHandler(ename), this);
5966         }
5967     },
5968
5969     /**
5970      * Used to define events on this Observable
5971      * @param {Object} object The object with the events defined
5972      */
5973     addEvents : function(o){
5974         if(!this.events){
5975             this.events = {};
5976         }
5977         Roo.applyIf(this.events, o);
5978     },
5979
5980     /**
5981      * Checks to see if this object has any listeners for a specified event
5982      * @param {String} eventName The name of the event to check for
5983      * @return {Boolean} True if the event is being listened for, else false
5984      */
5985     hasListener : function(eventName){
5986         var e = this.events[eventName];
5987         return typeof e == "object" && e.listeners.length > 0;
5988     }
5989 };
5990 /**
5991  * Appends an event handler to this element (shorthand for addListener)
5992  * @param {String}   eventName     The type of event to listen for
5993  * @param {Function} handler        The method the event invokes
5994  * @param {Object}   scope (optional) The scope in which to execute the handler
5995  * function. The handler function's "this" context.
5996  * @param {Object}   options  (optional)
5997  * @method
5998  */
5999 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
6000 /**
6001  * Removes a listener (shorthand for removeListener)
6002  * @param {String}   eventName     The type of event to listen for
6003  * @param {Function} handler        The handler to remove
6004  * @param {Object}   scope  (optional) The scope (this object) for the handler
6005  * @method
6006  */
6007 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6008
6009 /**
6010  * Starts capture on the specified Observable. All events will be passed
6011  * to the supplied function with the event name + standard signature of the event
6012  * <b>before</b> the event is fired. If the supplied function returns false,
6013  * the event will not fire.
6014  * @param {Observable} o The Observable to capture
6015  * @param {Function} fn The function to call
6016  * @param {Object} scope (optional) The scope (this object) for the fn
6017  * @static
6018  */
6019 Roo.util.Observable.capture = function(o, fn, scope){
6020     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6021 };
6022
6023 /**
6024  * Removes <b>all</b> added captures from the Observable.
6025  * @param {Observable} o The Observable to release
6026  * @static
6027  */
6028 Roo.util.Observable.releaseCapture = function(o){
6029     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6030 };
6031
6032 (function(){
6033
6034     var createBuffered = function(h, o, scope){
6035         var task = new Roo.util.DelayedTask();
6036         return function(){
6037             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6038         };
6039     };
6040
6041     var createSingle = function(h, e, fn, scope){
6042         return function(){
6043             e.removeListener(fn, scope);
6044             return h.apply(scope, arguments);
6045         };
6046     };
6047
6048     var createDelayed = function(h, o, scope){
6049         return function(){
6050             var args = Array.prototype.slice.call(arguments, 0);
6051             setTimeout(function(){
6052                 h.apply(scope, args);
6053             }, o.delay || 10);
6054         };
6055     };
6056
6057     Roo.util.Event = function(obj, name){
6058         this.name = name;
6059         this.obj = obj;
6060         this.listeners = [];
6061     };
6062
6063     Roo.util.Event.prototype = {
6064         addListener : function(fn, scope, options){
6065             var o = options || {};
6066             scope = scope || this.obj;
6067             if(!this.isListening(fn, scope)){
6068                 var l = {fn: fn, scope: scope, options: o};
6069                 var h = fn;
6070                 if(o.delay){
6071                     h = createDelayed(h, o, scope);
6072                 }
6073                 if(o.single){
6074                     h = createSingle(h, this, fn, scope);
6075                 }
6076                 if(o.buffer){
6077                     h = createBuffered(h, o, scope);
6078                 }
6079                 l.fireFn = h;
6080                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6081                     this.listeners.push(l);
6082                 }else{
6083                     this.listeners = this.listeners.slice(0);
6084                     this.listeners.push(l);
6085                 }
6086             }
6087         },
6088
6089         findListener : function(fn, scope){
6090             scope = scope || this.obj;
6091             var ls = this.listeners;
6092             for(var i = 0, len = ls.length; i < len; i++){
6093                 var l = ls[i];
6094                 if(l.fn == fn && l.scope == scope){
6095                     return i;
6096                 }
6097             }
6098             return -1;
6099         },
6100
6101         isListening : function(fn, scope){
6102             return this.findListener(fn, scope) != -1;
6103         },
6104
6105         removeListener : function(fn, scope){
6106             var index;
6107             if((index = this.findListener(fn, scope)) != -1){
6108                 if(!this.firing){
6109                     this.listeners.splice(index, 1);
6110                 }else{
6111                     this.listeners = this.listeners.slice(0);
6112                     this.listeners.splice(index, 1);
6113                 }
6114                 return true;
6115             }
6116             return false;
6117         },
6118
6119         clearListeners : function(){
6120             this.listeners = [];
6121         },
6122
6123         fire : function(){
6124             var ls = this.listeners, scope, len = ls.length;
6125             if(len > 0){
6126                 this.firing = true;
6127                 var args = Array.prototype.slice.call(arguments, 0);                
6128                 for(var i = 0; i < len; i++){
6129                     var l = ls[i];
6130                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6131                         this.firing = false;
6132                         return false;
6133                     }
6134                 }
6135                 this.firing = false;
6136             }
6137             return true;
6138         }
6139     };
6140 })();/*
6141  * RooJS Library 
6142  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6143  *
6144  * Licence LGPL 
6145  *
6146  */
6147  
6148 /**
6149  * @class Roo.Document
6150  * @extends Roo.util.Observable
6151  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6152  * 
6153  * @param {Object} config the methods and properties of the 'base' class for the application.
6154  * 
6155  *  Generic Page handler - implement this to start your app..
6156  * 
6157  * eg.
6158  *  MyProject = new Roo.Document({
6159         events : {
6160             'load' : true // your events..
6161         },
6162         listeners : {
6163             'ready' : function() {
6164                 // fired on Roo.onReady()
6165             }
6166         }
6167  * 
6168  */
6169 Roo.Document = function(cfg) {
6170      
6171     this.addEvents({ 
6172         'ready' : true
6173     });
6174     Roo.util.Observable.call(this,cfg);
6175     
6176     var _this = this;
6177     
6178     Roo.onReady(function() {
6179         _this.fireEvent('ready');
6180     },null,false);
6181     
6182     
6183 }
6184
6185 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6186  * Based on:
6187  * Ext JS Library 1.1.1
6188  * Copyright(c) 2006-2007, Ext JS, LLC.
6189  *
6190  * Originally Released Under LGPL - original licence link has changed is not relivant.
6191  *
6192  * Fork - LGPL
6193  * <script type="text/javascript">
6194  */
6195
6196 /**
6197  * @class Roo.EventManager
6198  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6199  * several useful events directly.
6200  * See {@link Roo.EventObject} for more details on normalized event objects.
6201  * @singleton
6202  */
6203 Roo.EventManager = function(){
6204     var docReadyEvent, docReadyProcId, docReadyState = false;
6205     var resizeEvent, resizeTask, textEvent, textSize;
6206     var E = Roo.lib.Event;
6207     var D = Roo.lib.Dom;
6208
6209     
6210     
6211
6212     var fireDocReady = function(){
6213         if(!docReadyState){
6214             docReadyState = true;
6215             Roo.isReady = true;
6216             if(docReadyProcId){
6217                 clearInterval(docReadyProcId);
6218             }
6219             if(Roo.isGecko || Roo.isOpera) {
6220                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6221             }
6222             if(Roo.isIE){
6223                 var defer = document.getElementById("ie-deferred-loader");
6224                 if(defer){
6225                     defer.onreadystatechange = null;
6226                     defer.parentNode.removeChild(defer);
6227                 }
6228             }
6229             if(docReadyEvent){
6230                 docReadyEvent.fire();
6231                 docReadyEvent.clearListeners();
6232             }
6233         }
6234     };
6235     
6236     var initDocReady = function(){
6237         docReadyEvent = new Roo.util.Event();
6238         if(Roo.isGecko || Roo.isOpera) {
6239             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6240         }else if(Roo.isIE){
6241             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6242             var defer = document.getElementById("ie-deferred-loader");
6243             defer.onreadystatechange = function(){
6244                 if(this.readyState == "complete"){
6245                     fireDocReady();
6246                 }
6247             };
6248         }else if(Roo.isSafari){ 
6249             docReadyProcId = setInterval(function(){
6250                 var rs = document.readyState;
6251                 if(rs == "complete") {
6252                     fireDocReady();     
6253                  }
6254             }, 10);
6255         }
6256         // no matter what, make sure it fires on load
6257         E.on(window, "load", fireDocReady);
6258     };
6259
6260     var createBuffered = function(h, o){
6261         var task = new Roo.util.DelayedTask(h);
6262         return function(e){
6263             // create new event object impl so new events don't wipe out properties
6264             e = new Roo.EventObjectImpl(e);
6265             task.delay(o.buffer, h, null, [e]);
6266         };
6267     };
6268
6269     var createSingle = function(h, el, ename, fn){
6270         return function(e){
6271             Roo.EventManager.removeListener(el, ename, fn);
6272             h(e);
6273         };
6274     };
6275
6276     var createDelayed = function(h, o){
6277         return function(e){
6278             // create new event object impl so new events don't wipe out properties
6279             e = new Roo.EventObjectImpl(e);
6280             setTimeout(function(){
6281                 h(e);
6282             }, o.delay || 10);
6283         };
6284     };
6285     var transitionEndVal = false;
6286     
6287     var transitionEnd = function()
6288     {
6289         if (transitionEndVal) {
6290             return transitionEndVal;
6291         }
6292         var el = document.createElement('div');
6293
6294         var transEndEventNames = {
6295             WebkitTransition : 'webkitTransitionEnd',
6296             MozTransition    : 'transitionend',
6297             OTransition      : 'oTransitionEnd otransitionend',
6298             transition       : 'transitionend'
6299         };
6300     
6301         for (var name in transEndEventNames) {
6302             if (el.style[name] !== undefined) {
6303                 transitionEndVal = transEndEventNames[name];
6304                 return  transitionEndVal ;
6305             }
6306         }
6307     }
6308     
6309   
6310
6311     var listen = function(element, ename, opt, fn, scope)
6312     {
6313         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6314         fn = fn || o.fn; scope = scope || o.scope;
6315         var el = Roo.getDom(element);
6316         
6317         
6318         if(!el){
6319             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6320         }
6321         
6322         if (ename == 'transitionend') {
6323             ename = transitionEnd();
6324         }
6325         var h = function(e){
6326             e = Roo.EventObject.setEvent(e);
6327             var t;
6328             if(o.delegate){
6329                 t = e.getTarget(o.delegate, el);
6330                 if(!t){
6331                     return;
6332                 }
6333             }else{
6334                 t = e.target;
6335             }
6336             if(o.stopEvent === true){
6337                 e.stopEvent();
6338             }
6339             if(o.preventDefault === true){
6340                e.preventDefault();
6341             }
6342             if(o.stopPropagation === true){
6343                 e.stopPropagation();
6344             }
6345
6346             if(o.normalized === false){
6347                 e = e.browserEvent;
6348             }
6349
6350             fn.call(scope || el, e, t, o);
6351         };
6352         if(o.delay){
6353             h = createDelayed(h, o);
6354         }
6355         if(o.single){
6356             h = createSingle(h, el, ename, fn);
6357         }
6358         if(o.buffer){
6359             h = createBuffered(h, o);
6360         }
6361         
6362         fn._handlers = fn._handlers || [];
6363         
6364         
6365         fn._handlers.push([Roo.id(el), ename, h]);
6366         
6367         
6368          
6369         E.on(el, ename, h); // this adds the actuall listener to the object..
6370         
6371         
6372         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6373             el.addEventListener("DOMMouseScroll", h, false);
6374             E.on(window, 'unload', function(){
6375                 el.removeEventListener("DOMMouseScroll", h, false);
6376             });
6377         }
6378         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6379             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6380         }
6381         return h;
6382     };
6383
6384     var stopListening = function(el, ename, fn){
6385         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6386         if(hds){
6387             for(var i = 0, len = hds.length; i < len; i++){
6388                 var h = hds[i];
6389                 if(h[0] == id && h[1] == ename){
6390                     hd = h[2];
6391                     hds.splice(i, 1);
6392                     break;
6393                 }
6394             }
6395         }
6396         E.un(el, ename, hd);
6397         el = Roo.getDom(el);
6398         if(ename == "mousewheel" && el.addEventListener){
6399             el.removeEventListener("DOMMouseScroll", hd, false);
6400         }
6401         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6402             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6403         }
6404     };
6405
6406     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6407     
6408     var pub = {
6409         
6410         
6411         /** 
6412          * Fix for doc tools
6413          * @scope Roo.EventManager
6414          */
6415         
6416         
6417         /** 
6418          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6419          * object with a Roo.EventObject
6420          * @param {Function} fn        The method the event invokes
6421          * @param {Object}   scope    An object that becomes the scope of the handler
6422          * @param {boolean}  override If true, the obj passed in becomes
6423          *                             the execution scope of the listener
6424          * @return {Function} The wrapped function
6425          * @deprecated
6426          */
6427         wrap : function(fn, scope, override){
6428             return function(e){
6429                 Roo.EventObject.setEvent(e);
6430                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6431             };
6432         },
6433         
6434         /**
6435      * Appends an event handler to an element (shorthand for addListener)
6436      * @param {String/HTMLElement}   element        The html element or id to assign the
6437      * @param {String}   eventName The type of event to listen for
6438      * @param {Function} handler The method the event invokes
6439      * @param {Object}   scope (optional) The scope in which to execute the handler
6440      * function. The handler function's "this" context.
6441      * @param {Object}   options (optional) An object containing handler configuration
6442      * properties. This may contain any of the following properties:<ul>
6443      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6444      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6445      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6446      * <li>preventDefault {Boolean} True to prevent the default action</li>
6447      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6448      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6449      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6450      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6451      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6452      * by the specified number of milliseconds. If the event fires again within that time, the original
6453      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6454      * </ul><br>
6455      * <p>
6456      * <b>Combining Options</b><br>
6457      * Using the options argument, it is possible to combine different types of listeners:<br>
6458      * <br>
6459      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6460      * Code:<pre><code>
6461 el.on('click', this.onClick, this, {
6462     single: true,
6463     delay: 100,
6464     stopEvent : true,
6465     forumId: 4
6466 });</code></pre>
6467      * <p>
6468      * <b>Attaching multiple handlers in 1 call</b><br>
6469       * The method also allows for a single argument to be passed which is a config object containing properties
6470      * which specify multiple handlers.
6471      * <p>
6472      * Code:<pre><code>
6473 el.on({
6474     'click' : {
6475         fn: this.onClick
6476         scope: this,
6477         delay: 100
6478     },
6479     'mouseover' : {
6480         fn: this.onMouseOver
6481         scope: this
6482     },
6483     'mouseout' : {
6484         fn: this.onMouseOut
6485         scope: this
6486     }
6487 });</code></pre>
6488      * <p>
6489      * Or a shorthand syntax:<br>
6490      * Code:<pre><code>
6491 el.on({
6492     'click' : this.onClick,
6493     'mouseover' : this.onMouseOver,
6494     'mouseout' : this.onMouseOut
6495     scope: this
6496 });</code></pre>
6497      */
6498         addListener : function(element, eventName, fn, scope, options){
6499             if(typeof eventName == "object"){
6500                 var o = eventName;
6501                 for(var e in o){
6502                     if(propRe.test(e)){
6503                         continue;
6504                     }
6505                     if(typeof o[e] == "function"){
6506                         // shared options
6507                         listen(element, e, o, o[e], o.scope);
6508                     }else{
6509                         // individual options
6510                         listen(element, e, o[e]);
6511                     }
6512                 }
6513                 return;
6514             }
6515             return listen(element, eventName, options, fn, scope);
6516         },
6517         
6518         /**
6519          * Removes an event handler
6520          *
6521          * @param {String/HTMLElement}   element        The id or html element to remove the 
6522          *                             event from
6523          * @param {String}   eventName     The type of event
6524          * @param {Function} fn
6525          * @return {Boolean} True if a listener was actually removed
6526          */
6527         removeListener : function(element, eventName, fn){
6528             return stopListening(element, eventName, fn);
6529         },
6530         
6531         /**
6532          * Fires when the document is ready (before onload and before images are loaded). Can be 
6533          * accessed shorthanded Roo.onReady().
6534          * @param {Function} fn        The method the event invokes
6535          * @param {Object}   scope    An  object that becomes the scope of the handler
6536          * @param {boolean}  options
6537          */
6538         onDocumentReady : function(fn, scope, options){
6539             if(docReadyState){ // if it already fired
6540                 docReadyEvent.addListener(fn, scope, options);
6541                 docReadyEvent.fire();
6542                 docReadyEvent.clearListeners();
6543                 return;
6544             }
6545             if(!docReadyEvent){
6546                 initDocReady();
6547             }
6548             docReadyEvent.addListener(fn, scope, options);
6549         },
6550         
6551         /**
6552          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6553          * @param {Function} fn        The method the event invokes
6554          * @param {Object}   scope    An object that becomes the scope of the handler
6555          * @param {boolean}  options
6556          */
6557         onWindowResize : function(fn, scope, options){
6558             if(!resizeEvent){
6559                 resizeEvent = new Roo.util.Event();
6560                 resizeTask = new Roo.util.DelayedTask(function(){
6561                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6562                 });
6563                 E.on(window, "resize", function(){
6564                     if(Roo.isIE){
6565                         resizeTask.delay(50);
6566                     }else{
6567                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6568                     }
6569                 });
6570             }
6571             resizeEvent.addListener(fn, scope, options);
6572         },
6573
6574         /**
6575          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6576          * @param {Function} fn        The method the event invokes
6577          * @param {Object}   scope    An object that becomes the scope of the handler
6578          * @param {boolean}  options
6579          */
6580         onTextResize : function(fn, scope, options){
6581             if(!textEvent){
6582                 textEvent = new Roo.util.Event();
6583                 var textEl = new Roo.Element(document.createElement('div'));
6584                 textEl.dom.className = 'x-text-resize';
6585                 textEl.dom.innerHTML = 'X';
6586                 textEl.appendTo(document.body);
6587                 textSize = textEl.dom.offsetHeight;
6588                 setInterval(function(){
6589                     if(textEl.dom.offsetHeight != textSize){
6590                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6591                     }
6592                 }, this.textResizeInterval);
6593             }
6594             textEvent.addListener(fn, scope, options);
6595         },
6596
6597         /**
6598          * Removes the passed window resize listener.
6599          * @param {Function} fn        The method the event invokes
6600          * @param {Object}   scope    The scope of handler
6601          */
6602         removeResizeListener : function(fn, scope){
6603             if(resizeEvent){
6604                 resizeEvent.removeListener(fn, scope);
6605             }
6606         },
6607
6608         // private
6609         fireResize : function(){
6610             if(resizeEvent){
6611                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6612             }   
6613         },
6614         /**
6615          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6616          */
6617         ieDeferSrc : false,
6618         /**
6619          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6620          */
6621         textResizeInterval : 50
6622     };
6623     
6624     /**
6625      * Fix for doc tools
6626      * @scopeAlias pub=Roo.EventManager
6627      */
6628     
6629      /**
6630      * Appends an event handler to an element (shorthand for addListener)
6631      * @param {String/HTMLElement}   element        The html element or id to assign the
6632      * @param {String}   eventName The type of event to listen for
6633      * @param {Function} handler The method the event invokes
6634      * @param {Object}   scope (optional) The scope in which to execute the handler
6635      * function. The handler function's "this" context.
6636      * @param {Object}   options (optional) An object containing handler configuration
6637      * properties. This may contain any of the following properties:<ul>
6638      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6639      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6640      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6641      * <li>preventDefault {Boolean} True to prevent the default action</li>
6642      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6643      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6644      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6645      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6646      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6647      * by the specified number of milliseconds. If the event fires again within that time, the original
6648      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6649      * </ul><br>
6650      * <p>
6651      * <b>Combining Options</b><br>
6652      * Using the options argument, it is possible to combine different types of listeners:<br>
6653      * <br>
6654      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6655      * Code:<pre><code>
6656 el.on('click', this.onClick, this, {
6657     single: true,
6658     delay: 100,
6659     stopEvent : true,
6660     forumId: 4
6661 });</code></pre>
6662      * <p>
6663      * <b>Attaching multiple handlers in 1 call</b><br>
6664       * The method also allows for a single argument to be passed which is a config object containing properties
6665      * which specify multiple handlers.
6666      * <p>
6667      * Code:<pre><code>
6668 el.on({
6669     'click' : {
6670         fn: this.onClick
6671         scope: this,
6672         delay: 100
6673     },
6674     'mouseover' : {
6675         fn: this.onMouseOver
6676         scope: this
6677     },
6678     'mouseout' : {
6679         fn: this.onMouseOut
6680         scope: this
6681     }
6682 });</code></pre>
6683      * <p>
6684      * Or a shorthand syntax:<br>
6685      * Code:<pre><code>
6686 el.on({
6687     'click' : this.onClick,
6688     'mouseover' : this.onMouseOver,
6689     'mouseout' : this.onMouseOut
6690     scope: this
6691 });</code></pre>
6692      */
6693     pub.on = pub.addListener;
6694     pub.un = pub.removeListener;
6695
6696     pub.stoppedMouseDownEvent = new Roo.util.Event();
6697     return pub;
6698 }();
6699 /**
6700   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6701   * @param {Function} fn        The method the event invokes
6702   * @param {Object}   scope    An  object that becomes the scope of the handler
6703   * @param {boolean}  override If true, the obj passed in becomes
6704   *                             the execution scope of the listener
6705   * @member Roo
6706   * @method onReady
6707  */
6708 Roo.onReady = Roo.EventManager.onDocumentReady;
6709
6710 Roo.onReady(function(){
6711     var bd = Roo.get(document.body);
6712     if(!bd){ return; }
6713
6714     var cls = [
6715             Roo.isIE ? "roo-ie"
6716             : Roo.isIE11 ? "roo-ie11"
6717             : Roo.isEdge ? "roo-edge"
6718             : Roo.isGecko ? "roo-gecko"
6719             : Roo.isOpera ? "roo-opera"
6720             : Roo.isSafari ? "roo-safari" : ""];
6721
6722     if(Roo.isMac){
6723         cls.push("roo-mac");
6724     }
6725     if(Roo.isLinux){
6726         cls.push("roo-linux");
6727     }
6728     if(Roo.isIOS){
6729         cls.push("roo-ios");
6730     }
6731     if(Roo.isTouch){
6732         cls.push("roo-touch");
6733     }
6734     if(Roo.isBorderBox){
6735         cls.push('roo-border-box');
6736     }
6737     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6738         var p = bd.dom.parentNode;
6739         if(p){
6740             p.className += ' roo-strict';
6741         }
6742     }
6743     bd.addClass(cls.join(' '));
6744 });
6745
6746 /**
6747  * @class Roo.EventObject
6748  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6749  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6750  * Example:
6751  * <pre><code>
6752  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6753     e.preventDefault();
6754     var target = e.getTarget();
6755     ...
6756  }
6757  var myDiv = Roo.get("myDiv");
6758  myDiv.on("click", handleClick);
6759  //or
6760  Roo.EventManager.on("myDiv", 'click', handleClick);
6761  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6762  </code></pre>
6763  * @singleton
6764  */
6765 Roo.EventObject = function(){
6766     
6767     var E = Roo.lib.Event;
6768     
6769     // safari keypress events for special keys return bad keycodes
6770     var safariKeys = {
6771         63234 : 37, // left
6772         63235 : 39, // right
6773         63232 : 38, // up
6774         63233 : 40, // down
6775         63276 : 33, // page up
6776         63277 : 34, // page down
6777         63272 : 46, // delete
6778         63273 : 36, // home
6779         63275 : 35  // end
6780     };
6781
6782     // normalize button clicks
6783     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6784                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6785
6786     Roo.EventObjectImpl = function(e){
6787         if(e){
6788             this.setEvent(e.browserEvent || e);
6789         }
6790     };
6791     Roo.EventObjectImpl.prototype = {
6792         /**
6793          * Used to fix doc tools.
6794          * @scope Roo.EventObject.prototype
6795          */
6796             
6797
6798         
6799         
6800         /** The normal browser event */
6801         browserEvent : null,
6802         /** The button pressed in a mouse event */
6803         button : -1,
6804         /** True if the shift key was down during the event */
6805         shiftKey : false,
6806         /** True if the control key was down during the event */
6807         ctrlKey : false,
6808         /** True if the alt key was down during the event */
6809         altKey : false,
6810
6811         /** Key constant 
6812         * @type Number */
6813         BACKSPACE : 8,
6814         /** Key constant 
6815         * @type Number */
6816         TAB : 9,
6817         /** Key constant 
6818         * @type Number */
6819         RETURN : 13,
6820         /** Key constant 
6821         * @type Number */
6822         ENTER : 13,
6823         /** Key constant 
6824         * @type Number */
6825         SHIFT : 16,
6826         /** Key constant 
6827         * @type Number */
6828         CONTROL : 17,
6829         /** Key constant 
6830         * @type Number */
6831         ESC : 27,
6832         /** Key constant 
6833         * @type Number */
6834         SPACE : 32,
6835         /** Key constant 
6836         * @type Number */
6837         PAGEUP : 33,
6838         /** Key constant 
6839         * @type Number */
6840         PAGEDOWN : 34,
6841         /** Key constant 
6842         * @type Number */
6843         END : 35,
6844         /** Key constant 
6845         * @type Number */
6846         HOME : 36,
6847         /** Key constant 
6848         * @type Number */
6849         LEFT : 37,
6850         /** Key constant 
6851         * @type Number */
6852         UP : 38,
6853         /** Key constant 
6854         * @type Number */
6855         RIGHT : 39,
6856         /** Key constant 
6857         * @type Number */
6858         DOWN : 40,
6859         /** Key constant 
6860         * @type Number */
6861         DELETE : 46,
6862         /** Key constant 
6863         * @type Number */
6864         F5 : 116,
6865
6866            /** @private */
6867         setEvent : function(e){
6868             if(e == this || (e && e.browserEvent)){ // already wrapped
6869                 return e;
6870             }
6871             this.browserEvent = e;
6872             if(e){
6873                 // normalize buttons
6874                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6875                 if(e.type == 'click' && this.button == -1){
6876                     this.button = 0;
6877                 }
6878                 this.type = e.type;
6879                 this.shiftKey = e.shiftKey;
6880                 // mac metaKey behaves like ctrlKey
6881                 this.ctrlKey = e.ctrlKey || e.metaKey;
6882                 this.altKey = e.altKey;
6883                 // in getKey these will be normalized for the mac
6884                 this.keyCode = e.keyCode;
6885                 // keyup warnings on firefox.
6886                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6887                 // cache the target for the delayed and or buffered events
6888                 this.target = E.getTarget(e);
6889                 // same for XY
6890                 this.xy = E.getXY(e);
6891             }else{
6892                 this.button = -1;
6893                 this.shiftKey = false;
6894                 this.ctrlKey = false;
6895                 this.altKey = false;
6896                 this.keyCode = 0;
6897                 this.charCode =0;
6898                 this.target = null;
6899                 this.xy = [0, 0];
6900             }
6901             return this;
6902         },
6903
6904         /**
6905          * Stop the event (preventDefault and stopPropagation)
6906          */
6907         stopEvent : function(){
6908             if(this.browserEvent){
6909                 if(this.browserEvent.type == 'mousedown'){
6910                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6911                 }
6912                 E.stopEvent(this.browserEvent);
6913             }
6914         },
6915
6916         /**
6917          * Prevents the browsers default handling of the event.
6918          */
6919         preventDefault : function(){
6920             if(this.browserEvent){
6921                 E.preventDefault(this.browserEvent);
6922             }
6923         },
6924
6925         /** @private */
6926         isNavKeyPress : function(){
6927             var k = this.keyCode;
6928             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6929             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6930         },
6931
6932         isSpecialKey : function(){
6933             var k = this.keyCode;
6934             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6935             (k == 16) || (k == 17) ||
6936             (k >= 18 && k <= 20) ||
6937             (k >= 33 && k <= 35) ||
6938             (k >= 36 && k <= 39) ||
6939             (k >= 44 && k <= 45);
6940         },
6941         /**
6942          * Cancels bubbling of the event.
6943          */
6944         stopPropagation : function(){
6945             if(this.browserEvent){
6946                 if(this.type == 'mousedown'){
6947                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6948                 }
6949                 E.stopPropagation(this.browserEvent);
6950             }
6951         },
6952
6953         /**
6954          * Gets the key code for the event.
6955          * @return {Number}
6956          */
6957         getCharCode : function(){
6958             return this.charCode || this.keyCode;
6959         },
6960
6961         /**
6962          * Returns a normalized keyCode for the event.
6963          * @return {Number} The key code
6964          */
6965         getKey : function(){
6966             var k = this.keyCode || this.charCode;
6967             return Roo.isSafari ? (safariKeys[k] || k) : k;
6968         },
6969
6970         /**
6971          * Gets the x coordinate of the event.
6972          * @return {Number}
6973          */
6974         getPageX : function(){
6975             return this.xy[0];
6976         },
6977
6978         /**
6979          * Gets the y coordinate of the event.
6980          * @return {Number}
6981          */
6982         getPageY : function(){
6983             return this.xy[1];
6984         },
6985
6986         /**
6987          * Gets the time of the event.
6988          * @return {Number}
6989          */
6990         getTime : function(){
6991             if(this.browserEvent){
6992                 return E.getTime(this.browserEvent);
6993             }
6994             return null;
6995         },
6996
6997         /**
6998          * Gets the page coordinates of the event.
6999          * @return {Array} The xy values like [x, y]
7000          */
7001         getXY : function(){
7002             return this.xy;
7003         },
7004
7005         /**
7006          * Gets the target for the event.
7007          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7008          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7009                 search as a number or element (defaults to 10 || document.body)
7010          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7011          * @return {HTMLelement}
7012          */
7013         getTarget : function(selector, maxDepth, returnEl){
7014             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7015         },
7016         /**
7017          * Gets the related target.
7018          * @return {HTMLElement}
7019          */
7020         getRelatedTarget : function(){
7021             if(this.browserEvent){
7022                 return E.getRelatedTarget(this.browserEvent);
7023             }
7024             return null;
7025         },
7026
7027         /**
7028          * Normalizes mouse wheel delta across browsers
7029          * @return {Number} The delta
7030          */
7031         getWheelDelta : function(){
7032             var e = this.browserEvent;
7033             var delta = 0;
7034             if(e.wheelDelta){ /* IE/Opera. */
7035                 delta = e.wheelDelta/120;
7036             }else if(e.detail){ /* Mozilla case. */
7037                 delta = -e.detail/3;
7038             }
7039             return delta;
7040         },
7041
7042         /**
7043          * Returns true if the control, meta, shift or alt key was pressed during this event.
7044          * @return {Boolean}
7045          */
7046         hasModifier : function(){
7047             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7048         },
7049
7050         /**
7051          * Returns true if the target of this event equals el or is a child of el
7052          * @param {String/HTMLElement/Element} el
7053          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7054          * @return {Boolean}
7055          */
7056         within : function(el, related){
7057             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7058             return t && Roo.fly(el).contains(t);
7059         },
7060
7061         getPoint : function(){
7062             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7063         }
7064     };
7065
7066     return new Roo.EventObjectImpl();
7067 }();
7068             
7069     /*
7070  * Based on:
7071  * Ext JS Library 1.1.1
7072  * Copyright(c) 2006-2007, Ext JS, LLC.
7073  *
7074  * Originally Released Under LGPL - original licence link has changed is not relivant.
7075  *
7076  * Fork - LGPL
7077  * <script type="text/javascript">
7078  */
7079
7080  
7081 // was in Composite Element!??!?!
7082  
7083 (function(){
7084     var D = Roo.lib.Dom;
7085     var E = Roo.lib.Event;
7086     var A = Roo.lib.Anim;
7087
7088     // local style camelizing for speed
7089     var propCache = {};
7090     var camelRe = /(-[a-z])/gi;
7091     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7092     var view = document.defaultView;
7093
7094 /**
7095  * @class Roo.Element
7096  * Represents an Element in the DOM.<br><br>
7097  * Usage:<br>
7098 <pre><code>
7099 var el = Roo.get("my-div");
7100
7101 // or with getEl
7102 var el = getEl("my-div");
7103
7104 // or with a DOM element
7105 var el = Roo.get(myDivElement);
7106 </code></pre>
7107  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7108  * each call instead of constructing a new one.<br><br>
7109  * <b>Animations</b><br />
7110  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7111  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7112 <pre>
7113 Option    Default   Description
7114 --------- --------  ---------------------------------------------
7115 duration  .35       The duration of the animation in seconds
7116 easing    easeOut   The YUI easing method
7117 callback  none      A function to execute when the anim completes
7118 scope     this      The scope (this) of the callback function
7119 </pre>
7120 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7121 * manipulate the animation. Here's an example:
7122 <pre><code>
7123 var el = Roo.get("my-div");
7124
7125 // no animation
7126 el.setWidth(100);
7127
7128 // default animation
7129 el.setWidth(100, true);
7130
7131 // animation with some options set
7132 el.setWidth(100, {
7133     duration: 1,
7134     callback: this.foo,
7135     scope: this
7136 });
7137
7138 // using the "anim" property to get the Anim object
7139 var opt = {
7140     duration: 1,
7141     callback: this.foo,
7142     scope: this
7143 };
7144 el.setWidth(100, opt);
7145 ...
7146 if(opt.anim.isAnimated()){
7147     opt.anim.stop();
7148 }
7149 </code></pre>
7150 * <b> Composite (Collections of) Elements</b><br />
7151  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7152  * @constructor Create a new Element directly.
7153  * @param {String/HTMLElement} element
7154  * @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).
7155  */
7156     Roo.Element = function(element, forceNew)
7157     {
7158         var dom = typeof element == "string" ?
7159                 document.getElementById(element) : element;
7160         
7161         this.listeners = {};
7162         
7163         if(!dom){ // invalid id/element
7164             return null;
7165         }
7166         var id = dom.id;
7167         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7168             return Roo.Element.cache[id];
7169         }
7170
7171         /**
7172          * The DOM element
7173          * @type HTMLElement
7174          */
7175         this.dom = dom;
7176
7177         /**
7178          * The DOM element ID
7179          * @type String
7180          */
7181         this.id = id || Roo.id(dom);
7182         
7183         return this; // assumed for cctor?
7184     };
7185
7186     var El = Roo.Element;
7187
7188     El.prototype = {
7189         /**
7190          * The element's default display mode  (defaults to "") 
7191          * @type String
7192          */
7193         originalDisplay : "",
7194
7195         
7196         // note this is overridden in BS version..
7197         visibilityMode : 1, 
7198         /**
7199          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7200          * @type String
7201          */
7202         defaultUnit : "px",
7203         
7204         /**
7205          * Sets the element's visibility mode. When setVisible() is called it
7206          * will use this to determine whether to set the visibility or the display property.
7207          * @param visMode Element.VISIBILITY or Element.DISPLAY
7208          * @return {Roo.Element} this
7209          */
7210         setVisibilityMode : function(visMode){
7211             this.visibilityMode = visMode;
7212             return this;
7213         },
7214         /**
7215          * Convenience method for setVisibilityMode(Element.DISPLAY)
7216          * @param {String} display (optional) What to set display to when visible
7217          * @return {Roo.Element} this
7218          */
7219         enableDisplayMode : function(display){
7220             this.setVisibilityMode(El.DISPLAY);
7221             if(typeof display != "undefined") { this.originalDisplay = display; }
7222             return this;
7223         },
7224
7225         /**
7226          * 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)
7227          * @param {String} selector The simple selector to test
7228          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7229                 search as a number or element (defaults to 10 || document.body)
7230          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7231          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7232          */
7233         findParent : function(simpleSelector, maxDepth, returnEl){
7234             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7235             maxDepth = maxDepth || 50;
7236             if(typeof maxDepth != "number"){
7237                 stopEl = Roo.getDom(maxDepth);
7238                 maxDepth = 10;
7239             }
7240             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7241                 if(dq.is(p, simpleSelector)){
7242                     return returnEl ? Roo.get(p) : p;
7243                 }
7244                 depth++;
7245                 p = p.parentNode;
7246             }
7247             return null;
7248         },
7249
7250
7251         /**
7252          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7253          * @param {String} selector The simple selector to test
7254          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7255                 search as a number or element (defaults to 10 || document.body)
7256          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7257          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7258          */
7259         findParentNode : function(simpleSelector, maxDepth, returnEl){
7260             var p = Roo.fly(this.dom.parentNode, '_internal');
7261             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7262         },
7263         
7264         /**
7265          * Looks at  the scrollable parent element
7266          */
7267         findScrollableParent : function()
7268         {
7269             var overflowRegex = /(auto|scroll)/;
7270             
7271             if(this.getStyle('position') === 'fixed'){
7272                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7273             }
7274             
7275             var excludeStaticParent = this.getStyle('position') === "absolute";
7276             
7277             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7278                 
7279                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7280                     continue;
7281                 }
7282                 
7283                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7284                     return parent;
7285                 }
7286                 
7287                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7288                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7289                 }
7290             }
7291             
7292             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7293         },
7294
7295         /**
7296          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7297          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7298          * @param {String} selector The simple selector to test
7299          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7300                 search as a number or element (defaults to 10 || document.body)
7301          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7302          */
7303         up : function(simpleSelector, maxDepth){
7304             return this.findParentNode(simpleSelector, maxDepth, true);
7305         },
7306
7307
7308
7309         /**
7310          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7311          * @param {String} selector The simple selector to test
7312          * @return {Boolean} True if this element matches the selector, else false
7313          */
7314         is : function(simpleSelector){
7315             return Roo.DomQuery.is(this.dom, simpleSelector);
7316         },
7317
7318         /**
7319          * Perform animation on this element.
7320          * @param {Object} args The YUI animation control args
7321          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7322          * @param {Function} onComplete (optional) Function to call when animation completes
7323          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7324          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7325          * @return {Roo.Element} this
7326          */
7327         animate : function(args, duration, onComplete, easing, animType){
7328             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7329             return this;
7330         },
7331
7332         /*
7333          * @private Internal animation call
7334          */
7335         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7336             animType = animType || 'run';
7337             opt = opt || {};
7338             var anim = Roo.lib.Anim[animType](
7339                 this.dom, args,
7340                 (opt.duration || defaultDur) || .35,
7341                 (opt.easing || defaultEase) || 'easeOut',
7342                 function(){
7343                     Roo.callback(cb, this);
7344                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7345                 },
7346                 this
7347             );
7348             opt.anim = anim;
7349             return anim;
7350         },
7351
7352         // private legacy anim prep
7353         preanim : function(a, i){
7354             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7355         },
7356
7357         /**
7358          * Removes worthless text nodes
7359          * @param {Boolean} forceReclean (optional) By default the element
7360          * keeps track if it has been cleaned already so
7361          * you can call this over and over. However, if you update the element and
7362          * need to force a reclean, you can pass true.
7363          */
7364         clean : function(forceReclean){
7365             if(this.isCleaned && forceReclean !== true){
7366                 return this;
7367             }
7368             var ns = /\S/;
7369             var d = this.dom, n = d.firstChild, ni = -1;
7370             while(n){
7371                 var nx = n.nextSibling;
7372                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7373                     d.removeChild(n);
7374                 }else{
7375                     n.nodeIndex = ++ni;
7376                 }
7377                 n = nx;
7378             }
7379             this.isCleaned = true;
7380             return this;
7381         },
7382
7383         // private
7384         calcOffsetsTo : function(el){
7385             el = Roo.get(el);
7386             var d = el.dom;
7387             var restorePos = false;
7388             if(el.getStyle('position') == 'static'){
7389                 el.position('relative');
7390                 restorePos = true;
7391             }
7392             var x = 0, y =0;
7393             var op = this.dom;
7394             while(op && op != d && op.tagName != 'HTML'){
7395                 x+= op.offsetLeft;
7396                 y+= op.offsetTop;
7397                 op = op.offsetParent;
7398             }
7399             if(restorePos){
7400                 el.position('static');
7401             }
7402             return [x, y];
7403         },
7404
7405         /**
7406          * Scrolls this element into view within the passed container.
7407          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7408          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7409          * @return {Roo.Element} this
7410          */
7411         scrollIntoView : function(container, hscroll){
7412             var c = Roo.getDom(container) || document.body;
7413             var el = this.dom;
7414
7415             var o = this.calcOffsetsTo(c),
7416                 l = o[0],
7417                 t = o[1],
7418                 b = t+el.offsetHeight,
7419                 r = l+el.offsetWidth;
7420
7421             var ch = c.clientHeight;
7422             var ct = parseInt(c.scrollTop, 10);
7423             var cl = parseInt(c.scrollLeft, 10);
7424             var cb = ct + ch;
7425             var cr = cl + c.clientWidth;
7426
7427             if(t < ct){
7428                 c.scrollTop = t;
7429             }else if(b > cb){
7430                 c.scrollTop = b-ch;
7431             }
7432
7433             if(hscroll !== false){
7434                 if(l < cl){
7435                     c.scrollLeft = l;
7436                 }else if(r > cr){
7437                     c.scrollLeft = r-c.clientWidth;
7438                 }
7439             }
7440             return this;
7441         },
7442
7443         // private
7444         scrollChildIntoView : function(child, hscroll){
7445             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7446         },
7447
7448         /**
7449          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7450          * the new height may not be available immediately.
7451          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7452          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7453          * @param {Function} onComplete (optional) Function to call when animation completes
7454          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7455          * @return {Roo.Element} this
7456          */
7457         autoHeight : function(animate, duration, onComplete, easing){
7458             var oldHeight = this.getHeight();
7459             this.clip();
7460             this.setHeight(1); // force clipping
7461             setTimeout(function(){
7462                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7463                 if(!animate){
7464                     this.setHeight(height);
7465                     this.unclip();
7466                     if(typeof onComplete == "function"){
7467                         onComplete();
7468                     }
7469                 }else{
7470                     this.setHeight(oldHeight); // restore original height
7471                     this.setHeight(height, animate, duration, function(){
7472                         this.unclip();
7473                         if(typeof onComplete == "function") { onComplete(); }
7474                     }.createDelegate(this), easing);
7475                 }
7476             }.createDelegate(this), 0);
7477             return this;
7478         },
7479
7480         /**
7481          * Returns true if this element is an ancestor of the passed element
7482          * @param {HTMLElement/String} el The element to check
7483          * @return {Boolean} True if this element is an ancestor of el, else false
7484          */
7485         contains : function(el){
7486             if(!el){return false;}
7487             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7488         },
7489
7490         /**
7491          * Checks whether the element is currently visible using both visibility and display properties.
7492          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7493          * @return {Boolean} True if the element is currently visible, else false
7494          */
7495         isVisible : function(deep) {
7496             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7497             if(deep !== true || !vis){
7498                 return vis;
7499             }
7500             var p = this.dom.parentNode;
7501             while(p && p.tagName.toLowerCase() != "body"){
7502                 if(!Roo.fly(p, '_isVisible').isVisible()){
7503                     return false;
7504                 }
7505                 p = p.parentNode;
7506             }
7507             return true;
7508         },
7509
7510         /**
7511          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7512          * @param {String} selector The CSS selector
7513          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7514          * @return {CompositeElement/CompositeElementLite} The composite element
7515          */
7516         select : function(selector, unique){
7517             return El.select(selector, unique, this.dom);
7518         },
7519
7520         /**
7521          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7522          * @param {String} selector The CSS selector
7523          * @return {Array} An array of the matched nodes
7524          */
7525         query : function(selector, unique){
7526             return Roo.DomQuery.select(selector, this.dom);
7527         },
7528
7529         /**
7530          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7531          * @param {String} selector The CSS selector
7532          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7533          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7534          */
7535         child : function(selector, returnDom){
7536             var n = Roo.DomQuery.selectNode(selector, this.dom);
7537             return returnDom ? n : Roo.get(n);
7538         },
7539
7540         /**
7541          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7542          * @param {String} selector The CSS selector
7543          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7544          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7545          */
7546         down : function(selector, returnDom){
7547             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7548             return returnDom ? n : Roo.get(n);
7549         },
7550
7551         /**
7552          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7553          * @param {String} group The group the DD object is member of
7554          * @param {Object} config The DD config object
7555          * @param {Object} overrides An object containing methods to override/implement on the DD object
7556          * @return {Roo.dd.DD} The DD object
7557          */
7558         initDD : function(group, config, overrides){
7559             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7560             return Roo.apply(dd, overrides);
7561         },
7562
7563         /**
7564          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7565          * @param {String} group The group the DDProxy object is member of
7566          * @param {Object} config The DDProxy config object
7567          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7568          * @return {Roo.dd.DDProxy} The DDProxy object
7569          */
7570         initDDProxy : function(group, config, overrides){
7571             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7572             return Roo.apply(dd, overrides);
7573         },
7574
7575         /**
7576          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7577          * @param {String} group The group the DDTarget object is member of
7578          * @param {Object} config The DDTarget config object
7579          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7580          * @return {Roo.dd.DDTarget} The DDTarget object
7581          */
7582         initDDTarget : function(group, config, overrides){
7583             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7584             return Roo.apply(dd, overrides);
7585         },
7586
7587         /**
7588          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7589          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7590          * @param {Boolean} visible Whether the element is visible
7591          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7592          * @return {Roo.Element} this
7593          */
7594          setVisible : function(visible, animate){
7595             if(!animate || !A){
7596                 if(this.visibilityMode == El.DISPLAY){
7597                     this.setDisplayed(visible);
7598                 }else{
7599                     this.fixDisplay();
7600                     this.dom.style.visibility = visible ? "visible" : "hidden";
7601                 }
7602             }else{
7603                 // closure for composites
7604                 var dom = this.dom;
7605                 var visMode = this.visibilityMode;
7606                 if(visible){
7607                     this.setOpacity(.01);
7608                     this.setVisible(true);
7609                 }
7610                 this.anim({opacity: { to: (visible?1:0) }},
7611                       this.preanim(arguments, 1),
7612                       null, .35, 'easeIn', function(){
7613                          if(!visible){
7614                              if(visMode == El.DISPLAY){
7615                                  dom.style.display = "none";
7616                              }else{
7617                                  dom.style.visibility = "hidden";
7618                              }
7619                              Roo.get(dom).setOpacity(1);
7620                          }
7621                      });
7622             }
7623             return this;
7624         },
7625
7626         /**
7627          * Returns true if display is not "none"
7628          * @return {Boolean}
7629          */
7630         isDisplayed : function() {
7631             return this.getStyle("display") != "none";
7632         },
7633
7634         /**
7635          * Toggles the element's visibility or display, depending on visibility mode.
7636          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7637          * @return {Roo.Element} this
7638          */
7639         toggle : function(animate){
7640             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7641             return this;
7642         },
7643
7644         /**
7645          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7646          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7647          * @return {Roo.Element} this
7648          */
7649         setDisplayed : function(value) {
7650             if(typeof value == "boolean"){
7651                value = value ? this.originalDisplay : "none";
7652             }
7653             this.setStyle("display", value);
7654             return this;
7655         },
7656
7657         /**
7658          * Tries to focus the element. Any exceptions are caught and ignored.
7659          * @return {Roo.Element} this
7660          */
7661         focus : function() {
7662             try{
7663                 this.dom.focus();
7664             }catch(e){}
7665             return this;
7666         },
7667
7668         /**
7669          * Tries to blur the element. Any exceptions are caught and ignored.
7670          * @return {Roo.Element} this
7671          */
7672         blur : function() {
7673             try{
7674                 this.dom.blur();
7675             }catch(e){}
7676             return this;
7677         },
7678
7679         /**
7680          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7681          * @param {String/Array} className The CSS class to add, or an array of classes
7682          * @return {Roo.Element} this
7683          */
7684         addClass : function(className){
7685             if(className instanceof Array){
7686                 for(var i = 0, len = className.length; i < len; i++) {
7687                     this.addClass(className[i]);
7688                 }
7689             }else{
7690                 if(className && !this.hasClass(className)){
7691                     if (this.dom instanceof SVGElement) {
7692                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
7693                     } else {
7694                         this.dom.className = this.dom.className + " " + className;
7695                     }
7696                 }
7697             }
7698             return this;
7699         },
7700
7701         /**
7702          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7703          * @param {String/Array} className The CSS class to add, or an array of classes
7704          * @return {Roo.Element} this
7705          */
7706         radioClass : function(className){
7707             var siblings = this.dom.parentNode.childNodes;
7708             for(var i = 0; i < siblings.length; i++) {
7709                 var s = siblings[i];
7710                 if(s.nodeType == 1){
7711                     Roo.get(s).removeClass(className);
7712                 }
7713             }
7714             this.addClass(className);
7715             return this;
7716         },
7717
7718         /**
7719          * Removes one or more CSS classes from the element.
7720          * @param {String/Array} className The CSS class to remove, or an array of classes
7721          * @return {Roo.Element} this
7722          */
7723         removeClass : function(className){
7724             
7725             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
7726             if(!className || !cn){
7727                 return this;
7728             }
7729             if(className instanceof Array){
7730                 for(var i = 0, len = className.length; i < len; i++) {
7731                     this.removeClass(className[i]);
7732                 }
7733             }else{
7734                 if(this.hasClass(className)){
7735                     var re = this.classReCache[className];
7736                     if (!re) {
7737                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7738                        this.classReCache[className] = re;
7739                     }
7740                     if (this.dom instanceof SVGElement) {
7741                         this.dom.className.baseVal = cn.replace(re, " ");
7742                     } else {
7743                         this.dom.className = cn.replace(re, " ");
7744                     }
7745                 }
7746             }
7747             return this;
7748         },
7749
7750         // private
7751         classReCache: {},
7752
7753         /**
7754          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7755          * @param {String} className The CSS class to toggle
7756          * @return {Roo.Element} this
7757          */
7758         toggleClass : function(className){
7759             if(this.hasClass(className)){
7760                 this.removeClass(className);
7761             }else{
7762                 this.addClass(className);
7763             }
7764             return this;
7765         },
7766
7767         /**
7768          * Checks if the specified CSS class exists on this element's DOM node.
7769          * @param {String} className The CSS class to check for
7770          * @return {Boolean} True if the class exists, else false
7771          */
7772         hasClass : function(className){
7773             if (this.dom instanceof SVGElement) {
7774                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
7775             } 
7776             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7777         },
7778
7779         /**
7780          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7781          * @param {String} oldClassName The CSS class to replace
7782          * @param {String} newClassName The replacement CSS class
7783          * @return {Roo.Element} this
7784          */
7785         replaceClass : function(oldClassName, newClassName){
7786             this.removeClass(oldClassName);
7787             this.addClass(newClassName);
7788             return this;
7789         },
7790
7791         /**
7792          * Returns an object with properties matching the styles requested.
7793          * For example, el.getStyles('color', 'font-size', 'width') might return
7794          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7795          * @param {String} style1 A style name
7796          * @param {String} style2 A style name
7797          * @param {String} etc.
7798          * @return {Object} The style object
7799          */
7800         getStyles : function(){
7801             var a = arguments, len = a.length, r = {};
7802             for(var i = 0; i < len; i++){
7803                 r[a[i]] = this.getStyle(a[i]);
7804             }
7805             return r;
7806         },
7807
7808         /**
7809          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7810          * @param {String} property The style property whose value is returned.
7811          * @return {String} The current value of the style property for this element.
7812          */
7813         getStyle : function(){
7814             return view && view.getComputedStyle ?
7815                 function(prop){
7816                     var el = this.dom, v, cs, camel;
7817                     if(prop == 'float'){
7818                         prop = "cssFloat";
7819                     }
7820                     if(el.style && (v = el.style[prop])){
7821                         return v;
7822                     }
7823                     if(cs = view.getComputedStyle(el, "")){
7824                         if(!(camel = propCache[prop])){
7825                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7826                         }
7827                         return cs[camel];
7828                     }
7829                     return null;
7830                 } :
7831                 function(prop){
7832                     var el = this.dom, v, cs, camel;
7833                     if(prop == 'opacity'){
7834                         if(typeof el.style.filter == 'string'){
7835                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7836                             if(m){
7837                                 var fv = parseFloat(m[1]);
7838                                 if(!isNaN(fv)){
7839                                     return fv ? fv / 100 : 0;
7840                                 }
7841                             }
7842                         }
7843                         return 1;
7844                     }else if(prop == 'float'){
7845                         prop = "styleFloat";
7846                     }
7847                     if(!(camel = propCache[prop])){
7848                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7849                     }
7850                     if(v = el.style[camel]){
7851                         return v;
7852                     }
7853                     if(cs = el.currentStyle){
7854                         return cs[camel];
7855                     }
7856                     return null;
7857                 };
7858         }(),
7859
7860         /**
7861          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7862          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7863          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7864          * @return {Roo.Element} this
7865          */
7866         setStyle : function(prop, value){
7867             if(typeof prop == "string"){
7868                 
7869                 if (prop == 'float') {
7870                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7871                     return this;
7872                 }
7873                 
7874                 var camel;
7875                 if(!(camel = propCache[prop])){
7876                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7877                 }
7878                 
7879                 if(camel == 'opacity') {
7880                     this.setOpacity(value);
7881                 }else{
7882                     this.dom.style[camel] = value;
7883                 }
7884             }else{
7885                 for(var style in prop){
7886                     if(typeof prop[style] != "function"){
7887                        this.setStyle(style, prop[style]);
7888                     }
7889                 }
7890             }
7891             return this;
7892         },
7893
7894         /**
7895          * More flexible version of {@link #setStyle} for setting style properties.
7896          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7897          * a function which returns such a specification.
7898          * @return {Roo.Element} this
7899          */
7900         applyStyles : function(style){
7901             Roo.DomHelper.applyStyles(this.dom, style);
7902             return this;
7903         },
7904
7905         /**
7906           * 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).
7907           * @return {Number} The X position of the element
7908           */
7909         getX : function(){
7910             return D.getX(this.dom);
7911         },
7912
7913         /**
7914           * 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).
7915           * @return {Number} The Y position of the element
7916           */
7917         getY : function(){
7918             return D.getY(this.dom);
7919         },
7920
7921         /**
7922           * 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).
7923           * @return {Array} The XY position of the element
7924           */
7925         getXY : function(){
7926             return D.getXY(this.dom);
7927         },
7928
7929         /**
7930          * 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).
7931          * @param {Number} The X position of the element
7932          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7933          * @return {Roo.Element} this
7934          */
7935         setX : function(x, animate){
7936             if(!animate || !A){
7937                 D.setX(this.dom, x);
7938             }else{
7939                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7940             }
7941             return this;
7942         },
7943
7944         /**
7945          * 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).
7946          * @param {Number} The Y position of the element
7947          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7948          * @return {Roo.Element} this
7949          */
7950         setY : function(y, animate){
7951             if(!animate || !A){
7952                 D.setY(this.dom, y);
7953             }else{
7954                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7955             }
7956             return this;
7957         },
7958
7959         /**
7960          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7961          * @param {String} left The left CSS property value
7962          * @return {Roo.Element} this
7963          */
7964         setLeft : function(left){
7965             this.setStyle("left", this.addUnits(left));
7966             return this;
7967         },
7968
7969         /**
7970          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7971          * @param {String} top The top CSS property value
7972          * @return {Roo.Element} this
7973          */
7974         setTop : function(top){
7975             this.setStyle("top", this.addUnits(top));
7976             return this;
7977         },
7978
7979         /**
7980          * Sets the element's CSS right style.
7981          * @param {String} right The right CSS property value
7982          * @return {Roo.Element} this
7983          */
7984         setRight : function(right){
7985             this.setStyle("right", this.addUnits(right));
7986             return this;
7987         },
7988
7989         /**
7990          * Sets the element's CSS bottom style.
7991          * @param {String} bottom The bottom CSS property value
7992          * @return {Roo.Element} this
7993          */
7994         setBottom : function(bottom){
7995             this.setStyle("bottom", this.addUnits(bottom));
7996             return this;
7997         },
7998
7999         /**
8000          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8001          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8002          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
8003          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8004          * @return {Roo.Element} this
8005          */
8006         setXY : function(pos, animate){
8007             if(!animate || !A){
8008                 D.setXY(this.dom, pos);
8009             }else{
8010                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
8011             }
8012             return this;
8013         },
8014
8015         /**
8016          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8017          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8018          * @param {Number} x X value for new position (coordinates are page-based)
8019          * @param {Number} y Y value for new position (coordinates are page-based)
8020          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8021          * @return {Roo.Element} this
8022          */
8023         setLocation : function(x, y, animate){
8024             this.setXY([x, y], this.preanim(arguments, 2));
8025             return this;
8026         },
8027
8028         /**
8029          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8030          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8031          * @param {Number} x X value for new position (coordinates are page-based)
8032          * @param {Number} y Y value for new position (coordinates are page-based)
8033          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8034          * @return {Roo.Element} this
8035          */
8036         moveTo : function(x, y, animate){
8037             this.setXY([x, y], this.preanim(arguments, 2));
8038             return this;
8039         },
8040
8041         /**
8042          * Returns the region of the given element.
8043          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8044          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8045          */
8046         getRegion : function(){
8047             return D.getRegion(this.dom);
8048         },
8049
8050         /**
8051          * Returns the offset height of the element
8052          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8053          * @return {Number} The element's height
8054          */
8055         getHeight : function(contentHeight){
8056             var h = this.dom.offsetHeight || 0;
8057             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8058         },
8059
8060         /**
8061          * Returns the offset width of the element
8062          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8063          * @return {Number} The element's width
8064          */
8065         getWidth : function(contentWidth){
8066             var w = this.dom.offsetWidth || 0;
8067             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8068         },
8069
8070         /**
8071          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8072          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8073          * if a height has not been set using CSS.
8074          * @return {Number}
8075          */
8076         getComputedHeight : function(){
8077             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8078             if(!h){
8079                 h = parseInt(this.getStyle('height'), 10) || 0;
8080                 if(!this.isBorderBox()){
8081                     h += this.getFrameWidth('tb');
8082                 }
8083             }
8084             return h;
8085         },
8086
8087         /**
8088          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8089          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8090          * if a width has not been set using CSS.
8091          * @return {Number}
8092          */
8093         getComputedWidth : function(){
8094             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8095             if(!w){
8096                 w = parseInt(this.getStyle('width'), 10) || 0;
8097                 if(!this.isBorderBox()){
8098                     w += this.getFrameWidth('lr');
8099                 }
8100             }
8101             return w;
8102         },
8103
8104         /**
8105          * Returns the size of the element.
8106          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8107          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8108          */
8109         getSize : function(contentSize){
8110             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8111         },
8112
8113         /**
8114          * Returns the width and height of the viewport.
8115          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8116          */
8117         getViewSize : function(){
8118             var d = this.dom, doc = document, aw = 0, ah = 0;
8119             if(d == doc || d == doc.body){
8120                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8121             }else{
8122                 return {
8123                     width : d.clientWidth,
8124                     height: d.clientHeight
8125                 };
8126             }
8127         },
8128
8129         /**
8130          * Returns the value of the "value" attribute
8131          * @param {Boolean} asNumber true to parse the value as a number
8132          * @return {String/Number}
8133          */
8134         getValue : function(asNumber){
8135             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8136         },
8137
8138         // private
8139         adjustWidth : function(width){
8140             if(typeof width == "number"){
8141                 if(this.autoBoxAdjust && !this.isBorderBox()){
8142                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8143                 }
8144                 if(width < 0){
8145                     width = 0;
8146                 }
8147             }
8148             return width;
8149         },
8150
8151         // private
8152         adjustHeight : function(height){
8153             if(typeof height == "number"){
8154                if(this.autoBoxAdjust && !this.isBorderBox()){
8155                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8156                }
8157                if(height < 0){
8158                    height = 0;
8159                }
8160             }
8161             return height;
8162         },
8163
8164         /**
8165          * Set the width of the element
8166          * @param {Number} width The new width
8167          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8168          * @return {Roo.Element} this
8169          */
8170         setWidth : function(width, animate){
8171             width = this.adjustWidth(width);
8172             if(!animate || !A){
8173                 this.dom.style.width = this.addUnits(width);
8174             }else{
8175                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8176             }
8177             return this;
8178         },
8179
8180         /**
8181          * Set the height of the element
8182          * @param {Number} height The new height
8183          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8184          * @return {Roo.Element} this
8185          */
8186          setHeight : function(height, animate){
8187             height = this.adjustHeight(height);
8188             if(!animate || !A){
8189                 this.dom.style.height = this.addUnits(height);
8190             }else{
8191                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8192             }
8193             return this;
8194         },
8195
8196         /**
8197          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8198          * @param {Number} width The new width
8199          * @param {Number} height The new height
8200          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8201          * @return {Roo.Element} this
8202          */
8203          setSize : function(width, height, animate){
8204             if(typeof width == "object"){ // in case of object from getSize()
8205                 height = width.height; width = width.width;
8206             }
8207             width = this.adjustWidth(width); height = this.adjustHeight(height);
8208             if(!animate || !A){
8209                 this.dom.style.width = this.addUnits(width);
8210                 this.dom.style.height = this.addUnits(height);
8211             }else{
8212                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8213             }
8214             return this;
8215         },
8216
8217         /**
8218          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8219          * @param {Number} x X value for new position (coordinates are page-based)
8220          * @param {Number} y Y value for new position (coordinates are page-based)
8221          * @param {Number} width The new width
8222          * @param {Number} height The new height
8223          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8224          * @return {Roo.Element} this
8225          */
8226         setBounds : function(x, y, width, height, animate){
8227             if(!animate || !A){
8228                 this.setSize(width, height);
8229                 this.setLocation(x, y);
8230             }else{
8231                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8232                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8233                               this.preanim(arguments, 4), 'motion');
8234             }
8235             return this;
8236         },
8237
8238         /**
8239          * 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.
8240          * @param {Roo.lib.Region} region The region to fill
8241          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8242          * @return {Roo.Element} this
8243          */
8244         setRegion : function(region, animate){
8245             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8246             return this;
8247         },
8248
8249         /**
8250          * Appends an event handler
8251          *
8252          * @param {String}   eventName     The type of event to append
8253          * @param {Function} fn        The method the event invokes
8254          * @param {Object} scope       (optional) The scope (this object) of the fn
8255          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8256          */
8257         addListener : function(eventName, fn, scope, options)
8258         {
8259             if (eventName == 'dblclick') { // doublclick (touchstart) - faked on touch.
8260                 this.addListener('touchstart', this.onTapHandler, this);
8261             }
8262             
8263             // we need to handle a special case where dom element is a svg element.
8264             // in this case we do not actua
8265             if (!this.dom) {
8266                 return;
8267             }
8268             
8269             if (this.dom instanceof SVGElement && !(this.dom instanceof SVGSVGElement)) {
8270                 if (typeof(this.listeners[eventName]) == 'undefined') {
8271                     this.listeners[eventName] =  new Roo.util.Event(this, eventName);
8272                 }
8273                 this.listeners[eventName].addListener(fn, scope, options);
8274                 return;
8275             }
8276             
8277                 
8278             Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8279             
8280             
8281         },
8282         tapedTwice : false,
8283         onTapHandler : function(event)
8284         {
8285             if(!this.tapedTwice) {
8286                 this.tapedTwice = true;
8287                 var s = this;
8288                 setTimeout( function() {
8289                     s.tapedTwice = false;
8290                 }, 300 );
8291                 return;
8292             }
8293             event.preventDefault();
8294             var revent = new MouseEvent('dblclick',  {
8295                 view: window,
8296                 bubbles: true,
8297                 cancelable: true
8298             });
8299              
8300             this.dom.dispatchEvent(revent);
8301             //action on double tap goes below
8302              
8303         }, 
8304  
8305         /**
8306          * Removes an event handler from this element
8307          * @param {String} eventName the type of event to remove
8308          * @param {Function} fn the method the event invokes
8309          * @param {Function} scope (needed for svg fake listeners)
8310          * @return {Roo.Element} this
8311          */
8312         removeListener : function(eventName, fn, scope){
8313             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8314             if (typeof(this.listeners) == 'undefined'  || typeof(this.listeners[eventName]) == 'undefined') {
8315                 return this;
8316             }
8317             this.listeners[eventName].removeListener(fn, scope);
8318             return this;
8319         },
8320
8321         /**
8322          * Removes all previous added listeners from this element
8323          * @return {Roo.Element} this
8324          */
8325         removeAllListeners : function(){
8326             E.purgeElement(this.dom);
8327             this.listeners = {};
8328             return this;
8329         },
8330
8331         relayEvent : function(eventName, observable){
8332             this.on(eventName, function(e){
8333                 observable.fireEvent(eventName, e);
8334             });
8335         },
8336
8337         
8338         /**
8339          * Set the opacity of the element
8340          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8341          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8342          * @return {Roo.Element} this
8343          */
8344          setOpacity : function(opacity, animate){
8345             if(!animate || !A){
8346                 var s = this.dom.style;
8347                 if(Roo.isIE){
8348                     s.zoom = 1;
8349                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8350                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8351                 }else{
8352                     s.opacity = opacity;
8353                 }
8354             }else{
8355                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8356             }
8357             return this;
8358         },
8359
8360         /**
8361          * Gets the left X coordinate
8362          * @param {Boolean} local True to get the local css position instead of page coordinate
8363          * @return {Number}
8364          */
8365         getLeft : function(local){
8366             if(!local){
8367                 return this.getX();
8368             }else{
8369                 return parseInt(this.getStyle("left"), 10) || 0;
8370             }
8371         },
8372
8373         /**
8374          * Gets the right X coordinate of the element (element X position + element width)
8375          * @param {Boolean} local True to get the local css position instead of page coordinate
8376          * @return {Number}
8377          */
8378         getRight : function(local){
8379             if(!local){
8380                 return this.getX() + this.getWidth();
8381             }else{
8382                 return (this.getLeft(true) + this.getWidth()) || 0;
8383             }
8384         },
8385
8386         /**
8387          * Gets the top Y coordinate
8388          * @param {Boolean} local True to get the local css position instead of page coordinate
8389          * @return {Number}
8390          */
8391         getTop : function(local) {
8392             if(!local){
8393                 return this.getY();
8394             }else{
8395                 return parseInt(this.getStyle("top"), 10) || 0;
8396             }
8397         },
8398
8399         /**
8400          * Gets the bottom Y coordinate of the element (element Y position + element height)
8401          * @param {Boolean} local True to get the local css position instead of page coordinate
8402          * @return {Number}
8403          */
8404         getBottom : function(local){
8405             if(!local){
8406                 return this.getY() + this.getHeight();
8407             }else{
8408                 return (this.getTop(true) + this.getHeight()) || 0;
8409             }
8410         },
8411
8412         /**
8413         * Initializes positioning on this element. If a desired position is not passed, it will make the
8414         * the element positioned relative IF it is not already positioned.
8415         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8416         * @param {Number} zIndex (optional) The zIndex to apply
8417         * @param {Number} x (optional) Set the page X position
8418         * @param {Number} y (optional) Set the page Y position
8419         */
8420         position : function(pos, zIndex, x, y){
8421             if(!pos){
8422                if(this.getStyle('position') == 'static'){
8423                    this.setStyle('position', 'relative');
8424                }
8425             }else{
8426                 this.setStyle("position", pos);
8427             }
8428             if(zIndex){
8429                 this.setStyle("z-index", zIndex);
8430             }
8431             if(x !== undefined && y !== undefined){
8432                 this.setXY([x, y]);
8433             }else if(x !== undefined){
8434                 this.setX(x);
8435             }else if(y !== undefined){
8436                 this.setY(y);
8437             }
8438         },
8439
8440         /**
8441         * Clear positioning back to the default when the document was loaded
8442         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8443         * @return {Roo.Element} this
8444          */
8445         clearPositioning : function(value){
8446             value = value ||'';
8447             this.setStyle({
8448                 "left": value,
8449                 "right": value,
8450                 "top": value,
8451                 "bottom": value,
8452                 "z-index": "",
8453                 "position" : "static"
8454             });
8455             return this;
8456         },
8457
8458         /**
8459         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8460         * snapshot before performing an update and then restoring the element.
8461         * @return {Object}
8462         */
8463         getPositioning : function(){
8464             var l = this.getStyle("left");
8465             var t = this.getStyle("top");
8466             return {
8467                 "position" : this.getStyle("position"),
8468                 "left" : l,
8469                 "right" : l ? "" : this.getStyle("right"),
8470                 "top" : t,
8471                 "bottom" : t ? "" : this.getStyle("bottom"),
8472                 "z-index" : this.getStyle("z-index")
8473             };
8474         },
8475
8476         /**
8477          * Gets the width of the border(s) for the specified side(s)
8478          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8479          * passing lr would get the border (l)eft width + the border (r)ight width.
8480          * @return {Number} The width of the sides passed added together
8481          */
8482         getBorderWidth : function(side){
8483             return this.addStyles(side, El.borders);
8484         },
8485
8486         /**
8487          * Gets the width of the padding(s) for the specified side(s)
8488          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8489          * passing lr would get the padding (l)eft + the padding (r)ight.
8490          * @return {Number} The padding of the sides passed added together
8491          */
8492         getPadding : function(side){
8493             return this.addStyles(side, El.paddings);
8494         },
8495
8496         /**
8497         * Set positioning with an object returned by getPositioning().
8498         * @param {Object} posCfg
8499         * @return {Roo.Element} this
8500          */
8501         setPositioning : function(pc){
8502             this.applyStyles(pc);
8503             if(pc.right == "auto"){
8504                 this.dom.style.right = "";
8505             }
8506             if(pc.bottom == "auto"){
8507                 this.dom.style.bottom = "";
8508             }
8509             return this;
8510         },
8511
8512         // private
8513         fixDisplay : function(){
8514             if(this.getStyle("display") == "none"){
8515                 this.setStyle("visibility", "hidden");
8516                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8517                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8518                     this.setStyle("display", "block");
8519                 }
8520             }
8521         },
8522
8523         /**
8524          * Quick set left and top adding default units
8525          * @param {String} left The left CSS property value
8526          * @param {String} top The top CSS property value
8527          * @return {Roo.Element} this
8528          */
8529          setLeftTop : function(left, top){
8530             this.dom.style.left = this.addUnits(left);
8531             this.dom.style.top = this.addUnits(top);
8532             return this;
8533         },
8534
8535         /**
8536          * Move this element relative to its current position.
8537          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8538          * @param {Number} distance How far to move the element in pixels
8539          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8540          * @return {Roo.Element} this
8541          */
8542          move : function(direction, distance, animate){
8543             var xy = this.getXY();
8544             direction = direction.toLowerCase();
8545             switch(direction){
8546                 case "l":
8547                 case "left":
8548                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8549                     break;
8550                case "r":
8551                case "right":
8552                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8553                     break;
8554                case "t":
8555                case "top":
8556                case "up":
8557                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8558                     break;
8559                case "b":
8560                case "bottom":
8561                case "down":
8562                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8563                     break;
8564             }
8565             return this;
8566         },
8567
8568         /**
8569          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8570          * @return {Roo.Element} this
8571          */
8572         clip : function(){
8573             if(!this.isClipped){
8574                this.isClipped = true;
8575                this.originalClip = {
8576                    "o": this.getStyle("overflow"),
8577                    "x": this.getStyle("overflow-x"),
8578                    "y": this.getStyle("overflow-y")
8579                };
8580                this.setStyle("overflow", "hidden");
8581                this.setStyle("overflow-x", "hidden");
8582                this.setStyle("overflow-y", "hidden");
8583             }
8584             return this;
8585         },
8586
8587         /**
8588          *  Return clipping (overflow) to original clipping before clip() was called
8589          * @return {Roo.Element} this
8590          */
8591         unclip : function(){
8592             if(this.isClipped){
8593                 this.isClipped = false;
8594                 var o = this.originalClip;
8595                 if(o.o){this.setStyle("overflow", o.o);}
8596                 if(o.x){this.setStyle("overflow-x", o.x);}
8597                 if(o.y){this.setStyle("overflow-y", o.y);}
8598             }
8599             return this;
8600         },
8601
8602
8603         /**
8604          * Gets the x,y coordinates specified by the anchor position on the element.
8605          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8606          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8607          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8608          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8609          * @return {Array} [x, y] An array containing the element's x and y coordinates
8610          */
8611         getAnchorXY : function(anchor, local, s){
8612             //Passing a different size is useful for pre-calculating anchors,
8613             //especially for anchored animations that change the el size.
8614
8615             var w, h, vp = false;
8616             if(!s){
8617                 var d = this.dom;
8618                 if(d == document.body || d == document){
8619                     vp = true;
8620                     w = D.getViewWidth(); h = D.getViewHeight();
8621                 }else{
8622                     w = this.getWidth(); h = this.getHeight();
8623                 }
8624             }else{
8625                 w = s.width;  h = s.height;
8626             }
8627             var x = 0, y = 0, r = Math.round;
8628             switch((anchor || "tl").toLowerCase()){
8629                 case "c":
8630                     x = r(w*.5);
8631                     y = r(h*.5);
8632                 break;
8633                 case "t":
8634                     x = r(w*.5);
8635                     y = 0;
8636                 break;
8637                 case "l":
8638                     x = 0;
8639                     y = r(h*.5);
8640                 break;
8641                 case "r":
8642                     x = w;
8643                     y = r(h*.5);
8644                 break;
8645                 case "b":
8646                     x = r(w*.5);
8647                     y = h;
8648                 break;
8649                 case "tl":
8650                     x = 0;
8651                     y = 0;
8652                 break;
8653                 case "bl":
8654                     x = 0;
8655                     y = h;
8656                 break;
8657                 case "br":
8658                     x = w;
8659                     y = h;
8660                 break;
8661                 case "tr":
8662                     x = w;
8663                     y = 0;
8664                 break;
8665             }
8666             if(local === true){
8667                 return [x, y];
8668             }
8669             if(vp){
8670                 var sc = this.getScroll();
8671                 return [x + sc.left, y + sc.top];
8672             }
8673             //Add the element's offset xy
8674             var o = this.getXY();
8675             return [x+o[0], y+o[1]];
8676         },
8677
8678         /**
8679          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8680          * supported position values.
8681          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8682          * @param {String} position The position to align to.
8683          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8684          * @return {Array} [x, y]
8685          */
8686         getAlignToXY : function(el, p, o)
8687         {
8688             el = Roo.get(el);
8689             var d = this.dom;
8690             if(!el.dom){
8691                 throw "Element.alignTo with an element that doesn't exist";
8692             }
8693             var c = false; //constrain to viewport
8694             var p1 = "", p2 = "";
8695             o = o || [0,0];
8696
8697             if(!p){
8698                 p = "tl-bl";
8699             }else if(p == "?"){
8700                 p = "tl-bl?";
8701             }else if(p.indexOf("-") == -1){
8702                 p = "tl-" + p;
8703             }
8704             p = p.toLowerCase();
8705             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8706             if(!m){
8707                throw "Element.alignTo with an invalid alignment " + p;
8708             }
8709             p1 = m[1]; p2 = m[2]; c = !!m[3];
8710
8711             //Subtract the aligned el's internal xy from the target's offset xy
8712             //plus custom offset to get the aligned el's new offset xy
8713             var a1 = this.getAnchorXY(p1, true);
8714             var a2 = el.getAnchorXY(p2, false);
8715             var x = a2[0] - a1[0] + o[0];
8716             var y = a2[1] - a1[1] + o[1];
8717             if(c){
8718                 //constrain the aligned el to viewport if necessary
8719                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8720                 // 5px of margin for ie
8721                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8722
8723                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8724                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8725                 //otherwise swap the aligned el to the opposite border of the target.
8726                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8727                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8728                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8729                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8730
8731                var doc = document;
8732                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8733                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8734
8735                if((x+w) > dw + scrollX){
8736                     x = swapX ? r.left-w : dw+scrollX-w;
8737                 }
8738                if(x < scrollX){
8739                    x = swapX ? r.right : scrollX;
8740                }
8741                if((y+h) > dh + scrollY){
8742                     y = swapY ? r.top-h : dh+scrollY-h;
8743                 }
8744                if (y < scrollY){
8745                    y = swapY ? r.bottom : scrollY;
8746                }
8747             }
8748             return [x,y];
8749         },
8750
8751         // private
8752         getConstrainToXY : function(){
8753             var os = {top:0, left:0, bottom:0, right: 0};
8754
8755             return function(el, local, offsets, proposedXY){
8756                 el = Roo.get(el);
8757                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8758
8759                 var vw, vh, vx = 0, vy = 0;
8760                 if(el.dom == document.body || el.dom == document){
8761                     vw = Roo.lib.Dom.getViewWidth();
8762                     vh = Roo.lib.Dom.getViewHeight();
8763                 }else{
8764                     vw = el.dom.clientWidth;
8765                     vh = el.dom.clientHeight;
8766                     if(!local){
8767                         var vxy = el.getXY();
8768                         vx = vxy[0];
8769                         vy = vxy[1];
8770                     }
8771                 }
8772
8773                 var s = el.getScroll();
8774
8775                 vx += offsets.left + s.left;
8776                 vy += offsets.top + s.top;
8777
8778                 vw -= offsets.right;
8779                 vh -= offsets.bottom;
8780
8781                 var vr = vx+vw;
8782                 var vb = vy+vh;
8783
8784                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8785                 var x = xy[0], y = xy[1];
8786                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8787
8788                 // only move it if it needs it
8789                 var moved = false;
8790
8791                 // first validate right/bottom
8792                 if((x + w) > vr){
8793                     x = vr - w;
8794                     moved = true;
8795                 }
8796                 if((y + h) > vb){
8797                     y = vb - h;
8798                     moved = true;
8799                 }
8800                 // then make sure top/left isn't negative
8801                 if(x < vx){
8802                     x = vx;
8803                     moved = true;
8804                 }
8805                 if(y < vy){
8806                     y = vy;
8807                     moved = true;
8808                 }
8809                 return moved ? [x, y] : false;
8810             };
8811         }(),
8812
8813         // private
8814         adjustForConstraints : function(xy, parent, offsets){
8815             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8816         },
8817
8818         /**
8819          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8820          * document it aligns it to the viewport.
8821          * The position parameter is optional, and can be specified in any one of the following formats:
8822          * <ul>
8823          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8824          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8825          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8826          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8827          *   <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
8828          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8829          * </ul>
8830          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8831          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8832          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8833          * that specified in order to enforce the viewport constraints.
8834          * Following are all of the supported anchor positions:
8835     <pre>
8836     Value  Description
8837     -----  -----------------------------
8838     tl     The top left corner (default)
8839     t      The center of the top edge
8840     tr     The top right corner
8841     l      The center of the left edge
8842     c      In the center of the element
8843     r      The center of the right edge
8844     bl     The bottom left corner
8845     b      The center of the bottom edge
8846     br     The bottom right corner
8847     </pre>
8848     Example Usage:
8849     <pre><code>
8850     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8851     el.alignTo("other-el");
8852
8853     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8854     el.alignTo("other-el", "tr?");
8855
8856     // align the bottom right corner of el with the center left edge of other-el
8857     el.alignTo("other-el", "br-l?");
8858
8859     // align the center of el with the bottom left corner of other-el and
8860     // adjust the x position by -6 pixels (and the y position by 0)
8861     el.alignTo("other-el", "c-bl", [-6, 0]);
8862     </code></pre>
8863          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8864          * @param {String} position The position to align to.
8865          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8866          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8867          * @return {Roo.Element} this
8868          */
8869         alignTo : function(element, position, offsets, animate){
8870             var xy = this.getAlignToXY(element, position, offsets);
8871             this.setXY(xy, this.preanim(arguments, 3));
8872             return this;
8873         },
8874
8875         /**
8876          * Anchors an element to another element and realigns it when the window is resized.
8877          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8878          * @param {String} position The position to align to.
8879          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8880          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8881          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8882          * is a number, it is used as the buffer delay (defaults to 50ms).
8883          * @param {Function} callback The function to call after the animation finishes
8884          * @return {Roo.Element} this
8885          */
8886         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8887             var action = function(){
8888                 this.alignTo(el, alignment, offsets, animate);
8889                 Roo.callback(callback, this);
8890             };
8891             Roo.EventManager.onWindowResize(action, this);
8892             var tm = typeof monitorScroll;
8893             if(tm != 'undefined'){
8894                 Roo.EventManager.on(window, 'scroll', action, this,
8895                     {buffer: tm == 'number' ? monitorScroll : 50});
8896             }
8897             action.call(this); // align immediately
8898             return this;
8899         },
8900         /**
8901          * Clears any opacity settings from this element. Required in some cases for IE.
8902          * @return {Roo.Element} this
8903          */
8904         clearOpacity : function(){
8905             if (window.ActiveXObject) {
8906                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8907                     this.dom.style.filter = "";
8908                 }
8909             } else {
8910                 this.dom.style.opacity = "";
8911                 this.dom.style["-moz-opacity"] = "";
8912                 this.dom.style["-khtml-opacity"] = "";
8913             }
8914             return this;
8915         },
8916
8917         /**
8918          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8919          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8920          * @return {Roo.Element} this
8921          */
8922         hide : function(animate){
8923             this.setVisible(false, this.preanim(arguments, 0));
8924             return this;
8925         },
8926
8927         /**
8928         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8929         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8930          * @return {Roo.Element} this
8931          */
8932         show : function(animate){
8933             this.setVisible(true, this.preanim(arguments, 0));
8934             return this;
8935         },
8936
8937         /**
8938          * @private Test if size has a unit, otherwise appends the default
8939          */
8940         addUnits : function(size){
8941             return Roo.Element.addUnits(size, this.defaultUnit);
8942         },
8943
8944         /**
8945          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8946          * @return {Roo.Element} this
8947          */
8948         beginMeasure : function(){
8949             var el = this.dom;
8950             if(el.offsetWidth || el.offsetHeight){
8951                 return this; // offsets work already
8952             }
8953             var changed = [];
8954             var p = this.dom, b = document.body; // start with this element
8955             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8956                 var pe = Roo.get(p);
8957                 if(pe.getStyle('display') == 'none'){
8958                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8959                     p.style.visibility = "hidden";
8960                     p.style.display = "block";
8961                 }
8962                 p = p.parentNode;
8963             }
8964             this._measureChanged = changed;
8965             return this;
8966
8967         },
8968
8969         /**
8970          * Restores displays to before beginMeasure was called
8971          * @return {Roo.Element} this
8972          */
8973         endMeasure : function(){
8974             var changed = this._measureChanged;
8975             if(changed){
8976                 for(var i = 0, len = changed.length; i < len; i++) {
8977                     var r = changed[i];
8978                     r.el.style.visibility = r.visibility;
8979                     r.el.style.display = "none";
8980                 }
8981                 this._measureChanged = null;
8982             }
8983             return this;
8984         },
8985
8986         /**
8987         * Update the innerHTML of this element, optionally searching for and processing scripts
8988         * @param {String} html The new HTML
8989         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8990         * @param {Function} callback For async script loading you can be noticed when the update completes
8991         * @return {Roo.Element} this
8992          */
8993         update : function(html, loadScripts, callback){
8994             if(typeof html == "undefined"){
8995                 html = "";
8996             }
8997             if(loadScripts !== true){
8998                 this.dom.innerHTML = html;
8999                 if(typeof callback == "function"){
9000                     callback();
9001                 }
9002                 return this;
9003             }
9004             var id = Roo.id();
9005             var dom = this.dom;
9006
9007             html += '<span id="' + id + '"></span>';
9008
9009             E.onAvailable(id, function(){
9010                 var hd = document.getElementsByTagName("head")[0];
9011                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
9012                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
9013                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
9014
9015                 var match;
9016                 while(match = re.exec(html)){
9017                     var attrs = match[1];
9018                     var srcMatch = attrs ? attrs.match(srcRe) : false;
9019                     if(srcMatch && srcMatch[2]){
9020                        var s = document.createElement("script");
9021                        s.src = srcMatch[2];
9022                        var typeMatch = attrs.match(typeRe);
9023                        if(typeMatch && typeMatch[2]){
9024                            s.type = typeMatch[2];
9025                        }
9026                        hd.appendChild(s);
9027                     }else if(match[2] && match[2].length > 0){
9028                         if(window.execScript) {
9029                            window.execScript(match[2]);
9030                         } else {
9031                             /**
9032                              * eval:var:id
9033                              * eval:var:dom
9034                              * eval:var:html
9035                              * 
9036                              */
9037                            window.eval(match[2]);
9038                         }
9039                     }
9040                 }
9041                 var el = document.getElementById(id);
9042                 if(el){el.parentNode.removeChild(el);}
9043                 if(typeof callback == "function"){
9044                     callback();
9045                 }
9046             });
9047             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
9048             return this;
9049         },
9050
9051         /**
9052          * Direct access to the UpdateManager update() method (takes the same parameters).
9053          * @param {String/Function} url The url for this request or a function to call to get the url
9054          * @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}
9055          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9056          * @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.
9057          * @return {Roo.Element} this
9058          */
9059         load : function(){
9060             var um = this.getUpdateManager();
9061             um.update.apply(um, arguments);
9062             return this;
9063         },
9064
9065         /**
9066         * Gets this element's UpdateManager
9067         * @return {Roo.UpdateManager} The UpdateManager
9068         */
9069         getUpdateManager : function(){
9070             if(!this.updateManager){
9071                 this.updateManager = new Roo.UpdateManager(this);
9072             }
9073             return this.updateManager;
9074         },
9075
9076         /**
9077          * Disables text selection for this element (normalized across browsers)
9078          * @return {Roo.Element} this
9079          */
9080         unselectable : function(){
9081             this.dom.unselectable = "on";
9082             this.swallowEvent("selectstart", true);
9083             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9084             this.addClass("x-unselectable");
9085             return this;
9086         },
9087
9088         /**
9089         * Calculates the x, y to center this element on the screen
9090         * @return {Array} The x, y values [x, y]
9091         */
9092         getCenterXY : function(){
9093             return this.getAlignToXY(document, 'c-c');
9094         },
9095
9096         /**
9097         * Centers the Element in either the viewport, or another Element.
9098         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9099         */
9100         center : function(centerIn){
9101             this.alignTo(centerIn || document, 'c-c');
9102             return this;
9103         },
9104
9105         /**
9106          * Tests various css rules/browsers to determine if this element uses a border box
9107          * @return {Boolean}
9108          */
9109         isBorderBox : function(){
9110             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9111         },
9112
9113         /**
9114          * Return a box {x, y, width, height} that can be used to set another elements
9115          * size/location to match this element.
9116          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9117          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9118          * @return {Object} box An object in the format {x, y, width, height}
9119          */
9120         getBox : function(contentBox, local){
9121             var xy;
9122             if(!local){
9123                 xy = this.getXY();
9124             }else{
9125                 var left = parseInt(this.getStyle("left"), 10) || 0;
9126                 var top = parseInt(this.getStyle("top"), 10) || 0;
9127                 xy = [left, top];
9128             }
9129             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9130             if(!contentBox){
9131                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9132             }else{
9133                 var l = this.getBorderWidth("l")+this.getPadding("l");
9134                 var r = this.getBorderWidth("r")+this.getPadding("r");
9135                 var t = this.getBorderWidth("t")+this.getPadding("t");
9136                 var b = this.getBorderWidth("b")+this.getPadding("b");
9137                 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)};
9138             }
9139             bx.right = bx.x + bx.width;
9140             bx.bottom = bx.y + bx.height;
9141             return bx;
9142         },
9143
9144         /**
9145          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9146          for more information about the sides.
9147          * @param {String} sides
9148          * @return {Number}
9149          */
9150         getFrameWidth : function(sides, onlyContentBox){
9151             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9152         },
9153
9154         /**
9155          * 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.
9156          * @param {Object} box The box to fill {x, y, width, height}
9157          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9158          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9159          * @return {Roo.Element} this
9160          */
9161         setBox : function(box, adjust, animate){
9162             var w = box.width, h = box.height;
9163             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9164                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9165                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9166             }
9167             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9168             return this;
9169         },
9170
9171         /**
9172          * Forces the browser to repaint this element
9173          * @return {Roo.Element} this
9174          */
9175          repaint : function(){
9176             var dom = this.dom;
9177             this.addClass("x-repaint");
9178             setTimeout(function(){
9179                 Roo.get(dom).removeClass("x-repaint");
9180             }, 1);
9181             return this;
9182         },
9183
9184         /**
9185          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9186          * then it returns the calculated width of the sides (see getPadding)
9187          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9188          * @return {Object/Number}
9189          */
9190         getMargins : function(side){
9191             if(!side){
9192                 return {
9193                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9194                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9195                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9196                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9197                 };
9198             }else{
9199                 return this.addStyles(side, El.margins);
9200              }
9201         },
9202
9203         // private
9204         addStyles : function(sides, styles){
9205             var val = 0, v, w;
9206             for(var i = 0, len = sides.length; i < len; i++){
9207                 v = this.getStyle(styles[sides.charAt(i)]);
9208                 if(v){
9209                      w = parseInt(v, 10);
9210                      if(w){ val += w; }
9211                 }
9212             }
9213             return val;
9214         },
9215
9216         /**
9217          * Creates a proxy element of this element
9218          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9219          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9220          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9221          * @return {Roo.Element} The new proxy element
9222          */
9223         createProxy : function(config, renderTo, matchBox){
9224             if(renderTo){
9225                 renderTo = Roo.getDom(renderTo);
9226             }else{
9227                 renderTo = document.body;
9228             }
9229             config = typeof config == "object" ?
9230                 config : {tag : "div", cls: config};
9231             var proxy = Roo.DomHelper.append(renderTo, config, true);
9232             if(matchBox){
9233                proxy.setBox(this.getBox());
9234             }
9235             return proxy;
9236         },
9237
9238         /**
9239          * Puts a mask over this element to disable user interaction. Requires core.css.
9240          * This method can only be applied to elements which accept child nodes.
9241          * @param {String} msg (optional) A message to display in the mask
9242          * @param {String} msgCls (optional) A css class to apply to the msg element
9243          * @return {Element} The mask  element
9244          */
9245         mask : function(msg, msgCls)
9246         {
9247             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9248                 this.setStyle("position", "relative");
9249             }
9250             if(!this._mask){
9251                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9252             }
9253             
9254             this.addClass("x-masked");
9255             this._mask.setDisplayed(true);
9256             
9257             // we wander
9258             var z = 0;
9259             var dom = this.dom;
9260             while (dom && dom.style) {
9261                 if (!isNaN(parseInt(dom.style.zIndex))) {
9262                     z = Math.max(z, parseInt(dom.style.zIndex));
9263                 }
9264                 dom = dom.parentNode;
9265             }
9266             // if we are masking the body - then it hides everything..
9267             if (this.dom == document.body) {
9268                 z = 1000000;
9269                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9270                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9271             }
9272            
9273             if(typeof msg == 'string'){
9274                 if(!this._maskMsg){
9275                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9276                         cls: "roo-el-mask-msg", 
9277                         cn: [
9278                             {
9279                                 tag: 'i',
9280                                 cls: 'fa fa-spinner fa-spin'
9281                             },
9282                             {
9283                                 tag: 'div'
9284                             }   
9285                         ]
9286                     }, true);
9287                 }
9288                 var mm = this._maskMsg;
9289                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9290                 if (mm.dom.lastChild) { // weird IE issue?
9291                     mm.dom.lastChild.innerHTML = msg;
9292                 }
9293                 mm.setDisplayed(true);
9294                 mm.center(this);
9295                 mm.setStyle('z-index', z + 102);
9296             }
9297             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9298                 this._mask.setHeight(this.getHeight());
9299             }
9300             this._mask.setStyle('z-index', z + 100);
9301             
9302             return this._mask;
9303         },
9304
9305         /**
9306          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9307          * it is cached for reuse.
9308          */
9309         unmask : function(removeEl){
9310             if(this._mask){
9311                 if(removeEl === true){
9312                     this._mask.remove();
9313                     delete this._mask;
9314                     if(this._maskMsg){
9315                         this._maskMsg.remove();
9316                         delete this._maskMsg;
9317                     }
9318                 }else{
9319                     this._mask.setDisplayed(false);
9320                     if(this._maskMsg){
9321                         this._maskMsg.setDisplayed(false);
9322                     }
9323                 }
9324             }
9325             this.removeClass("x-masked");
9326         },
9327
9328         /**
9329          * Returns true if this element is masked
9330          * @return {Boolean}
9331          */
9332         isMasked : function(){
9333             return this._mask && this._mask.isVisible();
9334         },
9335
9336         /**
9337          * Creates an iframe shim for this element to keep selects and other windowed objects from
9338          * showing through.
9339          * @return {Roo.Element} The new shim element
9340          */
9341         createShim : function(){
9342             var el = document.createElement('iframe');
9343             el.frameBorder = 'no';
9344             el.className = 'roo-shim';
9345             if(Roo.isIE && Roo.isSecure){
9346                 el.src = Roo.SSL_SECURE_URL;
9347             }
9348             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9349             shim.autoBoxAdjust = false;
9350             return shim;
9351         },
9352
9353         /**
9354          * Removes this element from the DOM and deletes it from the cache
9355          */
9356         remove : function(){
9357             if(this.dom.parentNode){
9358                 this.dom.parentNode.removeChild(this.dom);
9359             }
9360             delete El.cache[this.dom.id];
9361         },
9362
9363         /**
9364          * Sets up event handlers to add and remove a css class when the mouse is over this element
9365          * @param {String} className
9366          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9367          * mouseout events for children elements
9368          * @return {Roo.Element} this
9369          */
9370         addClassOnOver : function(className, preventFlicker){
9371             this.on("mouseover", function(){
9372                 Roo.fly(this, '_internal').addClass(className);
9373             }, this.dom);
9374             var removeFn = function(e){
9375                 if(preventFlicker !== true || !e.within(this, true)){
9376                     Roo.fly(this, '_internal').removeClass(className);
9377                 }
9378             };
9379             this.on("mouseout", removeFn, this.dom);
9380             return this;
9381         },
9382
9383         /**
9384          * Sets up event handlers to add and remove a css class when this element has the focus
9385          * @param {String} className
9386          * @return {Roo.Element} this
9387          */
9388         addClassOnFocus : function(className){
9389             this.on("focus", function(){
9390                 Roo.fly(this, '_internal').addClass(className);
9391             }, this.dom);
9392             this.on("blur", function(){
9393                 Roo.fly(this, '_internal').removeClass(className);
9394             }, this.dom);
9395             return this;
9396         },
9397         /**
9398          * 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)
9399          * @param {String} className
9400          * @return {Roo.Element} this
9401          */
9402         addClassOnClick : function(className){
9403             var dom = this.dom;
9404             this.on("mousedown", function(){
9405                 Roo.fly(dom, '_internal').addClass(className);
9406                 var d = Roo.get(document);
9407                 var fn = function(){
9408                     Roo.fly(dom, '_internal').removeClass(className);
9409                     d.removeListener("mouseup", fn);
9410                 };
9411                 d.on("mouseup", fn);
9412             });
9413             return this;
9414         },
9415
9416         /**
9417          * Stops the specified event from bubbling and optionally prevents the default action
9418          * @param {String} eventName
9419          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9420          * @return {Roo.Element} this
9421          */
9422         swallowEvent : function(eventName, preventDefault){
9423             var fn = function(e){
9424                 e.stopPropagation();
9425                 if(preventDefault){
9426                     e.preventDefault();
9427                 }
9428             };
9429             if(eventName instanceof Array){
9430                 for(var i = 0, len = eventName.length; i < len; i++){
9431                      this.on(eventName[i], fn);
9432                 }
9433                 return this;
9434             }
9435             this.on(eventName, fn);
9436             return this;
9437         },
9438
9439         /**
9440          * @private
9441          */
9442         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9443
9444         /**
9445          * Sizes this element to its parent element's dimensions performing
9446          * neccessary box adjustments.
9447          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9448          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9449          * @return {Roo.Element} this
9450          */
9451         fitToParent : function(monitorResize, targetParent) {
9452           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9453           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9454           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9455             return this;
9456           }
9457           var p = Roo.get(targetParent || this.dom.parentNode);
9458           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9459           if (monitorResize === true) {
9460             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9461             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9462           }
9463           return this;
9464         },
9465
9466         /**
9467          * Gets the next sibling, skipping text nodes
9468          * @return {HTMLElement} The next sibling or null
9469          */
9470         getNextSibling : function(){
9471             var n = this.dom.nextSibling;
9472             while(n && n.nodeType != 1){
9473                 n = n.nextSibling;
9474             }
9475             return n;
9476         },
9477
9478         /**
9479          * Gets the previous sibling, skipping text nodes
9480          * @return {HTMLElement} The previous sibling or null
9481          */
9482         getPrevSibling : function(){
9483             var n = this.dom.previousSibling;
9484             while(n && n.nodeType != 1){
9485                 n = n.previousSibling;
9486             }
9487             return n;
9488         },
9489
9490
9491         /**
9492          * Appends the passed element(s) to this element
9493          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9494          * @return {Roo.Element} this
9495          */
9496         appendChild: function(el){
9497             el = Roo.get(el);
9498             el.appendTo(this);
9499             return this;
9500         },
9501
9502         /**
9503          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9504          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9505          * automatically generated with the specified attributes.
9506          * @param {HTMLElement} insertBefore (optional) a child element of this element
9507          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9508          * @return {Roo.Element} The new child element
9509          */
9510         createChild: function(config, insertBefore, returnDom){
9511             config = config || {tag:'div'};
9512             if(insertBefore){
9513                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9514             }
9515             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9516         },
9517
9518         /**
9519          * Appends this element to the passed element
9520          * @param {String/HTMLElement/Element} el The new parent element
9521          * @return {Roo.Element} this
9522          */
9523         appendTo: function(el){
9524             el = Roo.getDom(el);
9525             el.appendChild(this.dom);
9526             return this;
9527         },
9528
9529         /**
9530          * Inserts this element before the passed element in the DOM
9531          * @param {String/HTMLElement/Element} el The element to insert before
9532          * @return {Roo.Element} this
9533          */
9534         insertBefore: function(el){
9535             el = Roo.getDom(el);
9536             el.parentNode.insertBefore(this.dom, el);
9537             return this;
9538         },
9539
9540         /**
9541          * Inserts this element after the passed element in the DOM
9542          * @param {String/HTMLElement/Element} el The element to insert after
9543          * @return {Roo.Element} this
9544          */
9545         insertAfter: function(el){
9546             el = Roo.getDom(el);
9547             el.parentNode.insertBefore(this.dom, el.nextSibling);
9548             return this;
9549         },
9550
9551         /**
9552          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9553          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9554          * @return {Roo.Element} The new child
9555          */
9556         insertFirst: function(el, returnDom){
9557             el = el || {};
9558             if(typeof el == 'object' && !el.nodeType){ // dh config
9559                 return this.createChild(el, this.dom.firstChild, returnDom);
9560             }else{
9561                 el = Roo.getDom(el);
9562                 this.dom.insertBefore(el, this.dom.firstChild);
9563                 return !returnDom ? Roo.get(el) : el;
9564             }
9565         },
9566
9567         /**
9568          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9569          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9570          * @param {String} where (optional) 'before' or 'after' defaults to before
9571          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9572          * @return {Roo.Element} the inserted Element
9573          */
9574         insertSibling: function(el, where, returnDom){
9575             where = where ? where.toLowerCase() : 'before';
9576             el = el || {};
9577             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9578
9579             if(typeof el == 'object' && !el.nodeType){ // dh config
9580                 if(where == 'after' && !this.dom.nextSibling){
9581                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9582                 }else{
9583                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9584                 }
9585
9586             }else{
9587                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9588                             where == 'before' ? this.dom : this.dom.nextSibling);
9589                 if(!returnDom){
9590                     rt = Roo.get(rt);
9591                 }
9592             }
9593             return rt;
9594         },
9595
9596         /**
9597          * Creates and wraps this element with another element
9598          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9599          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9600          * @return {HTMLElement/Element} The newly created wrapper element
9601          */
9602         wrap: function(config, returnDom){
9603             if(!config){
9604                 config = {tag: "div"};
9605             }
9606             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9607             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9608             return newEl;
9609         },
9610
9611         /**
9612          * Replaces the passed element with this element
9613          * @param {String/HTMLElement/Element} el The element to replace
9614          * @return {Roo.Element} this
9615          */
9616         replace: function(el){
9617             el = Roo.get(el);
9618             this.insertBefore(el);
9619             el.remove();
9620             return this;
9621         },
9622
9623         /**
9624          * Inserts an html fragment into this element
9625          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9626          * @param {String} html The HTML fragment
9627          * @param {Boolean} returnEl True to return an Roo.Element
9628          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9629          */
9630         insertHtml : function(where, html, returnEl){
9631             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9632             return returnEl ? Roo.get(el) : el;
9633         },
9634
9635         /**
9636          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9637          * @param {Object} o The object with the attributes
9638          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9639          * @return {Roo.Element} this
9640          */
9641         set : function(o, useSet){
9642             var el = this.dom;
9643             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9644             for(var attr in o){
9645                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9646                 if(attr=="cls"){
9647                     el.className = o["cls"];
9648                 }else{
9649                     if(useSet) {
9650                         el.setAttribute(attr, o[attr]);
9651                     } else {
9652                         el[attr] = o[attr];
9653                     }
9654                 }
9655             }
9656             if(o.style){
9657                 Roo.DomHelper.applyStyles(el, o.style);
9658             }
9659             return this;
9660         },
9661
9662         /**
9663          * Convenience method for constructing a KeyMap
9664          * @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:
9665          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9666          * @param {Function} fn The function to call
9667          * @param {Object} scope (optional) The scope of the function
9668          * @return {Roo.KeyMap} The KeyMap created
9669          */
9670         addKeyListener : function(key, fn, scope){
9671             var config;
9672             if(typeof key != "object" || key instanceof Array){
9673                 config = {
9674                     key: key,
9675                     fn: fn,
9676                     scope: scope
9677                 };
9678             }else{
9679                 config = {
9680                     key : key.key,
9681                     shift : key.shift,
9682                     ctrl : key.ctrl,
9683                     alt : key.alt,
9684                     fn: fn,
9685                     scope: scope
9686                 };
9687             }
9688             return new Roo.KeyMap(this, config);
9689         },
9690
9691         /**
9692          * Creates a KeyMap for this element
9693          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9694          * @return {Roo.KeyMap} The KeyMap created
9695          */
9696         addKeyMap : function(config){
9697             return new Roo.KeyMap(this, config);
9698         },
9699
9700         /**
9701          * Returns true if this element is scrollable.
9702          * @return {Boolean}
9703          */
9704          isScrollable : function(){
9705             var dom = this.dom;
9706             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9707         },
9708
9709         /**
9710          * 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().
9711          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9712          * @param {Number} value The new scroll value
9713          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9714          * @return {Element} this
9715          */
9716
9717         scrollTo : function(side, value, animate){
9718             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9719             if(!animate || !A){
9720                 this.dom[prop] = value;
9721             }else{
9722                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9723                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9724             }
9725             return this;
9726         },
9727
9728         /**
9729          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9730          * within this element's scrollable range.
9731          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9732          * @param {Number} distance How far to scroll the element in pixels
9733          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9734          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9735          * was scrolled as far as it could go.
9736          */
9737          scroll : function(direction, distance, animate){
9738              if(!this.isScrollable()){
9739                  return;
9740              }
9741              var el = this.dom;
9742              var l = el.scrollLeft, t = el.scrollTop;
9743              var w = el.scrollWidth, h = el.scrollHeight;
9744              var cw = el.clientWidth, ch = el.clientHeight;
9745              direction = direction.toLowerCase();
9746              var scrolled = false;
9747              var a = this.preanim(arguments, 2);
9748              switch(direction){
9749                  case "l":
9750                  case "left":
9751                      if(w - l > cw){
9752                          var v = Math.min(l + distance, w-cw);
9753                          this.scrollTo("left", v, a);
9754                          scrolled = true;
9755                      }
9756                      break;
9757                 case "r":
9758                 case "right":
9759                      if(l > 0){
9760                          var v = Math.max(l - distance, 0);
9761                          this.scrollTo("left", v, a);
9762                          scrolled = true;
9763                      }
9764                      break;
9765                 case "t":
9766                 case "top":
9767                 case "up":
9768                      if(t > 0){
9769                          var v = Math.max(t - distance, 0);
9770                          this.scrollTo("top", v, a);
9771                          scrolled = true;
9772                      }
9773                      break;
9774                 case "b":
9775                 case "bottom":
9776                 case "down":
9777                      if(h - t > ch){
9778                          var v = Math.min(t + distance, h-ch);
9779                          this.scrollTo("top", v, a);
9780                          scrolled = true;
9781                      }
9782                      break;
9783              }
9784              return scrolled;
9785         },
9786
9787         /**
9788          * Translates the passed page coordinates into left/top css values for this element
9789          * @param {Number/Array} x The page x or an array containing [x, y]
9790          * @param {Number} y The page y
9791          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9792          */
9793         translatePoints : function(x, y){
9794             if(typeof x == 'object' || x instanceof Array){
9795                 y = x[1]; x = x[0];
9796             }
9797             var p = this.getStyle('position');
9798             var o = this.getXY();
9799
9800             var l = parseInt(this.getStyle('left'), 10);
9801             var t = parseInt(this.getStyle('top'), 10);
9802
9803             if(isNaN(l)){
9804                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9805             }
9806             if(isNaN(t)){
9807                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9808             }
9809
9810             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9811         },
9812
9813         /**
9814          * Returns the current scroll position of the element.
9815          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9816          */
9817         getScroll : function(){
9818             var d = this.dom, doc = document;
9819             if(d == doc || d == doc.body){
9820                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9821                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9822                 return {left: l, top: t};
9823             }else{
9824                 return {left: d.scrollLeft, top: d.scrollTop};
9825             }
9826         },
9827
9828         /**
9829          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9830          * are convert to standard 6 digit hex color.
9831          * @param {String} attr The css attribute
9832          * @param {String} defaultValue The default value to use when a valid color isn't found
9833          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9834          * YUI color anims.
9835          */
9836         getColor : function(attr, defaultValue, prefix){
9837             var v = this.getStyle(attr);
9838             if(!v || v == "transparent" || v == "inherit") {
9839                 return defaultValue;
9840             }
9841             var color = typeof prefix == "undefined" ? "#" : prefix;
9842             if(v.substr(0, 4) == "rgb("){
9843                 var rvs = v.slice(4, v.length -1).split(",");
9844                 for(var i = 0; i < 3; i++){
9845                     var h = parseInt(rvs[i]).toString(16);
9846                     if(h < 16){
9847                         h = "0" + h;
9848                     }
9849                     color += h;
9850                 }
9851             } else {
9852                 if(v.substr(0, 1) == "#"){
9853                     if(v.length == 4) {
9854                         for(var i = 1; i < 4; i++){
9855                             var c = v.charAt(i);
9856                             color +=  c + c;
9857                         }
9858                     }else if(v.length == 7){
9859                         color += v.substr(1);
9860                     }
9861                 }
9862             }
9863             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9864         },
9865
9866         /**
9867          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9868          * gradient background, rounded corners and a 4-way shadow.
9869          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9870          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9871          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9872          * @return {Roo.Element} this
9873          */
9874         boxWrap : function(cls){
9875             cls = cls || 'x-box';
9876             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9877             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9878             return el;
9879         },
9880
9881         /**
9882          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9883          * @param {String} namespace The namespace in which to look for the attribute
9884          * @param {String} name The attribute name
9885          * @return {String} The attribute value
9886          */
9887         getAttributeNS : Roo.isIE ? function(ns, name){
9888             var d = this.dom;
9889             var type = typeof d[ns+":"+name];
9890             if(type != 'undefined' && type != 'unknown'){
9891                 return d[ns+":"+name];
9892             }
9893             return d[name];
9894         } : function(ns, name){
9895             var d = this.dom;
9896             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9897         },
9898         
9899         
9900         /**
9901          * Sets or Returns the value the dom attribute value
9902          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9903          * @param {String} value (optional) The value to set the attribute to
9904          * @return {String} The attribute value
9905          */
9906         attr : function(name){
9907             if (arguments.length > 1) {
9908                 this.dom.setAttribute(name, arguments[1]);
9909                 return arguments[1];
9910             }
9911             if (typeof(name) == 'object') {
9912                 for(var i in name) {
9913                     this.attr(i, name[i]);
9914                 }
9915                 return name;
9916             }
9917             
9918             
9919             if (!this.dom.hasAttribute(name)) {
9920                 return undefined;
9921             }
9922             return this.dom.getAttribute(name);
9923         }
9924         
9925         
9926         
9927     };
9928
9929     var ep = El.prototype;
9930
9931     /**
9932      * Appends an event handler (Shorthand for addListener)
9933      * @param {String}   eventName     The type of event to append
9934      * @param {Function} fn        The method the event invokes
9935      * @param {Object} scope       (optional) The scope (this object) of the fn
9936      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9937      * @method
9938      */
9939     ep.on = ep.addListener;
9940         // backwards compat
9941     ep.mon = ep.addListener;
9942
9943     /**
9944      * Removes an event handler from this element (shorthand for removeListener)
9945      * @param {String} eventName the type of event to remove
9946      * @param {Function} fn the method the event invokes
9947      * @return {Roo.Element} this
9948      * @method
9949      */
9950     ep.un = ep.removeListener;
9951
9952     /**
9953      * true to automatically adjust width and height settings for box-model issues (default to true)
9954      */
9955     ep.autoBoxAdjust = true;
9956
9957     // private
9958     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9959
9960     // private
9961     El.addUnits = function(v, defaultUnit){
9962         if(v === "" || v == "auto"){
9963             return v;
9964         }
9965         if(v === undefined){
9966             return '';
9967         }
9968         if(typeof v == "number" || !El.unitPattern.test(v)){
9969             return v + (defaultUnit || 'px');
9970         }
9971         return v;
9972     };
9973
9974     // special markup used throughout Roo when box wrapping elements
9975     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>';
9976     /**
9977      * Visibility mode constant - Use visibility to hide element
9978      * @static
9979      * @type Number
9980      */
9981     El.VISIBILITY = 1;
9982     /**
9983      * Visibility mode constant - Use display to hide element
9984      * @static
9985      * @type Number
9986      */
9987     El.DISPLAY = 2;
9988
9989     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9990     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9991     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9992
9993
9994
9995     /**
9996      * @private
9997      */
9998     El.cache = {};
9999
10000     var docEl;
10001
10002     /**
10003      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10004      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10005      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10006      * @return {Element} The Element object
10007      * @static
10008      */
10009     El.get = function(el){
10010         var ex, elm, id;
10011         if(!el){ return null; }
10012         if(typeof el == "string"){ // element id
10013             if(!(elm = document.getElementById(el))){
10014                 return null;
10015             }
10016             if(ex = El.cache[el]){
10017                 ex.dom = elm;
10018             }else{
10019                 ex = El.cache[el] = new El(elm);
10020             }
10021             return ex;
10022         }else if(el.tagName){ // dom element
10023             if(!(id = el.id)){
10024                 id = Roo.id(el);
10025             }
10026             if(ex = El.cache[id]){
10027                 ex.dom = el;
10028             }else{
10029                 ex = El.cache[id] = new El(el);
10030             }
10031             return ex;
10032         }else if(el instanceof El){
10033             if(el != docEl){
10034                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
10035                                                               // catch case where it hasn't been appended
10036                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
10037             }
10038             return el;
10039         }else if(el.isComposite){
10040             return el;
10041         }else if(el instanceof Array){
10042             return El.select(el);
10043         }else if(el == document){
10044             // create a bogus element object representing the document object
10045             if(!docEl){
10046                 var f = function(){};
10047                 f.prototype = El.prototype;
10048                 docEl = new f();
10049                 docEl.dom = document;
10050             }
10051             return docEl;
10052         }
10053         return null;
10054     };
10055
10056     // private
10057     El.uncache = function(el){
10058         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
10059             if(a[i]){
10060                 delete El.cache[a[i].id || a[i]];
10061             }
10062         }
10063     };
10064
10065     // private
10066     // Garbage collection - uncache elements/purge listeners on orphaned elements
10067     // so we don't hold a reference and cause the browser to retain them
10068     El.garbageCollect = function(){
10069         if(!Roo.enableGarbageCollector){
10070             clearInterval(El.collectorThread);
10071             return;
10072         }
10073         for(var eid in El.cache){
10074             var el = El.cache[eid], d = el.dom;
10075             // -------------------------------------------------------
10076             // Determining what is garbage:
10077             // -------------------------------------------------------
10078             // !d
10079             // dom node is null, definitely garbage
10080             // -------------------------------------------------------
10081             // !d.parentNode
10082             // no parentNode == direct orphan, definitely garbage
10083             // -------------------------------------------------------
10084             // !d.offsetParent && !document.getElementById(eid)
10085             // display none elements have no offsetParent so we will
10086             // also try to look it up by it's id. However, check
10087             // offsetParent first so we don't do unneeded lookups.
10088             // This enables collection of elements that are not orphans
10089             // directly, but somewhere up the line they have an orphan
10090             // parent.
10091             // -------------------------------------------------------
10092             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10093                 delete El.cache[eid];
10094                 if(d && Roo.enableListenerCollection){
10095                     E.purgeElement(d);
10096                 }
10097             }
10098         }
10099     }
10100     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10101
10102
10103     // dom is optional
10104     El.Flyweight = function(dom){
10105         this.dom = dom;
10106     };
10107     El.Flyweight.prototype = El.prototype;
10108
10109     El._flyweights = {};
10110     /**
10111      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10112      * the dom node can be overwritten by other code.
10113      * @param {String/HTMLElement} el The dom node or id
10114      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10115      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10116      * @static
10117      * @return {Element} The shared Element object
10118      */
10119     El.fly = function(el, named){
10120         named = named || '_global';
10121         el = Roo.getDom(el);
10122         if(!el){
10123             return null;
10124         }
10125         if(!El._flyweights[named]){
10126             El._flyweights[named] = new El.Flyweight();
10127         }
10128         El._flyweights[named].dom = el;
10129         return El._flyweights[named];
10130     };
10131
10132     /**
10133      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10134      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10135      * Shorthand of {@link Roo.Element#get}
10136      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10137      * @return {Element} The Element object
10138      * @member Roo
10139      * @method get
10140      */
10141     Roo.get = El.get;
10142     /**
10143      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10144      * the dom node can be overwritten by other code.
10145      * Shorthand of {@link Roo.Element#fly}
10146      * @param {String/HTMLElement} el The dom node or id
10147      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10148      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10149      * @static
10150      * @return {Element} The shared Element object
10151      * @member Roo
10152      * @method fly
10153      */
10154     Roo.fly = El.fly;
10155
10156     // speedy lookup for elements never to box adjust
10157     var noBoxAdjust = Roo.isStrict ? {
10158         select:1
10159     } : {
10160         input:1, select:1, textarea:1
10161     };
10162     if(Roo.isIE || Roo.isGecko){
10163         noBoxAdjust['button'] = 1;
10164     }
10165
10166
10167     Roo.EventManager.on(window, 'unload', function(){
10168         delete El.cache;
10169         delete El._flyweights;
10170     });
10171 })();
10172
10173
10174
10175
10176 if(Roo.DomQuery){
10177     Roo.Element.selectorFunction = Roo.DomQuery.select;
10178 }
10179
10180 Roo.Element.select = function(selector, unique, root){
10181     var els;
10182     if(typeof selector == "string"){
10183         els = Roo.Element.selectorFunction(selector, root);
10184     }else if(selector.length !== undefined){
10185         els = selector;
10186     }else{
10187         throw "Invalid selector";
10188     }
10189     if(unique === true){
10190         return new Roo.CompositeElement(els);
10191     }else{
10192         return new Roo.CompositeElementLite(els);
10193     }
10194 };
10195 /**
10196  * Selects elements based on the passed CSS selector to enable working on them as 1.
10197  * @param {String/Array} selector The CSS selector or an array of elements
10198  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10199  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10200  * @return {CompositeElementLite/CompositeElement}
10201  * @member Roo
10202  * @method select
10203  */
10204 Roo.select = Roo.Element.select;
10205
10206
10207
10208
10209
10210
10211
10212
10213
10214
10215
10216
10217
10218
10219 /*
10220  * Based on:
10221  * Ext JS Library 1.1.1
10222  * Copyright(c) 2006-2007, Ext JS, LLC.
10223  *
10224  * Originally Released Under LGPL - original licence link has changed is not relivant.
10225  *
10226  * Fork - LGPL
10227  * <script type="text/javascript">
10228  */
10229
10230
10231
10232 //Notifies Element that fx methods are available
10233 Roo.enableFx = true;
10234
10235 /**
10236  * @class Roo.Fx
10237  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10238  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10239  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10240  * Element effects to work.</p><br/>
10241  *
10242  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10243  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10244  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10245  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10246  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10247  * expected results and should be done with care.</p><br/>
10248  *
10249  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10250  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10251 <pre>
10252 Value  Description
10253 -----  -----------------------------
10254 tl     The top left corner
10255 t      The center of the top edge
10256 tr     The top right corner
10257 l      The center of the left edge
10258 r      The center of the right edge
10259 bl     The bottom left corner
10260 b      The center of the bottom edge
10261 br     The bottom right corner
10262 </pre>
10263  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10264  * below are common options that can be passed to any Fx method.</b>
10265  * @cfg {Function} callback A function called when the effect is finished
10266  * @cfg {Object} scope The scope of the effect function
10267  * @cfg {String} easing A valid Easing value for the effect
10268  * @cfg {String} afterCls A css class to apply after the effect
10269  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10270  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10271  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10272  * effects that end with the element being visually hidden, ignored otherwise)
10273  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10274  * a function which returns such a specification that will be applied to the Element after the effect finishes
10275  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10276  * @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
10277  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10278  */
10279 Roo.Fx = {
10280         /**
10281          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10282          * origin for the slide effect.  This function automatically handles wrapping the element with
10283          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10284          * Usage:
10285          *<pre><code>
10286 // default: slide the element in from the top
10287 el.slideIn();
10288
10289 // custom: slide the element in from the right with a 2-second duration
10290 el.slideIn('r', { duration: 2 });
10291
10292 // common config options shown with default values
10293 el.slideIn('t', {
10294     easing: 'easeOut',
10295     duration: .5
10296 });
10297 </code></pre>
10298          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10299          * @param {Object} options (optional) Object literal with any of the Fx config options
10300          * @return {Roo.Element} The Element
10301          */
10302     slideIn : function(anchor, o){
10303         var el = this.getFxEl();
10304         o = o || {};
10305
10306         el.queueFx(o, function(){
10307
10308             anchor = anchor || "t";
10309
10310             // fix display to visibility
10311             this.fixDisplay();
10312
10313             // restore values after effect
10314             var r = this.getFxRestore();
10315             var b = this.getBox();
10316             // fixed size for slide
10317             this.setSize(b);
10318
10319             // wrap if needed
10320             var wrap = this.fxWrap(r.pos, o, "hidden");
10321
10322             var st = this.dom.style;
10323             st.visibility = "visible";
10324             st.position = "absolute";
10325
10326             // clear out temp styles after slide and unwrap
10327             var after = function(){
10328                 el.fxUnwrap(wrap, r.pos, o);
10329                 st.width = r.width;
10330                 st.height = r.height;
10331                 el.afterFx(o);
10332             };
10333             // time to calc the positions
10334             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10335
10336             switch(anchor.toLowerCase()){
10337                 case "t":
10338                     wrap.setSize(b.width, 0);
10339                     st.left = st.bottom = "0";
10340                     a = {height: bh};
10341                 break;
10342                 case "l":
10343                     wrap.setSize(0, b.height);
10344                     st.right = st.top = "0";
10345                     a = {width: bw};
10346                 break;
10347                 case "r":
10348                     wrap.setSize(0, b.height);
10349                     wrap.setX(b.right);
10350                     st.left = st.top = "0";
10351                     a = {width: bw, points: pt};
10352                 break;
10353                 case "b":
10354                     wrap.setSize(b.width, 0);
10355                     wrap.setY(b.bottom);
10356                     st.left = st.top = "0";
10357                     a = {height: bh, points: pt};
10358                 break;
10359                 case "tl":
10360                     wrap.setSize(0, 0);
10361                     st.right = st.bottom = "0";
10362                     a = {width: bw, height: bh};
10363                 break;
10364                 case "bl":
10365                     wrap.setSize(0, 0);
10366                     wrap.setY(b.y+b.height);
10367                     st.right = st.top = "0";
10368                     a = {width: bw, height: bh, points: pt};
10369                 break;
10370                 case "br":
10371                     wrap.setSize(0, 0);
10372                     wrap.setXY([b.right, b.bottom]);
10373                     st.left = st.top = "0";
10374                     a = {width: bw, height: bh, points: pt};
10375                 break;
10376                 case "tr":
10377                     wrap.setSize(0, 0);
10378                     wrap.setX(b.x+b.width);
10379                     st.left = st.bottom = "0";
10380                     a = {width: bw, height: bh, points: pt};
10381                 break;
10382             }
10383             this.dom.style.visibility = "visible";
10384             wrap.show();
10385
10386             arguments.callee.anim = wrap.fxanim(a,
10387                 o,
10388                 'motion',
10389                 .5,
10390                 'easeOut', after);
10391         });
10392         return this;
10393     },
10394     
10395         /**
10396          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10397          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10398          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10399          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10400          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10401          * Usage:
10402          *<pre><code>
10403 // default: slide the element out to the top
10404 el.slideOut();
10405
10406 // custom: slide the element out to the right with a 2-second duration
10407 el.slideOut('r', { duration: 2 });
10408
10409 // common config options shown with default values
10410 el.slideOut('t', {
10411     easing: 'easeOut',
10412     duration: .5,
10413     remove: false,
10414     useDisplay: false
10415 });
10416 </code></pre>
10417          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10418          * @param {Object} options (optional) Object literal with any of the Fx config options
10419          * @return {Roo.Element} The Element
10420          */
10421     slideOut : function(anchor, o){
10422         var el = this.getFxEl();
10423         o = o || {};
10424
10425         el.queueFx(o, function(){
10426
10427             anchor = anchor || "t";
10428
10429             // restore values after effect
10430             var r = this.getFxRestore();
10431             
10432             var b = this.getBox();
10433             // fixed size for slide
10434             this.setSize(b);
10435
10436             // wrap if needed
10437             var wrap = this.fxWrap(r.pos, o, "visible");
10438
10439             var st = this.dom.style;
10440             st.visibility = "visible";
10441             st.position = "absolute";
10442
10443             wrap.setSize(b);
10444
10445             var after = function(){
10446                 if(o.useDisplay){
10447                     el.setDisplayed(false);
10448                 }else{
10449                     el.hide();
10450                 }
10451
10452                 el.fxUnwrap(wrap, r.pos, o);
10453
10454                 st.width = r.width;
10455                 st.height = r.height;
10456
10457                 el.afterFx(o);
10458             };
10459
10460             var a, zero = {to: 0};
10461             switch(anchor.toLowerCase()){
10462                 case "t":
10463                     st.left = st.bottom = "0";
10464                     a = {height: zero};
10465                 break;
10466                 case "l":
10467                     st.right = st.top = "0";
10468                     a = {width: zero};
10469                 break;
10470                 case "r":
10471                     st.left = st.top = "0";
10472                     a = {width: zero, points: {to:[b.right, b.y]}};
10473                 break;
10474                 case "b":
10475                     st.left = st.top = "0";
10476                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10477                 break;
10478                 case "tl":
10479                     st.right = st.bottom = "0";
10480                     a = {width: zero, height: zero};
10481                 break;
10482                 case "bl":
10483                     st.right = st.top = "0";
10484                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10485                 break;
10486                 case "br":
10487                     st.left = st.top = "0";
10488                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10489                 break;
10490                 case "tr":
10491                     st.left = st.bottom = "0";
10492                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10493                 break;
10494             }
10495
10496             arguments.callee.anim = wrap.fxanim(a,
10497                 o,
10498                 'motion',
10499                 .5,
10500                 "easeOut", after);
10501         });
10502         return this;
10503     },
10504
10505         /**
10506          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10507          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10508          * The element must be removed from the DOM using the 'remove' config option if desired.
10509          * Usage:
10510          *<pre><code>
10511 // default
10512 el.puff();
10513
10514 // common config options shown with default values
10515 el.puff({
10516     easing: 'easeOut',
10517     duration: .5,
10518     remove: false,
10519     useDisplay: false
10520 });
10521 </code></pre>
10522          * @param {Object} options (optional) Object literal with any of the Fx config options
10523          * @return {Roo.Element} The Element
10524          */
10525     puff : function(o){
10526         var el = this.getFxEl();
10527         o = o || {};
10528
10529         el.queueFx(o, function(){
10530             this.clearOpacity();
10531             this.show();
10532
10533             // restore values after effect
10534             var r = this.getFxRestore();
10535             var st = this.dom.style;
10536
10537             var after = function(){
10538                 if(o.useDisplay){
10539                     el.setDisplayed(false);
10540                 }else{
10541                     el.hide();
10542                 }
10543
10544                 el.clearOpacity();
10545
10546                 el.setPositioning(r.pos);
10547                 st.width = r.width;
10548                 st.height = r.height;
10549                 st.fontSize = '';
10550                 el.afterFx(o);
10551             };
10552
10553             var width = this.getWidth();
10554             var height = this.getHeight();
10555
10556             arguments.callee.anim = this.fxanim({
10557                     width : {to: this.adjustWidth(width * 2)},
10558                     height : {to: this.adjustHeight(height * 2)},
10559                     points : {by: [-(width * .5), -(height * .5)]},
10560                     opacity : {to: 0},
10561                     fontSize: {to:200, unit: "%"}
10562                 },
10563                 o,
10564                 'motion',
10565                 .5,
10566                 "easeOut", after);
10567         });
10568         return this;
10569     },
10570
10571         /**
10572          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10573          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10574          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10575          * Usage:
10576          *<pre><code>
10577 // default
10578 el.switchOff();
10579
10580 // all config options shown with default values
10581 el.switchOff({
10582     easing: 'easeIn',
10583     duration: .3,
10584     remove: false,
10585     useDisplay: false
10586 });
10587 </code></pre>
10588          * @param {Object} options (optional) Object literal with any of the Fx config options
10589          * @return {Roo.Element} The Element
10590          */
10591     switchOff : function(o){
10592         var el = this.getFxEl();
10593         o = o || {};
10594
10595         el.queueFx(o, function(){
10596             this.clearOpacity();
10597             this.clip();
10598
10599             // restore values after effect
10600             var r = this.getFxRestore();
10601             var st = this.dom.style;
10602
10603             var after = function(){
10604                 if(o.useDisplay){
10605                     el.setDisplayed(false);
10606                 }else{
10607                     el.hide();
10608                 }
10609
10610                 el.clearOpacity();
10611                 el.setPositioning(r.pos);
10612                 st.width = r.width;
10613                 st.height = r.height;
10614
10615                 el.afterFx(o);
10616             };
10617
10618             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10619                 this.clearOpacity();
10620                 (function(){
10621                     this.fxanim({
10622                         height:{to:1},
10623                         points:{by:[0, this.getHeight() * .5]}
10624                     }, o, 'motion', 0.3, 'easeIn', after);
10625                 }).defer(100, this);
10626             });
10627         });
10628         return this;
10629     },
10630
10631     /**
10632      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10633      * changed using the "attr" config option) and then fading back to the original color. If no original
10634      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10635      * Usage:
10636 <pre><code>
10637 // default: highlight background to yellow
10638 el.highlight();
10639
10640 // custom: highlight foreground text to blue for 2 seconds
10641 el.highlight("0000ff", { attr: 'color', duration: 2 });
10642
10643 // common config options shown with default values
10644 el.highlight("ffff9c", {
10645     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10646     endColor: (current color) or "ffffff",
10647     easing: 'easeIn',
10648     duration: 1
10649 });
10650 </code></pre>
10651      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10652      * @param {Object} options (optional) Object literal with any of the Fx config options
10653      * @return {Roo.Element} The Element
10654      */ 
10655     highlight : function(color, o){
10656         var el = this.getFxEl();
10657         o = o || {};
10658
10659         el.queueFx(o, function(){
10660             color = color || "ffff9c";
10661             attr = o.attr || "backgroundColor";
10662
10663             this.clearOpacity();
10664             this.show();
10665
10666             var origColor = this.getColor(attr);
10667             var restoreColor = this.dom.style[attr];
10668             endColor = (o.endColor || origColor) || "ffffff";
10669
10670             var after = function(){
10671                 el.dom.style[attr] = restoreColor;
10672                 el.afterFx(o);
10673             };
10674
10675             var a = {};
10676             a[attr] = {from: color, to: endColor};
10677             arguments.callee.anim = this.fxanim(a,
10678                 o,
10679                 'color',
10680                 1,
10681                 'easeIn', after);
10682         });
10683         return this;
10684     },
10685
10686    /**
10687     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10688     * Usage:
10689 <pre><code>
10690 // default: a single light blue ripple
10691 el.frame();
10692
10693 // custom: 3 red ripples lasting 3 seconds total
10694 el.frame("ff0000", 3, { duration: 3 });
10695
10696 // common config options shown with default values
10697 el.frame("C3DAF9", 1, {
10698     duration: 1 //duration of entire animation (not each individual ripple)
10699     // Note: Easing is not configurable and will be ignored if included
10700 });
10701 </code></pre>
10702     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10703     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10704     * @param {Object} options (optional) Object literal with any of the Fx config options
10705     * @return {Roo.Element} The Element
10706     */
10707     frame : function(color, count, o){
10708         var el = this.getFxEl();
10709         o = o || {};
10710
10711         el.queueFx(o, function(){
10712             color = color || "#C3DAF9";
10713             if(color.length == 6){
10714                 color = "#" + color;
10715             }
10716             count = count || 1;
10717             duration = o.duration || 1;
10718             this.show();
10719
10720             var b = this.getBox();
10721             var animFn = function(){
10722                 var proxy = this.createProxy({
10723
10724                      style:{
10725                         visbility:"hidden",
10726                         position:"absolute",
10727                         "z-index":"35000", // yee haw
10728                         border:"0px solid " + color
10729                      }
10730                   });
10731                 var scale = Roo.isBorderBox ? 2 : 1;
10732                 proxy.animate({
10733                     top:{from:b.y, to:b.y - 20},
10734                     left:{from:b.x, to:b.x - 20},
10735                     borderWidth:{from:0, to:10},
10736                     opacity:{from:1, to:0},
10737                     height:{from:b.height, to:(b.height + (20*scale))},
10738                     width:{from:b.width, to:(b.width + (20*scale))}
10739                 }, duration, function(){
10740                     proxy.remove();
10741                 });
10742                 if(--count > 0){
10743                      animFn.defer((duration/2)*1000, this);
10744                 }else{
10745                     el.afterFx(o);
10746                 }
10747             };
10748             animFn.call(this);
10749         });
10750         return this;
10751     },
10752
10753    /**
10754     * Creates a pause before any subsequent queued effects begin.  If there are
10755     * no effects queued after the pause it will have no effect.
10756     * Usage:
10757 <pre><code>
10758 el.pause(1);
10759 </code></pre>
10760     * @param {Number} seconds The length of time to pause (in seconds)
10761     * @return {Roo.Element} The Element
10762     */
10763     pause : function(seconds){
10764         var el = this.getFxEl();
10765         var o = {};
10766
10767         el.queueFx(o, function(){
10768             setTimeout(function(){
10769                 el.afterFx(o);
10770             }, seconds * 1000);
10771         });
10772         return this;
10773     },
10774
10775    /**
10776     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10777     * using the "endOpacity" config option.
10778     * Usage:
10779 <pre><code>
10780 // default: fade in from opacity 0 to 100%
10781 el.fadeIn();
10782
10783 // custom: fade in from opacity 0 to 75% over 2 seconds
10784 el.fadeIn({ endOpacity: .75, duration: 2});
10785
10786 // common config options shown with default values
10787 el.fadeIn({
10788     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10789     easing: 'easeOut',
10790     duration: .5
10791 });
10792 </code></pre>
10793     * @param {Object} options (optional) Object literal with any of the Fx config options
10794     * @return {Roo.Element} The Element
10795     */
10796     fadeIn : function(o){
10797         var el = this.getFxEl();
10798         o = o || {};
10799         el.queueFx(o, function(){
10800             this.setOpacity(0);
10801             this.fixDisplay();
10802             this.dom.style.visibility = 'visible';
10803             var to = o.endOpacity || 1;
10804             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10805                 o, null, .5, "easeOut", function(){
10806                 if(to == 1){
10807                     this.clearOpacity();
10808                 }
10809                 el.afterFx(o);
10810             });
10811         });
10812         return this;
10813     },
10814
10815    /**
10816     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10817     * using the "endOpacity" config option.
10818     * Usage:
10819 <pre><code>
10820 // default: fade out from the element's current opacity to 0
10821 el.fadeOut();
10822
10823 // custom: fade out from the element's current opacity to 25% over 2 seconds
10824 el.fadeOut({ endOpacity: .25, duration: 2});
10825
10826 // common config options shown with default values
10827 el.fadeOut({
10828     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10829     easing: 'easeOut',
10830     duration: .5
10831     remove: false,
10832     useDisplay: false
10833 });
10834 </code></pre>
10835     * @param {Object} options (optional) Object literal with any of the Fx config options
10836     * @return {Roo.Element} The Element
10837     */
10838     fadeOut : function(o){
10839         var el = this.getFxEl();
10840         o = o || {};
10841         el.queueFx(o, function(){
10842             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10843                 o, null, .5, "easeOut", function(){
10844                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10845                      this.dom.style.display = "none";
10846                 }else{
10847                      this.dom.style.visibility = "hidden";
10848                 }
10849                 this.clearOpacity();
10850                 el.afterFx(o);
10851             });
10852         });
10853         return this;
10854     },
10855
10856    /**
10857     * Animates the transition of an element's dimensions from a starting height/width
10858     * to an ending height/width.
10859     * Usage:
10860 <pre><code>
10861 // change height and width to 100x100 pixels
10862 el.scale(100, 100);
10863
10864 // common config options shown with default values.  The height and width will default to
10865 // the element's existing values if passed as null.
10866 el.scale(
10867     [element's width],
10868     [element's height], {
10869     easing: 'easeOut',
10870     duration: .35
10871 });
10872 </code></pre>
10873     * @param {Number} width  The new width (pass undefined to keep the original width)
10874     * @param {Number} height  The new height (pass undefined to keep the original height)
10875     * @param {Object} options (optional) Object literal with any of the Fx config options
10876     * @return {Roo.Element} The Element
10877     */
10878     scale : function(w, h, o){
10879         this.shift(Roo.apply({}, o, {
10880             width: w,
10881             height: h
10882         }));
10883         return this;
10884     },
10885
10886    /**
10887     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10888     * Any of these properties not specified in the config object will not be changed.  This effect 
10889     * requires that at least one new dimension, position or opacity setting must be passed in on
10890     * the config object in order for the function to have any effect.
10891     * Usage:
10892 <pre><code>
10893 // slide the element horizontally to x position 200 while changing the height and opacity
10894 el.shift({ x: 200, height: 50, opacity: .8 });
10895
10896 // common config options shown with default values.
10897 el.shift({
10898     width: [element's width],
10899     height: [element's height],
10900     x: [element's x position],
10901     y: [element's y position],
10902     opacity: [element's opacity],
10903     easing: 'easeOut',
10904     duration: .35
10905 });
10906 </code></pre>
10907     * @param {Object} options  Object literal with any of the Fx config options
10908     * @return {Roo.Element} The Element
10909     */
10910     shift : function(o){
10911         var el = this.getFxEl();
10912         o = o || {};
10913         el.queueFx(o, function(){
10914             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10915             if(w !== undefined){
10916                 a.width = {to: this.adjustWidth(w)};
10917             }
10918             if(h !== undefined){
10919                 a.height = {to: this.adjustHeight(h)};
10920             }
10921             if(x !== undefined || y !== undefined){
10922                 a.points = {to: [
10923                     x !== undefined ? x : this.getX(),
10924                     y !== undefined ? y : this.getY()
10925                 ]};
10926             }
10927             if(op !== undefined){
10928                 a.opacity = {to: op};
10929             }
10930             if(o.xy !== undefined){
10931                 a.points = {to: o.xy};
10932             }
10933             arguments.callee.anim = this.fxanim(a,
10934                 o, 'motion', .35, "easeOut", function(){
10935                 el.afterFx(o);
10936             });
10937         });
10938         return this;
10939     },
10940
10941         /**
10942          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10943          * ending point of the effect.
10944          * Usage:
10945          *<pre><code>
10946 // default: slide the element downward while fading out
10947 el.ghost();
10948
10949 // custom: slide the element out to the right with a 2-second duration
10950 el.ghost('r', { duration: 2 });
10951
10952 // common config options shown with default values
10953 el.ghost('b', {
10954     easing: 'easeOut',
10955     duration: .5
10956     remove: false,
10957     useDisplay: false
10958 });
10959 </code></pre>
10960          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10961          * @param {Object} options (optional) Object literal with any of the Fx config options
10962          * @return {Roo.Element} The Element
10963          */
10964     ghost : function(anchor, o){
10965         var el = this.getFxEl();
10966         o = o || {};
10967
10968         el.queueFx(o, function(){
10969             anchor = anchor || "b";
10970
10971             // restore values after effect
10972             var r = this.getFxRestore();
10973             var w = this.getWidth(),
10974                 h = this.getHeight();
10975
10976             var st = this.dom.style;
10977
10978             var after = function(){
10979                 if(o.useDisplay){
10980                     el.setDisplayed(false);
10981                 }else{
10982                     el.hide();
10983                 }
10984
10985                 el.clearOpacity();
10986                 el.setPositioning(r.pos);
10987                 st.width = r.width;
10988                 st.height = r.height;
10989
10990                 el.afterFx(o);
10991             };
10992
10993             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10994             switch(anchor.toLowerCase()){
10995                 case "t":
10996                     pt.by = [0, -h];
10997                 break;
10998                 case "l":
10999                     pt.by = [-w, 0];
11000                 break;
11001                 case "r":
11002                     pt.by = [w, 0];
11003                 break;
11004                 case "b":
11005                     pt.by = [0, h];
11006                 break;
11007                 case "tl":
11008                     pt.by = [-w, -h];
11009                 break;
11010                 case "bl":
11011                     pt.by = [-w, h];
11012                 break;
11013                 case "br":
11014                     pt.by = [w, h];
11015                 break;
11016                 case "tr":
11017                     pt.by = [w, -h];
11018                 break;
11019             }
11020
11021             arguments.callee.anim = this.fxanim(a,
11022                 o,
11023                 'motion',
11024                 .5,
11025                 "easeOut", after);
11026         });
11027         return this;
11028     },
11029
11030         /**
11031          * Ensures that all effects queued after syncFx is called on the element are
11032          * run concurrently.  This is the opposite of {@link #sequenceFx}.
11033          * @return {Roo.Element} The Element
11034          */
11035     syncFx : function(){
11036         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11037             block : false,
11038             concurrent : true,
11039             stopFx : false
11040         });
11041         return this;
11042     },
11043
11044         /**
11045          * Ensures that all effects queued after sequenceFx is called on the element are
11046          * run in sequence.  This is the opposite of {@link #syncFx}.
11047          * @return {Roo.Element} The Element
11048          */
11049     sequenceFx : function(){
11050         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11051             block : false,
11052             concurrent : false,
11053             stopFx : false
11054         });
11055         return this;
11056     },
11057
11058         /* @private */
11059     nextFx : function(){
11060         var ef = this.fxQueue[0];
11061         if(ef){
11062             ef.call(this);
11063         }
11064     },
11065
11066         /**
11067          * Returns true if the element has any effects actively running or queued, else returns false.
11068          * @return {Boolean} True if element has active effects, else false
11069          */
11070     hasActiveFx : function(){
11071         return this.fxQueue && this.fxQueue[0];
11072     },
11073
11074         /**
11075          * Stops any running effects and clears the element's internal effects queue if it contains
11076          * any additional effects that haven't started yet.
11077          * @return {Roo.Element} The Element
11078          */
11079     stopFx : function(){
11080         if(this.hasActiveFx()){
11081             var cur = this.fxQueue[0];
11082             if(cur && cur.anim && cur.anim.isAnimated()){
11083                 this.fxQueue = [cur]; // clear out others
11084                 cur.anim.stop(true);
11085             }
11086         }
11087         return this;
11088     },
11089
11090         /* @private */
11091     beforeFx : function(o){
11092         if(this.hasActiveFx() && !o.concurrent){
11093            if(o.stopFx){
11094                this.stopFx();
11095                return true;
11096            }
11097            return false;
11098         }
11099         return true;
11100     },
11101
11102         /**
11103          * Returns true if the element is currently blocking so that no other effect can be queued
11104          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11105          * used to ensure that an effect initiated by a user action runs to completion prior to the
11106          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11107          * @return {Boolean} True if blocking, else false
11108          */
11109     hasFxBlock : function(){
11110         var q = this.fxQueue;
11111         return q && q[0] && q[0].block;
11112     },
11113
11114         /* @private */
11115     queueFx : function(o, fn){
11116         if(!this.fxQueue){
11117             this.fxQueue = [];
11118         }
11119         if(!this.hasFxBlock()){
11120             Roo.applyIf(o, this.fxDefaults);
11121             if(!o.concurrent){
11122                 var run = this.beforeFx(o);
11123                 fn.block = o.block;
11124                 this.fxQueue.push(fn);
11125                 if(run){
11126                     this.nextFx();
11127                 }
11128             }else{
11129                 fn.call(this);
11130             }
11131         }
11132         return this;
11133     },
11134
11135         /* @private */
11136     fxWrap : function(pos, o, vis){
11137         var wrap;
11138         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11139             var wrapXY;
11140             if(o.fixPosition){
11141                 wrapXY = this.getXY();
11142             }
11143             var div = document.createElement("div");
11144             div.style.visibility = vis;
11145             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11146             wrap.setPositioning(pos);
11147             if(wrap.getStyle("position") == "static"){
11148                 wrap.position("relative");
11149             }
11150             this.clearPositioning('auto');
11151             wrap.clip();
11152             wrap.dom.appendChild(this.dom);
11153             if(wrapXY){
11154                 wrap.setXY(wrapXY);
11155             }
11156         }
11157         return wrap;
11158     },
11159
11160         /* @private */
11161     fxUnwrap : function(wrap, pos, o){
11162         this.clearPositioning();
11163         this.setPositioning(pos);
11164         if(!o.wrap){
11165             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11166             wrap.remove();
11167         }
11168     },
11169
11170         /* @private */
11171     getFxRestore : function(){
11172         var st = this.dom.style;
11173         return {pos: this.getPositioning(), width: st.width, height : st.height};
11174     },
11175
11176         /* @private */
11177     afterFx : function(o){
11178         if(o.afterStyle){
11179             this.applyStyles(o.afterStyle);
11180         }
11181         if(o.afterCls){
11182             this.addClass(o.afterCls);
11183         }
11184         if(o.remove === true){
11185             this.remove();
11186         }
11187         Roo.callback(o.callback, o.scope, [this]);
11188         if(!o.concurrent){
11189             this.fxQueue.shift();
11190             this.nextFx();
11191         }
11192     },
11193
11194         /* @private */
11195     getFxEl : function(){ // support for composite element fx
11196         return Roo.get(this.dom);
11197     },
11198
11199         /* @private */
11200     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11201         animType = animType || 'run';
11202         opt = opt || {};
11203         var anim = Roo.lib.Anim[animType](
11204             this.dom, args,
11205             (opt.duration || defaultDur) || .35,
11206             (opt.easing || defaultEase) || 'easeOut',
11207             function(){
11208                 Roo.callback(cb, this);
11209             },
11210             this
11211         );
11212         opt.anim = anim;
11213         return anim;
11214     }
11215 };
11216
11217 // backwords compat
11218 Roo.Fx.resize = Roo.Fx.scale;
11219
11220 //When included, Roo.Fx is automatically applied to Element so that all basic
11221 //effects are available directly via the Element API
11222 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11223  * Based on:
11224  * Ext JS Library 1.1.1
11225  * Copyright(c) 2006-2007, Ext JS, LLC.
11226  *
11227  * Originally Released Under LGPL - original licence link has changed is not relivant.
11228  *
11229  * Fork - LGPL
11230  * <script type="text/javascript">
11231  */
11232
11233
11234 /**
11235  * @class Roo.CompositeElement
11236  * Standard composite class. Creates a Roo.Element for every element in the collection.
11237  * <br><br>
11238  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11239  * actions will be performed on all the elements in this collection.</b>
11240  * <br><br>
11241  * All methods return <i>this</i> and can be chained.
11242  <pre><code>
11243  var els = Roo.select("#some-el div.some-class", true);
11244  // or select directly from an existing element
11245  var el = Roo.get('some-el');
11246  el.select('div.some-class', true);
11247
11248  els.setWidth(100); // all elements become 100 width
11249  els.hide(true); // all elements fade out and hide
11250  // or
11251  els.setWidth(100).hide(true);
11252  </code></pre>
11253  */
11254 Roo.CompositeElement = function(els){
11255     this.elements = [];
11256     this.addElements(els);
11257 };
11258 Roo.CompositeElement.prototype = {
11259     isComposite: true,
11260     addElements : function(els){
11261         if(!els) {
11262             return this;
11263         }
11264         if(typeof els == "string"){
11265             els = Roo.Element.selectorFunction(els);
11266         }
11267         var yels = this.elements;
11268         var index = yels.length-1;
11269         for(var i = 0, len = els.length; i < len; i++) {
11270                 yels[++index] = Roo.get(els[i]);
11271         }
11272         return this;
11273     },
11274
11275     /**
11276     * Clears this composite and adds the elements returned by the passed selector.
11277     * @param {String/Array} els A string CSS selector, an array of elements or an element
11278     * @return {CompositeElement} this
11279     */
11280     fill : function(els){
11281         this.elements = [];
11282         this.add(els);
11283         return this;
11284     },
11285
11286     /**
11287     * Filters this composite to only elements that match the passed selector.
11288     * @param {String} selector A string CSS selector
11289     * @param {Boolean} inverse return inverse filter (not matches)
11290     * @return {CompositeElement} this
11291     */
11292     filter : function(selector, inverse){
11293         var els = [];
11294         inverse = inverse || false;
11295         this.each(function(el){
11296             var match = inverse ? !el.is(selector) : el.is(selector);
11297             if(match){
11298                 els[els.length] = el.dom;
11299             }
11300         });
11301         this.fill(els);
11302         return this;
11303     },
11304
11305     invoke : function(fn, args){
11306         var els = this.elements;
11307         for(var i = 0, len = els.length; i < len; i++) {
11308                 Roo.Element.prototype[fn].apply(els[i], args);
11309         }
11310         return this;
11311     },
11312     /**
11313     * Adds elements to this composite.
11314     * @param {String/Array} els A string CSS selector, an array of elements or an element
11315     * @return {CompositeElement} this
11316     */
11317     add : function(els){
11318         if(typeof els == "string"){
11319             this.addElements(Roo.Element.selectorFunction(els));
11320         }else if(els.length !== undefined){
11321             this.addElements(els);
11322         }else{
11323             this.addElements([els]);
11324         }
11325         return this;
11326     },
11327     /**
11328     * Calls the passed function passing (el, this, index) for each element in this composite.
11329     * @param {Function} fn The function to call
11330     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11331     * @return {CompositeElement} this
11332     */
11333     each : function(fn, scope){
11334         var els = this.elements;
11335         for(var i = 0, len = els.length; i < len; i++){
11336             if(fn.call(scope || els[i], els[i], this, i) === false) {
11337                 break;
11338             }
11339         }
11340         return this;
11341     },
11342
11343     /**
11344      * Returns the Element object at the specified index
11345      * @param {Number} index
11346      * @return {Roo.Element}
11347      */
11348     item : function(index){
11349         return this.elements[index] || null;
11350     },
11351
11352     /**
11353      * Returns the first Element
11354      * @return {Roo.Element}
11355      */
11356     first : function(){
11357         return this.item(0);
11358     },
11359
11360     /**
11361      * Returns the last Element
11362      * @return {Roo.Element}
11363      */
11364     last : function(){
11365         return this.item(this.elements.length-1);
11366     },
11367
11368     /**
11369      * Returns the number of elements in this composite
11370      * @return Number
11371      */
11372     getCount : function(){
11373         return this.elements.length;
11374     },
11375
11376     /**
11377      * Returns true if this composite contains the passed element
11378      * @return Boolean
11379      */
11380     contains : function(el){
11381         return this.indexOf(el) !== -1;
11382     },
11383
11384     /**
11385      * Returns true if this composite contains the passed element
11386      * @return Boolean
11387      */
11388     indexOf : function(el){
11389         return this.elements.indexOf(Roo.get(el));
11390     },
11391
11392
11393     /**
11394     * Removes the specified element(s).
11395     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11396     * or an array of any of those.
11397     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11398     * @return {CompositeElement} this
11399     */
11400     removeElement : function(el, removeDom){
11401         if(el instanceof Array){
11402             for(var i = 0, len = el.length; i < len; i++){
11403                 this.removeElement(el[i]);
11404             }
11405             return this;
11406         }
11407         var index = typeof el == 'number' ? el : this.indexOf(el);
11408         if(index !== -1){
11409             if(removeDom){
11410                 var d = this.elements[index];
11411                 if(d.dom){
11412                     d.remove();
11413                 }else{
11414                     d.parentNode.removeChild(d);
11415                 }
11416             }
11417             this.elements.splice(index, 1);
11418         }
11419         return this;
11420     },
11421
11422     /**
11423     * Replaces the specified element with the passed element.
11424     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11425     * to replace.
11426     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11427     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11428     * @return {CompositeElement} this
11429     */
11430     replaceElement : function(el, replacement, domReplace){
11431         var index = typeof el == 'number' ? el : this.indexOf(el);
11432         if(index !== -1){
11433             if(domReplace){
11434                 this.elements[index].replaceWith(replacement);
11435             }else{
11436                 this.elements.splice(index, 1, Roo.get(replacement))
11437             }
11438         }
11439         return this;
11440     },
11441
11442     /**
11443      * Removes all elements.
11444      */
11445     clear : function(){
11446         this.elements = [];
11447     }
11448 };
11449 (function(){
11450     Roo.CompositeElement.createCall = function(proto, fnName){
11451         if(!proto[fnName]){
11452             proto[fnName] = function(){
11453                 return this.invoke(fnName, arguments);
11454             };
11455         }
11456     };
11457     for(var fnName in Roo.Element.prototype){
11458         if(typeof Roo.Element.prototype[fnName] == "function"){
11459             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11460         }
11461     };
11462 })();
11463 /*
11464  * Based on:
11465  * Ext JS Library 1.1.1
11466  * Copyright(c) 2006-2007, Ext JS, LLC.
11467  *
11468  * Originally Released Under LGPL - original licence link has changed is not relivant.
11469  *
11470  * Fork - LGPL
11471  * <script type="text/javascript">
11472  */
11473
11474 /**
11475  * @class Roo.CompositeElementLite
11476  * @extends Roo.CompositeElement
11477  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11478  <pre><code>
11479  var els = Roo.select("#some-el div.some-class");
11480  // or select directly from an existing element
11481  var el = Roo.get('some-el');
11482  el.select('div.some-class');
11483
11484  els.setWidth(100); // all elements become 100 width
11485  els.hide(true); // all elements fade out and hide
11486  // or
11487  els.setWidth(100).hide(true);
11488  </code></pre><br><br>
11489  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11490  * actions will be performed on all the elements in this collection.</b>
11491  */
11492 Roo.CompositeElementLite = function(els){
11493     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11494     this.el = new Roo.Element.Flyweight();
11495 };
11496 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11497     addElements : function(els){
11498         if(els){
11499             if(els instanceof Array){
11500                 this.elements = this.elements.concat(els);
11501             }else{
11502                 var yels = this.elements;
11503                 var index = yels.length-1;
11504                 for(var i = 0, len = els.length; i < len; i++) {
11505                     yels[++index] = els[i];
11506                 }
11507             }
11508         }
11509         return this;
11510     },
11511     invoke : function(fn, args){
11512         var els = this.elements;
11513         var el = this.el;
11514         for(var i = 0, len = els.length; i < len; i++) {
11515             el.dom = els[i];
11516                 Roo.Element.prototype[fn].apply(el, args);
11517         }
11518         return this;
11519     },
11520     /**
11521      * Returns a flyweight Element of the dom element object at the specified index
11522      * @param {Number} index
11523      * @return {Roo.Element}
11524      */
11525     item : function(index){
11526         if(!this.elements[index]){
11527             return null;
11528         }
11529         this.el.dom = this.elements[index];
11530         return this.el;
11531     },
11532
11533     // fixes scope with flyweight
11534     addListener : function(eventName, handler, scope, opt){
11535         var els = this.elements;
11536         for(var i = 0, len = els.length; i < len; i++) {
11537             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11538         }
11539         return this;
11540     },
11541
11542     /**
11543     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11544     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11545     * a reference to the dom node, use el.dom.</b>
11546     * @param {Function} fn The function to call
11547     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11548     * @return {CompositeElement} this
11549     */
11550     each : function(fn, scope){
11551         var els = this.elements;
11552         var el = this.el;
11553         for(var i = 0, len = els.length; i < len; i++){
11554             el.dom = els[i];
11555                 if(fn.call(scope || el, el, this, i) === false){
11556                 break;
11557             }
11558         }
11559         return this;
11560     },
11561
11562     indexOf : function(el){
11563         return this.elements.indexOf(Roo.getDom(el));
11564     },
11565
11566     replaceElement : function(el, replacement, domReplace){
11567         var index = typeof el == 'number' ? el : this.indexOf(el);
11568         if(index !== -1){
11569             replacement = Roo.getDom(replacement);
11570             if(domReplace){
11571                 var d = this.elements[index];
11572                 d.parentNode.insertBefore(replacement, d);
11573                 d.parentNode.removeChild(d);
11574             }
11575             this.elements.splice(index, 1, replacement);
11576         }
11577         return this;
11578     }
11579 });
11580 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11581
11582 /*
11583  * Based on:
11584  * Ext JS Library 1.1.1
11585  * Copyright(c) 2006-2007, Ext JS, LLC.
11586  *
11587  * Originally Released Under LGPL - original licence link has changed is not relivant.
11588  *
11589  * Fork - LGPL
11590  * <script type="text/javascript">
11591  */
11592
11593  
11594
11595 /**
11596  * @class Roo.data.Connection
11597  * @extends Roo.util.Observable
11598  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11599  * either to a configured URL, or to a URL specified at request time. 
11600  * 
11601  * Requests made by this class are asynchronous, and will return immediately. No data from
11602  * the server will be available to the statement immediately following the {@link #request} call.
11603  * To process returned data, use a callback in the request options object, or an event listener.
11604  * 
11605  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11606  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11607  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11608  * property and, if present, the IFRAME's XML document as the responseXML property.
11609  * 
11610  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11611  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11612  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11613  * standard DOM methods.
11614  * @constructor
11615  * @param {Object} config a configuration object.
11616  */
11617 Roo.data.Connection = function(config){
11618     Roo.apply(this, config);
11619     this.addEvents({
11620         /**
11621          * @event beforerequest
11622          * Fires before a network request is made to retrieve a data object.
11623          * @param {Connection} conn This Connection object.
11624          * @param {Object} options The options config object passed to the {@link #request} method.
11625          */
11626         "beforerequest" : true,
11627         /**
11628          * @event requestcomplete
11629          * Fires if the request was successfully completed.
11630          * @param {Connection} conn This Connection object.
11631          * @param {Object} response The XHR object containing the response data.
11632          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11633          * @param {Object} options The options config object passed to the {@link #request} method.
11634          */
11635         "requestcomplete" : true,
11636         /**
11637          * @event requestexception
11638          * Fires if an error HTTP status was returned from the server.
11639          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11640          * @param {Connection} conn This Connection object.
11641          * @param {Object} response The XHR object containing the response data.
11642          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11643          * @param {Object} options The options config object passed to the {@link #request} method.
11644          */
11645         "requestexception" : true
11646     });
11647     Roo.data.Connection.superclass.constructor.call(this);
11648 };
11649
11650 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11651     /**
11652      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11653      */
11654     /**
11655      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11656      * extra parameters to each request made by this object. (defaults to undefined)
11657      */
11658     /**
11659      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11660      *  to each request made by this object. (defaults to undefined)
11661      */
11662     /**
11663      * @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)
11664      */
11665     /**
11666      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11667      */
11668     timeout : 30000,
11669     /**
11670      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11671      * @type Boolean
11672      */
11673     autoAbort:false,
11674
11675     /**
11676      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11677      * @type Boolean
11678      */
11679     disableCaching: true,
11680
11681     /**
11682      * Sends an HTTP request to a remote server.
11683      * @param {Object} options An object which may contain the following properties:<ul>
11684      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11685      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11686      * request, a url encoded string or a function to call to get either.</li>
11687      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11688      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11689      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11690      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11691      * <li>options {Object} The parameter to the request call.</li>
11692      * <li>success {Boolean} True if the request succeeded.</li>
11693      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11694      * </ul></li>
11695      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11696      * The callback is passed the following parameters:<ul>
11697      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11698      * <li>options {Object} The parameter to the request call.</li>
11699      * </ul></li>
11700      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11701      * The callback is passed the following parameters:<ul>
11702      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11703      * <li>options {Object} The parameter to the request call.</li>
11704      * </ul></li>
11705      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11706      * for the callback function. Defaults to the browser window.</li>
11707      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11708      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11709      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11710      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11711      * params for the post data. Any params will be appended to the URL.</li>
11712      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11713      * </ul>
11714      * @return {Number} transactionId
11715      */
11716     request : function(o){
11717         if(this.fireEvent("beforerequest", this, o) !== false){
11718             var p = o.params;
11719
11720             if(typeof p == "function"){
11721                 p = p.call(o.scope||window, o);
11722             }
11723             if(typeof p == "object"){
11724                 p = Roo.urlEncode(o.params);
11725             }
11726             if(this.extraParams){
11727                 var extras = Roo.urlEncode(this.extraParams);
11728                 p = p ? (p + '&' + extras) : extras;
11729             }
11730
11731             var url = o.url || this.url;
11732             if(typeof url == 'function'){
11733                 url = url.call(o.scope||window, o);
11734             }
11735
11736             if(o.form){
11737                 var form = Roo.getDom(o.form);
11738                 url = url || form.action;
11739
11740                 var enctype = form.getAttribute("enctype");
11741                 
11742                 if (o.formData) {
11743                     return this.doFormDataUpload(o, url);
11744                 }
11745                 
11746                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11747                     return this.doFormUpload(o, p, url);
11748                 }
11749                 var f = Roo.lib.Ajax.serializeForm(form);
11750                 p = p ? (p + '&' + f) : f;
11751             }
11752             
11753             if (!o.form && o.formData) {
11754                 o.formData = o.formData === true ? new FormData() : o.formData;
11755                 for (var k in o.params) {
11756                     o.formData.append(k,o.params[k]);
11757                 }
11758                     
11759                 return this.doFormDataUpload(o, url);
11760             }
11761             
11762
11763             var hs = o.headers;
11764             if(this.defaultHeaders){
11765                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11766                 if(!o.headers){
11767                     o.headers = hs;
11768                 }
11769             }
11770
11771             var cb = {
11772                 success: this.handleResponse,
11773                 failure: this.handleFailure,
11774                 scope: this,
11775                 argument: {options: o},
11776                 timeout : o.timeout || this.timeout
11777             };
11778
11779             var method = o.method||this.method||(p ? "POST" : "GET");
11780
11781             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11782                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11783             }
11784
11785             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11786                 if(o.autoAbort){
11787                     this.abort();
11788                 }
11789             }else if(this.autoAbort !== false){
11790                 this.abort();
11791             }
11792
11793             if((method == 'GET' && p) || o.xmlData){
11794                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11795                 p = '';
11796             }
11797             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11798             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11799             Roo.lib.Ajax.useDefaultHeader == true;
11800             return this.transId;
11801         }else{
11802             Roo.callback(o.callback, o.scope, [o, null, null]);
11803             return null;
11804         }
11805     },
11806
11807     /**
11808      * Determine whether this object has a request outstanding.
11809      * @param {Number} transactionId (Optional) defaults to the last transaction
11810      * @return {Boolean} True if there is an outstanding request.
11811      */
11812     isLoading : function(transId){
11813         if(transId){
11814             return Roo.lib.Ajax.isCallInProgress(transId);
11815         }else{
11816             return this.transId ? true : false;
11817         }
11818     },
11819
11820     /**
11821      * Aborts any outstanding request.
11822      * @param {Number} transactionId (Optional) defaults to the last transaction
11823      */
11824     abort : function(transId){
11825         if(transId || this.isLoading()){
11826             Roo.lib.Ajax.abort(transId || this.transId);
11827         }
11828     },
11829
11830     // private
11831     handleResponse : function(response){
11832         this.transId = false;
11833         var options = response.argument.options;
11834         response.argument = options ? options.argument : null;
11835         this.fireEvent("requestcomplete", this, response, options);
11836         Roo.callback(options.success, options.scope, [response, options]);
11837         Roo.callback(options.callback, options.scope, [options, true, response]);
11838     },
11839
11840     // private
11841     handleFailure : function(response, e){
11842         this.transId = false;
11843         var options = response.argument.options;
11844         response.argument = options ? options.argument : null;
11845         this.fireEvent("requestexception", this, response, options, e);
11846         Roo.callback(options.failure, options.scope, [response, options]);
11847         Roo.callback(options.callback, options.scope, [options, false, response]);
11848     },
11849
11850     // private
11851     doFormUpload : function(o, ps, url){
11852         var id = Roo.id();
11853         var frame = document.createElement('iframe');
11854         frame.id = id;
11855         frame.name = id;
11856         frame.className = 'x-hidden';
11857         if(Roo.isIE){
11858             frame.src = Roo.SSL_SECURE_URL;
11859         }
11860         document.body.appendChild(frame);
11861
11862         if(Roo.isIE){
11863            document.frames[id].name = id;
11864         }
11865
11866         var form = Roo.getDom(o.form);
11867         form.target = id;
11868         form.method = 'POST';
11869         form.enctype = form.encoding = 'multipart/form-data';
11870         if(url){
11871             form.action = url;
11872         }
11873
11874         var hiddens, hd;
11875         if(ps){ // add dynamic params
11876             hiddens = [];
11877             ps = Roo.urlDecode(ps, false);
11878             for(var k in ps){
11879                 if(ps.hasOwnProperty(k)){
11880                     hd = document.createElement('input');
11881                     hd.type = 'hidden';
11882                     hd.name = k;
11883                     hd.value = ps[k];
11884                     form.appendChild(hd);
11885                     hiddens.push(hd);
11886                 }
11887             }
11888         }
11889
11890         function cb(){
11891             var r = {  // bogus response object
11892                 responseText : '',
11893                 responseXML : null
11894             };
11895
11896             r.argument = o ? o.argument : null;
11897
11898             try { //
11899                 var doc;
11900                 if(Roo.isIE){
11901                     doc = frame.contentWindow.document;
11902                 }else {
11903                     doc = (frame.contentDocument || window.frames[id].document);
11904                 }
11905                 if(doc && doc.body){
11906                     r.responseText = doc.body.innerHTML;
11907                 }
11908                 if(doc && doc.XMLDocument){
11909                     r.responseXML = doc.XMLDocument;
11910                 }else {
11911                     r.responseXML = doc;
11912                 }
11913             }
11914             catch(e) {
11915                 // ignore
11916             }
11917
11918             Roo.EventManager.removeListener(frame, 'load', cb, this);
11919
11920             this.fireEvent("requestcomplete", this, r, o);
11921             Roo.callback(o.success, o.scope, [r, o]);
11922             Roo.callback(o.callback, o.scope, [o, true, r]);
11923
11924             setTimeout(function(){document.body.removeChild(frame);}, 100);
11925         }
11926
11927         Roo.EventManager.on(frame, 'load', cb, this);
11928         form.submit();
11929
11930         if(hiddens){ // remove dynamic params
11931             for(var i = 0, len = hiddens.length; i < len; i++){
11932                 form.removeChild(hiddens[i]);
11933             }
11934         }
11935     },
11936     // this is a 'formdata version???'
11937     
11938     
11939     doFormDataUpload : function(o,  url)
11940     {
11941         var formData;
11942         if (o.form) {
11943             var form =  Roo.getDom(o.form);
11944             form.enctype = form.encoding = 'multipart/form-data';
11945             formData = o.formData === true ? new FormData(form) : o.formData;
11946         } else {
11947             formData = o.formData === true ? new FormData() : o.formData;
11948         }
11949         
11950       
11951         var cb = {
11952             success: this.handleResponse,
11953             failure: this.handleFailure,
11954             scope: this,
11955             argument: {options: o},
11956             timeout : o.timeout || this.timeout
11957         };
11958  
11959         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11960             if(o.autoAbort){
11961                 this.abort();
11962             }
11963         }else if(this.autoAbort !== false){
11964             this.abort();
11965         }
11966
11967         //Roo.lib.Ajax.defaultPostHeader = null;
11968         Roo.lib.Ajax.useDefaultHeader = false;
11969         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11970         Roo.lib.Ajax.useDefaultHeader = true;
11971  
11972          
11973     }
11974     
11975 });
11976 /*
11977  * Based on:
11978  * Ext JS Library 1.1.1
11979  * Copyright(c) 2006-2007, Ext JS, LLC.
11980  *
11981  * Originally Released Under LGPL - original licence link has changed is not relivant.
11982  *
11983  * Fork - LGPL
11984  * <script type="text/javascript">
11985  */
11986  
11987 /**
11988  * Global Ajax request class.
11989  * 
11990  * @class Roo.Ajax
11991  * @extends Roo.data.Connection
11992  * @static
11993  * 
11994  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11995  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11996  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11997  * @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)
11998  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11999  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
12000  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
12001  */
12002 Roo.Ajax = new Roo.data.Connection({
12003     // fix up the docs
12004     /**
12005      * @scope Roo.Ajax
12006      * @type {Boolear} 
12007      */
12008     autoAbort : false,
12009
12010     /**
12011      * Serialize the passed form into a url encoded string
12012      * @scope Roo.Ajax
12013      * @param {String/HTMLElement} form
12014      * @return {String}
12015      */
12016     serializeForm : function(form){
12017         return Roo.lib.Ajax.serializeForm(form);
12018     }
12019 });/*
12020  * Based on:
12021  * Ext JS Library 1.1.1
12022  * Copyright(c) 2006-2007, Ext JS, LLC.
12023  *
12024  * Originally Released Under LGPL - original licence link has changed is not relivant.
12025  *
12026  * Fork - LGPL
12027  * <script type="text/javascript">
12028  */
12029
12030  
12031 /**
12032  * @class Roo.UpdateManager
12033  * @extends Roo.util.Observable
12034  * Provides AJAX-style update for Element object.<br><br>
12035  * Usage:<br>
12036  * <pre><code>
12037  * // Get it from a Roo.Element object
12038  * var el = Roo.get("foo");
12039  * var mgr = el.getUpdateManager();
12040  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
12041  * ...
12042  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
12043  * <br>
12044  * // or directly (returns the same UpdateManager instance)
12045  * var mgr = new Roo.UpdateManager("myElementId");
12046  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
12047  * mgr.on("update", myFcnNeedsToKnow);
12048  * <br>
12049    // short handed call directly from the element object
12050    Roo.get("foo").load({
12051         url: "bar.php",
12052         scripts:true,
12053         params: "for=bar",
12054         text: "Loading Foo..."
12055    });
12056  * </code></pre>
12057  * @constructor
12058  * Create new UpdateManager directly.
12059  * @param {String/HTMLElement/Roo.Element} el The element to update
12060  * @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).
12061  */
12062 Roo.UpdateManager = function(el, forceNew){
12063     el = Roo.get(el);
12064     if(!forceNew && el.updateManager){
12065         return el.updateManager;
12066     }
12067     /**
12068      * The Element object
12069      * @type Roo.Element
12070      */
12071     this.el = el;
12072     /**
12073      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
12074      * @type String
12075      */
12076     this.defaultUrl = null;
12077
12078     this.addEvents({
12079         /**
12080          * @event beforeupdate
12081          * Fired before an update is made, return false from your handler and the update is cancelled.
12082          * @param {Roo.Element} el
12083          * @param {String/Object/Function} url
12084          * @param {String/Object} params
12085          */
12086         "beforeupdate": true,
12087         /**
12088          * @event update
12089          * Fired after successful update is made.
12090          * @param {Roo.Element} el
12091          * @param {Object} oResponseObject The response Object
12092          */
12093         "update": true,
12094         /**
12095          * @event failure
12096          * Fired on update failure.
12097          * @param {Roo.Element} el
12098          * @param {Object} oResponseObject The response Object
12099          */
12100         "failure": true
12101     });
12102     var d = Roo.UpdateManager.defaults;
12103     /**
12104      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12105      * @type String
12106      */
12107     this.sslBlankUrl = d.sslBlankUrl;
12108     /**
12109      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12110      * @type Boolean
12111      */
12112     this.disableCaching = d.disableCaching;
12113     /**
12114      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12115      * @type String
12116      */
12117     this.indicatorText = d.indicatorText;
12118     /**
12119      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12120      * @type String
12121      */
12122     this.showLoadIndicator = d.showLoadIndicator;
12123     /**
12124      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12125      * @type Number
12126      */
12127     this.timeout = d.timeout;
12128
12129     /**
12130      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12131      * @type Boolean
12132      */
12133     this.loadScripts = d.loadScripts;
12134
12135     /**
12136      * Transaction object of current executing transaction
12137      */
12138     this.transaction = null;
12139
12140     /**
12141      * @private
12142      */
12143     this.autoRefreshProcId = null;
12144     /**
12145      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12146      * @type Function
12147      */
12148     this.refreshDelegate = this.refresh.createDelegate(this);
12149     /**
12150      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12151      * @type Function
12152      */
12153     this.updateDelegate = this.update.createDelegate(this);
12154     /**
12155      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12156      * @type Function
12157      */
12158     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12159     /**
12160      * @private
12161      */
12162     this.successDelegate = this.processSuccess.createDelegate(this);
12163     /**
12164      * @private
12165      */
12166     this.failureDelegate = this.processFailure.createDelegate(this);
12167
12168     if(!this.renderer){
12169      /**
12170       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12171       */
12172     this.renderer = new Roo.UpdateManager.BasicRenderer();
12173     }
12174     
12175     Roo.UpdateManager.superclass.constructor.call(this);
12176 };
12177
12178 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12179     /**
12180      * Get the Element this UpdateManager is bound to
12181      * @return {Roo.Element} The element
12182      */
12183     getEl : function(){
12184         return this.el;
12185     },
12186     /**
12187      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12188      * @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:
12189 <pre><code>
12190 um.update({<br/>
12191     url: "your-url.php",<br/>
12192     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12193     callback: yourFunction,<br/>
12194     scope: yourObject, //(optional scope)  <br/>
12195     discardUrl: false, <br/>
12196     nocache: false,<br/>
12197     text: "Loading...",<br/>
12198     timeout: 30,<br/>
12199     scripts: false<br/>
12200 });
12201 </code></pre>
12202      * The only required property is url. The optional properties nocache, text and scripts
12203      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12204      * @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}
12205      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12206      * @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.
12207      */
12208     update : function(url, params, callback, discardUrl){
12209         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12210             var method = this.method,
12211                 cfg;
12212             if(typeof url == "object"){ // must be config object
12213                 cfg = url;
12214                 url = cfg.url;
12215                 params = params || cfg.params;
12216                 callback = callback || cfg.callback;
12217                 discardUrl = discardUrl || cfg.discardUrl;
12218                 if(callback && cfg.scope){
12219                     callback = callback.createDelegate(cfg.scope);
12220                 }
12221                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12222                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12223                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12224                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12225                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12226             }
12227             this.showLoading();
12228             if(!discardUrl){
12229                 this.defaultUrl = url;
12230             }
12231             if(typeof url == "function"){
12232                 url = url.call(this);
12233             }
12234
12235             method = method || (params ? "POST" : "GET");
12236             if(method == "GET"){
12237                 url = this.prepareUrl(url);
12238             }
12239
12240             var o = Roo.apply(cfg ||{}, {
12241                 url : url,
12242                 params: params,
12243                 success: this.successDelegate,
12244                 failure: this.failureDelegate,
12245                 callback: undefined,
12246                 timeout: (this.timeout*1000),
12247                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12248             });
12249             Roo.log("updated manager called with timeout of " + o.timeout);
12250             this.transaction = Roo.Ajax.request(o);
12251         }
12252     },
12253
12254     /**
12255      * 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.
12256      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12257      * @param {String/HTMLElement} form The form Id or form element
12258      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12259      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12260      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12261      */
12262     formUpdate : function(form, url, reset, callback){
12263         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12264             if(typeof url == "function"){
12265                 url = url.call(this);
12266             }
12267             form = Roo.getDom(form);
12268             this.transaction = Roo.Ajax.request({
12269                 form: form,
12270                 url:url,
12271                 success: this.successDelegate,
12272                 failure: this.failureDelegate,
12273                 timeout: (this.timeout*1000),
12274                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12275             });
12276             this.showLoading.defer(1, this);
12277         }
12278     },
12279
12280     /**
12281      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12282      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12283      */
12284     refresh : function(callback){
12285         if(this.defaultUrl == null){
12286             return;
12287         }
12288         this.update(this.defaultUrl, null, callback, true);
12289     },
12290
12291     /**
12292      * Set this element to auto refresh.
12293      * @param {Number} interval How often to update (in seconds).
12294      * @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)
12295      * @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}
12296      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12297      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12298      */
12299     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12300         if(refreshNow){
12301             this.update(url || this.defaultUrl, params, callback, true);
12302         }
12303         if(this.autoRefreshProcId){
12304             clearInterval(this.autoRefreshProcId);
12305         }
12306         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12307     },
12308
12309     /**
12310      * Stop auto refresh on this element.
12311      */
12312      stopAutoRefresh : function(){
12313         if(this.autoRefreshProcId){
12314             clearInterval(this.autoRefreshProcId);
12315             delete this.autoRefreshProcId;
12316         }
12317     },
12318
12319     isAutoRefreshing : function(){
12320        return this.autoRefreshProcId ? true : false;
12321     },
12322     /**
12323      * Called to update the element to "Loading" state. Override to perform custom action.
12324      */
12325     showLoading : function(){
12326         if(this.showLoadIndicator){
12327             this.el.update(this.indicatorText);
12328         }
12329     },
12330
12331     /**
12332      * Adds unique parameter to query string if disableCaching = true
12333      * @private
12334      */
12335     prepareUrl : function(url){
12336         if(this.disableCaching){
12337             var append = "_dc=" + (new Date().getTime());
12338             if(url.indexOf("?") !== -1){
12339                 url += "&" + append;
12340             }else{
12341                 url += "?" + append;
12342             }
12343         }
12344         return url;
12345     },
12346
12347     /**
12348      * @private
12349      */
12350     processSuccess : function(response){
12351         this.transaction = null;
12352         if(response.argument.form && response.argument.reset){
12353             try{ // put in try/catch since some older FF releases had problems with this
12354                 response.argument.form.reset();
12355             }catch(e){}
12356         }
12357         if(this.loadScripts){
12358             this.renderer.render(this.el, response, this,
12359                 this.updateComplete.createDelegate(this, [response]));
12360         }else{
12361             this.renderer.render(this.el, response, this);
12362             this.updateComplete(response);
12363         }
12364     },
12365
12366     updateComplete : function(response){
12367         this.fireEvent("update", this.el, response);
12368         if(typeof response.argument.callback == "function"){
12369             response.argument.callback(this.el, true, response);
12370         }
12371     },
12372
12373     /**
12374      * @private
12375      */
12376     processFailure : function(response){
12377         this.transaction = null;
12378         this.fireEvent("failure", this.el, response);
12379         if(typeof response.argument.callback == "function"){
12380             response.argument.callback(this.el, false, response);
12381         }
12382     },
12383
12384     /**
12385      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12386      * @param {Object} renderer The object implementing the render() method
12387      */
12388     setRenderer : function(renderer){
12389         this.renderer = renderer;
12390     },
12391
12392     getRenderer : function(){
12393        return this.renderer;
12394     },
12395
12396     /**
12397      * Set the defaultUrl used for updates
12398      * @param {String/Function} defaultUrl The url or a function to call to get the url
12399      */
12400     setDefaultUrl : function(defaultUrl){
12401         this.defaultUrl = defaultUrl;
12402     },
12403
12404     /**
12405      * Aborts the executing transaction
12406      */
12407     abort : function(){
12408         if(this.transaction){
12409             Roo.Ajax.abort(this.transaction);
12410         }
12411     },
12412
12413     /**
12414      * Returns true if an update is in progress
12415      * @return {Boolean}
12416      */
12417     isUpdating : function(){
12418         if(this.transaction){
12419             return Roo.Ajax.isLoading(this.transaction);
12420         }
12421         return false;
12422     }
12423 });
12424
12425 /**
12426  * @class Roo.UpdateManager.defaults
12427  * @static (not really - but it helps the doc tool)
12428  * The defaults collection enables customizing the default properties of UpdateManager
12429  */
12430    Roo.UpdateManager.defaults = {
12431        /**
12432          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12433          * @type Number
12434          */
12435          timeout : 30,
12436
12437          /**
12438          * True to process scripts by default (Defaults to false).
12439          * @type Boolean
12440          */
12441         loadScripts : false,
12442
12443         /**
12444         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12445         * @type String
12446         */
12447         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12448         /**
12449          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12450          * @type Boolean
12451          */
12452         disableCaching : false,
12453         /**
12454          * Whether to show indicatorText when loading (Defaults to true).
12455          * @type Boolean
12456          */
12457         showLoadIndicator : true,
12458         /**
12459          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12460          * @type String
12461          */
12462         indicatorText : '<div class="loading-indicator">Loading...</div>'
12463    };
12464
12465 /**
12466  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12467  *Usage:
12468  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12469  * @param {String/HTMLElement/Roo.Element} el The element to update
12470  * @param {String} url The url
12471  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12472  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12473  * @static
12474  * @deprecated
12475  * @member Roo.UpdateManager
12476  */
12477 Roo.UpdateManager.updateElement = function(el, url, params, options){
12478     var um = Roo.get(el, true).getUpdateManager();
12479     Roo.apply(um, options);
12480     um.update(url, params, options ? options.callback : null);
12481 };
12482 // alias for backwards compat
12483 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12484 /**
12485  * @class Roo.UpdateManager.BasicRenderer
12486  * Default Content renderer. Updates the elements innerHTML with the responseText.
12487  */
12488 Roo.UpdateManager.BasicRenderer = function(){};
12489
12490 Roo.UpdateManager.BasicRenderer.prototype = {
12491     /**
12492      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12493      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12494      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12495      * @param {Roo.Element} el The element being rendered
12496      * @param {Object} response The YUI Connect response object
12497      * @param {UpdateManager} updateManager The calling update manager
12498      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12499      */
12500      render : function(el, response, updateManager, callback){
12501         el.update(response.responseText, updateManager.loadScripts, callback);
12502     }
12503 };
12504 /*
12505  * Based on:
12506  * Roo JS
12507  * (c)) Alan Knowles
12508  * Licence : LGPL
12509  */
12510
12511
12512 /**
12513  * @class Roo.DomTemplate
12514  * @extends Roo.Template
12515  * An effort at a dom based template engine..
12516  *
12517  * Similar to XTemplate, except it uses dom parsing to create the template..
12518  *
12519  * Supported features:
12520  *
12521  *  Tags:
12522
12523 <pre><code>
12524       {a_variable} - output encoded.
12525       {a_variable.format:("Y-m-d")} - call a method on the variable
12526       {a_variable:raw} - unencoded output
12527       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12528       {a_variable:this.method_on_template(...)} - call a method on the template object.
12529  
12530 </code></pre>
12531  *  The tpl tag:
12532 <pre><code>
12533         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12534         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12535         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12536         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12537   
12538 </code></pre>
12539  *      
12540  */
12541 Roo.DomTemplate = function()
12542 {
12543      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12544      if (this.html) {
12545         this.compile();
12546      }
12547 };
12548
12549
12550 Roo.extend(Roo.DomTemplate, Roo.Template, {
12551     /**
12552      * id counter for sub templates.
12553      */
12554     id : 0,
12555     /**
12556      * flag to indicate if dom parser is inside a pre,
12557      * it will strip whitespace if not.
12558      */
12559     inPre : false,
12560     
12561     /**
12562      * The various sub templates
12563      */
12564     tpls : false,
12565     
12566     
12567     
12568     /**
12569      *
12570      * basic tag replacing syntax
12571      * WORD:WORD()
12572      *
12573      * // you can fake an object call by doing this
12574      *  x.t:(test,tesT) 
12575      * 
12576      */
12577     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12578     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12579     
12580     iterChild : function (node, method) {
12581         
12582         var oldPre = this.inPre;
12583         if (node.tagName == 'PRE') {
12584             this.inPre = true;
12585         }
12586         for( var i = 0; i < node.childNodes.length; i++) {
12587             method.call(this, node.childNodes[i]);
12588         }
12589         this.inPre = oldPre;
12590     },
12591     
12592     
12593     
12594     /**
12595      * compile the template
12596      *
12597      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12598      *
12599      */
12600     compile: function()
12601     {
12602         var s = this.html;
12603         
12604         // covert the html into DOM...
12605         var doc = false;
12606         var div =false;
12607         try {
12608             doc = document.implementation.createHTMLDocument("");
12609             doc.documentElement.innerHTML =   this.html  ;
12610             div = doc.documentElement;
12611         } catch (e) {
12612             // old IE... - nasty -- it causes all sorts of issues.. with
12613             // images getting pulled from server..
12614             div = document.createElement('div');
12615             div.innerHTML = this.html;
12616         }
12617         //doc.documentElement.innerHTML = htmlBody
12618          
12619         
12620         
12621         this.tpls = [];
12622         var _t = this;
12623         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12624         
12625         var tpls = this.tpls;
12626         
12627         // create a top level template from the snippet..
12628         
12629         //Roo.log(div.innerHTML);
12630         
12631         var tpl = {
12632             uid : 'master',
12633             id : this.id++,
12634             attr : false,
12635             value : false,
12636             body : div.innerHTML,
12637             
12638             forCall : false,
12639             execCall : false,
12640             dom : div,
12641             isTop : true
12642             
12643         };
12644         tpls.unshift(tpl);
12645         
12646         
12647         // compile them...
12648         this.tpls = [];
12649         Roo.each(tpls, function(tp){
12650             this.compileTpl(tp);
12651             this.tpls[tp.id] = tp;
12652         }, this);
12653         
12654         this.master = tpls[0];
12655         return this;
12656         
12657         
12658     },
12659     
12660     compileNode : function(node, istop) {
12661         // test for
12662         //Roo.log(node);
12663         
12664         
12665         // skip anything not a tag..
12666         if (node.nodeType != 1) {
12667             if (node.nodeType == 3 && !this.inPre) {
12668                 // reduce white space..
12669                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12670                 
12671             }
12672             return;
12673         }
12674         
12675         var tpl = {
12676             uid : false,
12677             id : false,
12678             attr : false,
12679             value : false,
12680             body : '',
12681             
12682             forCall : false,
12683             execCall : false,
12684             dom : false,
12685             isTop : istop
12686             
12687             
12688         };
12689         
12690         
12691         switch(true) {
12692             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12693             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12694             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12695             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12696             // no default..
12697         }
12698         
12699         
12700         if (!tpl.attr) {
12701             // just itterate children..
12702             this.iterChild(node,this.compileNode);
12703             return;
12704         }
12705         tpl.uid = this.id++;
12706         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12707         node.removeAttribute('roo-'+ tpl.attr);
12708         if (tpl.attr != 'name') {
12709             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12710             node.parentNode.replaceChild(placeholder,  node);
12711         } else {
12712             
12713             var placeholder =  document.createElement('span');
12714             placeholder.className = 'roo-tpl-' + tpl.value;
12715             node.parentNode.replaceChild(placeholder,  node);
12716         }
12717         
12718         // parent now sees '{domtplXXXX}
12719         this.iterChild(node,this.compileNode);
12720         
12721         // we should now have node body...
12722         var div = document.createElement('div');
12723         div.appendChild(node);
12724         tpl.dom = node;
12725         // this has the unfortunate side effect of converting tagged attributes
12726         // eg. href="{...}" into %7C...%7D
12727         // this has been fixed by searching for those combo's although it's a bit hacky..
12728         
12729         
12730         tpl.body = div.innerHTML;
12731         
12732         
12733          
12734         tpl.id = tpl.uid;
12735         switch(tpl.attr) {
12736             case 'for' :
12737                 switch (tpl.value) {
12738                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12739                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12740                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12741                 }
12742                 break;
12743             
12744             case 'exec':
12745                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12746                 break;
12747             
12748             case 'if':     
12749                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12750                 break;
12751             
12752             case 'name':
12753                 tpl.id  = tpl.value; // replace non characters???
12754                 break;
12755             
12756         }
12757         
12758         
12759         this.tpls.push(tpl);
12760         
12761         
12762         
12763     },
12764     
12765     
12766     
12767     
12768     /**
12769      * Compile a segment of the template into a 'sub-template'
12770      *
12771      * 
12772      * 
12773      *
12774      */
12775     compileTpl : function(tpl)
12776     {
12777         var fm = Roo.util.Format;
12778         var useF = this.disableFormats !== true;
12779         
12780         var sep = Roo.isGecko ? "+\n" : ",\n";
12781         
12782         var undef = function(str) {
12783             Roo.debug && Roo.log("Property not found :"  + str);
12784             return '';
12785         };
12786           
12787         //Roo.log(tpl.body);
12788         
12789         
12790         
12791         var fn = function(m, lbrace, name, format, args)
12792         {
12793             //Roo.log("ARGS");
12794             //Roo.log(arguments);
12795             args = args ? args.replace(/\\'/g,"'") : args;
12796             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12797             if (typeof(format) == 'undefined') {
12798                 format =  'htmlEncode'; 
12799             }
12800             if (format == 'raw' ) {
12801                 format = false;
12802             }
12803             
12804             if(name.substr(0, 6) == 'domtpl'){
12805                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12806             }
12807             
12808             // build an array of options to determine if value is undefined..
12809             
12810             // basically get 'xxxx.yyyy' then do
12811             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12812             //    (function () { Roo.log("Property not found"); return ''; })() :
12813             //    ......
12814             
12815             var udef_ar = [];
12816             var lookfor = '';
12817             Roo.each(name.split('.'), function(st) {
12818                 lookfor += (lookfor.length ? '.': '') + st;
12819                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12820             });
12821             
12822             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12823             
12824             
12825             if(format && useF){
12826                 
12827                 args = args ? ',' + args : "";
12828                  
12829                 if(format.substr(0, 5) != "this."){
12830                     format = "fm." + format + '(';
12831                 }else{
12832                     format = 'this.call("'+ format.substr(5) + '", ';
12833                     args = ", values";
12834                 }
12835                 
12836                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12837             }
12838              
12839             if (args && args.length) {
12840                 // called with xxyx.yuu:(test,test)
12841                 // change to ()
12842                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12843             }
12844             // raw.. - :raw modifier..
12845             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12846             
12847         };
12848         var body;
12849         // branched to use + in gecko and [].join() in others
12850         if(Roo.isGecko){
12851             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12852                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12853                     "';};};";
12854         }else{
12855             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12856             body.push(tpl.body.replace(/(\r\n|\n)/g,
12857                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12858             body.push("'].join('');};};");
12859             body = body.join('');
12860         }
12861         
12862         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12863        
12864         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12865         eval(body);
12866         
12867         return this;
12868     },
12869      
12870     /**
12871      * same as applyTemplate, except it's done to one of the subTemplates
12872      * when using named templates, you can do:
12873      *
12874      * var str = pl.applySubTemplate('your-name', values);
12875      *
12876      * 
12877      * @param {Number} id of the template
12878      * @param {Object} values to apply to template
12879      * @param {Object} parent (normaly the instance of this object)
12880      */
12881     applySubTemplate : function(id, values, parent)
12882     {
12883         
12884         
12885         var t = this.tpls[id];
12886         
12887         
12888         try { 
12889             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12890                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12891                 return '';
12892             }
12893         } catch(e) {
12894             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12895             Roo.log(values);
12896           
12897             return '';
12898         }
12899         try { 
12900             
12901             if(t.execCall && t.execCall.call(this, values, parent)){
12902                 return '';
12903             }
12904         } catch(e) {
12905             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12906             Roo.log(values);
12907             return '';
12908         }
12909         
12910         try {
12911             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12912             parent = t.target ? values : parent;
12913             if(t.forCall && vs instanceof Array){
12914                 var buf = [];
12915                 for(var i = 0, len = vs.length; i < len; i++){
12916                     try {
12917                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12918                     } catch (e) {
12919                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12920                         Roo.log(e.body);
12921                         //Roo.log(t.compiled);
12922                         Roo.log(vs[i]);
12923                     }   
12924                 }
12925                 return buf.join('');
12926             }
12927         } catch (e) {
12928             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12929             Roo.log(values);
12930             return '';
12931         }
12932         try {
12933             return t.compiled.call(this, vs, parent);
12934         } catch (e) {
12935             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12936             Roo.log(e.body);
12937             //Roo.log(t.compiled);
12938             Roo.log(values);
12939             return '';
12940         }
12941     },
12942
12943    
12944
12945     applyTemplate : function(values){
12946         return this.master.compiled.call(this, values, {});
12947         //var s = this.subs;
12948     },
12949
12950     apply : function(){
12951         return this.applyTemplate.apply(this, arguments);
12952     }
12953
12954  });
12955
12956 Roo.DomTemplate.from = function(el){
12957     el = Roo.getDom(el);
12958     return new Roo.Domtemplate(el.value || el.innerHTML);
12959 };/*
12960  * Based on:
12961  * Ext JS Library 1.1.1
12962  * Copyright(c) 2006-2007, Ext JS, LLC.
12963  *
12964  * Originally Released Under LGPL - original licence link has changed is not relivant.
12965  *
12966  * Fork - LGPL
12967  * <script type="text/javascript">
12968  */
12969
12970 /**
12971  * @class Roo.util.DelayedTask
12972  * Provides a convenient method of performing setTimeout where a new
12973  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12974  * You can use this class to buffer
12975  * the keypress events for a certain number of milliseconds, and perform only if they stop
12976  * for that amount of time.
12977  * @constructor The parameters to this constructor serve as defaults and are not required.
12978  * @param {Function} fn (optional) The default function to timeout
12979  * @param {Object} scope (optional) The default scope of that timeout
12980  * @param {Array} args (optional) The default Array of arguments
12981  */
12982 Roo.util.DelayedTask = function(fn, scope, args){
12983     var id = null, d, t;
12984
12985     var call = function(){
12986         var now = new Date().getTime();
12987         if(now - t >= d){
12988             clearInterval(id);
12989             id = null;
12990             fn.apply(scope, args || []);
12991         }
12992     };
12993     /**
12994      * Cancels any pending timeout and queues a new one
12995      * @param {Number} delay The milliseconds to delay
12996      * @param {Function} newFn (optional) Overrides function passed to constructor
12997      * @param {Object} newScope (optional) Overrides scope passed to constructor
12998      * @param {Array} newArgs (optional) Overrides args passed to constructor
12999      */
13000     this.delay = function(delay, newFn, newScope, newArgs){
13001         if(id && delay != d){
13002             this.cancel();
13003         }
13004         d = delay;
13005         t = new Date().getTime();
13006         fn = newFn || fn;
13007         scope = newScope || scope;
13008         args = newArgs || args;
13009         if(!id){
13010             id = setInterval(call, d);
13011         }
13012     };
13013
13014     /**
13015      * Cancel the last queued timeout
13016      */
13017     this.cancel = function(){
13018         if(id){
13019             clearInterval(id);
13020             id = null;
13021         }
13022     };
13023 };/*
13024  * Based on:
13025  * Ext JS Library 1.1.1
13026  * Copyright(c) 2006-2007, Ext JS, LLC.
13027  *
13028  * Originally Released Under LGPL - original licence link has changed is not relivant.
13029  *
13030  * Fork - LGPL
13031  * <script type="text/javascript">
13032  */
13033  
13034  
13035 Roo.util.TaskRunner = function(interval){
13036     interval = interval || 10;
13037     var tasks = [], removeQueue = [];
13038     var id = 0;
13039     var running = false;
13040
13041     var stopThread = function(){
13042         running = false;
13043         clearInterval(id);
13044         id = 0;
13045     };
13046
13047     var startThread = function(){
13048         if(!running){
13049             running = true;
13050             id = setInterval(runTasks, interval);
13051         }
13052     };
13053
13054     var removeTask = function(task){
13055         removeQueue.push(task);
13056         if(task.onStop){
13057             task.onStop();
13058         }
13059     };
13060
13061     var runTasks = function(){
13062         if(removeQueue.length > 0){
13063             for(var i = 0, len = removeQueue.length; i < len; i++){
13064                 tasks.remove(removeQueue[i]);
13065             }
13066             removeQueue = [];
13067             if(tasks.length < 1){
13068                 stopThread();
13069                 return;
13070             }
13071         }
13072         var now = new Date().getTime();
13073         for(var i = 0, len = tasks.length; i < len; ++i){
13074             var t = tasks[i];
13075             var itime = now - t.taskRunTime;
13076             if(t.interval <= itime){
13077                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13078                 t.taskRunTime = now;
13079                 if(rt === false || t.taskRunCount === t.repeat){
13080                     removeTask(t);
13081                     return;
13082                 }
13083             }
13084             if(t.duration && t.duration <= (now - t.taskStartTime)){
13085                 removeTask(t);
13086             }
13087         }
13088     };
13089
13090     /**
13091      * Queues a new task.
13092      * @param {Object} task
13093      */
13094     this.start = function(task){
13095         tasks.push(task);
13096         task.taskStartTime = new Date().getTime();
13097         task.taskRunTime = 0;
13098         task.taskRunCount = 0;
13099         startThread();
13100         return task;
13101     };
13102
13103     this.stop = function(task){
13104         removeTask(task);
13105         return task;
13106     };
13107
13108     this.stopAll = function(){
13109         stopThread();
13110         for(var i = 0, len = tasks.length; i < len; i++){
13111             if(tasks[i].onStop){
13112                 tasks[i].onStop();
13113             }
13114         }
13115         tasks = [];
13116         removeQueue = [];
13117     };
13118 };
13119
13120 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13121  * Based on:
13122  * Ext JS Library 1.1.1
13123  * Copyright(c) 2006-2007, Ext JS, LLC.
13124  *
13125  * Originally Released Under LGPL - original licence link has changed is not relivant.
13126  *
13127  * Fork - LGPL
13128  * <script type="text/javascript">
13129  */
13130
13131  
13132 /**
13133  * @class Roo.util.MixedCollection
13134  * @extends Roo.util.Observable
13135  * A Collection class that maintains both numeric indexes and keys and exposes events.
13136  * @constructor
13137  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13138  * collection (defaults to false)
13139  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13140  * and return the key value for that item.  This is used when available to look up the key on items that
13141  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13142  * equivalent to providing an implementation for the {@link #getKey} method.
13143  */
13144 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13145     this.items = [];
13146     this.map = {};
13147     this.keys = [];
13148     this.length = 0;
13149     this.addEvents({
13150         /**
13151          * @event clear
13152          * Fires when the collection is cleared.
13153          */
13154         "clear" : true,
13155         /**
13156          * @event add
13157          * Fires when an item is added to the collection.
13158          * @param {Number} index The index at which the item was added.
13159          * @param {Object} o The item added.
13160          * @param {String} key The key associated with the added item.
13161          */
13162         "add" : true,
13163         /**
13164          * @event replace
13165          * Fires when an item is replaced in the collection.
13166          * @param {String} key he key associated with the new added.
13167          * @param {Object} old The item being replaced.
13168          * @param {Object} new The new item.
13169          */
13170         "replace" : true,
13171         /**
13172          * @event remove
13173          * Fires when an item is removed from the collection.
13174          * @param {Object} o The item being removed.
13175          * @param {String} key (optional) The key associated with the removed item.
13176          */
13177         "remove" : true,
13178         "sort" : true
13179     });
13180     this.allowFunctions = allowFunctions === true;
13181     if(keyFn){
13182         this.getKey = keyFn;
13183     }
13184     Roo.util.MixedCollection.superclass.constructor.call(this);
13185 };
13186
13187 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13188     allowFunctions : false,
13189     
13190 /**
13191  * Adds an item to the collection.
13192  * @param {String} key The key to associate with the item
13193  * @param {Object} o The item to add.
13194  * @return {Object} The item added.
13195  */
13196     add : function(key, o){
13197         if(arguments.length == 1){
13198             o = arguments[0];
13199             key = this.getKey(o);
13200         }
13201         if(typeof key == "undefined" || key === null){
13202             this.length++;
13203             this.items.push(o);
13204             this.keys.push(null);
13205         }else{
13206             var old = this.map[key];
13207             if(old){
13208                 return this.replace(key, o);
13209             }
13210             this.length++;
13211             this.items.push(o);
13212             this.map[key] = o;
13213             this.keys.push(key);
13214         }
13215         this.fireEvent("add", this.length-1, o, key);
13216         return o;
13217     },
13218        
13219 /**
13220   * MixedCollection has a generic way to fetch keys if you implement getKey.
13221 <pre><code>
13222 // normal way
13223 var mc = new Roo.util.MixedCollection();
13224 mc.add(someEl.dom.id, someEl);
13225 mc.add(otherEl.dom.id, otherEl);
13226 //and so on
13227
13228 // using getKey
13229 var mc = new Roo.util.MixedCollection();
13230 mc.getKey = function(el){
13231    return el.dom.id;
13232 };
13233 mc.add(someEl);
13234 mc.add(otherEl);
13235
13236 // or via the constructor
13237 var mc = new Roo.util.MixedCollection(false, function(el){
13238    return el.dom.id;
13239 });
13240 mc.add(someEl);
13241 mc.add(otherEl);
13242 </code></pre>
13243  * @param o {Object} The item for which to find the key.
13244  * @return {Object} The key for the passed item.
13245  */
13246     getKey : function(o){
13247          return o.id; 
13248     },
13249    
13250 /**
13251  * Replaces an item in the collection.
13252  * @param {String} key The key associated with the item to replace, or the item to replace.
13253  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13254  * @return {Object}  The new item.
13255  */
13256     replace : function(key, o){
13257         if(arguments.length == 1){
13258             o = arguments[0];
13259             key = this.getKey(o);
13260         }
13261         var old = this.item(key);
13262         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13263              return this.add(key, o);
13264         }
13265         var index = this.indexOfKey(key);
13266         this.items[index] = o;
13267         this.map[key] = o;
13268         this.fireEvent("replace", key, old, o);
13269         return o;
13270     },
13271    
13272 /**
13273  * Adds all elements of an Array or an Object to the collection.
13274  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13275  * an Array of values, each of which are added to the collection.
13276  */
13277     addAll : function(objs){
13278         if(arguments.length > 1 || objs instanceof Array){
13279             var args = arguments.length > 1 ? arguments : objs;
13280             for(var i = 0, len = args.length; i < len; i++){
13281                 this.add(args[i]);
13282             }
13283         }else{
13284             for(var key in objs){
13285                 if(this.allowFunctions || typeof objs[key] != "function"){
13286                     this.add(key, objs[key]);
13287                 }
13288             }
13289         }
13290     },
13291    
13292 /**
13293  * Executes the specified function once for every item in the collection, passing each
13294  * item as the first and only parameter. returning false from the function will stop the iteration.
13295  * @param {Function} fn The function to execute for each item.
13296  * @param {Object} scope (optional) The scope in which to execute the function.
13297  */
13298     each : function(fn, scope){
13299         var items = [].concat(this.items); // each safe for removal
13300         for(var i = 0, len = items.length; i < len; i++){
13301             if(fn.call(scope || items[i], items[i], i, len) === false){
13302                 break;
13303             }
13304         }
13305     },
13306    
13307 /**
13308  * Executes the specified function once for every key in the collection, passing each
13309  * key, and its associated item as the first two parameters.
13310  * @param {Function} fn The function to execute for each item.
13311  * @param {Object} scope (optional) The scope in which to execute the function.
13312  */
13313     eachKey : function(fn, scope){
13314         for(var i = 0, len = this.keys.length; i < len; i++){
13315             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13316         }
13317     },
13318    
13319 /**
13320  * Returns the first item in the collection which elicits a true return value from the
13321  * passed selection function.
13322  * @param {Function} fn The selection function to execute for each item.
13323  * @param {Object} scope (optional) The scope in which to execute the function.
13324  * @return {Object} The first item in the collection which returned true from the selection function.
13325  */
13326     find : function(fn, scope){
13327         for(var i = 0, len = this.items.length; i < len; i++){
13328             if(fn.call(scope || window, this.items[i], this.keys[i])){
13329                 return this.items[i];
13330             }
13331         }
13332         return null;
13333     },
13334    
13335 /**
13336  * Inserts an item at the specified index in the collection.
13337  * @param {Number} index The index to insert the item at.
13338  * @param {String} key The key to associate with the new item, or the item itself.
13339  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13340  * @return {Object} The item inserted.
13341  */
13342     insert : function(index, key, o){
13343         if(arguments.length == 2){
13344             o = arguments[1];
13345             key = this.getKey(o);
13346         }
13347         if(index >= this.length){
13348             return this.add(key, o);
13349         }
13350         this.length++;
13351         this.items.splice(index, 0, o);
13352         if(typeof key != "undefined" && key != null){
13353             this.map[key] = o;
13354         }
13355         this.keys.splice(index, 0, key);
13356         this.fireEvent("add", index, o, key);
13357         return o;
13358     },
13359    
13360 /**
13361  * Removed an item from the collection.
13362  * @param {Object} o The item to remove.
13363  * @return {Object} The item removed.
13364  */
13365     remove : function(o){
13366         return this.removeAt(this.indexOf(o));
13367     },
13368    
13369 /**
13370  * Remove an item from a specified index in the collection.
13371  * @param {Number} index The index within the collection of the item to remove.
13372  */
13373     removeAt : function(index){
13374         if(index < this.length && index >= 0){
13375             this.length--;
13376             var o = this.items[index];
13377             this.items.splice(index, 1);
13378             var key = this.keys[index];
13379             if(typeof key != "undefined"){
13380                 delete this.map[key];
13381             }
13382             this.keys.splice(index, 1);
13383             this.fireEvent("remove", o, key);
13384         }
13385     },
13386    
13387 /**
13388  * Removed an item associated with the passed key fom the collection.
13389  * @param {String} key The key of the item to remove.
13390  */
13391     removeKey : function(key){
13392         return this.removeAt(this.indexOfKey(key));
13393     },
13394    
13395 /**
13396  * Returns the number of items in the collection.
13397  * @return {Number} the number of items in the collection.
13398  */
13399     getCount : function(){
13400         return this.length; 
13401     },
13402    
13403 /**
13404  * Returns index within the collection of the passed Object.
13405  * @param {Object} o The item to find the index of.
13406  * @return {Number} index of the item.
13407  */
13408     indexOf : function(o){
13409         if(!this.items.indexOf){
13410             for(var i = 0, len = this.items.length; i < len; i++){
13411                 if(this.items[i] == o) {
13412                     return i;
13413                 }
13414             }
13415             return -1;
13416         }else{
13417             return this.items.indexOf(o);
13418         }
13419     },
13420    
13421 /**
13422  * Returns index within the collection of the passed key.
13423  * @param {String} key The key to find the index of.
13424  * @return {Number} index of the key.
13425  */
13426     indexOfKey : function(key){
13427         if(!this.keys.indexOf){
13428             for(var i = 0, len = this.keys.length; i < len; i++){
13429                 if(this.keys[i] == key) {
13430                     return i;
13431                 }
13432             }
13433             return -1;
13434         }else{
13435             return this.keys.indexOf(key);
13436         }
13437     },
13438    
13439 /**
13440  * Returns the item associated with the passed key OR index. Key has priority over index.
13441  * @param {String/Number} key The key or index of the item.
13442  * @return {Object} The item associated with the passed key.
13443  */
13444     item : function(key){
13445         if (key === 'length') {
13446             return null;
13447         }
13448         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13449         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13450     },
13451     
13452 /**
13453  * Returns the item at the specified index.
13454  * @param {Number} index The index of the item.
13455  * @return {Object}
13456  */
13457     itemAt : function(index){
13458         return this.items[index];
13459     },
13460     
13461 /**
13462  * Returns the item associated with the passed key.
13463  * @param {String/Number} key The key of the item.
13464  * @return {Object} The item associated with the passed key.
13465  */
13466     key : function(key){
13467         return this.map[key];
13468     },
13469    
13470 /**
13471  * Returns true if the collection contains the passed Object as an item.
13472  * @param {Object} o  The Object to look for in the collection.
13473  * @return {Boolean} True if the collection contains the Object as an item.
13474  */
13475     contains : function(o){
13476         return this.indexOf(o) != -1;
13477     },
13478    
13479 /**
13480  * Returns true if the collection contains the passed Object as a key.
13481  * @param {String} key The key to look for in the collection.
13482  * @return {Boolean} True if the collection contains the Object as a key.
13483  */
13484     containsKey : function(key){
13485         return typeof this.map[key] != "undefined";
13486     },
13487    
13488 /**
13489  * Removes all items from the collection.
13490  */
13491     clear : function(){
13492         this.length = 0;
13493         this.items = [];
13494         this.keys = [];
13495         this.map = {};
13496         this.fireEvent("clear");
13497     },
13498    
13499 /**
13500  * Returns the first item in the collection.
13501  * @return {Object} the first item in the collection..
13502  */
13503     first : function(){
13504         return this.items[0]; 
13505     },
13506    
13507 /**
13508  * Returns the last item in the collection.
13509  * @return {Object} the last item in the collection..
13510  */
13511     last : function(){
13512         return this.items[this.length-1];   
13513     },
13514     
13515     _sort : function(property, dir, fn){
13516         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13517         fn = fn || function(a, b){
13518             return a-b;
13519         };
13520         var c = [], k = this.keys, items = this.items;
13521         for(var i = 0, len = items.length; i < len; i++){
13522             c[c.length] = {key: k[i], value: items[i], index: i};
13523         }
13524         c.sort(function(a, b){
13525             var v = fn(a[property], b[property]) * dsc;
13526             if(v == 0){
13527                 v = (a.index < b.index ? -1 : 1);
13528             }
13529             return v;
13530         });
13531         for(var i = 0, len = c.length; i < len; i++){
13532             items[i] = c[i].value;
13533             k[i] = c[i].key;
13534         }
13535         this.fireEvent("sort", this);
13536     },
13537     
13538     /**
13539      * Sorts this collection with the passed comparison function
13540      * @param {String} direction (optional) "ASC" or "DESC"
13541      * @param {Function} fn (optional) comparison function
13542      */
13543     sort : function(dir, fn){
13544         this._sort("value", dir, fn);
13545     },
13546     
13547     /**
13548      * Sorts this collection by keys
13549      * @param {String} direction (optional) "ASC" or "DESC"
13550      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13551      */
13552     keySort : function(dir, fn){
13553         this._sort("key", dir, fn || function(a, b){
13554             return String(a).toUpperCase()-String(b).toUpperCase();
13555         });
13556     },
13557     
13558     /**
13559      * Returns a range of items in this collection
13560      * @param {Number} startIndex (optional) defaults to 0
13561      * @param {Number} endIndex (optional) default to the last item
13562      * @return {Array} An array of items
13563      */
13564     getRange : function(start, end){
13565         var items = this.items;
13566         if(items.length < 1){
13567             return [];
13568         }
13569         start = start || 0;
13570         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13571         var r = [];
13572         if(start <= end){
13573             for(var i = start; i <= end; i++) {
13574                     r[r.length] = items[i];
13575             }
13576         }else{
13577             for(var i = start; i >= end; i--) {
13578                     r[r.length] = items[i];
13579             }
13580         }
13581         return r;
13582     },
13583         
13584     /**
13585      * Filter the <i>objects</i> in this collection by a specific property. 
13586      * Returns a new collection that has been filtered.
13587      * @param {String} property A property on your objects
13588      * @param {String/RegExp} value Either string that the property values 
13589      * should start with or a RegExp to test against the property
13590      * @return {MixedCollection} The new filtered collection
13591      */
13592     filter : function(property, value){
13593         if(!value.exec){ // not a regex
13594             value = String(value);
13595             if(value.length == 0){
13596                 return this.clone();
13597             }
13598             value = new RegExp("^" + Roo.escapeRe(value), "i");
13599         }
13600         return this.filterBy(function(o){
13601             return o && value.test(o[property]);
13602         });
13603         },
13604     
13605     /**
13606      * Filter by a function. * Returns a new collection that has been filtered.
13607      * The passed function will be called with each 
13608      * object in the collection. If the function returns true, the value is included 
13609      * otherwise it is filtered.
13610      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13611      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13612      * @return {MixedCollection} The new filtered collection
13613      */
13614     filterBy : function(fn, scope){
13615         var r = new Roo.util.MixedCollection();
13616         r.getKey = this.getKey;
13617         var k = this.keys, it = this.items;
13618         for(var i = 0, len = it.length; i < len; i++){
13619             if(fn.call(scope||this, it[i], k[i])){
13620                                 r.add(k[i], it[i]);
13621                         }
13622         }
13623         return r;
13624     },
13625     
13626     /**
13627      * Creates a duplicate of this collection
13628      * @return {MixedCollection}
13629      */
13630     clone : function(){
13631         var r = new Roo.util.MixedCollection();
13632         var k = this.keys, it = this.items;
13633         for(var i = 0, len = it.length; i < len; i++){
13634             r.add(k[i], it[i]);
13635         }
13636         r.getKey = this.getKey;
13637         return r;
13638     }
13639 });
13640 /**
13641  * Returns the item associated with the passed key or index.
13642  * @method
13643  * @param {String/Number} key The key or index of the item.
13644  * @return {Object} The item associated with the passed key.
13645  */
13646 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13647  * Based on:
13648  * Ext JS Library 1.1.1
13649  * Copyright(c) 2006-2007, Ext JS, LLC.
13650  *
13651  * Originally Released Under LGPL - original licence link has changed is not relivant.
13652  *
13653  * Fork - LGPL
13654  * <script type="text/javascript">
13655  */
13656 /**
13657  * @class Roo.util.JSON
13658  * Modified version of Douglas Crockford"s json.js that doesn"t
13659  * mess with the Object prototype 
13660  * http://www.json.org/js.html
13661  * @singleton
13662  */
13663 Roo.util.JSON = new (function(){
13664     var useHasOwn = {}.hasOwnProperty ? true : false;
13665     
13666     // crashes Safari in some instances
13667     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13668     
13669     var pad = function(n) {
13670         return n < 10 ? "0" + n : n;
13671     };
13672     
13673     var m = {
13674         "\b": '\\b',
13675         "\t": '\\t',
13676         "\n": '\\n',
13677         "\f": '\\f',
13678         "\r": '\\r',
13679         '"' : '\\"',
13680         "\\": '\\\\'
13681     };
13682
13683     var encodeString = function(s){
13684         if (/["\\\x00-\x1f]/.test(s)) {
13685             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13686                 var c = m[b];
13687                 if(c){
13688                     return c;
13689                 }
13690                 c = b.charCodeAt();
13691                 return "\\u00" +
13692                     Math.floor(c / 16).toString(16) +
13693                     (c % 16).toString(16);
13694             }) + '"';
13695         }
13696         return '"' + s + '"';
13697     };
13698     
13699     var encodeArray = function(o){
13700         var a = ["["], b, i, l = o.length, v;
13701             for (i = 0; i < l; i += 1) {
13702                 v = o[i];
13703                 switch (typeof v) {
13704                     case "undefined":
13705                     case "function":
13706                     case "unknown":
13707                         break;
13708                     default:
13709                         if (b) {
13710                             a.push(',');
13711                         }
13712                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13713                         b = true;
13714                 }
13715             }
13716             a.push("]");
13717             return a.join("");
13718     };
13719     
13720     var encodeDate = function(o){
13721         return '"' + o.getFullYear() + "-" +
13722                 pad(o.getMonth() + 1) + "-" +
13723                 pad(o.getDate()) + "T" +
13724                 pad(o.getHours()) + ":" +
13725                 pad(o.getMinutes()) + ":" +
13726                 pad(o.getSeconds()) + '"';
13727     };
13728     
13729     /**
13730      * Encodes an Object, Array or other value
13731      * @param {Mixed} o The variable to encode
13732      * @return {String} The JSON string
13733      */
13734     this.encode = function(o)
13735     {
13736         // should this be extended to fully wrap stringify..
13737         
13738         if(typeof o == "undefined" || o === null){
13739             return "null";
13740         }else if(o instanceof Array){
13741             return encodeArray(o);
13742         }else if(o instanceof Date){
13743             return encodeDate(o);
13744         }else if(typeof o == "string"){
13745             return encodeString(o);
13746         }else if(typeof o == "number"){
13747             return isFinite(o) ? String(o) : "null";
13748         }else if(typeof o == "boolean"){
13749             return String(o);
13750         }else {
13751             var a = ["{"], b, i, v;
13752             for (i in o) {
13753                 if(!useHasOwn || o.hasOwnProperty(i)) {
13754                     v = o[i];
13755                     switch (typeof v) {
13756                     case "undefined":
13757                     case "function":
13758                     case "unknown":
13759                         break;
13760                     default:
13761                         if(b){
13762                             a.push(',');
13763                         }
13764                         a.push(this.encode(i), ":",
13765                                 v === null ? "null" : this.encode(v));
13766                         b = true;
13767                     }
13768                 }
13769             }
13770             a.push("}");
13771             return a.join("");
13772         }
13773     };
13774     
13775     /**
13776      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13777      * @param {String} json The JSON string
13778      * @return {Object} The resulting object
13779      */
13780     this.decode = function(json){
13781         
13782         return  /** eval:var:json */ eval("(" + json + ')');
13783     };
13784 })();
13785 /** 
13786  * Shorthand for {@link Roo.util.JSON#encode}
13787  * @member Roo encode 
13788  * @method */
13789 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13790 /** 
13791  * Shorthand for {@link Roo.util.JSON#decode}
13792  * @member Roo decode 
13793  * @method */
13794 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13795 /*
13796  * Based on:
13797  * Ext JS Library 1.1.1
13798  * Copyright(c) 2006-2007, Ext JS, LLC.
13799  *
13800  * Originally Released Under LGPL - original licence link has changed is not relivant.
13801  *
13802  * Fork - LGPL
13803  * <script type="text/javascript">
13804  */
13805  
13806 /**
13807  * @class Roo.util.Format
13808  * Reusable data formatting functions
13809  * @singleton
13810  */
13811 Roo.util.Format = function(){
13812     var trimRe = /^\s+|\s+$/g;
13813     return {
13814         /**
13815          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13816          * @param {String} value The string to truncate
13817          * @param {Number} length The maximum length to allow before truncating
13818          * @return {String} The converted text
13819          */
13820         ellipsis : function(value, len){
13821             if(value && value.length > len){
13822                 return value.substr(0, len-3)+"...";
13823             }
13824             return value;
13825         },
13826
13827         /**
13828          * Checks a reference and converts it to empty string if it is undefined
13829          * @param {Mixed} value Reference to check
13830          * @return {Mixed} Empty string if converted, otherwise the original value
13831          */
13832         undef : function(value){
13833             return typeof value != "undefined" ? value : "";
13834         },
13835
13836         /**
13837          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13838          * @param {String} value The string to encode
13839          * @return {String} The encoded text
13840          */
13841         htmlEncode : function(value){
13842             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13843         },
13844
13845         /**
13846          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13847          * @param {String} value The string to decode
13848          * @return {String} The decoded text
13849          */
13850         htmlDecode : function(value){
13851             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13852         },
13853
13854         /**
13855          * Trims any whitespace from either side of a string
13856          * @param {String} value The text to trim
13857          * @return {String} The trimmed text
13858          */
13859         trim : function(value){
13860             return String(value).replace(trimRe, "");
13861         },
13862
13863         /**
13864          * Returns a substring from within an original string
13865          * @param {String} value The original text
13866          * @param {Number} start The start index of the substring
13867          * @param {Number} length The length of the substring
13868          * @return {String} The substring
13869          */
13870         substr : function(value, start, length){
13871             return String(value).substr(start, length);
13872         },
13873
13874         /**
13875          * Converts a string to all lower case letters
13876          * @param {String} value The text to convert
13877          * @return {String} The converted text
13878          */
13879         lowercase : function(value){
13880             return String(value).toLowerCase();
13881         },
13882
13883         /**
13884          * Converts a string to all upper case letters
13885          * @param {String} value The text to convert
13886          * @return {String} The converted text
13887          */
13888         uppercase : function(value){
13889             return String(value).toUpperCase();
13890         },
13891
13892         /**
13893          * Converts the first character only of a string to upper case
13894          * @param {String} value The text to convert
13895          * @return {String} The converted text
13896          */
13897         capitalize : function(value){
13898             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13899         },
13900
13901         // private
13902         call : function(value, fn){
13903             if(arguments.length > 2){
13904                 var args = Array.prototype.slice.call(arguments, 2);
13905                 args.unshift(value);
13906                  
13907                 return /** eval:var:value */  eval(fn).apply(window, args);
13908             }else{
13909                 /** eval:var:value */
13910                 return /** eval:var:value */ eval(fn).call(window, value);
13911             }
13912         },
13913
13914        
13915         /**
13916          * safer version of Math.toFixed..??/
13917          * @param {Number/String} value The numeric value to format
13918          * @param {Number/String} value Decimal places 
13919          * @return {String} The formatted currency string
13920          */
13921         toFixed : function(v, n)
13922         {
13923             // why not use to fixed - precision is buggered???
13924             if (!n) {
13925                 return Math.round(v-0);
13926             }
13927             var fact = Math.pow(10,n+1);
13928             v = (Math.round((v-0)*fact))/fact;
13929             var z = (''+fact).substring(2);
13930             if (v == Math.floor(v)) {
13931                 return Math.floor(v) + '.' + z;
13932             }
13933             
13934             // now just padd decimals..
13935             var ps = String(v).split('.');
13936             var fd = (ps[1] + z);
13937             var r = fd.substring(0,n); 
13938             var rm = fd.substring(n); 
13939             if (rm < 5) {
13940                 return ps[0] + '.' + r;
13941             }
13942             r*=1; // turn it into a number;
13943             r++;
13944             if (String(r).length != n) {
13945                 ps[0]*=1;
13946                 ps[0]++;
13947                 r = String(r).substring(1); // chop the end off.
13948             }
13949             
13950             return ps[0] + '.' + r;
13951              
13952         },
13953         
13954         /**
13955          * Format a number as US currency
13956          * @param {Number/String} value The numeric value to format
13957          * @return {String} The formatted currency string
13958          */
13959         usMoney : function(v){
13960             return '$' + Roo.util.Format.number(v);
13961         },
13962         
13963         /**
13964          * Format a number
13965          * eventually this should probably emulate php's number_format
13966          * @param {Number/String} value The numeric value to format
13967          * @param {Number} decimals number of decimal places
13968          * @param {String} delimiter for thousands (default comma)
13969          * @return {String} The formatted currency string
13970          */
13971         number : function(v, decimals, thousandsDelimiter)
13972         {
13973             // multiply and round.
13974             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13975             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13976             
13977             var mul = Math.pow(10, decimals);
13978             var zero = String(mul).substring(1);
13979             v = (Math.round((v-0)*mul))/mul;
13980             
13981             // if it's '0' number.. then
13982             
13983             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13984             v = String(v);
13985             var ps = v.split('.');
13986             var whole = ps[0];
13987             
13988             var r = /(\d+)(\d{3})/;
13989             // add comma's
13990             
13991             if(thousandsDelimiter.length != 0) {
13992                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13993             } 
13994             
13995             var sub = ps[1] ?
13996                     // has decimals..
13997                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13998                     // does not have decimals
13999                     (decimals ? ('.' + zero) : '');
14000             
14001             
14002             return whole + sub ;
14003         },
14004         
14005         /**
14006          * Parse a value into a formatted date using the specified format pattern.
14007          * @param {Mixed} value The value to format
14008          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
14009          * @return {String} The formatted date string
14010          */
14011         date : function(v, format){
14012             if(!v){
14013                 return "";
14014             }
14015             if(!(v instanceof Date)){
14016                 v = new Date(Date.parse(v));
14017             }
14018             return v.dateFormat(format || Roo.util.Format.defaults.date);
14019         },
14020
14021         /**
14022          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
14023          * @param {String} format Any valid date format string
14024          * @return {Function} The date formatting function
14025          */
14026         dateRenderer : function(format){
14027             return function(v){
14028                 return Roo.util.Format.date(v, format);  
14029             };
14030         },
14031
14032         // private
14033         stripTagsRE : /<\/?[^>]+>/gi,
14034         
14035         /**
14036          * Strips all HTML tags
14037          * @param {Mixed} value The text from which to strip tags
14038          * @return {String} The stripped text
14039          */
14040         stripTags : function(v){
14041             return !v ? v : String(v).replace(this.stripTagsRE, "");
14042         },
14043         
14044         /**
14045          * Size in Mb,Gb etc.
14046          * @param {Number} value The number to be formated
14047          * @param {number} decimals how many decimal places
14048          * @return {String} the formated string
14049          */
14050         size : function(value, decimals)
14051         {
14052             var sizes = ['b', 'k', 'M', 'G', 'T'];
14053             if (value == 0) {
14054                 return 0;
14055             }
14056             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
14057             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
14058         }
14059         
14060         
14061         
14062     };
14063 }();
14064 Roo.util.Format.defaults = {
14065     date : 'd/M/Y'
14066 };/*
14067  * Based on:
14068  * Ext JS Library 1.1.1
14069  * Copyright(c) 2006-2007, Ext JS, LLC.
14070  *
14071  * Originally Released Under LGPL - original licence link has changed is not relivant.
14072  *
14073  * Fork - LGPL
14074  * <script type="text/javascript">
14075  */
14076
14077
14078  
14079
14080 /**
14081  * @class Roo.MasterTemplate
14082  * @extends Roo.Template
14083  * Provides a template that can have child templates. The syntax is:
14084 <pre><code>
14085 var t = new Roo.MasterTemplate(
14086         '&lt;select name="{name}"&gt;',
14087                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14088         '&lt;/select&gt;'
14089 );
14090 t.add('options', {value: 'foo', text: 'bar'});
14091 // or you can add multiple child elements in one shot
14092 t.addAll('options', [
14093     {value: 'foo', text: 'bar'},
14094     {value: 'foo2', text: 'bar2'},
14095     {value: 'foo3', text: 'bar3'}
14096 ]);
14097 // then append, applying the master template values
14098 t.append('my-form', {name: 'my-select'});
14099 </code></pre>
14100 * A name attribute for the child template is not required if you have only one child
14101 * template or you want to refer to them by index.
14102  */
14103 Roo.MasterTemplate = function(){
14104     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14105     this.originalHtml = this.html;
14106     var st = {};
14107     var m, re = this.subTemplateRe;
14108     re.lastIndex = 0;
14109     var subIndex = 0;
14110     while(m = re.exec(this.html)){
14111         var name = m[1], content = m[2];
14112         st[subIndex] = {
14113             name: name,
14114             index: subIndex,
14115             buffer: [],
14116             tpl : new Roo.Template(content)
14117         };
14118         if(name){
14119             st[name] = st[subIndex];
14120         }
14121         st[subIndex].tpl.compile();
14122         st[subIndex].tpl.call = this.call.createDelegate(this);
14123         subIndex++;
14124     }
14125     this.subCount = subIndex;
14126     this.subs = st;
14127 };
14128 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14129     /**
14130     * The regular expression used to match sub templates
14131     * @type RegExp
14132     * @property
14133     */
14134     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14135
14136     /**
14137      * Applies the passed values to a child template.
14138      * @param {String/Number} name (optional) The name or index of the child template
14139      * @param {Array/Object} values The values to be applied to the template
14140      * @return {MasterTemplate} this
14141      */
14142      add : function(name, values){
14143         if(arguments.length == 1){
14144             values = arguments[0];
14145             name = 0;
14146         }
14147         var s = this.subs[name];
14148         s.buffer[s.buffer.length] = s.tpl.apply(values);
14149         return this;
14150     },
14151
14152     /**
14153      * Applies all the passed values to a child template.
14154      * @param {String/Number} name (optional) The name or index of the child template
14155      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14156      * @param {Boolean} reset (optional) True to reset the template first
14157      * @return {MasterTemplate} this
14158      */
14159     fill : function(name, values, reset){
14160         var a = arguments;
14161         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14162             values = a[0];
14163             name = 0;
14164             reset = a[1];
14165         }
14166         if(reset){
14167             this.reset();
14168         }
14169         for(var i = 0, len = values.length; i < len; i++){
14170             this.add(name, values[i]);
14171         }
14172         return this;
14173     },
14174
14175     /**
14176      * Resets the template for reuse
14177      * @return {MasterTemplate} this
14178      */
14179      reset : function(){
14180         var s = this.subs;
14181         for(var i = 0; i < this.subCount; i++){
14182             s[i].buffer = [];
14183         }
14184         return this;
14185     },
14186
14187     applyTemplate : function(values){
14188         var s = this.subs;
14189         var replaceIndex = -1;
14190         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14191             return s[++replaceIndex].buffer.join("");
14192         });
14193         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14194     },
14195
14196     apply : function(){
14197         return this.applyTemplate.apply(this, arguments);
14198     },
14199
14200     compile : function(){return this;}
14201 });
14202
14203 /**
14204  * Alias for fill().
14205  * @method
14206  */
14207 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14208  /**
14209  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14210  * var tpl = Roo.MasterTemplate.from('element-id');
14211  * @param {String/HTMLElement} el
14212  * @param {Object} config
14213  * @static
14214  */
14215 Roo.MasterTemplate.from = function(el, config){
14216     el = Roo.getDom(el);
14217     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14218 };/*
14219  * Based on:
14220  * Ext JS Library 1.1.1
14221  * Copyright(c) 2006-2007, Ext JS, LLC.
14222  *
14223  * Originally Released Under LGPL - original licence link has changed is not relivant.
14224  *
14225  * Fork - LGPL
14226  * <script type="text/javascript">
14227  */
14228
14229  
14230 /**
14231  * @class Roo.util.CSS
14232  * Utility class for manipulating CSS rules
14233  * @singleton
14234  */
14235 Roo.util.CSS = function(){
14236         var rules = null;
14237         var doc = document;
14238
14239     var camelRe = /(-[a-z])/gi;
14240     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14241
14242    return {
14243    /**
14244     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14245     * tag and appended to the HEAD of the document.
14246     * @param {String|Object} cssText The text containing the css rules
14247     * @param {String} id An id to add to the stylesheet for later removal
14248     * @return {StyleSheet}
14249     */
14250     createStyleSheet : function(cssText, id){
14251         var ss;
14252         var head = doc.getElementsByTagName("head")[0];
14253         var nrules = doc.createElement("style");
14254         nrules.setAttribute("type", "text/css");
14255         if(id){
14256             nrules.setAttribute("id", id);
14257         }
14258         if (typeof(cssText) != 'string') {
14259             // support object maps..
14260             // not sure if this a good idea.. 
14261             // perhaps it should be merged with the general css handling
14262             // and handle js style props.
14263             var cssTextNew = [];
14264             for(var n in cssText) {
14265                 var citems = [];
14266                 for(var k in cssText[n]) {
14267                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14268                 }
14269                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14270                 
14271             }
14272             cssText = cssTextNew.join("\n");
14273             
14274         }
14275        
14276        
14277        if(Roo.isIE){
14278            head.appendChild(nrules);
14279            ss = nrules.styleSheet;
14280            ss.cssText = cssText;
14281        }else{
14282            try{
14283                 nrules.appendChild(doc.createTextNode(cssText));
14284            }catch(e){
14285                nrules.cssText = cssText; 
14286            }
14287            head.appendChild(nrules);
14288            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14289        }
14290        this.cacheStyleSheet(ss);
14291        return ss;
14292    },
14293
14294    /**
14295     * Removes a style or link tag by id
14296     * @param {String} id The id of the tag
14297     */
14298    removeStyleSheet : function(id){
14299        var existing = doc.getElementById(id);
14300        if(existing){
14301            existing.parentNode.removeChild(existing);
14302        }
14303    },
14304
14305    /**
14306     * Dynamically swaps an existing stylesheet reference for a new one
14307     * @param {String} id The id of an existing link tag to remove
14308     * @param {String} url The href of the new stylesheet to include
14309     */
14310    swapStyleSheet : function(id, url){
14311        this.removeStyleSheet(id);
14312        var ss = doc.createElement("link");
14313        ss.setAttribute("rel", "stylesheet");
14314        ss.setAttribute("type", "text/css");
14315        ss.setAttribute("id", id);
14316        ss.setAttribute("href", url);
14317        doc.getElementsByTagName("head")[0].appendChild(ss);
14318    },
14319    
14320    /**
14321     * Refresh the rule cache if you have dynamically added stylesheets
14322     * @return {Object} An object (hash) of rules indexed by selector
14323     */
14324    refreshCache : function(){
14325        return this.getRules(true);
14326    },
14327
14328    // private
14329    cacheStyleSheet : function(stylesheet){
14330        if(!rules){
14331            rules = {};
14332        }
14333        try{// try catch for cross domain access issue
14334            var ssRules = stylesheet.cssRules || stylesheet.rules;
14335            for(var j = ssRules.length-1; j >= 0; --j){
14336                rules[ssRules[j].selectorText] = ssRules[j];
14337            }
14338        }catch(e){}
14339    },
14340    
14341    /**
14342     * Gets all css rules for the document
14343     * @param {Boolean} refreshCache true to refresh the internal cache
14344     * @return {Object} An object (hash) of rules indexed by selector
14345     */
14346    getRules : function(refreshCache){
14347                 if(rules == null || refreshCache){
14348                         rules = {};
14349                         var ds = doc.styleSheets;
14350                         for(var i =0, len = ds.length; i < len; i++){
14351                             try{
14352                         this.cacheStyleSheet(ds[i]);
14353                     }catch(e){} 
14354                 }
14355                 }
14356                 return rules;
14357         },
14358         
14359         /**
14360     * Gets an an individual CSS rule by selector(s)
14361     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14362     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14363     * @return {CSSRule} The CSS rule or null if one is not found
14364     */
14365    getRule : function(selector, refreshCache){
14366                 var rs = this.getRules(refreshCache);
14367                 if(!(selector instanceof Array)){
14368                     return rs[selector];
14369                 }
14370                 for(var i = 0; i < selector.length; i++){
14371                         if(rs[selector[i]]){
14372                                 return rs[selector[i]];
14373                         }
14374                 }
14375                 return null;
14376         },
14377         
14378         
14379         /**
14380     * Updates a rule property
14381     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14382     * @param {String} property The css property
14383     * @param {String} value The new value for the property
14384     * @return {Boolean} true If a rule was found and updated
14385     */
14386    updateRule : function(selector, property, value){
14387                 if(!(selector instanceof Array)){
14388                         var rule = this.getRule(selector);
14389                         if(rule){
14390                                 rule.style[property.replace(camelRe, camelFn)] = value;
14391                                 return true;
14392                         }
14393                 }else{
14394                         for(var i = 0; i < selector.length; i++){
14395                                 if(this.updateRule(selector[i], property, value)){
14396                                         return true;
14397                                 }
14398                         }
14399                 }
14400                 return false;
14401         }
14402    };   
14403 }();/*
14404  * Based on:
14405  * Ext JS Library 1.1.1
14406  * Copyright(c) 2006-2007, Ext JS, LLC.
14407  *
14408  * Originally Released Under LGPL - original licence link has changed is not relivant.
14409  *
14410  * Fork - LGPL
14411  * <script type="text/javascript">
14412  */
14413
14414  
14415
14416 /**
14417  * @class Roo.util.ClickRepeater
14418  * @extends Roo.util.Observable
14419  * 
14420  * A wrapper class which can be applied to any element. Fires a "click" event while the
14421  * mouse is pressed. The interval between firings may be specified in the config but
14422  * defaults to 10 milliseconds.
14423  * 
14424  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14425  * 
14426  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14427  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14428  * Similar to an autorepeat key delay.
14429  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14430  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14431  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14432  *           "interval" and "delay" are ignored. "immediate" is honored.
14433  * @cfg {Boolean} preventDefault True to prevent the default click event
14434  * @cfg {Boolean} stopDefault True to stop the default click event
14435  * 
14436  * @history
14437  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14438  *     2007-02-02 jvs Renamed to ClickRepeater
14439  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14440  *
14441  *  @constructor
14442  * @param {String/HTMLElement/Element} el The element to listen on
14443  * @param {Object} config
14444  **/
14445 Roo.util.ClickRepeater = function(el, config)
14446 {
14447     this.el = Roo.get(el);
14448     this.el.unselectable();
14449
14450     Roo.apply(this, config);
14451
14452     this.addEvents({
14453     /**
14454      * @event mousedown
14455      * Fires when the mouse button is depressed.
14456      * @param {Roo.util.ClickRepeater} this
14457      */
14458         "mousedown" : true,
14459     /**
14460      * @event click
14461      * Fires on a specified interval during the time the element is pressed.
14462      * @param {Roo.util.ClickRepeater} this
14463      */
14464         "click" : true,
14465     /**
14466      * @event mouseup
14467      * Fires when the mouse key is released.
14468      * @param {Roo.util.ClickRepeater} this
14469      */
14470         "mouseup" : true
14471     });
14472
14473     this.el.on("mousedown", this.handleMouseDown, this);
14474     if(this.preventDefault || this.stopDefault){
14475         this.el.on("click", function(e){
14476             if(this.preventDefault){
14477                 e.preventDefault();
14478             }
14479             if(this.stopDefault){
14480                 e.stopEvent();
14481             }
14482         }, this);
14483     }
14484
14485     // allow inline handler
14486     if(this.handler){
14487         this.on("click", this.handler,  this.scope || this);
14488     }
14489
14490     Roo.util.ClickRepeater.superclass.constructor.call(this);
14491 };
14492
14493 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14494     interval : 20,
14495     delay: 250,
14496     preventDefault : true,
14497     stopDefault : false,
14498     timer : 0,
14499
14500     // private
14501     handleMouseDown : function(){
14502         clearTimeout(this.timer);
14503         this.el.blur();
14504         if(this.pressClass){
14505             this.el.addClass(this.pressClass);
14506         }
14507         this.mousedownTime = new Date();
14508
14509         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14510         this.el.on("mouseout", this.handleMouseOut, this);
14511
14512         this.fireEvent("mousedown", this);
14513         this.fireEvent("click", this);
14514         
14515         this.timer = this.click.defer(this.delay || this.interval, this);
14516     },
14517
14518     // private
14519     click : function(){
14520         this.fireEvent("click", this);
14521         this.timer = this.click.defer(this.getInterval(), this);
14522     },
14523
14524     // private
14525     getInterval: function(){
14526         if(!this.accelerate){
14527             return this.interval;
14528         }
14529         var pressTime = this.mousedownTime.getElapsed();
14530         if(pressTime < 500){
14531             return 400;
14532         }else if(pressTime < 1700){
14533             return 320;
14534         }else if(pressTime < 2600){
14535             return 250;
14536         }else if(pressTime < 3500){
14537             return 180;
14538         }else if(pressTime < 4400){
14539             return 140;
14540         }else if(pressTime < 5300){
14541             return 80;
14542         }else if(pressTime < 6200){
14543             return 50;
14544         }else{
14545             return 10;
14546         }
14547     },
14548
14549     // private
14550     handleMouseOut : function(){
14551         clearTimeout(this.timer);
14552         if(this.pressClass){
14553             this.el.removeClass(this.pressClass);
14554         }
14555         this.el.on("mouseover", this.handleMouseReturn, this);
14556     },
14557
14558     // private
14559     handleMouseReturn : function(){
14560         this.el.un("mouseover", this.handleMouseReturn);
14561         if(this.pressClass){
14562             this.el.addClass(this.pressClass);
14563         }
14564         this.click();
14565     },
14566
14567     // private
14568     handleMouseUp : function(){
14569         clearTimeout(this.timer);
14570         this.el.un("mouseover", this.handleMouseReturn);
14571         this.el.un("mouseout", this.handleMouseOut);
14572         Roo.get(document).un("mouseup", this.handleMouseUp);
14573         this.el.removeClass(this.pressClass);
14574         this.fireEvent("mouseup", this);
14575     }
14576 });/**
14577  * @class Roo.util.Clipboard
14578  * @static
14579  * 
14580  * Clipboard UTILS
14581  * 
14582  **/
14583 Roo.util.Clipboard = {
14584     /**
14585      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14586      * @param {String} text to copy to clipboard
14587      */
14588     write : function(text) {
14589         // navigator clipboard api needs a secure context (https)
14590         if (navigator.clipboard && window.isSecureContext) {
14591             // navigator clipboard api method'
14592             navigator.clipboard.writeText(text);
14593             return ;
14594         } 
14595         // text area method
14596         var ta = document.createElement("textarea");
14597         ta.value = text;
14598         // make the textarea out of viewport
14599         ta.style.position = "fixed";
14600         ta.style.left = "-999999px";
14601         ta.style.top = "-999999px";
14602         document.body.appendChild(ta);
14603         ta.focus();
14604         ta.select();
14605         document.execCommand('copy');
14606         (function() {
14607             ta.remove();
14608         }).defer(100);
14609         
14610     }
14611         
14612 }
14613     /*
14614  * Based on:
14615  * Ext JS Library 1.1.1
14616  * Copyright(c) 2006-2007, Ext JS, LLC.
14617  *
14618  * Originally Released Under LGPL - original licence link has changed is not relivant.
14619  *
14620  * Fork - LGPL
14621  * <script type="text/javascript">
14622  */
14623
14624  
14625 /**
14626  * @class Roo.KeyNav
14627  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14628  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14629  * way to implement custom navigation schemes for any UI component.</p>
14630  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14631  * pageUp, pageDown, del, home, end.  Usage:</p>
14632  <pre><code>
14633 var nav = new Roo.KeyNav("my-element", {
14634     "left" : function(e){
14635         this.moveLeft(e.ctrlKey);
14636     },
14637     "right" : function(e){
14638         this.moveRight(e.ctrlKey);
14639     },
14640     "enter" : function(e){
14641         this.save();
14642     },
14643     scope : this
14644 });
14645 </code></pre>
14646  * @constructor
14647  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14648  * @param {Object} config The config
14649  */
14650 Roo.KeyNav = function(el, config){
14651     this.el = Roo.get(el);
14652     Roo.apply(this, config);
14653     if(!this.disabled){
14654         this.disabled = true;
14655         this.enable();
14656     }
14657 };
14658
14659 Roo.KeyNav.prototype = {
14660     /**
14661      * @cfg {Boolean} disabled
14662      * True to disable this KeyNav instance (defaults to false)
14663      */
14664     disabled : false,
14665     /**
14666      * @cfg {String} defaultEventAction
14667      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14668      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14669      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14670      */
14671     defaultEventAction: "stopEvent",
14672     /**
14673      * @cfg {Boolean} forceKeyDown
14674      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14675      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14676      * handle keydown instead of keypress.
14677      */
14678     forceKeyDown : false,
14679
14680     // private
14681     prepareEvent : function(e){
14682         var k = e.getKey();
14683         var h = this.keyToHandler[k];
14684         //if(h && this[h]){
14685         //    e.stopPropagation();
14686         //}
14687         if(Roo.isSafari && h && k >= 37 && k <= 40){
14688             e.stopEvent();
14689         }
14690     },
14691
14692     // private
14693     relay : function(e){
14694         var k = e.getKey();
14695         var h = this.keyToHandler[k];
14696         if(h && this[h]){
14697             if(this.doRelay(e, this[h], h) !== true){
14698                 e[this.defaultEventAction]();
14699             }
14700         }
14701     },
14702
14703     // private
14704     doRelay : function(e, h, hname){
14705         return h.call(this.scope || this, e);
14706     },
14707
14708     // possible handlers
14709     enter : false,
14710     left : false,
14711     right : false,
14712     up : false,
14713     down : false,
14714     tab : false,
14715     esc : false,
14716     pageUp : false,
14717     pageDown : false,
14718     del : false,
14719     home : false,
14720     end : false,
14721
14722     // quick lookup hash
14723     keyToHandler : {
14724         37 : "left",
14725         39 : "right",
14726         38 : "up",
14727         40 : "down",
14728         33 : "pageUp",
14729         34 : "pageDown",
14730         46 : "del",
14731         36 : "home",
14732         35 : "end",
14733         13 : "enter",
14734         27 : "esc",
14735         9  : "tab"
14736     },
14737
14738         /**
14739          * Enable this KeyNav
14740          */
14741         enable: function(){
14742                 if(this.disabled){
14743             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14744             // the EventObject will normalize Safari automatically
14745             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14746                 this.el.on("keydown", this.relay,  this);
14747             }else{
14748                 this.el.on("keydown", this.prepareEvent,  this);
14749                 this.el.on("keypress", this.relay,  this);
14750             }
14751                     this.disabled = false;
14752                 }
14753         },
14754
14755         /**
14756          * Disable this KeyNav
14757          */
14758         disable: function(){
14759                 if(!this.disabled){
14760                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14761                 this.el.un("keydown", this.relay);
14762             }else{
14763                 this.el.un("keydown", this.prepareEvent);
14764                 this.el.un("keypress", this.relay);
14765             }
14766                     this.disabled = true;
14767                 }
14768         }
14769 };/*
14770  * Based on:
14771  * Ext JS Library 1.1.1
14772  * Copyright(c) 2006-2007, Ext JS, LLC.
14773  *
14774  * Originally Released Under LGPL - original licence link has changed is not relivant.
14775  *
14776  * Fork - LGPL
14777  * <script type="text/javascript">
14778  */
14779
14780  
14781 /**
14782  * @class Roo.KeyMap
14783  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14784  * The constructor accepts the same config object as defined by {@link #addBinding}.
14785  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14786  * combination it will call the function with this signature (if the match is a multi-key
14787  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14788  * A KeyMap can also handle a string representation of keys.<br />
14789  * Usage:
14790  <pre><code>
14791 // map one key by key code
14792 var map = new Roo.KeyMap("my-element", {
14793     key: 13, // or Roo.EventObject.ENTER
14794     fn: myHandler,
14795     scope: myObject
14796 });
14797
14798 // map multiple keys to one action by string
14799 var map = new Roo.KeyMap("my-element", {
14800     key: "a\r\n\t",
14801     fn: myHandler,
14802     scope: myObject
14803 });
14804
14805 // map multiple keys to multiple actions by strings and array of codes
14806 var map = new Roo.KeyMap("my-element", [
14807     {
14808         key: [10,13],
14809         fn: function(){ alert("Return was pressed"); }
14810     }, {
14811         key: "abc",
14812         fn: function(){ alert('a, b or c was pressed'); }
14813     }, {
14814         key: "\t",
14815         ctrl:true,
14816         shift:true,
14817         fn: function(){ alert('Control + shift + tab was pressed.'); }
14818     }
14819 ]);
14820 </code></pre>
14821  * <b>Note: A KeyMap starts enabled</b>
14822  * @constructor
14823  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14824  * @param {Object} config The config (see {@link #addBinding})
14825  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14826  */
14827 Roo.KeyMap = function(el, config, eventName){
14828     this.el  = Roo.get(el);
14829     this.eventName = eventName || "keydown";
14830     this.bindings = [];
14831     if(config){
14832         this.addBinding(config);
14833     }
14834     this.enable();
14835 };
14836
14837 Roo.KeyMap.prototype = {
14838     /**
14839      * True to stop the event from bubbling and prevent the default browser action if the
14840      * key was handled by the KeyMap (defaults to false)
14841      * @type Boolean
14842      */
14843     stopEvent : false,
14844
14845     /**
14846      * Add a new binding to this KeyMap. The following config object properties are supported:
14847      * <pre>
14848 Property    Type             Description
14849 ----------  ---------------  ----------------------------------------------------------------------
14850 key         String/Array     A single keycode or an array of keycodes to handle
14851 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14852 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14853 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14854 fn          Function         The function to call when KeyMap finds the expected key combination
14855 scope       Object           The scope of the callback function
14856 </pre>
14857      *
14858      * Usage:
14859      * <pre><code>
14860 // Create a KeyMap
14861 var map = new Roo.KeyMap(document, {
14862     key: Roo.EventObject.ENTER,
14863     fn: handleKey,
14864     scope: this
14865 });
14866
14867 //Add a new binding to the existing KeyMap later
14868 map.addBinding({
14869     key: 'abc',
14870     shift: true,
14871     fn: handleKey,
14872     scope: this
14873 });
14874 </code></pre>
14875      * @param {Object/Array} config A single KeyMap config or an array of configs
14876      */
14877         addBinding : function(config){
14878         if(config instanceof Array){
14879             for(var i = 0, len = config.length; i < len; i++){
14880                 this.addBinding(config[i]);
14881             }
14882             return;
14883         }
14884         var keyCode = config.key,
14885             shift = config.shift, 
14886             ctrl = config.ctrl, 
14887             alt = config.alt,
14888             fn = config.fn,
14889             scope = config.scope;
14890         if(typeof keyCode == "string"){
14891             var ks = [];
14892             var keyString = keyCode.toUpperCase();
14893             for(var j = 0, len = keyString.length; j < len; j++){
14894                 ks.push(keyString.charCodeAt(j));
14895             }
14896             keyCode = ks;
14897         }
14898         var keyArray = keyCode instanceof Array;
14899         var handler = function(e){
14900             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14901                 var k = e.getKey();
14902                 if(keyArray){
14903                     for(var i = 0, len = keyCode.length; i < len; i++){
14904                         if(keyCode[i] == k){
14905                           if(this.stopEvent){
14906                               e.stopEvent();
14907                           }
14908                           fn.call(scope || window, k, e);
14909                           return;
14910                         }
14911                     }
14912                 }else{
14913                     if(k == keyCode){
14914                         if(this.stopEvent){
14915                            e.stopEvent();
14916                         }
14917                         fn.call(scope || window, k, e);
14918                     }
14919                 }
14920             }
14921         };
14922         this.bindings.push(handler);  
14923         },
14924
14925     /**
14926      * Shorthand for adding a single key listener
14927      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14928      * following options:
14929      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14930      * @param {Function} fn The function to call
14931      * @param {Object} scope (optional) The scope of the function
14932      */
14933     on : function(key, fn, scope){
14934         var keyCode, shift, ctrl, alt;
14935         if(typeof key == "object" && !(key instanceof Array)){
14936             keyCode = key.key;
14937             shift = key.shift;
14938             ctrl = key.ctrl;
14939             alt = key.alt;
14940         }else{
14941             keyCode = key;
14942         }
14943         this.addBinding({
14944             key: keyCode,
14945             shift: shift,
14946             ctrl: ctrl,
14947             alt: alt,
14948             fn: fn,
14949             scope: scope
14950         })
14951     },
14952
14953     // private
14954     handleKeyDown : function(e){
14955             if(this.enabled){ //just in case
14956             var b = this.bindings;
14957             for(var i = 0, len = b.length; i < len; i++){
14958                 b[i].call(this, e);
14959             }
14960             }
14961         },
14962         
14963         /**
14964          * Returns true if this KeyMap is enabled
14965          * @return {Boolean} 
14966          */
14967         isEnabled : function(){
14968             return this.enabled;  
14969         },
14970         
14971         /**
14972          * Enables this KeyMap
14973          */
14974         enable: function(){
14975                 if(!this.enabled){
14976                     this.el.on(this.eventName, this.handleKeyDown, this);
14977                     this.enabled = true;
14978                 }
14979         },
14980
14981         /**
14982          * Disable this KeyMap
14983          */
14984         disable: function(){
14985                 if(this.enabled){
14986                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14987                     this.enabled = false;
14988                 }
14989         }
14990 };/*
14991  * Based on:
14992  * Ext JS Library 1.1.1
14993  * Copyright(c) 2006-2007, Ext JS, LLC.
14994  *
14995  * Originally Released Under LGPL - original licence link has changed is not relivant.
14996  *
14997  * Fork - LGPL
14998  * <script type="text/javascript">
14999  */
15000
15001  
15002 /**
15003  * @class Roo.util.TextMetrics
15004  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
15005  * wide, in pixels, a given block of text will be.
15006  * @singleton
15007  */
15008 Roo.util.TextMetrics = function(){
15009     var shared;
15010     return {
15011         /**
15012          * Measures the size of the specified text
15013          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
15014          * that can affect the size of the rendered text
15015          * @param {String} text The text to measure
15016          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15017          * in order to accurately measure the text height
15018          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15019          */
15020         measure : function(el, text, fixedWidth){
15021             if(!shared){
15022                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
15023             }
15024             shared.bind(el);
15025             shared.setFixedWidth(fixedWidth || 'auto');
15026             return shared.getSize(text);
15027         },
15028
15029         /**
15030          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
15031          * the overhead of multiple calls to initialize the style properties on each measurement.
15032          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
15033          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15034          * in order to accurately measure the text height
15035          * @return {Roo.util.TextMetrics.Instance} instance The new instance
15036          */
15037         createInstance : function(el, fixedWidth){
15038             return Roo.util.TextMetrics.Instance(el, fixedWidth);
15039         }
15040     };
15041 }();
15042
15043  
15044
15045 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
15046     var ml = new Roo.Element(document.createElement('div'));
15047     document.body.appendChild(ml.dom);
15048     ml.position('absolute');
15049     ml.setLeftTop(-1000, -1000);
15050     ml.hide();
15051
15052     if(fixedWidth){
15053         ml.setWidth(fixedWidth);
15054     }
15055      
15056     var instance = {
15057         /**
15058          * Returns the size of the specified text based on the internal element's style and width properties
15059          * @memberOf Roo.util.TextMetrics.Instance#
15060          * @param {String} text The text to measure
15061          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15062          */
15063         getSize : function(text){
15064             ml.update(text);
15065             var s = ml.getSize();
15066             ml.update('');
15067             return s;
15068         },
15069
15070         /**
15071          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15072          * that can affect the size of the rendered text
15073          * @memberOf Roo.util.TextMetrics.Instance#
15074          * @param {String/HTMLElement} el The element, dom node or id
15075          */
15076         bind : function(el){
15077             ml.setStyle(
15078                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15079             );
15080         },
15081
15082         /**
15083          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15084          * to set a fixed width in order to accurately measure the text height.
15085          * @memberOf Roo.util.TextMetrics.Instance#
15086          * @param {Number} width The width to set on the element
15087          */
15088         setFixedWidth : function(width){
15089             ml.setWidth(width);
15090         },
15091
15092         /**
15093          * Returns the measured width of the specified text
15094          * @memberOf Roo.util.TextMetrics.Instance#
15095          * @param {String} text The text to measure
15096          * @return {Number} width The width in pixels
15097          */
15098         getWidth : function(text){
15099             ml.dom.style.width = 'auto';
15100             return this.getSize(text).width;
15101         },
15102
15103         /**
15104          * Returns the measured height of the specified text.  For multiline text, be sure to call
15105          * {@link #setFixedWidth} if necessary.
15106          * @memberOf Roo.util.TextMetrics.Instance#
15107          * @param {String} text The text to measure
15108          * @return {Number} height The height in pixels
15109          */
15110         getHeight : function(text){
15111             return this.getSize(text).height;
15112         }
15113     };
15114
15115     instance.bind(bindTo);
15116
15117     return instance;
15118 };
15119
15120 // backwards compat
15121 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15122  * Based on:
15123  * Ext JS Library 1.1.1
15124  * Copyright(c) 2006-2007, Ext JS, LLC.
15125  *
15126  * Originally Released Under LGPL - original licence link has changed is not relivant.
15127  *
15128  * Fork - LGPL
15129  * <script type="text/javascript">
15130  */
15131
15132 /**
15133  * @class Roo.state.Provider
15134  * Abstract base class for state provider implementations. This class provides methods
15135  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15136  * Provider interface.
15137  */
15138 Roo.state.Provider = function(){
15139     /**
15140      * @event statechange
15141      * Fires when a state change occurs.
15142      * @param {Provider} this This state provider
15143      * @param {String} key The state key which was changed
15144      * @param {String} value The encoded value for the state
15145      */
15146     this.addEvents({
15147         "statechange": true
15148     });
15149     this.state = {};
15150     Roo.state.Provider.superclass.constructor.call(this);
15151 };
15152 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15153     /**
15154      * Returns the current value for a key
15155      * @param {String} name The key name
15156      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15157      * @return {Mixed} The state data
15158      */
15159     get : function(name, defaultValue){
15160         return typeof this.state[name] == "undefined" ?
15161             defaultValue : this.state[name];
15162     },
15163     
15164     /**
15165      * Clears a value from the state
15166      * @param {String} name The key name
15167      */
15168     clear : function(name){
15169         delete this.state[name];
15170         this.fireEvent("statechange", this, name, null);
15171     },
15172     
15173     /**
15174      * Sets the value for a key
15175      * @param {String} name The key name
15176      * @param {Mixed} value The value to set
15177      */
15178     set : function(name, value){
15179         this.state[name] = value;
15180         this.fireEvent("statechange", this, name, value);
15181     },
15182     
15183     /**
15184      * Decodes a string previously encoded with {@link #encodeValue}.
15185      * @param {String} value The value to decode
15186      * @return {Mixed} The decoded value
15187      */
15188     decodeValue : function(cookie){
15189         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15190         var matches = re.exec(unescape(cookie));
15191         if(!matches || !matches[1]) {
15192             return; // non state cookie
15193         }
15194         var type = matches[1];
15195         var v = matches[2];
15196         switch(type){
15197             case "n":
15198                 return parseFloat(v);
15199             case "d":
15200                 return new Date(Date.parse(v));
15201             case "b":
15202                 return (v == "1");
15203             case "a":
15204                 var all = [];
15205                 var values = v.split("^");
15206                 for(var i = 0, len = values.length; i < len; i++){
15207                     all.push(this.decodeValue(values[i]));
15208                 }
15209                 return all;
15210            case "o":
15211                 var all = {};
15212                 var values = v.split("^");
15213                 for(var i = 0, len = values.length; i < len; i++){
15214                     var kv = values[i].split("=");
15215                     all[kv[0]] = this.decodeValue(kv[1]);
15216                 }
15217                 return all;
15218            default:
15219                 return v;
15220         }
15221     },
15222     
15223     /**
15224      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15225      * @param {Mixed} value The value to encode
15226      * @return {String} The encoded value
15227      */
15228     encodeValue : function(v){
15229         var enc;
15230         if(typeof v == "number"){
15231             enc = "n:" + v;
15232         }else if(typeof v == "boolean"){
15233             enc = "b:" + (v ? "1" : "0");
15234         }else if(v instanceof Date){
15235             enc = "d:" + v.toGMTString();
15236         }else if(v instanceof Array){
15237             var flat = "";
15238             for(var i = 0, len = v.length; i < len; i++){
15239                 flat += this.encodeValue(v[i]);
15240                 if(i != len-1) {
15241                     flat += "^";
15242                 }
15243             }
15244             enc = "a:" + flat;
15245         }else if(typeof v == "object"){
15246             var flat = "";
15247             for(var key in v){
15248                 if(typeof v[key] != "function"){
15249                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15250                 }
15251             }
15252             enc = "o:" + flat.substring(0, flat.length-1);
15253         }else{
15254             enc = "s:" + v;
15255         }
15256         return escape(enc);        
15257     }
15258 });
15259
15260 /*
15261  * Based on:
15262  * Ext JS Library 1.1.1
15263  * Copyright(c) 2006-2007, Ext JS, LLC.
15264  *
15265  * Originally Released Under LGPL - original licence link has changed is not relivant.
15266  *
15267  * Fork - LGPL
15268  * <script type="text/javascript">
15269  */
15270 /**
15271  * @class Roo.state.Manager
15272  * This is the global state manager. By default all components that are "state aware" check this class
15273  * for state information if you don't pass them a custom state provider. In order for this class
15274  * to be useful, it must be initialized with a provider when your application initializes.
15275  <pre><code>
15276 // in your initialization function
15277 init : function(){
15278    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15279    ...
15280    // supposed you have a {@link Roo.BorderLayout}
15281    var layout = new Roo.BorderLayout(...);
15282    layout.restoreState();
15283    // or a {Roo.BasicDialog}
15284    var dialog = new Roo.BasicDialog(...);
15285    dialog.restoreState();
15286  </code></pre>
15287  * @singleton
15288  */
15289 Roo.state.Manager = function(){
15290     var provider = new Roo.state.Provider();
15291     
15292     return {
15293         /**
15294          * Configures the default state provider for your application
15295          * @param {Provider} stateProvider The state provider to set
15296          */
15297         setProvider : function(stateProvider){
15298             provider = stateProvider;
15299         },
15300         
15301         /**
15302          * Returns the current value for a key
15303          * @param {String} name The key name
15304          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15305          * @return {Mixed} The state data
15306          */
15307         get : function(key, defaultValue){
15308             return provider.get(key, defaultValue);
15309         },
15310         
15311         /**
15312          * Sets the value for a key
15313          * @param {String} name The key name
15314          * @param {Mixed} value The state data
15315          */
15316          set : function(key, value){
15317             provider.set(key, value);
15318         },
15319         
15320         /**
15321          * Clears a value from the state
15322          * @param {String} name The key name
15323          */
15324         clear : function(key){
15325             provider.clear(key);
15326         },
15327         
15328         /**
15329          * Gets the currently configured state provider
15330          * @return {Provider} The state provider
15331          */
15332         getProvider : function(){
15333             return provider;
15334         }
15335     };
15336 }();
15337 /*
15338  * Based on:
15339  * Ext JS Library 1.1.1
15340  * Copyright(c) 2006-2007, Ext JS, LLC.
15341  *
15342  * Originally Released Under LGPL - original licence link has changed is not relivant.
15343  *
15344  * Fork - LGPL
15345  * <script type="text/javascript">
15346  */
15347 /**
15348  * @class Roo.state.CookieProvider
15349  * @extends Roo.state.Provider
15350  * The default Provider implementation which saves state via cookies.
15351  * <br />Usage:
15352  <pre><code>
15353    var cp = new Roo.state.CookieProvider({
15354        path: "/cgi-bin/",
15355        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15356        domain: "roojs.com"
15357    })
15358    Roo.state.Manager.setProvider(cp);
15359  </code></pre>
15360  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15361  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15362  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15363  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15364  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15365  * domain the page is running on including the 'www' like 'www.roojs.com')
15366  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15367  * @constructor
15368  * Create a new CookieProvider
15369  * @param {Object} config The configuration object
15370  */
15371 Roo.state.CookieProvider = function(config){
15372     Roo.state.CookieProvider.superclass.constructor.call(this);
15373     this.path = "/";
15374     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15375     this.domain = null;
15376     this.secure = false;
15377     Roo.apply(this, config);
15378     this.state = this.readCookies();
15379 };
15380
15381 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15382     // private
15383     set : function(name, value){
15384         if(typeof value == "undefined" || value === null){
15385             this.clear(name);
15386             return;
15387         }
15388         this.setCookie(name, value);
15389         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15390     },
15391
15392     // private
15393     clear : function(name){
15394         this.clearCookie(name);
15395         Roo.state.CookieProvider.superclass.clear.call(this, name);
15396     },
15397
15398     // private
15399     readCookies : function(){
15400         var cookies = {};
15401         var c = document.cookie + ";";
15402         var re = /\s?(.*?)=(.*?);/g;
15403         var matches;
15404         while((matches = re.exec(c)) != null){
15405             var name = matches[1];
15406             var value = matches[2];
15407             if(name && name.substring(0,3) == "ys-"){
15408                 cookies[name.substr(3)] = this.decodeValue(value);
15409             }
15410         }
15411         return cookies;
15412     },
15413
15414     // private
15415     setCookie : function(name, value){
15416         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15417            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15418            ((this.path == null) ? "" : ("; path=" + this.path)) +
15419            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15420            ((this.secure == true) ? "; secure" : "");
15421     },
15422
15423     // private
15424     clearCookie : function(name){
15425         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15426            ((this.path == null) ? "" : ("; path=" + this.path)) +
15427            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15428            ((this.secure == true) ? "; secure" : "");
15429     }
15430 });/*
15431  * Based on:
15432  * Ext JS Library 1.1.1
15433  * Copyright(c) 2006-2007, Ext JS, LLC.
15434  *
15435  * Originally Released Under LGPL - original licence link has changed is not relivant.
15436  *
15437  * Fork - LGPL
15438  * <script type="text/javascript">
15439  */
15440  
15441
15442 /**
15443  * @class Roo.ComponentMgr
15444  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15445  * @singleton
15446  */
15447 Roo.ComponentMgr = function(){
15448     var all = new Roo.util.MixedCollection();
15449
15450     return {
15451         /**
15452          * Registers a component.
15453          * @param {Roo.Component} c The component
15454          */
15455         register : function(c){
15456             all.add(c);
15457         },
15458
15459         /**
15460          * Unregisters a component.
15461          * @param {Roo.Component} c The component
15462          */
15463         unregister : function(c){
15464             all.remove(c);
15465         },
15466
15467         /**
15468          * Returns a component by id
15469          * @param {String} id The component id
15470          */
15471         get : function(id){
15472             return all.get(id);
15473         },
15474
15475         /**
15476          * Registers a function that will be called when a specified component is added to ComponentMgr
15477          * @param {String} id The component id
15478          * @param {Funtction} fn The callback function
15479          * @param {Object} scope The scope of the callback
15480          */
15481         onAvailable : function(id, fn, scope){
15482             all.on("add", function(index, o){
15483                 if(o.id == id){
15484                     fn.call(scope || o, o);
15485                     all.un("add", fn, scope);
15486                 }
15487             });
15488         }
15489     };
15490 }();/*
15491  * Based on:
15492  * Ext JS Library 1.1.1
15493  * Copyright(c) 2006-2007, Ext JS, LLC.
15494  *
15495  * Originally Released Under LGPL - original licence link has changed is not relivant.
15496  *
15497  * Fork - LGPL
15498  * <script type="text/javascript">
15499  */
15500  
15501 /**
15502  * @class Roo.Component
15503  * @extends Roo.util.Observable
15504  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15505  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15506  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15507  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15508  * All visual components (widgets) that require rendering into a layout should subclass Component.
15509  * @constructor
15510  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15511  * 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
15512  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15513  */
15514 Roo.Component = function(config){
15515     config = config || {};
15516     if(config.tagName || config.dom || typeof config == "string"){ // element object
15517         config = {el: config, id: config.id || config};
15518     }
15519     this.initialConfig = config;
15520
15521     Roo.apply(this, config);
15522     this.addEvents({
15523         /**
15524          * @event disable
15525          * Fires after the component is disabled.
15526              * @param {Roo.Component} this
15527              */
15528         disable : true,
15529         /**
15530          * @event enable
15531          * Fires after the component is enabled.
15532              * @param {Roo.Component} this
15533              */
15534         enable : true,
15535         /**
15536          * @event beforeshow
15537          * Fires before the component is shown.  Return false to stop the show.
15538              * @param {Roo.Component} this
15539              */
15540         beforeshow : true,
15541         /**
15542          * @event show
15543          * Fires after the component is shown.
15544              * @param {Roo.Component} this
15545              */
15546         show : true,
15547         /**
15548          * @event beforehide
15549          * Fires before the component is hidden. Return false to stop the hide.
15550              * @param {Roo.Component} this
15551              */
15552         beforehide : true,
15553         /**
15554          * @event hide
15555          * Fires after the component is hidden.
15556              * @param {Roo.Component} this
15557              */
15558         hide : true,
15559         /**
15560          * @event beforerender
15561          * Fires before the component is rendered. Return false to stop the render.
15562              * @param {Roo.Component} this
15563              */
15564         beforerender : true,
15565         /**
15566          * @event render
15567          * Fires after the component is rendered.
15568              * @param {Roo.Component} this
15569              */
15570         render : true,
15571         /**
15572          * @event beforedestroy
15573          * Fires before the component is destroyed. Return false to stop the destroy.
15574              * @param {Roo.Component} this
15575              */
15576         beforedestroy : true,
15577         /**
15578          * @event destroy
15579          * Fires after the component is destroyed.
15580              * @param {Roo.Component} this
15581              */
15582         destroy : true
15583     });
15584     if(!this.id){
15585         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15586     }
15587     Roo.ComponentMgr.register(this);
15588     Roo.Component.superclass.constructor.call(this);
15589     this.initComponent();
15590     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15591         this.render(this.renderTo);
15592         delete this.renderTo;
15593     }
15594 };
15595
15596 /** @private */
15597 Roo.Component.AUTO_ID = 1000;
15598
15599 Roo.extend(Roo.Component, Roo.util.Observable, {
15600     /**
15601      * @scope Roo.Component.prototype
15602      * @type {Boolean}
15603      * true if this component is hidden. Read-only.
15604      */
15605     hidden : false,
15606     /**
15607      * @type {Boolean}
15608      * true if this component is disabled. Read-only.
15609      */
15610     disabled : false,
15611     /**
15612      * @type {Boolean}
15613      * true if this component has been rendered. Read-only.
15614      */
15615     rendered : false,
15616     
15617     /** @cfg {String} disableClass
15618      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15619      */
15620     disabledClass : "x-item-disabled",
15621         /** @cfg {Boolean} allowDomMove
15622          * Whether the component can move the Dom node when rendering (defaults to true).
15623          */
15624     allowDomMove : true,
15625     /** @cfg {String} hideMode (display|visibility)
15626      * How this component should hidden. Supported values are
15627      * "visibility" (css visibility), "offsets" (negative offset position) and
15628      * "display" (css display) - defaults to "display".
15629      */
15630     hideMode: 'display',
15631
15632     /** @private */
15633     ctype : "Roo.Component",
15634
15635     /**
15636      * @cfg {String} actionMode 
15637      * which property holds the element that used for  hide() / show() / disable() / enable()
15638      * default is 'el' for forms you probably want to set this to fieldEl 
15639      */
15640     actionMode : "el",
15641
15642     /** @private */
15643     getActionEl : function(){
15644         return this[this.actionMode];
15645     },
15646
15647     initComponent : Roo.emptyFn,
15648     /**
15649      * If this is a lazy rendering component, render it to its container element.
15650      * @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.
15651      */
15652     render : function(container, position){
15653         
15654         if(this.rendered){
15655             return this;
15656         }
15657         
15658         if(this.fireEvent("beforerender", this) === false){
15659             return false;
15660         }
15661         
15662         if(!container && this.el){
15663             this.el = Roo.get(this.el);
15664             container = this.el.dom.parentNode;
15665             this.allowDomMove = false;
15666         }
15667         this.container = Roo.get(container);
15668         this.rendered = true;
15669         if(position !== undefined){
15670             if(typeof position == 'number'){
15671                 position = this.container.dom.childNodes[position];
15672             }else{
15673                 position = Roo.getDom(position);
15674             }
15675         }
15676         this.onRender(this.container, position || null);
15677         if(this.cls){
15678             this.el.addClass(this.cls);
15679             delete this.cls;
15680         }
15681         if(this.style){
15682             this.el.applyStyles(this.style);
15683             delete this.style;
15684         }
15685         this.fireEvent("render", this);
15686         this.afterRender(this.container);
15687         if(this.hidden){
15688             this.hide();
15689         }
15690         if(this.disabled){
15691             this.disable();
15692         }
15693
15694         return this;
15695         
15696     },
15697
15698     /** @private */
15699     // default function is not really useful
15700     onRender : function(ct, position){
15701         if(this.el){
15702             this.el = Roo.get(this.el);
15703             if(this.allowDomMove !== false){
15704                 ct.dom.insertBefore(this.el.dom, position);
15705             }
15706         }
15707     },
15708
15709     /** @private */
15710     getAutoCreate : function(){
15711         var cfg = typeof this.autoCreate == "object" ?
15712                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15713         if(this.id && !cfg.id){
15714             cfg.id = this.id;
15715         }
15716         return cfg;
15717     },
15718
15719     /** @private */
15720     afterRender : Roo.emptyFn,
15721
15722     /**
15723      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15724      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15725      */
15726     destroy : function(){
15727         if(this.fireEvent("beforedestroy", this) !== false){
15728             this.purgeListeners();
15729             this.beforeDestroy();
15730             if(this.rendered){
15731                 this.el.removeAllListeners();
15732                 this.el.remove();
15733                 if(this.actionMode == "container"){
15734                     this.container.remove();
15735                 }
15736             }
15737             this.onDestroy();
15738             Roo.ComponentMgr.unregister(this);
15739             this.fireEvent("destroy", this);
15740         }
15741     },
15742
15743         /** @private */
15744     beforeDestroy : function(){
15745
15746     },
15747
15748         /** @private */
15749         onDestroy : function(){
15750
15751     },
15752
15753     /**
15754      * Returns the underlying {@link Roo.Element}.
15755      * @return {Roo.Element} The element
15756      */
15757     getEl : function(){
15758         return this.el;
15759     },
15760
15761     /**
15762      * Returns the id of this component.
15763      * @return {String}
15764      */
15765     getId : function(){
15766         return this.id;
15767     },
15768
15769     /**
15770      * Try to focus this component.
15771      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15772      * @return {Roo.Component} this
15773      */
15774     focus : function(selectText){
15775         if(this.rendered){
15776             this.el.focus();
15777             if(selectText === true){
15778                 this.el.dom.select();
15779             }
15780         }
15781         return this;
15782     },
15783
15784     /** @private */
15785     blur : function(){
15786         if(this.rendered){
15787             this.el.blur();
15788         }
15789         return this;
15790     },
15791
15792     /**
15793      * Disable this component.
15794      * @return {Roo.Component} this
15795      */
15796     disable : function(){
15797         if(this.rendered){
15798             this.onDisable();
15799         }
15800         this.disabled = true;
15801         this.fireEvent("disable", this);
15802         return this;
15803     },
15804
15805         // private
15806     onDisable : function(){
15807         this.getActionEl().addClass(this.disabledClass);
15808         this.el.dom.disabled = true;
15809     },
15810
15811     /**
15812      * Enable this component.
15813      * @return {Roo.Component} this
15814      */
15815     enable : function(){
15816         if(this.rendered){
15817             this.onEnable();
15818         }
15819         this.disabled = false;
15820         this.fireEvent("enable", this);
15821         return this;
15822     },
15823
15824         // private
15825     onEnable : function(){
15826         this.getActionEl().removeClass(this.disabledClass);
15827         this.el.dom.disabled = false;
15828     },
15829
15830     /**
15831      * Convenience function for setting disabled/enabled by boolean.
15832      * @param {Boolean} disabled
15833      */
15834     setDisabled : function(disabled){
15835         this[disabled ? "disable" : "enable"]();
15836     },
15837
15838     /**
15839      * Show this component.
15840      * @return {Roo.Component} this
15841      */
15842     show: function(){
15843         if(this.fireEvent("beforeshow", this) !== false){
15844             this.hidden = false;
15845             if(this.rendered){
15846                 this.onShow();
15847             }
15848             this.fireEvent("show", this);
15849         }
15850         return this;
15851     },
15852
15853     // private
15854     onShow : function(){
15855         var ae = this.getActionEl();
15856         if(this.hideMode == 'visibility'){
15857             ae.dom.style.visibility = "visible";
15858         }else if(this.hideMode == 'offsets'){
15859             ae.removeClass('x-hidden');
15860         }else{
15861             ae.dom.style.display = "";
15862         }
15863     },
15864
15865     /**
15866      * Hide this component.
15867      * @return {Roo.Component} this
15868      */
15869     hide: function(){
15870         if(this.fireEvent("beforehide", this) !== false){
15871             this.hidden = true;
15872             if(this.rendered){
15873                 this.onHide();
15874             }
15875             this.fireEvent("hide", this);
15876         }
15877         return this;
15878     },
15879
15880     // private
15881     onHide : function(){
15882         var ae = this.getActionEl();
15883         if(this.hideMode == 'visibility'){
15884             ae.dom.style.visibility = "hidden";
15885         }else if(this.hideMode == 'offsets'){
15886             ae.addClass('x-hidden');
15887         }else{
15888             ae.dom.style.display = "none";
15889         }
15890     },
15891
15892     /**
15893      * Convenience function to hide or show this component by boolean.
15894      * @param {Boolean} visible True to show, false to hide
15895      * @return {Roo.Component} this
15896      */
15897     setVisible: function(visible){
15898         if(visible) {
15899             this.show();
15900         }else{
15901             this.hide();
15902         }
15903         return this;
15904     },
15905
15906     /**
15907      * Returns true if this component is visible.
15908      */
15909     isVisible : function(){
15910         return this.getActionEl().isVisible();
15911     },
15912
15913     cloneConfig : function(overrides){
15914         overrides = overrides || {};
15915         var id = overrides.id || Roo.id();
15916         var cfg = Roo.applyIf(overrides, this.initialConfig);
15917         cfg.id = id; // prevent dup id
15918         return new this.constructor(cfg);
15919     }
15920 });/*
15921  * Based on:
15922  * Ext JS Library 1.1.1
15923  * Copyright(c) 2006-2007, Ext JS, LLC.
15924  *
15925  * Originally Released Under LGPL - original licence link has changed is not relivant.
15926  *
15927  * Fork - LGPL
15928  * <script type="text/javascript">
15929  */
15930
15931 /**
15932  * @class Roo.BoxComponent
15933  * @extends Roo.Component
15934  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15935  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15936  * container classes should subclass BoxComponent so that they will work consistently when nested within other Roo
15937  * layout containers.
15938  * @constructor
15939  * @param {Roo.Element/String/Object} config The configuration options.
15940  */
15941 Roo.BoxComponent = function(config){
15942     Roo.Component.call(this, config);
15943     this.addEvents({
15944         /**
15945          * @event resize
15946          * Fires after the component is resized.
15947              * @param {Roo.Component} this
15948              * @param {Number} adjWidth The box-adjusted width that was set
15949              * @param {Number} adjHeight The box-adjusted height that was set
15950              * @param {Number} rawWidth The width that was originally specified
15951              * @param {Number} rawHeight The height that was originally specified
15952              */
15953         resize : true,
15954         /**
15955          * @event move
15956          * Fires after the component is moved.
15957              * @param {Roo.Component} this
15958              * @param {Number} x The new x position
15959              * @param {Number} y The new y position
15960              */
15961         move : true
15962     });
15963 };
15964
15965 Roo.extend(Roo.BoxComponent, Roo.Component, {
15966     // private, set in afterRender to signify that the component has been rendered
15967     boxReady : false,
15968     // private, used to defer height settings to subclasses
15969     deferHeight: false,
15970     /** @cfg {Number} width
15971      * width (optional) size of component
15972      */
15973      /** @cfg {Number} height
15974      * height (optional) size of component
15975      */
15976      
15977     /**
15978      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15979      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15980      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15981      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15982      * @return {Roo.BoxComponent} this
15983      */
15984     setSize : function(w, h){
15985         // support for standard size objects
15986         if(typeof w == 'object'){
15987             h = w.height;
15988             w = w.width;
15989         }
15990         // not rendered
15991         if(!this.boxReady){
15992             this.width = w;
15993             this.height = h;
15994             return this;
15995         }
15996
15997         // prevent recalcs when not needed
15998         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15999             return this;
16000         }
16001         this.lastSize = {width: w, height: h};
16002
16003         var adj = this.adjustSize(w, h);
16004         var aw = adj.width, ah = adj.height;
16005         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
16006             var rz = this.getResizeEl();
16007             if(!this.deferHeight && aw !== undefined && ah !== undefined){
16008                 rz.setSize(aw, ah);
16009             }else if(!this.deferHeight && ah !== undefined){
16010                 rz.setHeight(ah);
16011             }else if(aw !== undefined){
16012                 rz.setWidth(aw);
16013             }
16014             this.onResize(aw, ah, w, h);
16015             this.fireEvent('resize', this, aw, ah, w, h);
16016         }
16017         return this;
16018     },
16019
16020     /**
16021      * Gets the current size of the component's underlying element.
16022      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
16023      */
16024     getSize : function(){
16025         return this.el.getSize();
16026     },
16027
16028     /**
16029      * Gets the current XY position of the component's underlying element.
16030      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16031      * @return {Array} The XY position of the element (e.g., [100, 200])
16032      */
16033     getPosition : function(local){
16034         if(local === true){
16035             return [this.el.getLeft(true), this.el.getTop(true)];
16036         }
16037         return this.xy || this.el.getXY();
16038     },
16039
16040     /**
16041      * Gets the current box measurements of the component's underlying element.
16042      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16043      * @returns {Object} box An object in the format {x, y, width, height}
16044      */
16045     getBox : function(local){
16046         var s = this.el.getSize();
16047         if(local){
16048             s.x = this.el.getLeft(true);
16049             s.y = this.el.getTop(true);
16050         }else{
16051             var xy = this.xy || this.el.getXY();
16052             s.x = xy[0];
16053             s.y = xy[1];
16054         }
16055         return s;
16056     },
16057
16058     /**
16059      * Sets the current box measurements of the component's underlying element.
16060      * @param {Object} box An object in the format {x, y, width, height}
16061      * @returns {Roo.BoxComponent} this
16062      */
16063     updateBox : function(box){
16064         this.setSize(box.width, box.height);
16065         this.setPagePosition(box.x, box.y);
16066         return this;
16067     },
16068
16069     // protected
16070     getResizeEl : function(){
16071         return this.resizeEl || this.el;
16072     },
16073
16074     // protected
16075     getPositionEl : function(){
16076         return this.positionEl || this.el;
16077     },
16078
16079     /**
16080      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16081      * This method fires the move event.
16082      * @param {Number} left The new left
16083      * @param {Number} top The new top
16084      * @returns {Roo.BoxComponent} this
16085      */
16086     setPosition : function(x, y){
16087         this.x = x;
16088         this.y = y;
16089         if(!this.boxReady){
16090             return this;
16091         }
16092         var adj = this.adjustPosition(x, y);
16093         var ax = adj.x, ay = adj.y;
16094
16095         var el = this.getPositionEl();
16096         if(ax !== undefined || ay !== undefined){
16097             if(ax !== undefined && ay !== undefined){
16098                 el.setLeftTop(ax, ay);
16099             }else if(ax !== undefined){
16100                 el.setLeft(ax);
16101             }else if(ay !== undefined){
16102                 el.setTop(ay);
16103             }
16104             this.onPosition(ax, ay);
16105             this.fireEvent('move', this, ax, ay);
16106         }
16107         return this;
16108     },
16109
16110     /**
16111      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16112      * This method fires the move event.
16113      * @param {Number} x The new x position
16114      * @param {Number} y The new y position
16115      * @returns {Roo.BoxComponent} this
16116      */
16117     setPagePosition : function(x, y){
16118         this.pageX = x;
16119         this.pageY = y;
16120         if(!this.boxReady){
16121             return;
16122         }
16123         if(x === undefined || y === undefined){ // cannot translate undefined points
16124             return;
16125         }
16126         var p = this.el.translatePoints(x, y);
16127         this.setPosition(p.left, p.top);
16128         return this;
16129     },
16130
16131     // private
16132     onRender : function(ct, position){
16133         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16134         if(this.resizeEl){
16135             this.resizeEl = Roo.get(this.resizeEl);
16136         }
16137         if(this.positionEl){
16138             this.positionEl = Roo.get(this.positionEl);
16139         }
16140     },
16141
16142     // private
16143     afterRender : function(){
16144         Roo.BoxComponent.superclass.afterRender.call(this);
16145         this.boxReady = true;
16146         this.setSize(this.width, this.height);
16147         if(this.x || this.y){
16148             this.setPosition(this.x, this.y);
16149         }
16150         if(this.pageX || this.pageY){
16151             this.setPagePosition(this.pageX, this.pageY);
16152         }
16153     },
16154
16155     /**
16156      * Force the component's size to recalculate based on the underlying element's current height and width.
16157      * @returns {Roo.BoxComponent} this
16158      */
16159     syncSize : function(){
16160         delete this.lastSize;
16161         this.setSize(this.el.getWidth(), this.el.getHeight());
16162         return this;
16163     },
16164
16165     /**
16166      * Called after the component is resized, this method is empty by default but can be implemented by any
16167      * subclass that needs to perform custom logic after a resize occurs.
16168      * @param {Number} adjWidth The box-adjusted width that was set
16169      * @param {Number} adjHeight The box-adjusted height that was set
16170      * @param {Number} rawWidth The width that was originally specified
16171      * @param {Number} rawHeight The height that was originally specified
16172      */
16173     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16174
16175     },
16176
16177     /**
16178      * Called after the component is moved, this method is empty by default but can be implemented by any
16179      * subclass that needs to perform custom logic after a move occurs.
16180      * @param {Number} x The new x position
16181      * @param {Number} y The new y position
16182      */
16183     onPosition : function(x, y){
16184
16185     },
16186
16187     // private
16188     adjustSize : function(w, h){
16189         if(this.autoWidth){
16190             w = 'auto';
16191         }
16192         if(this.autoHeight){
16193             h = 'auto';
16194         }
16195         return {width : w, height: h};
16196     },
16197
16198     // private
16199     adjustPosition : function(x, y){
16200         return {x : x, y: y};
16201     }
16202 });/*
16203  * Based on:
16204  * Ext JS Library 1.1.1
16205  * Copyright(c) 2006-2007, Ext JS, LLC.
16206  *
16207  * Originally Released Under LGPL - original licence link has changed is not relivant.
16208  *
16209  * Fork - LGPL
16210  * <script type="text/javascript">
16211  */
16212  (function(){ 
16213 /**
16214  * @class Roo.Layer
16215  * @extends Roo.Element
16216  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16217  * automatic maintaining of shadow/shim positions.
16218  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16219  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16220  * you can pass a string with a CSS class name. False turns off the shadow.
16221  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16222  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16223  * @cfg {String} cls CSS class to add to the element
16224  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16225  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16226  * @constructor
16227  * @param {Object} config An object with config options.
16228  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16229  */
16230
16231 Roo.Layer = function(config, existingEl){
16232     config = config || {};
16233     var dh = Roo.DomHelper;
16234     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16235     if(existingEl){
16236         this.dom = Roo.getDom(existingEl);
16237     }
16238     if(!this.dom){
16239         var o = config.dh || {tag: "div", cls: "x-layer"};
16240         this.dom = dh.append(pel, o);
16241     }
16242     if(config.cls){
16243         this.addClass(config.cls);
16244     }
16245     this.constrain = config.constrain !== false;
16246     this.visibilityMode = Roo.Element.VISIBILITY;
16247     if(config.id){
16248         this.id = this.dom.id = config.id;
16249     }else{
16250         this.id = Roo.id(this.dom);
16251     }
16252     this.zindex = config.zindex || this.getZIndex();
16253     this.position("absolute", this.zindex);
16254     if(config.shadow){
16255         this.shadowOffset = config.shadowOffset || 4;
16256         this.shadow = new Roo.Shadow({
16257             offset : this.shadowOffset,
16258             mode : config.shadow
16259         });
16260     }else{
16261         this.shadowOffset = 0;
16262     }
16263     this.useShim = config.shim !== false && Roo.useShims;
16264     this.useDisplay = config.useDisplay;
16265     this.hide();
16266 };
16267
16268 var supr = Roo.Element.prototype;
16269
16270 // shims are shared among layer to keep from having 100 iframes
16271 var shims = [];
16272
16273 Roo.extend(Roo.Layer, Roo.Element, {
16274
16275     getZIndex : function(){
16276         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16277     },
16278
16279     getShim : function(){
16280         if(!this.useShim){
16281             return null;
16282         }
16283         if(this.shim){
16284             return this.shim;
16285         }
16286         var shim = shims.shift();
16287         if(!shim){
16288             shim = this.createShim();
16289             shim.enableDisplayMode('block');
16290             shim.dom.style.display = 'none';
16291             shim.dom.style.visibility = 'visible';
16292         }
16293         var pn = this.dom.parentNode;
16294         if(shim.dom.parentNode != pn){
16295             pn.insertBefore(shim.dom, this.dom);
16296         }
16297         shim.setStyle('z-index', this.getZIndex()-2);
16298         this.shim = shim;
16299         return shim;
16300     },
16301
16302     hideShim : function(){
16303         if(this.shim){
16304             this.shim.setDisplayed(false);
16305             shims.push(this.shim);
16306             delete this.shim;
16307         }
16308     },
16309
16310     disableShadow : function(){
16311         if(this.shadow){
16312             this.shadowDisabled = true;
16313             this.shadow.hide();
16314             this.lastShadowOffset = this.shadowOffset;
16315             this.shadowOffset = 0;
16316         }
16317     },
16318
16319     enableShadow : function(show){
16320         if(this.shadow){
16321             this.shadowDisabled = false;
16322             this.shadowOffset = this.lastShadowOffset;
16323             delete this.lastShadowOffset;
16324             if(show){
16325                 this.sync(true);
16326             }
16327         }
16328     },
16329
16330     // private
16331     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16332     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16333     sync : function(doShow){
16334         var sw = this.shadow;
16335         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16336             var sh = this.getShim();
16337
16338             var w = this.getWidth(),
16339                 h = this.getHeight();
16340
16341             var l = this.getLeft(true),
16342                 t = this.getTop(true);
16343
16344             if(sw && !this.shadowDisabled){
16345                 if(doShow && !sw.isVisible()){
16346                     sw.show(this);
16347                 }else{
16348                     sw.realign(l, t, w, h);
16349                 }
16350                 if(sh){
16351                     if(doShow){
16352                        sh.show();
16353                     }
16354                     // fit the shim behind the shadow, so it is shimmed too
16355                     var a = sw.adjusts, s = sh.dom.style;
16356                     s.left = (Math.min(l, l+a.l))+"px";
16357                     s.top = (Math.min(t, t+a.t))+"px";
16358                     s.width = (w+a.w)+"px";
16359                     s.height = (h+a.h)+"px";
16360                 }
16361             }else if(sh){
16362                 if(doShow){
16363                    sh.show();
16364                 }
16365                 sh.setSize(w, h);
16366                 sh.setLeftTop(l, t);
16367             }
16368             
16369         }
16370     },
16371
16372     // private
16373     destroy : function(){
16374         this.hideShim();
16375         if(this.shadow){
16376             this.shadow.hide();
16377         }
16378         this.removeAllListeners();
16379         var pn = this.dom.parentNode;
16380         if(pn){
16381             pn.removeChild(this.dom);
16382         }
16383         Roo.Element.uncache(this.id);
16384     },
16385
16386     remove : function(){
16387         this.destroy();
16388     },
16389
16390     // private
16391     beginUpdate : function(){
16392         this.updating = true;
16393     },
16394
16395     // private
16396     endUpdate : function(){
16397         this.updating = false;
16398         this.sync(true);
16399     },
16400
16401     // private
16402     hideUnders : function(negOffset){
16403         if(this.shadow){
16404             this.shadow.hide();
16405         }
16406         this.hideShim();
16407     },
16408
16409     // private
16410     constrainXY : function(){
16411         if(this.constrain){
16412             var vw = Roo.lib.Dom.getViewWidth(),
16413                 vh = Roo.lib.Dom.getViewHeight();
16414             var s = Roo.get(document).getScroll();
16415
16416             var xy = this.getXY();
16417             var x = xy[0], y = xy[1];   
16418             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16419             // only move it if it needs it
16420             var moved = false;
16421             // first validate right/bottom
16422             if((x + w) > vw+s.left){
16423                 x = vw - w - this.shadowOffset;
16424                 moved = true;
16425             }
16426             if((y + h) > vh+s.top){
16427                 y = vh - h - this.shadowOffset;
16428                 moved = true;
16429             }
16430             // then make sure top/left isn't negative
16431             if(x < s.left){
16432                 x = s.left;
16433                 moved = true;
16434             }
16435             if(y < s.top){
16436                 y = s.top;
16437                 moved = true;
16438             }
16439             if(moved){
16440                 if(this.avoidY){
16441                     var ay = this.avoidY;
16442                     if(y <= ay && (y+h) >= ay){
16443                         y = ay-h-5;   
16444                     }
16445                 }
16446                 xy = [x, y];
16447                 this.storeXY(xy);
16448                 supr.setXY.call(this, xy);
16449                 this.sync();
16450             }
16451         }
16452     },
16453
16454     isVisible : function(){
16455         return this.visible;    
16456     },
16457
16458     // private
16459     showAction : function(){
16460         this.visible = true; // track visibility to prevent getStyle calls
16461         if(this.useDisplay === true){
16462             this.setDisplayed("");
16463         }else if(this.lastXY){
16464             supr.setXY.call(this, this.lastXY);
16465         }else if(this.lastLT){
16466             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16467         }
16468     },
16469
16470     // private
16471     hideAction : function(){
16472         this.visible = false;
16473         if(this.useDisplay === true){
16474             this.setDisplayed(false);
16475         }else{
16476             this.setLeftTop(-10000,-10000);
16477         }
16478     },
16479
16480     // overridden Element method
16481     setVisible : function(v, a, d, c, e){
16482         if(v){
16483             this.showAction();
16484         }
16485         if(a && v){
16486             var cb = function(){
16487                 this.sync(true);
16488                 if(c){
16489                     c();
16490                 }
16491             }.createDelegate(this);
16492             supr.setVisible.call(this, true, true, d, cb, e);
16493         }else{
16494             if(!v){
16495                 this.hideUnders(true);
16496             }
16497             var cb = c;
16498             if(a){
16499                 cb = function(){
16500                     this.hideAction();
16501                     if(c){
16502                         c();
16503                     }
16504                 }.createDelegate(this);
16505             }
16506             supr.setVisible.call(this, v, a, d, cb, e);
16507             if(v){
16508                 this.sync(true);
16509             }else if(!a){
16510                 this.hideAction();
16511             }
16512         }
16513     },
16514
16515     storeXY : function(xy){
16516         delete this.lastLT;
16517         this.lastXY = xy;
16518     },
16519
16520     storeLeftTop : function(left, top){
16521         delete this.lastXY;
16522         this.lastLT = [left, top];
16523     },
16524
16525     // private
16526     beforeFx : function(){
16527         this.beforeAction();
16528         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16529     },
16530
16531     // private
16532     afterFx : function(){
16533         Roo.Layer.superclass.afterFx.apply(this, arguments);
16534         this.sync(this.isVisible());
16535     },
16536
16537     // private
16538     beforeAction : function(){
16539         if(!this.updating && this.shadow){
16540             this.shadow.hide();
16541         }
16542     },
16543
16544     // overridden Element method
16545     setLeft : function(left){
16546         this.storeLeftTop(left, this.getTop(true));
16547         supr.setLeft.apply(this, arguments);
16548         this.sync();
16549     },
16550
16551     setTop : function(top){
16552         this.storeLeftTop(this.getLeft(true), top);
16553         supr.setTop.apply(this, arguments);
16554         this.sync();
16555     },
16556
16557     setLeftTop : function(left, top){
16558         this.storeLeftTop(left, top);
16559         supr.setLeftTop.apply(this, arguments);
16560         this.sync();
16561     },
16562
16563     setXY : function(xy, a, d, c, e){
16564         this.fixDisplay();
16565         this.beforeAction();
16566         this.storeXY(xy);
16567         var cb = this.createCB(c);
16568         supr.setXY.call(this, xy, a, d, cb, e);
16569         if(!a){
16570             cb();
16571         }
16572     },
16573
16574     // private
16575     createCB : function(c){
16576         var el = this;
16577         return function(){
16578             el.constrainXY();
16579             el.sync(true);
16580             if(c){
16581                 c();
16582             }
16583         };
16584     },
16585
16586     // overridden Element method
16587     setX : function(x, a, d, c, e){
16588         this.setXY([x, this.getY()], a, d, c, e);
16589     },
16590
16591     // overridden Element method
16592     setY : function(y, a, d, c, e){
16593         this.setXY([this.getX(), y], a, d, c, e);
16594     },
16595
16596     // overridden Element method
16597     setSize : function(w, h, a, d, c, e){
16598         this.beforeAction();
16599         var cb = this.createCB(c);
16600         supr.setSize.call(this, w, h, a, d, cb, e);
16601         if(!a){
16602             cb();
16603         }
16604     },
16605
16606     // overridden Element method
16607     setWidth : function(w, a, d, c, e){
16608         this.beforeAction();
16609         var cb = this.createCB(c);
16610         supr.setWidth.call(this, w, a, d, cb, e);
16611         if(!a){
16612             cb();
16613         }
16614     },
16615
16616     // overridden Element method
16617     setHeight : function(h, a, d, c, e){
16618         this.beforeAction();
16619         var cb = this.createCB(c);
16620         supr.setHeight.call(this, h, a, d, cb, e);
16621         if(!a){
16622             cb();
16623         }
16624     },
16625
16626     // overridden Element method
16627     setBounds : function(x, y, w, h, a, d, c, e){
16628         this.beforeAction();
16629         var cb = this.createCB(c);
16630         if(!a){
16631             this.storeXY([x, y]);
16632             supr.setXY.call(this, [x, y]);
16633             supr.setSize.call(this, w, h, a, d, cb, e);
16634             cb();
16635         }else{
16636             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16637         }
16638         return this;
16639     },
16640     
16641     /**
16642      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16643      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16644      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16645      * @param {Number} zindex The new z-index to set
16646      * @return {this} The Layer
16647      */
16648     setZIndex : function(zindex){
16649         this.zindex = zindex;
16650         this.setStyle("z-index", zindex + 2);
16651         if(this.shadow){
16652             this.shadow.setZIndex(zindex + 1);
16653         }
16654         if(this.shim){
16655             this.shim.setStyle("z-index", zindex);
16656         }
16657     }
16658 });
16659 })();/*
16660  * Original code for Roojs - LGPL
16661  * <script type="text/javascript">
16662  */
16663  
16664 /**
16665  * @class Roo.XComponent
16666  * A delayed Element creator...
16667  * Or a way to group chunks of interface together.
16668  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16669  *  used in conjunction with XComponent.build() it will create an instance of each element,
16670  *  then call addxtype() to build the User interface.
16671  * 
16672  * Mypart.xyx = new Roo.XComponent({
16673
16674     parent : 'Mypart.xyz', // empty == document.element.!!
16675     order : '001',
16676     name : 'xxxx'
16677     region : 'xxxx'
16678     disabled : function() {} 
16679      
16680     tree : function() { // return an tree of xtype declared components
16681         var MODULE = this;
16682         return 
16683         {
16684             xtype : 'NestedLayoutPanel',
16685             // technicall
16686         }
16687      ]
16688  *})
16689  *
16690  *
16691  * It can be used to build a big heiracy, with parent etc.
16692  * or you can just use this to render a single compoent to a dom element
16693  * MYPART.render(Roo.Element | String(id) | dom_element )
16694  *
16695  *
16696  * Usage patterns.
16697  *
16698  * Classic Roo
16699  *
16700  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16701  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16702  *
16703  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16704  *
16705  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16706  * - if mulitple topModules exist, the last one is defined as the top module.
16707  *
16708  * Embeded Roo
16709  * 
16710  * When the top level or multiple modules are to embedded into a existing HTML page,
16711  * the parent element can container '#id' of the element where the module will be drawn.
16712  *
16713  * Bootstrap Roo
16714  *
16715  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16716  * it relies more on a include mechanism, where sub modules are included into an outer page.
16717  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16718  * 
16719  * Bootstrap Roo Included elements
16720  *
16721  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16722  * hence confusing the component builder as it thinks there are multiple top level elements. 
16723  *
16724  * String Over-ride & Translations
16725  *
16726  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16727  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16728  * are needed. @see Roo.XComponent.overlayString  
16729  * 
16730  * 
16731  * 
16732  * @extends Roo.util.Observable
16733  * @constructor
16734  * @param cfg {Object} configuration of component
16735  * 
16736  */
16737 Roo.XComponent = function(cfg) {
16738     Roo.apply(this, cfg);
16739     this.addEvents({ 
16740         /**
16741              * @event built
16742              * Fires when this the componnt is built
16743              * @param {Roo.XComponent} c the component
16744              */
16745         'built' : true
16746         
16747     });
16748     this.region = this.region || 'center'; // default..
16749     Roo.XComponent.register(this);
16750     this.modules = false;
16751     this.el = false; // where the layout goes..
16752     
16753     
16754 }
16755 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16756     /**
16757      * @property el
16758      * The created element (with Roo.factory())
16759      * @type {Roo.Layout}
16760      */
16761     el  : false,
16762     
16763     /**
16764      * @property el
16765      * for BC  - use el in new code
16766      * @type {Roo.Layout}
16767      */
16768     panel : false,
16769     
16770     /**
16771      * @property layout
16772      * for BC  - use el in new code
16773      * @type {Roo.Layout}
16774      */
16775     layout : false,
16776     
16777      /**
16778      * @cfg {Function|boolean} disabled
16779      * If this module is disabled by some rule, return true from the funtion
16780      */
16781     disabled : false,
16782     
16783     /**
16784      * @cfg {String} parent 
16785      * Name of parent element which it get xtype added to..
16786      */
16787     parent: false,
16788     
16789     /**
16790      * @cfg {String} order
16791      * Used to set the order in which elements are created (usefull for multiple tabs)
16792      */
16793     
16794     order : false,
16795     /**
16796      * @cfg {String} name
16797      * String to display while loading.
16798      */
16799     name : false,
16800     /**
16801      * @cfg {String} region
16802      * Region to render component to (defaults to center)
16803      */
16804     region : 'center',
16805     
16806     /**
16807      * @cfg {Array} items
16808      * A single item array - the first element is the root of the tree..
16809      * It's done this way to stay compatible with the Xtype system...
16810      */
16811     items : false,
16812     
16813     /**
16814      * @property _tree
16815      * The method that retuns the tree of parts that make up this compoennt 
16816      * @type {function}
16817      */
16818     _tree  : false,
16819     
16820      /**
16821      * render
16822      * render element to dom or tree
16823      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16824      */
16825     
16826     render : function(el)
16827     {
16828         
16829         el = el || false;
16830         var hp = this.parent ? 1 : 0;
16831         Roo.debug &&  Roo.log(this);
16832         
16833         var tree = this._tree ? this._tree() : this.tree();
16834
16835         
16836         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16837             // if parent is a '#.....' string, then let's use that..
16838             var ename = this.parent.substr(1);
16839             this.parent = false;
16840             Roo.debug && Roo.log(ename);
16841             switch (ename) {
16842                 case 'bootstrap-body':
16843                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16844                         // this is the BorderLayout standard?
16845                        this.parent = { el : true };
16846                        break;
16847                     }
16848                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16849                         // need to insert stuff...
16850                         this.parent =  {
16851                              el : new Roo.bootstrap.layout.Border({
16852                                  el : document.body, 
16853                      
16854                                  center: {
16855                                     titlebar: false,
16856                                     autoScroll:false,
16857                                     closeOnTab: true,
16858                                     tabPosition: 'top',
16859                                       //resizeTabs: true,
16860                                     alwaysShowTabs: true,
16861                                     hideTabs: false
16862                                      //minTabWidth: 140
16863                                  }
16864                              })
16865                         
16866                          };
16867                          break;
16868                     }
16869                          
16870                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16871                         this.parent = { el :  new  Roo.bootstrap.Body() };
16872                         Roo.debug && Roo.log("setting el to doc body");
16873                          
16874                     } else {
16875                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16876                     }
16877                     break;
16878                 case 'bootstrap':
16879                     this.parent = { el : true};
16880                     // fall through
16881                 default:
16882                     el = Roo.get(ename);
16883                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16884                         this.parent = { el : true};
16885                     }
16886                     
16887                     break;
16888             }
16889                 
16890             
16891             if (!el && !this.parent) {
16892                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16893                 return;
16894             }
16895         }
16896         
16897         Roo.debug && Roo.log("EL:");
16898         Roo.debug && Roo.log(el);
16899         Roo.debug && Roo.log("this.parent.el:");
16900         Roo.debug && Roo.log(this.parent.el);
16901         
16902
16903         // altertive root elements ??? - we need a better way to indicate these.
16904         var is_alt = Roo.XComponent.is_alt ||
16905                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16906                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16907                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16908         
16909         
16910         
16911         if (!this.parent && is_alt) {
16912             //el = Roo.get(document.body);
16913             this.parent = { el : true };
16914         }
16915             
16916             
16917         
16918         if (!this.parent) {
16919             
16920             Roo.debug && Roo.log("no parent - creating one");
16921             
16922             el = el ? Roo.get(el) : false;      
16923             
16924             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16925                 
16926                 this.parent =  {
16927                     el : new Roo.bootstrap.layout.Border({
16928                         el: el || document.body,
16929                     
16930                         center: {
16931                             titlebar: false,
16932                             autoScroll:false,
16933                             closeOnTab: true,
16934                             tabPosition: 'top',
16935                              //resizeTabs: true,
16936                             alwaysShowTabs: false,
16937                             hideTabs: true,
16938                             minTabWidth: 140,
16939                             overflow: 'visible'
16940                          }
16941                      })
16942                 };
16943             } else {
16944             
16945                 // it's a top level one..
16946                 this.parent =  {
16947                     el : new Roo.BorderLayout(el || document.body, {
16948                         center: {
16949                             titlebar: false,
16950                             autoScroll:false,
16951                             closeOnTab: true,
16952                             tabPosition: 'top',
16953                              //resizeTabs: true,
16954                             alwaysShowTabs: el && hp? false :  true,
16955                             hideTabs: el || !hp ? true :  false,
16956                             minTabWidth: 140
16957                          }
16958                     })
16959                 };
16960             }
16961         }
16962         
16963         if (!this.parent.el) {
16964                 // probably an old style ctor, which has been disabled.
16965                 return;
16966
16967         }
16968                 // The 'tree' method is  '_tree now' 
16969             
16970         tree.region = tree.region || this.region;
16971         var is_body = false;
16972         if (this.parent.el === true) {
16973             // bootstrap... - body..
16974             if (el) {
16975                 tree.el = el;
16976             }
16977             this.parent.el = Roo.factory(tree);
16978             is_body = true;
16979         }
16980         
16981         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16982         this.fireEvent('built', this);
16983         
16984         this.panel = this.el;
16985         this.layout = this.panel.layout;
16986         this.parentLayout = this.parent.layout  || false;  
16987          
16988     }
16989     
16990 });
16991
16992 Roo.apply(Roo.XComponent, {
16993     /**
16994      * @property  hideProgress
16995      * true to disable the building progress bar.. usefull on single page renders.
16996      * @type Boolean
16997      */
16998     hideProgress : false,
16999     /**
17000      * @property  buildCompleted
17001      * True when the builder has completed building the interface.
17002      * @type Boolean
17003      */
17004     buildCompleted : false,
17005      
17006     /**
17007      * @property  topModule
17008      * the upper most module - uses document.element as it's constructor.
17009      * @type Object
17010      */
17011      
17012     topModule  : false,
17013       
17014     /**
17015      * @property  modules
17016      * array of modules to be created by registration system.
17017      * @type {Array} of Roo.XComponent
17018      */
17019     
17020     modules : [],
17021     /**
17022      * @property  elmodules
17023      * array of modules to be created by which use #ID 
17024      * @type {Array} of Roo.XComponent
17025      */
17026      
17027     elmodules : [],
17028
17029      /**
17030      * @property  is_alt
17031      * Is an alternative Root - normally used by bootstrap or other systems,
17032      *    where the top element in the tree can wrap 'body' 
17033      * @type {boolean}  (default false)
17034      */
17035      
17036     is_alt : false,
17037     /**
17038      * @property  build_from_html
17039      * Build elements from html - used by bootstrap HTML stuff 
17040      *    - this is cleared after build is completed
17041      * @type {boolean}    (default false)
17042      */
17043      
17044     build_from_html : false,
17045     /**
17046      * Register components to be built later.
17047      *
17048      * This solves the following issues
17049      * - Building is not done on page load, but after an authentication process has occured.
17050      * - Interface elements are registered on page load
17051      * - Parent Interface elements may not be loaded before child, so this handles that..
17052      * 
17053      *
17054      * example:
17055      * 
17056      * MyApp.register({
17057           order : '000001',
17058           module : 'Pman.Tab.projectMgr',
17059           region : 'center',
17060           parent : 'Pman.layout',
17061           disabled : false,  // or use a function..
17062         })
17063      
17064      * * @param {Object} details about module
17065      */
17066     register : function(obj) {
17067                 
17068         Roo.XComponent.event.fireEvent('register', obj);
17069         switch(typeof(obj.disabled) ) {
17070                 
17071             case 'undefined':
17072                 break;
17073             
17074             case 'function':
17075                 if ( obj.disabled() ) {
17076                         return;
17077                 }
17078                 break;
17079             
17080             default:
17081                 if (obj.disabled || obj.region == '#disabled') {
17082                         return;
17083                 }
17084                 break;
17085         }
17086                 
17087         this.modules.push(obj);
17088          
17089     },
17090     /**
17091      * convert a string to an object..
17092      * eg. 'AAA.BBB' -> finds AAA.BBB
17093
17094      */
17095     
17096     toObject : function(str)
17097     {
17098         if (!str || typeof(str) == 'object') {
17099             return str;
17100         }
17101         if (str.substring(0,1) == '#') {
17102             return str;
17103         }
17104
17105         var ar = str.split('.');
17106         var rt, o;
17107         rt = ar.shift();
17108             /** eval:var:o */
17109         try {
17110             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17111         } catch (e) {
17112             throw "Module not found : " + str;
17113         }
17114         
17115         if (o === false) {
17116             throw "Module not found : " + str;
17117         }
17118         Roo.each(ar, function(e) {
17119             if (typeof(o[e]) == 'undefined') {
17120                 throw "Module not found : " + str;
17121             }
17122             o = o[e];
17123         });
17124         
17125         return o;
17126         
17127     },
17128     
17129     
17130     /**
17131      * move modules into their correct place in the tree..
17132      * 
17133      */
17134     preBuild : function ()
17135     {
17136         var _t = this;
17137         Roo.each(this.modules , function (obj)
17138         {
17139             Roo.XComponent.event.fireEvent('beforebuild', obj);
17140             
17141             var opar = obj.parent;
17142             try { 
17143                 obj.parent = this.toObject(opar);
17144             } catch(e) {
17145                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17146                 return;
17147             }
17148             
17149             if (!obj.parent) {
17150                 Roo.debug && Roo.log("GOT top level module");
17151                 Roo.debug && Roo.log(obj);
17152                 obj.modules = new Roo.util.MixedCollection(false, 
17153                     function(o) { return o.order + '' }
17154                 );
17155                 this.topModule = obj;
17156                 return;
17157             }
17158                         // parent is a string (usually a dom element name..)
17159             if (typeof(obj.parent) == 'string') {
17160                 this.elmodules.push(obj);
17161                 return;
17162             }
17163             if (obj.parent.constructor != Roo.XComponent) {
17164                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17165             }
17166             if (!obj.parent.modules) {
17167                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17168                     function(o) { return o.order + '' }
17169                 );
17170             }
17171             if (obj.parent.disabled) {
17172                 obj.disabled = true;
17173             }
17174             obj.parent.modules.add(obj);
17175         }, this);
17176     },
17177     
17178      /**
17179      * make a list of modules to build.
17180      * @return {Array} list of modules. 
17181      */ 
17182     
17183     buildOrder : function()
17184     {
17185         var _this = this;
17186         var cmp = function(a,b) {   
17187             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17188         };
17189         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17190             throw "No top level modules to build";
17191         }
17192         
17193         // make a flat list in order of modules to build.
17194         var mods = this.topModule ? [ this.topModule ] : [];
17195                 
17196         
17197         // elmodules (is a list of DOM based modules )
17198         Roo.each(this.elmodules, function(e) {
17199             mods.push(e);
17200             if (!this.topModule &&
17201                 typeof(e.parent) == 'string' &&
17202                 e.parent.substring(0,1) == '#' &&
17203                 Roo.get(e.parent.substr(1))
17204                ) {
17205                 
17206                 _this.topModule = e;
17207             }
17208             
17209         });
17210
17211         
17212         // add modules to their parents..
17213         var addMod = function(m) {
17214             Roo.debug && Roo.log("build Order: add: " + m.name);
17215                 
17216             mods.push(m);
17217             if (m.modules && !m.disabled) {
17218                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17219                 m.modules.keySort('ASC',  cmp );
17220                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17221     
17222                 m.modules.each(addMod);
17223             } else {
17224                 Roo.debug && Roo.log("build Order: no child modules");
17225             }
17226             // not sure if this is used any more..
17227             if (m.finalize) {
17228                 m.finalize.name = m.name + " (clean up) ";
17229                 mods.push(m.finalize);
17230             }
17231             
17232         }
17233         if (this.topModule && this.topModule.modules) { 
17234             this.topModule.modules.keySort('ASC',  cmp );
17235             this.topModule.modules.each(addMod);
17236         } 
17237         return mods;
17238     },
17239     
17240      /**
17241      * Build the registered modules.
17242      * @param {Object} parent element.
17243      * @param {Function} optional method to call after module has been added.
17244      * 
17245      */ 
17246    
17247     build : function(opts) 
17248     {
17249         
17250         if (typeof(opts) != 'undefined') {
17251             Roo.apply(this,opts);
17252         }
17253         
17254         this.preBuild();
17255         var mods = this.buildOrder();
17256       
17257         //this.allmods = mods;
17258         //Roo.debug && Roo.log(mods);
17259         //return;
17260         if (!mods.length) { // should not happen
17261             throw "NO modules!!!";
17262         }
17263         
17264         
17265         var msg = "Building Interface...";
17266         // flash it up as modal - so we store the mask!?
17267         if (!this.hideProgress && Roo.MessageBox) {
17268             Roo.MessageBox.show({ title: 'loading' });
17269             Roo.MessageBox.show({
17270                title: "Please wait...",
17271                msg: msg,
17272                width:450,
17273                progress:true,
17274                buttons : false,
17275                closable:false,
17276                modal: false
17277               
17278             });
17279         }
17280         var total = mods.length;
17281         
17282         var _this = this;
17283         var progressRun = function() {
17284             if (!mods.length) {
17285                 Roo.debug && Roo.log('hide?');
17286                 if (!this.hideProgress && Roo.MessageBox) {
17287                     Roo.MessageBox.hide();
17288                 }
17289                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17290                 
17291                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17292                 
17293                 // THE END...
17294                 return false;   
17295             }
17296             
17297             var m = mods.shift();
17298             
17299             
17300             Roo.debug && Roo.log(m);
17301             // not sure if this is supported any more.. - modules that are are just function
17302             if (typeof(m) == 'function') { 
17303                 m.call(this);
17304                 return progressRun.defer(10, _this);
17305             } 
17306             
17307             
17308             msg = "Building Interface " + (total  - mods.length) + 
17309                     " of " + total + 
17310                     (m.name ? (' - ' + m.name) : '');
17311                         Roo.debug && Roo.log(msg);
17312             if (!_this.hideProgress &&  Roo.MessageBox) { 
17313                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17314             }
17315             
17316          
17317             // is the module disabled?
17318             var disabled = (typeof(m.disabled) == 'function') ?
17319                 m.disabled.call(m.module.disabled) : m.disabled;    
17320             
17321             
17322             if (disabled) {
17323                 return progressRun(); // we do not update the display!
17324             }
17325             
17326             // now build 
17327             
17328                         
17329                         
17330             m.render();
17331             // it's 10 on top level, and 1 on others??? why...
17332             return progressRun.defer(10, _this);
17333              
17334         }
17335         progressRun.defer(1, _this);
17336      
17337         
17338         
17339     },
17340     /**
17341      * Overlay a set of modified strings onto a component
17342      * This is dependant on our builder exporting the strings and 'named strings' elements.
17343      * 
17344      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17345      * @param {Object} associative array of 'named' string and it's new value.
17346      * 
17347      */
17348         overlayStrings : function( component, strings )
17349     {
17350         if (typeof(component['_named_strings']) == 'undefined') {
17351             throw "ERROR: component does not have _named_strings";
17352         }
17353         for ( var k in strings ) {
17354             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17355             if (md !== false) {
17356                 component['_strings'][md] = strings[k];
17357             } else {
17358                 Roo.log('could not find named string: ' + k + ' in');
17359                 Roo.log(component);
17360             }
17361             
17362         }
17363         
17364     },
17365     
17366         
17367         /**
17368          * Event Object.
17369          *
17370          *
17371          */
17372         event: false, 
17373     /**
17374          * wrapper for event.on - aliased later..  
17375          * Typically use to register a event handler for register:
17376          *
17377          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17378          *
17379          */
17380     on : false
17381    
17382     
17383     
17384 });
17385
17386 Roo.XComponent.event = new Roo.util.Observable({
17387                 events : { 
17388                         /**
17389                          * @event register
17390                          * Fires when an Component is registered,
17391                          * set the disable property on the Component to stop registration.
17392                          * @param {Roo.XComponent} c the component being registerd.
17393                          * 
17394                          */
17395                         'register' : true,
17396             /**
17397                          * @event beforebuild
17398                          * Fires before each Component is built
17399                          * can be used to apply permissions.
17400                          * @param {Roo.XComponent} c the component being registerd.
17401                          * 
17402                          */
17403                         'beforebuild' : true,
17404                         /**
17405                          * @event buildcomplete
17406                          * Fires on the top level element when all elements have been built
17407                          * @param {Roo.XComponent} the top level component.
17408                          */
17409                         'buildcomplete' : true
17410                         
17411                 }
17412 });
17413
17414 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17415  //
17416  /**
17417  * marked - a markdown parser
17418  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17419  * https://github.com/chjj/marked
17420  */
17421
17422
17423 /**
17424  *
17425  * Roo.Markdown - is a very crude wrapper around marked..
17426  *
17427  * usage:
17428  * 
17429  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17430  * 
17431  * Note: move the sample code to the bottom of this
17432  * file before uncommenting it.
17433  *
17434  */
17435
17436 Roo.Markdown = {};
17437 Roo.Markdown.toHtml = function(text) {
17438     
17439     var c = new Roo.Markdown.marked.setOptions({
17440             renderer: new Roo.Markdown.marked.Renderer(),
17441             gfm: true,
17442             tables: true,
17443             breaks: false,
17444             pedantic: false,
17445             sanitize: false,
17446             smartLists: true,
17447             smartypants: false
17448           });
17449     // A FEW HACKS!!?
17450     
17451     text = text.replace(/\\\n/g,' ');
17452     return Roo.Markdown.marked(text);
17453 };
17454 //
17455 // converter
17456 //
17457 // Wraps all "globals" so that the only thing
17458 // exposed is makeHtml().
17459 //
17460 (function() {
17461     
17462      /**
17463          * eval:var:escape
17464          * eval:var:unescape
17465          * eval:var:replace
17466          */
17467       
17468     /**
17469      * Helpers
17470      */
17471     
17472     var escape = function (html, encode) {
17473       return html
17474         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17475         .replace(/</g, '&lt;')
17476         .replace(/>/g, '&gt;')
17477         .replace(/"/g, '&quot;')
17478         .replace(/'/g, '&#39;');
17479     }
17480     
17481     var unescape = function (html) {
17482         // explicitly match decimal, hex, and named HTML entities 
17483       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17484         n = n.toLowerCase();
17485         if (n === 'colon') { return ':'; }
17486         if (n.charAt(0) === '#') {
17487           return n.charAt(1) === 'x'
17488             ? String.fromCharCode(parseInt(n.substring(2), 16))
17489             : String.fromCharCode(+n.substring(1));
17490         }
17491         return '';
17492       });
17493     }
17494     
17495     var replace = function (regex, opt) {
17496       regex = regex.source;
17497       opt = opt || '';
17498       return function self(name, val) {
17499         if (!name) { return new RegExp(regex, opt); }
17500         val = val.source || val;
17501         val = val.replace(/(^|[^\[])\^/g, '$1');
17502         regex = regex.replace(name, val);
17503         return self;
17504       };
17505     }
17506
17507
17508          /**
17509          * eval:var:noop
17510     */
17511     var noop = function () {}
17512     noop.exec = noop;
17513     
17514          /**
17515          * eval:var:merge
17516     */
17517     var merge = function (obj) {
17518       var i = 1
17519         , target
17520         , key;
17521     
17522       for (; i < arguments.length; i++) {
17523         target = arguments[i];
17524         for (key in target) {
17525           if (Object.prototype.hasOwnProperty.call(target, key)) {
17526             obj[key] = target[key];
17527           }
17528         }
17529       }
17530     
17531       return obj;
17532     }
17533     
17534     
17535     /**
17536      * Block-Level Grammar
17537      */
17538     
17539     
17540     
17541     
17542     var block = {
17543       newline: /^\n+/,
17544       code: /^( {4}[^\n]+\n*)+/,
17545       fences: noop,
17546       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17547       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17548       nptable: noop,
17549       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17550       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17551       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17552       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17553       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17554       table: noop,
17555       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17556       text: /^[^\n]+/
17557     };
17558     
17559     block.bullet = /(?:[*+-]|\d+\.)/;
17560     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17561     block.item = replace(block.item, 'gm')
17562       (/bull/g, block.bullet)
17563       ();
17564     
17565     block.list = replace(block.list)
17566       (/bull/g, block.bullet)
17567       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17568       ('def', '\\n+(?=' + block.def.source + ')')
17569       ();
17570     
17571     block.blockquote = replace(block.blockquote)
17572       ('def', block.def)
17573       ();
17574     
17575     block._tag = '(?!(?:'
17576       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17577       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17578       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17579     
17580     block.html = replace(block.html)
17581       ('comment', /<!--[\s\S]*?-->/)
17582       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17583       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17584       (/tag/g, block._tag)
17585       ();
17586     
17587     block.paragraph = replace(block.paragraph)
17588       ('hr', block.hr)
17589       ('heading', block.heading)
17590       ('lheading', block.lheading)
17591       ('blockquote', block.blockquote)
17592       ('tag', '<' + block._tag)
17593       ('def', block.def)
17594       ();
17595     
17596     /**
17597      * Normal Block Grammar
17598      */
17599     
17600     block.normal = merge({}, block);
17601     
17602     /**
17603      * GFM Block Grammar
17604      */
17605     
17606     block.gfm = merge({}, block.normal, {
17607       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17608       paragraph: /^/,
17609       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17610     });
17611     
17612     block.gfm.paragraph = replace(block.paragraph)
17613       ('(?!', '(?!'
17614         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17615         + block.list.source.replace('\\1', '\\3') + '|')
17616       ();
17617     
17618     /**
17619      * GFM + Tables Block Grammar
17620      */
17621     
17622     block.tables = merge({}, block.gfm, {
17623       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17624       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17625     });
17626     
17627     /**
17628      * Block Lexer
17629      */
17630     
17631     var Lexer = function (options) {
17632       this.tokens = [];
17633       this.tokens.links = {};
17634       this.options = options || marked.defaults;
17635       this.rules = block.normal;
17636     
17637       if (this.options.gfm) {
17638         if (this.options.tables) {
17639           this.rules = block.tables;
17640         } else {
17641           this.rules = block.gfm;
17642         }
17643       }
17644     }
17645     
17646     /**
17647      * Expose Block Rules
17648      */
17649     
17650     Lexer.rules = block;
17651     
17652     /**
17653      * Static Lex Method
17654      */
17655     
17656     Lexer.lex = function(src, options) {
17657       var lexer = new Lexer(options);
17658       return lexer.lex(src);
17659     };
17660     
17661     /**
17662      * Preprocessing
17663      */
17664     
17665     Lexer.prototype.lex = function(src) {
17666       src = src
17667         .replace(/\r\n|\r/g, '\n')
17668         .replace(/\t/g, '    ')
17669         .replace(/\u00a0/g, ' ')
17670         .replace(/\u2424/g, '\n');
17671     
17672       return this.token(src, true);
17673     };
17674     
17675     /**
17676      * Lexing
17677      */
17678     
17679     Lexer.prototype.token = function(src, top, bq) {
17680       var src = src.replace(/^ +$/gm, '')
17681         , next
17682         , loose
17683         , cap
17684         , bull
17685         , b
17686         , item
17687         , space
17688         , i
17689         , l;
17690     
17691       while (src) {
17692         // newline
17693         if (cap = this.rules.newline.exec(src)) {
17694           src = src.substring(cap[0].length);
17695           if (cap[0].length > 1) {
17696             this.tokens.push({
17697               type: 'space'
17698             });
17699           }
17700         }
17701     
17702         // code
17703         if (cap = this.rules.code.exec(src)) {
17704           src = src.substring(cap[0].length);
17705           cap = cap[0].replace(/^ {4}/gm, '');
17706           this.tokens.push({
17707             type: 'code',
17708             text: !this.options.pedantic
17709               ? cap.replace(/\n+$/, '')
17710               : cap
17711           });
17712           continue;
17713         }
17714     
17715         // fences (gfm)
17716         if (cap = this.rules.fences.exec(src)) {
17717           src = src.substring(cap[0].length);
17718           this.tokens.push({
17719             type: 'code',
17720             lang: cap[2],
17721             text: cap[3] || ''
17722           });
17723           continue;
17724         }
17725     
17726         // heading
17727         if (cap = this.rules.heading.exec(src)) {
17728           src = src.substring(cap[0].length);
17729           this.tokens.push({
17730             type: 'heading',
17731             depth: cap[1].length,
17732             text: cap[2]
17733           });
17734           continue;
17735         }
17736     
17737         // table no leading pipe (gfm)
17738         if (top && (cap = this.rules.nptable.exec(src))) {
17739           src = src.substring(cap[0].length);
17740     
17741           item = {
17742             type: 'table',
17743             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17744             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17745             cells: cap[3].replace(/\n$/, '').split('\n')
17746           };
17747     
17748           for (i = 0; i < item.align.length; i++) {
17749             if (/^ *-+: *$/.test(item.align[i])) {
17750               item.align[i] = 'right';
17751             } else if (/^ *:-+: *$/.test(item.align[i])) {
17752               item.align[i] = 'center';
17753             } else if (/^ *:-+ *$/.test(item.align[i])) {
17754               item.align[i] = 'left';
17755             } else {
17756               item.align[i] = null;
17757             }
17758           }
17759     
17760           for (i = 0; i < item.cells.length; i++) {
17761             item.cells[i] = item.cells[i].split(/ *\| */);
17762           }
17763     
17764           this.tokens.push(item);
17765     
17766           continue;
17767         }
17768     
17769         // lheading
17770         if (cap = this.rules.lheading.exec(src)) {
17771           src = src.substring(cap[0].length);
17772           this.tokens.push({
17773             type: 'heading',
17774             depth: cap[2] === '=' ? 1 : 2,
17775             text: cap[1]
17776           });
17777           continue;
17778         }
17779     
17780         // hr
17781         if (cap = this.rules.hr.exec(src)) {
17782           src = src.substring(cap[0].length);
17783           this.tokens.push({
17784             type: 'hr'
17785           });
17786           continue;
17787         }
17788     
17789         // blockquote
17790         if (cap = this.rules.blockquote.exec(src)) {
17791           src = src.substring(cap[0].length);
17792     
17793           this.tokens.push({
17794             type: 'blockquote_start'
17795           });
17796     
17797           cap = cap[0].replace(/^ *> ?/gm, '');
17798     
17799           // Pass `top` to keep the current
17800           // "toplevel" state. This is exactly
17801           // how markdown.pl works.
17802           this.token(cap, top, true);
17803     
17804           this.tokens.push({
17805             type: 'blockquote_end'
17806           });
17807     
17808           continue;
17809         }
17810     
17811         // list
17812         if (cap = this.rules.list.exec(src)) {
17813           src = src.substring(cap[0].length);
17814           bull = cap[2];
17815     
17816           this.tokens.push({
17817             type: 'list_start',
17818             ordered: bull.length > 1
17819           });
17820     
17821           // Get each top-level item.
17822           cap = cap[0].match(this.rules.item);
17823     
17824           next = false;
17825           l = cap.length;
17826           i = 0;
17827     
17828           for (; i < l; i++) {
17829             item = cap[i];
17830     
17831             // Remove the list item's bullet
17832             // so it is seen as the next token.
17833             space = item.length;
17834             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17835     
17836             // Outdent whatever the
17837             // list item contains. Hacky.
17838             if (~item.indexOf('\n ')) {
17839               space -= item.length;
17840               item = !this.options.pedantic
17841                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17842                 : item.replace(/^ {1,4}/gm, '');
17843             }
17844     
17845             // Determine whether the next list item belongs here.
17846             // Backpedal if it does not belong in this list.
17847             if (this.options.smartLists && i !== l - 1) {
17848               b = block.bullet.exec(cap[i + 1])[0];
17849               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17850                 src = cap.slice(i + 1).join('\n') + src;
17851                 i = l - 1;
17852               }
17853             }
17854     
17855             // Determine whether item is loose or not.
17856             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17857             // for discount behavior.
17858             loose = next || /\n\n(?!\s*$)/.test(item);
17859             if (i !== l - 1) {
17860               next = item.charAt(item.length - 1) === '\n';
17861               if (!loose) { loose = next; }
17862             }
17863     
17864             this.tokens.push({
17865               type: loose
17866                 ? 'loose_item_start'
17867                 : 'list_item_start'
17868             });
17869     
17870             // Recurse.
17871             this.token(item, false, bq);
17872     
17873             this.tokens.push({
17874               type: 'list_item_end'
17875             });
17876           }
17877     
17878           this.tokens.push({
17879             type: 'list_end'
17880           });
17881     
17882           continue;
17883         }
17884     
17885         // html
17886         if (cap = this.rules.html.exec(src)) {
17887           src = src.substring(cap[0].length);
17888           this.tokens.push({
17889             type: this.options.sanitize
17890               ? 'paragraph'
17891               : 'html',
17892             pre: !this.options.sanitizer
17893               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17894             text: cap[0]
17895           });
17896           continue;
17897         }
17898     
17899         // def
17900         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17901           src = src.substring(cap[0].length);
17902           this.tokens.links[cap[1].toLowerCase()] = {
17903             href: cap[2],
17904             title: cap[3]
17905           };
17906           continue;
17907         }
17908     
17909         // table (gfm)
17910         if (top && (cap = this.rules.table.exec(src))) {
17911           src = src.substring(cap[0].length);
17912     
17913           item = {
17914             type: 'table',
17915             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17916             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17917             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17918           };
17919     
17920           for (i = 0; i < item.align.length; i++) {
17921             if (/^ *-+: *$/.test(item.align[i])) {
17922               item.align[i] = 'right';
17923             } else if (/^ *:-+: *$/.test(item.align[i])) {
17924               item.align[i] = 'center';
17925             } else if (/^ *:-+ *$/.test(item.align[i])) {
17926               item.align[i] = 'left';
17927             } else {
17928               item.align[i] = null;
17929             }
17930           }
17931     
17932           for (i = 0; i < item.cells.length; i++) {
17933             item.cells[i] = item.cells[i]
17934               .replace(/^ *\| *| *\| *$/g, '')
17935               .split(/ *\| */);
17936           }
17937     
17938           this.tokens.push(item);
17939     
17940           continue;
17941         }
17942     
17943         // top-level paragraph
17944         if (top && (cap = this.rules.paragraph.exec(src))) {
17945           src = src.substring(cap[0].length);
17946           this.tokens.push({
17947             type: 'paragraph',
17948             text: cap[1].charAt(cap[1].length - 1) === '\n'
17949               ? cap[1].slice(0, -1)
17950               : cap[1]
17951           });
17952           continue;
17953         }
17954     
17955         // text
17956         if (cap = this.rules.text.exec(src)) {
17957           // Top-level should never reach here.
17958           src = src.substring(cap[0].length);
17959           this.tokens.push({
17960             type: 'text',
17961             text: cap[0]
17962           });
17963           continue;
17964         }
17965     
17966         if (src) {
17967           throw new
17968             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17969         }
17970       }
17971     
17972       return this.tokens;
17973     };
17974     
17975     /**
17976      * Inline-Level Grammar
17977      */
17978     
17979     var inline = {
17980       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17981       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17982       url: noop,
17983       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17984       link: /^!?\[(inside)\]\(href\)/,
17985       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17986       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17987       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17988       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17989       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17990       br: /^ {2,}\n(?!\s*$)/,
17991       del: noop,
17992       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17993     };
17994     
17995     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17996     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17997     
17998     inline.link = replace(inline.link)
17999       ('inside', inline._inside)
18000       ('href', inline._href)
18001       ();
18002     
18003     inline.reflink = replace(inline.reflink)
18004       ('inside', inline._inside)
18005       ();
18006     
18007     /**
18008      * Normal Inline Grammar
18009      */
18010     
18011     inline.normal = merge({}, inline);
18012     
18013     /**
18014      * Pedantic Inline Grammar
18015      */
18016     
18017     inline.pedantic = merge({}, inline.normal, {
18018       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
18019       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
18020     });
18021     
18022     /**
18023      * GFM Inline Grammar
18024      */
18025     
18026     inline.gfm = merge({}, inline.normal, {
18027       escape: replace(inline.escape)('])', '~|])')(),
18028       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
18029       del: /^~~(?=\S)([\s\S]*?\S)~~/,
18030       text: replace(inline.text)
18031         (']|', '~]|')
18032         ('|', '|https?://|')
18033         ()
18034     });
18035     
18036     /**
18037      * GFM + Line Breaks Inline Grammar
18038      */
18039     
18040     inline.breaks = merge({}, inline.gfm, {
18041       br: replace(inline.br)('{2,}', '*')(),
18042       text: replace(inline.gfm.text)('{2,}', '*')()
18043     });
18044     
18045     /**
18046      * Inline Lexer & Compiler
18047      */
18048     
18049     var InlineLexer  = function (links, options) {
18050       this.options = options || marked.defaults;
18051       this.links = links;
18052       this.rules = inline.normal;
18053       this.renderer = this.options.renderer || new Renderer;
18054       this.renderer.options = this.options;
18055     
18056       if (!this.links) {
18057         throw new
18058           Error('Tokens array requires a `links` property.');
18059       }
18060     
18061       if (this.options.gfm) {
18062         if (this.options.breaks) {
18063           this.rules = inline.breaks;
18064         } else {
18065           this.rules = inline.gfm;
18066         }
18067       } else if (this.options.pedantic) {
18068         this.rules = inline.pedantic;
18069       }
18070     }
18071     
18072     /**
18073      * Expose Inline Rules
18074      */
18075     
18076     InlineLexer.rules = inline;
18077     
18078     /**
18079      * Static Lexing/Compiling Method
18080      */
18081     
18082     InlineLexer.output = function(src, links, options) {
18083       var inline = new InlineLexer(links, options);
18084       return inline.output(src);
18085     };
18086     
18087     /**
18088      * Lexing/Compiling
18089      */
18090     
18091     InlineLexer.prototype.output = function(src) {
18092       var out = ''
18093         , link
18094         , text
18095         , href
18096         , cap;
18097     
18098       while (src) {
18099         // escape
18100         if (cap = this.rules.escape.exec(src)) {
18101           src = src.substring(cap[0].length);
18102           out += cap[1];
18103           continue;
18104         }
18105     
18106         // autolink
18107         if (cap = this.rules.autolink.exec(src)) {
18108           src = src.substring(cap[0].length);
18109           if (cap[2] === '@') {
18110             text = cap[1].charAt(6) === ':'
18111               ? this.mangle(cap[1].substring(7))
18112               : this.mangle(cap[1]);
18113             href = this.mangle('mailto:') + text;
18114           } else {
18115             text = escape(cap[1]);
18116             href = text;
18117           }
18118           out += this.renderer.link(href, null, text);
18119           continue;
18120         }
18121     
18122         // url (gfm)
18123         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18124           src = src.substring(cap[0].length);
18125           text = escape(cap[1]);
18126           href = text;
18127           out += this.renderer.link(href, null, text);
18128           continue;
18129         }
18130     
18131         // tag
18132         if (cap = this.rules.tag.exec(src)) {
18133           if (!this.inLink && /^<a /i.test(cap[0])) {
18134             this.inLink = true;
18135           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18136             this.inLink = false;
18137           }
18138           src = src.substring(cap[0].length);
18139           out += this.options.sanitize
18140             ? this.options.sanitizer
18141               ? this.options.sanitizer(cap[0])
18142               : escape(cap[0])
18143             : cap[0];
18144           continue;
18145         }
18146     
18147         // link
18148         if (cap = this.rules.link.exec(src)) {
18149           src = src.substring(cap[0].length);
18150           this.inLink = true;
18151           out += this.outputLink(cap, {
18152             href: cap[2],
18153             title: cap[3]
18154           });
18155           this.inLink = false;
18156           continue;
18157         }
18158     
18159         // reflink, nolink
18160         if ((cap = this.rules.reflink.exec(src))
18161             || (cap = this.rules.nolink.exec(src))) {
18162           src = src.substring(cap[0].length);
18163           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18164           link = this.links[link.toLowerCase()];
18165           if (!link || !link.href) {
18166             out += cap[0].charAt(0);
18167             src = cap[0].substring(1) + src;
18168             continue;
18169           }
18170           this.inLink = true;
18171           out += this.outputLink(cap, link);
18172           this.inLink = false;
18173           continue;
18174         }
18175     
18176         // strong
18177         if (cap = this.rules.strong.exec(src)) {
18178           src = src.substring(cap[0].length);
18179           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18180           continue;
18181         }
18182     
18183         // em
18184         if (cap = this.rules.em.exec(src)) {
18185           src = src.substring(cap[0].length);
18186           out += this.renderer.em(this.output(cap[2] || cap[1]));
18187           continue;
18188         }
18189     
18190         // code
18191         if (cap = this.rules.code.exec(src)) {
18192           src = src.substring(cap[0].length);
18193           out += this.renderer.codespan(escape(cap[2], true));
18194           continue;
18195         }
18196     
18197         // br
18198         if (cap = this.rules.br.exec(src)) {
18199           src = src.substring(cap[0].length);
18200           out += this.renderer.br();
18201           continue;
18202         }
18203     
18204         // del (gfm)
18205         if (cap = this.rules.del.exec(src)) {
18206           src = src.substring(cap[0].length);
18207           out += this.renderer.del(this.output(cap[1]));
18208           continue;
18209         }
18210     
18211         // text
18212         if (cap = this.rules.text.exec(src)) {
18213           src = src.substring(cap[0].length);
18214           out += this.renderer.text(escape(this.smartypants(cap[0])));
18215           continue;
18216         }
18217     
18218         if (src) {
18219           throw new
18220             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18221         }
18222       }
18223     
18224       return out;
18225     };
18226     
18227     /**
18228      * Compile Link
18229      */
18230     
18231     InlineLexer.prototype.outputLink = function(cap, link) {
18232       var href = escape(link.href)
18233         , title = link.title ? escape(link.title) : null;
18234     
18235       return cap[0].charAt(0) !== '!'
18236         ? this.renderer.link(href, title, this.output(cap[1]))
18237         : this.renderer.image(href, title, escape(cap[1]));
18238     };
18239     
18240     /**
18241      * Smartypants Transformations
18242      */
18243     
18244     InlineLexer.prototype.smartypants = function(text) {
18245       if (!this.options.smartypants)  { return text; }
18246       return text
18247         // em-dashes
18248         .replace(/---/g, '\u2014')
18249         // en-dashes
18250         .replace(/--/g, '\u2013')
18251         // opening singles
18252         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18253         // closing singles & apostrophes
18254         .replace(/'/g, '\u2019')
18255         // opening doubles
18256         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18257         // closing doubles
18258         .replace(/"/g, '\u201d')
18259         // ellipses
18260         .replace(/\.{3}/g, '\u2026');
18261     };
18262     
18263     /**
18264      * Mangle Links
18265      */
18266     
18267     InlineLexer.prototype.mangle = function(text) {
18268       if (!this.options.mangle) { return text; }
18269       var out = ''
18270         , l = text.length
18271         , i = 0
18272         , ch;
18273     
18274       for (; i < l; i++) {
18275         ch = text.charCodeAt(i);
18276         if (Math.random() > 0.5) {
18277           ch = 'x' + ch.toString(16);
18278         }
18279         out += '&#' + ch + ';';
18280       }
18281     
18282       return out;
18283     };
18284     
18285     /**
18286      * Renderer
18287      */
18288     
18289      /**
18290          * eval:var:Renderer
18291     */
18292     
18293     var Renderer   = function (options) {
18294       this.options = options || {};
18295     }
18296     
18297     Renderer.prototype.code = function(code, lang, escaped) {
18298       if (this.options.highlight) {
18299         var out = this.options.highlight(code, lang);
18300         if (out != null && out !== code) {
18301           escaped = true;
18302           code = out;
18303         }
18304       } else {
18305             // hack!!! - it's already escapeD?
18306             escaped = true;
18307       }
18308     
18309       if (!lang) {
18310         return '<pre><code>'
18311           + (escaped ? code : escape(code, true))
18312           + '\n</code></pre>';
18313       }
18314     
18315       return '<pre><code class="'
18316         + this.options.langPrefix
18317         + escape(lang, true)
18318         + '">'
18319         + (escaped ? code : escape(code, true))
18320         + '\n</code></pre>\n';
18321     };
18322     
18323     Renderer.prototype.blockquote = function(quote) {
18324       return '<blockquote>\n' + quote + '</blockquote>\n';
18325     };
18326     
18327     Renderer.prototype.html = function(html) {
18328       return html;
18329     };
18330     
18331     Renderer.prototype.heading = function(text, level, raw) {
18332       return '<h'
18333         + level
18334         + ' id="'
18335         + this.options.headerPrefix
18336         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18337         + '">'
18338         + text
18339         + '</h'
18340         + level
18341         + '>\n';
18342     };
18343     
18344     Renderer.prototype.hr = function() {
18345       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18346     };
18347     
18348     Renderer.prototype.list = function(body, ordered) {
18349       var type = ordered ? 'ol' : 'ul';
18350       return '<' + type + '>\n' + body + '</' + type + '>\n';
18351     };
18352     
18353     Renderer.prototype.listitem = function(text) {
18354       return '<li>' + text + '</li>\n';
18355     };
18356     
18357     Renderer.prototype.paragraph = function(text) {
18358       return '<p>' + text + '</p>\n';
18359     };
18360     
18361     Renderer.prototype.table = function(header, body) {
18362       return '<table class="table table-striped">\n'
18363         + '<thead>\n'
18364         + header
18365         + '</thead>\n'
18366         + '<tbody>\n'
18367         + body
18368         + '</tbody>\n'
18369         + '</table>\n';
18370     };
18371     
18372     Renderer.prototype.tablerow = function(content) {
18373       return '<tr>\n' + content + '</tr>\n';
18374     };
18375     
18376     Renderer.prototype.tablecell = function(content, flags) {
18377       var type = flags.header ? 'th' : 'td';
18378       var tag = flags.align
18379         ? '<' + type + ' style="text-align:' + flags.align + '">'
18380         : '<' + type + '>';
18381       return tag + content + '</' + type + '>\n';
18382     };
18383     
18384     // span level renderer
18385     Renderer.prototype.strong = function(text) {
18386       return '<strong>' + text + '</strong>';
18387     };
18388     
18389     Renderer.prototype.em = function(text) {
18390       return '<em>' + text + '</em>';
18391     };
18392     
18393     Renderer.prototype.codespan = function(text) {
18394       return '<code>' + text + '</code>';
18395     };
18396     
18397     Renderer.prototype.br = function() {
18398       return this.options.xhtml ? '<br/>' : '<br>';
18399     };
18400     
18401     Renderer.prototype.del = function(text) {
18402       return '<del>' + text + '</del>';
18403     };
18404     
18405     Renderer.prototype.link = function(href, title, text) {
18406       if (this.options.sanitize) {
18407         try {
18408           var prot = decodeURIComponent(unescape(href))
18409             .replace(/[^\w:]/g, '')
18410             .toLowerCase();
18411         } catch (e) {
18412           return '';
18413         }
18414         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18415           return '';
18416         }
18417       }
18418       var out = '<a href="' + href + '"';
18419       if (title) {
18420         out += ' title="' + title + '"';
18421       }
18422       out += '>' + text + '</a>';
18423       return out;
18424     };
18425     
18426     Renderer.prototype.image = function(href, title, text) {
18427       var out = '<img src="' + href + '" alt="' + text + '"';
18428       if (title) {
18429         out += ' title="' + title + '"';
18430       }
18431       out += this.options.xhtml ? '/>' : '>';
18432       return out;
18433     };
18434     
18435     Renderer.prototype.text = function(text) {
18436       return text;
18437     };
18438     
18439     /**
18440      * Parsing & Compiling
18441      */
18442          /**
18443          * eval:var:Parser
18444     */
18445     
18446     var Parser= function (options) {
18447       this.tokens = [];
18448       this.token = null;
18449       this.options = options || marked.defaults;
18450       this.options.renderer = this.options.renderer || new Renderer;
18451       this.renderer = this.options.renderer;
18452       this.renderer.options = this.options;
18453     }
18454     
18455     /**
18456      * Static Parse Method
18457      */
18458     
18459     Parser.parse = function(src, options, renderer) {
18460       var parser = new Parser(options, renderer);
18461       return parser.parse(src);
18462     };
18463     
18464     /**
18465      * Parse Loop
18466      */
18467     
18468     Parser.prototype.parse = function(src) {
18469       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18470       this.tokens = src.reverse();
18471     
18472       var out = '';
18473       while (this.next()) {
18474         out += this.tok();
18475       }
18476     
18477       return out;
18478     };
18479     
18480     /**
18481      * Next Token
18482      */
18483     
18484     Parser.prototype.next = function() {
18485       return this.token = this.tokens.pop();
18486     };
18487     
18488     /**
18489      * Preview Next Token
18490      */
18491     
18492     Parser.prototype.peek = function() {
18493       return this.tokens[this.tokens.length - 1] || 0;
18494     };
18495     
18496     /**
18497      * Parse Text Tokens
18498      */
18499     
18500     Parser.prototype.parseText = function() {
18501       var body = this.token.text;
18502     
18503       while (this.peek().type === 'text') {
18504         body += '\n' + this.next().text;
18505       }
18506     
18507       return this.inline.output(body);
18508     };
18509     
18510     /**
18511      * Parse Current Token
18512      */
18513     
18514     Parser.prototype.tok = function() {
18515       switch (this.token.type) {
18516         case 'space': {
18517           return '';
18518         }
18519         case 'hr': {
18520           return this.renderer.hr();
18521         }
18522         case 'heading': {
18523           return this.renderer.heading(
18524             this.inline.output(this.token.text),
18525             this.token.depth,
18526             this.token.text);
18527         }
18528         case 'code': {
18529           return this.renderer.code(this.token.text,
18530             this.token.lang,
18531             this.token.escaped);
18532         }
18533         case 'table': {
18534           var header = ''
18535             , body = ''
18536             , i
18537             , row
18538             , cell
18539             , flags
18540             , j;
18541     
18542           // header
18543           cell = '';
18544           for (i = 0; i < this.token.header.length; i++) {
18545             flags = { header: true, align: this.token.align[i] };
18546             cell += this.renderer.tablecell(
18547               this.inline.output(this.token.header[i]),
18548               { header: true, align: this.token.align[i] }
18549             );
18550           }
18551           header += this.renderer.tablerow(cell);
18552     
18553           for (i = 0; i < this.token.cells.length; i++) {
18554             row = this.token.cells[i];
18555     
18556             cell = '';
18557             for (j = 0; j < row.length; j++) {
18558               cell += this.renderer.tablecell(
18559                 this.inline.output(row[j]),
18560                 { header: false, align: this.token.align[j] }
18561               );
18562             }
18563     
18564             body += this.renderer.tablerow(cell);
18565           }
18566           return this.renderer.table(header, body);
18567         }
18568         case 'blockquote_start': {
18569           var body = '';
18570     
18571           while (this.next().type !== 'blockquote_end') {
18572             body += this.tok();
18573           }
18574     
18575           return this.renderer.blockquote(body);
18576         }
18577         case 'list_start': {
18578           var body = ''
18579             , ordered = this.token.ordered;
18580     
18581           while (this.next().type !== 'list_end') {
18582             body += this.tok();
18583           }
18584     
18585           return this.renderer.list(body, ordered);
18586         }
18587         case 'list_item_start': {
18588           var body = '';
18589     
18590           while (this.next().type !== 'list_item_end') {
18591             body += this.token.type === 'text'
18592               ? this.parseText()
18593               : this.tok();
18594           }
18595     
18596           return this.renderer.listitem(body);
18597         }
18598         case 'loose_item_start': {
18599           var body = '';
18600     
18601           while (this.next().type !== 'list_item_end') {
18602             body += this.tok();
18603           }
18604     
18605           return this.renderer.listitem(body);
18606         }
18607         case 'html': {
18608           var html = !this.token.pre && !this.options.pedantic
18609             ? this.inline.output(this.token.text)
18610             : this.token.text;
18611           return this.renderer.html(html);
18612         }
18613         case 'paragraph': {
18614           return this.renderer.paragraph(this.inline.output(this.token.text));
18615         }
18616         case 'text': {
18617           return this.renderer.paragraph(this.parseText());
18618         }
18619       }
18620     };
18621   
18622     
18623     /**
18624      * Marked
18625      */
18626          /**
18627          * eval:var:marked
18628     */
18629     var marked = function (src, opt, callback) {
18630       if (callback || typeof opt === 'function') {
18631         if (!callback) {
18632           callback = opt;
18633           opt = null;
18634         }
18635     
18636         opt = merge({}, marked.defaults, opt || {});
18637     
18638         var highlight = opt.highlight
18639           , tokens
18640           , pending
18641           , i = 0;
18642     
18643         try {
18644           tokens = Lexer.lex(src, opt)
18645         } catch (e) {
18646           return callback(e);
18647         }
18648     
18649         pending = tokens.length;
18650          /**
18651          * eval:var:done
18652     */
18653         var done = function(err) {
18654           if (err) {
18655             opt.highlight = highlight;
18656             return callback(err);
18657           }
18658     
18659           var out;
18660     
18661           try {
18662             out = Parser.parse(tokens, opt);
18663           } catch (e) {
18664             err = e;
18665           }
18666     
18667           opt.highlight = highlight;
18668     
18669           return err
18670             ? callback(err)
18671             : callback(null, out);
18672         };
18673     
18674         if (!highlight || highlight.length < 3) {
18675           return done();
18676         }
18677     
18678         delete opt.highlight;
18679     
18680         if (!pending) { return done(); }
18681     
18682         for (; i < tokens.length; i++) {
18683           (function(token) {
18684             if (token.type !== 'code') {
18685               return --pending || done();
18686             }
18687             return highlight(token.text, token.lang, function(err, code) {
18688               if (err) { return done(err); }
18689               if (code == null || code === token.text) {
18690                 return --pending || done();
18691               }
18692               token.text = code;
18693               token.escaped = true;
18694               --pending || done();
18695             });
18696           })(tokens[i]);
18697         }
18698     
18699         return;
18700       }
18701       try {
18702         if (opt) { opt = merge({}, marked.defaults, opt); }
18703         return Parser.parse(Lexer.lex(src, opt), opt);
18704       } catch (e) {
18705         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18706         if ((opt || marked.defaults).silent) {
18707           return '<p>An error occured:</p><pre>'
18708             + escape(e.message + '', true)
18709             + '</pre>';
18710         }
18711         throw e;
18712       }
18713     }
18714     
18715     /**
18716      * Options
18717      */
18718     
18719     marked.options =
18720     marked.setOptions = function(opt) {
18721       merge(marked.defaults, opt);
18722       return marked;
18723     };
18724     
18725     marked.defaults = {
18726       gfm: true,
18727       tables: true,
18728       breaks: false,
18729       pedantic: false,
18730       sanitize: false,
18731       sanitizer: null,
18732       mangle: true,
18733       smartLists: false,
18734       silent: false,
18735       highlight: null,
18736       langPrefix: 'lang-',
18737       smartypants: false,
18738       headerPrefix: '',
18739       renderer: new Renderer,
18740       xhtml: false
18741     };
18742     
18743     /**
18744      * Expose
18745      */
18746     
18747     marked.Parser = Parser;
18748     marked.parser = Parser.parse;
18749     
18750     marked.Renderer = Renderer;
18751     
18752     marked.Lexer = Lexer;
18753     marked.lexer = Lexer.lex;
18754     
18755     marked.InlineLexer = InlineLexer;
18756     marked.inlineLexer = InlineLexer.output;
18757     
18758     marked.parse = marked;
18759     
18760     Roo.Markdown.marked = marked;
18761
18762 })();/*
18763  * Based on:
18764  * Ext JS Library 1.1.1
18765  * Copyright(c) 2006-2007, Ext JS, LLC.
18766  *
18767  * Originally Released Under LGPL - original licence link has changed is not relivant.
18768  *
18769  * Fork - LGPL
18770  * <script type="text/javascript">
18771  */
18772
18773
18774
18775 /*
18776  * These classes are derivatives of the similarly named classes in the YUI Library.
18777  * The original license:
18778  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18779  * Code licensed under the BSD License:
18780  * http://developer.yahoo.net/yui/license.txt
18781  */
18782
18783 (function() {
18784
18785 var Event=Roo.EventManager;
18786 var Dom=Roo.lib.Dom;
18787
18788 /**
18789  * @class Roo.dd.DragDrop
18790  * @extends Roo.util.Observable
18791  * Defines the interface and base operation of items that that can be
18792  * dragged or can be drop targets.  It was designed to be extended, overriding
18793  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18794  * Up to three html elements can be associated with a DragDrop instance:
18795  * <ul>
18796  * <li>linked element: the element that is passed into the constructor.
18797  * This is the element which defines the boundaries for interaction with
18798  * other DragDrop objects.</li>
18799  * <li>handle element(s): The drag operation only occurs if the element that
18800  * was clicked matches a handle element.  By default this is the linked
18801  * element, but there are times that you will want only a portion of the
18802  * linked element to initiate the drag operation, and the setHandleElId()
18803  * method provides a way to define this.</li>
18804  * <li>drag element: this represents the element that would be moved along
18805  * with the cursor during a drag operation.  By default, this is the linked
18806  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18807  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18808  * </li>
18809  * </ul>
18810  * This class should not be instantiated until the onload event to ensure that
18811  * the associated elements are available.
18812  * The following would define a DragDrop obj that would interact with any
18813  * other DragDrop obj in the "group1" group:
18814  * <pre>
18815  *  dd = new Roo.dd.DragDrop("div1", "group1");
18816  * </pre>
18817  * Since none of the event handlers have been implemented, nothing would
18818  * actually happen if you were to run the code above.  Normally you would
18819  * override this class or one of the default implementations, but you can
18820  * also override the methods you want on an instance of the class...
18821  * <pre>
18822  *  dd.onDragDrop = function(e, id) {
18823  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18824  *  }
18825  * </pre>
18826  * @constructor
18827  * @param {String} id of the element that is linked to this instance
18828  * @param {String} sGroup the group of related DragDrop objects
18829  * @param {object} config an object containing configurable attributes
18830  *                Valid properties for DragDrop:
18831  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18832  */
18833 Roo.dd.DragDrop = function(id, sGroup, config) {
18834     if (id) {
18835         this.init(id, sGroup, config);
18836     }
18837     
18838 };
18839
18840 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18841
18842     /**
18843      * The id of the element associated with this object.  This is what we
18844      * refer to as the "linked element" because the size and position of
18845      * this element is used to determine when the drag and drop objects have
18846      * interacted.
18847      * @property id
18848      * @type String
18849      */
18850     id: null,
18851
18852     /**
18853      * Configuration attributes passed into the constructor
18854      * @property config
18855      * @type object
18856      */
18857     config: null,
18858
18859     /**
18860      * The id of the element that will be dragged.  By default this is same
18861      * as the linked element , but could be changed to another element. Ex:
18862      * Roo.dd.DDProxy
18863      * @property dragElId
18864      * @type String
18865      * @private
18866      */
18867     dragElId: null,
18868
18869     /**
18870      * the id of the element that initiates the drag operation.  By default
18871      * this is the linked element, but could be changed to be a child of this
18872      * element.  This lets us do things like only starting the drag when the
18873      * header element within the linked html element is clicked.
18874      * @property handleElId
18875      * @type String
18876      * @private
18877      */
18878     handleElId: null,
18879
18880     /**
18881      * An associative array of HTML tags that will be ignored if clicked.
18882      * @property invalidHandleTypes
18883      * @type {string: string}
18884      */
18885     invalidHandleTypes: null,
18886
18887     /**
18888      * An associative array of ids for elements that will be ignored if clicked
18889      * @property invalidHandleIds
18890      * @type {string: string}
18891      */
18892     invalidHandleIds: null,
18893
18894     /**
18895      * An indexted array of css class names for elements that will be ignored
18896      * if clicked.
18897      * @property invalidHandleClasses
18898      * @type string[]
18899      */
18900     invalidHandleClasses: null,
18901
18902     /**
18903      * The linked element's absolute X position at the time the drag was
18904      * started
18905      * @property startPageX
18906      * @type int
18907      * @private
18908      */
18909     startPageX: 0,
18910
18911     /**
18912      * The linked element's absolute X position at the time the drag was
18913      * started
18914      * @property startPageY
18915      * @type int
18916      * @private
18917      */
18918     startPageY: 0,
18919
18920     /**
18921      * The group defines a logical collection of DragDrop objects that are
18922      * related.  Instances only get events when interacting with other
18923      * DragDrop object in the same group.  This lets us define multiple
18924      * groups using a single DragDrop subclass if we want.
18925      * @property groups
18926      * @type {string: string}
18927      */
18928     groups: null,
18929
18930     /**
18931      * Individual drag/drop instances can be locked.  This will prevent
18932      * onmousedown start drag.
18933      * @property locked
18934      * @type boolean
18935      * @private
18936      */
18937     locked: false,
18938
18939     /**
18940      * Lock this instance
18941      * @method lock
18942      */
18943     lock: function() { this.locked = true; },
18944
18945     /**
18946      * Unlock this instace
18947      * @method unlock
18948      */
18949     unlock: function() { this.locked = false; },
18950
18951     /**
18952      * By default, all insances can be a drop target.  This can be disabled by
18953      * setting isTarget to false.
18954      * @method isTarget
18955      * @type boolean
18956      */
18957     isTarget: true,
18958
18959     /**
18960      * The padding configured for this drag and drop object for calculating
18961      * the drop zone intersection with this object.
18962      * @method padding
18963      * @type int[]
18964      */
18965     padding: null,
18966
18967     /**
18968      * Cached reference to the linked element
18969      * @property _domRef
18970      * @private
18971      */
18972     _domRef: null,
18973
18974     /**
18975      * Internal typeof flag
18976      * @property __ygDragDrop
18977      * @private
18978      */
18979     __ygDragDrop: true,
18980
18981     /**
18982      * Set to true when horizontal contraints are applied
18983      * @property constrainX
18984      * @type boolean
18985      * @private
18986      */
18987     constrainX: false,
18988
18989     /**
18990      * Set to true when vertical contraints are applied
18991      * @property constrainY
18992      * @type boolean
18993      * @private
18994      */
18995     constrainY: false,
18996
18997     /**
18998      * The left constraint
18999      * @property minX
19000      * @type int
19001      * @private
19002      */
19003     minX: 0,
19004
19005     /**
19006      * The right constraint
19007      * @property maxX
19008      * @type int
19009      * @private
19010      */
19011     maxX: 0,
19012
19013     /**
19014      * The up constraint
19015      * @property minY
19016      * @type int
19017      * @type int
19018      * @private
19019      */
19020     minY: 0,
19021
19022     /**
19023      * The down constraint
19024      * @property maxY
19025      * @type int
19026      * @private
19027      */
19028     maxY: 0,
19029
19030     /**
19031      * Maintain offsets when we resetconstraints.  Set to true when you want
19032      * the position of the element relative to its parent to stay the same
19033      * when the page changes
19034      *
19035      * @property maintainOffset
19036      * @type boolean
19037      */
19038     maintainOffset: false,
19039
19040     /**
19041      * Array of pixel locations the element will snap to if we specified a
19042      * horizontal graduation/interval.  This array is generated automatically
19043      * when you define a tick interval.
19044      * @property xTicks
19045      * @type int[]
19046      */
19047     xTicks: null,
19048
19049     /**
19050      * Array of pixel locations the element will snap to if we specified a
19051      * vertical graduation/interval.  This array is generated automatically
19052      * when you define a tick interval.
19053      * @property yTicks
19054      * @type int[]
19055      */
19056     yTicks: null,
19057
19058     /**
19059      * By default the drag and drop instance will only respond to the primary
19060      * button click (left button for a right-handed mouse).  Set to true to
19061      * allow drag and drop to start with any mouse click that is propogated
19062      * by the browser
19063      * @property primaryButtonOnly
19064      * @type boolean
19065      */
19066     primaryButtonOnly: true,
19067
19068     /**
19069      * The availabe property is false until the linked dom element is accessible.
19070      * @property available
19071      * @type boolean
19072      */
19073     available: false,
19074
19075     /**
19076      * By default, drags can only be initiated if the mousedown occurs in the
19077      * region the linked element is.  This is done in part to work around a
19078      * bug in some browsers that mis-report the mousedown if the previous
19079      * mouseup happened outside of the window.  This property is set to true
19080      * if outer handles are defined.
19081      *
19082      * @property hasOuterHandles
19083      * @type boolean
19084      * @default false
19085      */
19086     hasOuterHandles: false,
19087
19088     /**
19089      * Code that executes immediately before the startDrag event
19090      * @method b4StartDrag
19091      * @private
19092      */
19093     b4StartDrag: function(x, y) { },
19094
19095     /**
19096      * Abstract method called after a drag/drop object is clicked
19097      * and the drag or mousedown time thresholds have beeen met.
19098      * @method startDrag
19099      * @param {int} X click location
19100      * @param {int} Y click location
19101      */
19102     startDrag: function(x, y) { /* override this */ },
19103
19104     /**
19105      * Code that executes immediately before the onDrag event
19106      * @method b4Drag
19107      * @private
19108      */
19109     b4Drag: function(e) { },
19110
19111     /**
19112      * Abstract method called during the onMouseMove event while dragging an
19113      * object.
19114      * @method onDrag
19115      * @param {Event} e the mousemove event
19116      */
19117     onDrag: function(e) { /* override this */ },
19118
19119     /**
19120      * Abstract method called when this element fist begins hovering over
19121      * another DragDrop obj
19122      * @method onDragEnter
19123      * @param {Event} e the mousemove event
19124      * @param {String|DragDrop[]} id In POINT mode, the element
19125      * id this is hovering over.  In INTERSECT mode, an array of one or more
19126      * dragdrop items being hovered over.
19127      */
19128     onDragEnter: function(e, id) { /* override this */ },
19129
19130     /**
19131      * Code that executes immediately before the onDragOver event
19132      * @method b4DragOver
19133      * @private
19134      */
19135     b4DragOver: function(e) { },
19136
19137     /**
19138      * Abstract method called when this element is hovering over another
19139      * DragDrop obj
19140      * @method onDragOver
19141      * @param {Event} e the mousemove event
19142      * @param {String|DragDrop[]} id In POINT mode, the element
19143      * id this is hovering over.  In INTERSECT mode, an array of dd items
19144      * being hovered over.
19145      */
19146     onDragOver: function(e, id) { /* override this */ },
19147
19148     /**
19149      * Code that executes immediately before the onDragOut event
19150      * @method b4DragOut
19151      * @private
19152      */
19153     b4DragOut: function(e) { },
19154
19155     /**
19156      * Abstract method called when we are no longer hovering over an element
19157      * @method onDragOut
19158      * @param {Event} e the mousemove event
19159      * @param {String|DragDrop[]} id In POINT mode, the element
19160      * id this was hovering over.  In INTERSECT mode, an array of dd items
19161      * that the mouse is no longer over.
19162      */
19163     onDragOut: function(e, id) { /* override this */ },
19164
19165     /**
19166      * Code that executes immediately before the onDragDrop event
19167      * @method b4DragDrop
19168      * @private
19169      */
19170     b4DragDrop: function(e) { },
19171
19172     /**
19173      * Abstract method called when this item is dropped on another DragDrop
19174      * obj
19175      * @method onDragDrop
19176      * @param {Event} e the mouseup event
19177      * @param {String|DragDrop[]} id In POINT mode, the element
19178      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19179      * was dropped on.
19180      */
19181     onDragDrop: function(e, id) { /* override this */ },
19182
19183     /**
19184      * Abstract method called when this item is dropped on an area with no
19185      * drop target
19186      * @method onInvalidDrop
19187      * @param {Event} e the mouseup event
19188      */
19189     onInvalidDrop: function(e) { /* override this */ },
19190
19191     /**
19192      * Code that executes immediately before the endDrag event
19193      * @method b4EndDrag
19194      * @private
19195      */
19196     b4EndDrag: function(e) { },
19197
19198     /**
19199      * Fired when we are done dragging the object
19200      * @method endDrag
19201      * @param {Event} e the mouseup event
19202      */
19203     endDrag: function(e) { /* override this */ },
19204
19205     /**
19206      * Code executed immediately before the onMouseDown event
19207      * @method b4MouseDown
19208      * @param {Event} e the mousedown event
19209      * @private
19210      */
19211     b4MouseDown: function(e) {  },
19212
19213     /**
19214      * Event handler that fires when a drag/drop obj gets a mousedown
19215      * @method onMouseDown
19216      * @param {Event} e the mousedown event
19217      */
19218     onMouseDown: function(e) { /* override this */ },
19219
19220     /**
19221      * Event handler that fires when a drag/drop obj gets a mouseup
19222      * @method onMouseUp
19223      * @param {Event} e the mouseup event
19224      */
19225     onMouseUp: function(e) { /* override this */ },
19226
19227     /**
19228      * Override the onAvailable method to do what is needed after the initial
19229      * position was determined.
19230      * @method onAvailable
19231      */
19232     onAvailable: function () {
19233     },
19234
19235     /*
19236      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19237      * @type Object
19238      */
19239     defaultPadding : {left:0, right:0, top:0, bottom:0},
19240
19241     /*
19242      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19243  *
19244  * Usage:
19245  <pre><code>
19246  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19247                 { dragElId: "existingProxyDiv" });
19248  dd.startDrag = function(){
19249      this.constrainTo("parent-id");
19250  };
19251  </code></pre>
19252  * Or you can initalize it using the {@link Roo.Element} object:
19253  <pre><code>
19254  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19255      startDrag : function(){
19256          this.constrainTo("parent-id");
19257      }
19258  });
19259  </code></pre>
19260      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19261      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19262      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19263      * an object containing the sides to pad. For example: {right:10, bottom:10}
19264      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19265      */
19266     constrainTo : function(constrainTo, pad, inContent){
19267         if(typeof pad == "number"){
19268             pad = {left: pad, right:pad, top:pad, bottom:pad};
19269         }
19270         pad = pad || this.defaultPadding;
19271         var b = Roo.get(this.getEl()).getBox();
19272         var ce = Roo.get(constrainTo);
19273         var s = ce.getScroll();
19274         var c, cd = ce.dom;
19275         if(cd == document.body){
19276             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19277         }else{
19278             xy = ce.getXY();
19279             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19280         }
19281
19282
19283         var topSpace = b.y - c.y;
19284         var leftSpace = b.x - c.x;
19285
19286         this.resetConstraints();
19287         this.setXConstraint(leftSpace - (pad.left||0), // left
19288                 c.width - leftSpace - b.width - (pad.right||0) //right
19289         );
19290         this.setYConstraint(topSpace - (pad.top||0), //top
19291                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19292         );
19293     },
19294
19295     /**
19296      * Returns a reference to the linked element
19297      * @method getEl
19298      * @return {HTMLElement} the html element
19299      */
19300     getEl: function() {
19301         if (!this._domRef) {
19302             this._domRef = Roo.getDom(this.id);
19303         }
19304
19305         return this._domRef;
19306     },
19307
19308     /**
19309      * Returns a reference to the actual element to drag.  By default this is
19310      * the same as the html element, but it can be assigned to another
19311      * element. An example of this can be found in Roo.dd.DDProxy
19312      * @method getDragEl
19313      * @return {HTMLElement} the html element
19314      */
19315     getDragEl: function() {
19316         return Roo.getDom(this.dragElId);
19317     },
19318
19319     /**
19320      * Sets up the DragDrop object.  Must be called in the constructor of any
19321      * Roo.dd.DragDrop subclass
19322      * @method init
19323      * @param id the id of the linked element
19324      * @param {String} sGroup the group of related items
19325      * @param {object} config configuration attributes
19326      */
19327     init: function(id, sGroup, config) {
19328         this.initTarget(id, sGroup, config);
19329         if (!Roo.isTouch) {
19330             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19331         }
19332         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19333         // Event.on(this.id, "selectstart", Event.preventDefault);
19334     },
19335
19336     /**
19337      * Initializes Targeting functionality only... the object does not
19338      * get a mousedown handler.
19339      * @method initTarget
19340      * @param id the id of the linked element
19341      * @param {String} sGroup the group of related items
19342      * @param {object} config configuration attributes
19343      */
19344     initTarget: function(id, sGroup, config) {
19345
19346         // configuration attributes
19347         this.config = config || {};
19348
19349         // create a local reference to the drag and drop manager
19350         this.DDM = Roo.dd.DDM;
19351         // initialize the groups array
19352         this.groups = {};
19353
19354         // assume that we have an element reference instead of an id if the
19355         // parameter is not a string
19356         if (typeof id !== "string") {
19357             id = Roo.id(id);
19358         }
19359
19360         // set the id
19361         this.id = id;
19362
19363         // add to an interaction group
19364         this.addToGroup((sGroup) ? sGroup : "default");
19365
19366         // We don't want to register this as the handle with the manager
19367         // so we just set the id rather than calling the setter.
19368         this.handleElId = id;
19369
19370         // the linked element is the element that gets dragged by default
19371         this.setDragElId(id);
19372
19373         // by default, clicked anchors will not start drag operations.
19374         this.invalidHandleTypes = { A: "A" };
19375         this.invalidHandleIds = {};
19376         this.invalidHandleClasses = [];
19377
19378         this.applyConfig();
19379
19380         this.handleOnAvailable();
19381     },
19382
19383     /**
19384      * Applies the configuration parameters that were passed into the constructor.
19385      * This is supposed to happen at each level through the inheritance chain.  So
19386      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19387      * DragDrop in order to get all of the parameters that are available in
19388      * each object.
19389      * @method applyConfig
19390      */
19391     applyConfig: function() {
19392
19393         // configurable properties:
19394         //    padding, isTarget, maintainOffset, primaryButtonOnly
19395         this.padding           = this.config.padding || [0, 0, 0, 0];
19396         this.isTarget          = (this.config.isTarget !== false);
19397         this.maintainOffset    = (this.config.maintainOffset);
19398         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19399
19400     },
19401
19402     /**
19403      * Executed when the linked element is available
19404      * @method handleOnAvailable
19405      * @private
19406      */
19407     handleOnAvailable: function() {
19408         this.available = true;
19409         this.resetConstraints();
19410         this.onAvailable();
19411     },
19412
19413      /**
19414      * Configures the padding for the target zone in px.  Effectively expands
19415      * (or reduces) the virtual object size for targeting calculations.
19416      * Supports css-style shorthand; if only one parameter is passed, all sides
19417      * will have that padding, and if only two are passed, the top and bottom
19418      * will have the first param, the left and right the second.
19419      * @method setPadding
19420      * @param {int} iTop    Top pad
19421      * @param {int} iRight  Right pad
19422      * @param {int} iBot    Bot pad
19423      * @param {int} iLeft   Left pad
19424      */
19425     setPadding: function(iTop, iRight, iBot, iLeft) {
19426         // this.padding = [iLeft, iRight, iTop, iBot];
19427         if (!iRight && 0 !== iRight) {
19428             this.padding = [iTop, iTop, iTop, iTop];
19429         } else if (!iBot && 0 !== iBot) {
19430             this.padding = [iTop, iRight, iTop, iRight];
19431         } else {
19432             this.padding = [iTop, iRight, iBot, iLeft];
19433         }
19434     },
19435
19436     /**
19437      * Stores the initial placement of the linked element.
19438      * @method setInitialPosition
19439      * @param {int} diffX   the X offset, default 0
19440      * @param {int} diffY   the Y offset, default 0
19441      */
19442     setInitPosition: function(diffX, diffY) {
19443         var el = this.getEl();
19444
19445         if (!this.DDM.verifyEl(el)) {
19446             return;
19447         }
19448
19449         var dx = diffX || 0;
19450         var dy = diffY || 0;
19451
19452         var p = Dom.getXY( el );
19453
19454         this.initPageX = p[0] - dx;
19455         this.initPageY = p[1] - dy;
19456
19457         this.lastPageX = p[0];
19458         this.lastPageY = p[1];
19459
19460
19461         this.setStartPosition(p);
19462     },
19463
19464     /**
19465      * Sets the start position of the element.  This is set when the obj
19466      * is initialized, the reset when a drag is started.
19467      * @method setStartPosition
19468      * @param pos current position (from previous lookup)
19469      * @private
19470      */
19471     setStartPosition: function(pos) {
19472         var p = pos || Dom.getXY( this.getEl() );
19473         this.deltaSetXY = null;
19474
19475         this.startPageX = p[0];
19476         this.startPageY = p[1];
19477     },
19478
19479     /**
19480      * Add this instance to a group of related drag/drop objects.  All
19481      * instances belong to at least one group, and can belong to as many
19482      * groups as needed.
19483      * @method addToGroup
19484      * @param sGroup {string} the name of the group
19485      */
19486     addToGroup: function(sGroup) {
19487         this.groups[sGroup] = true;
19488         this.DDM.regDragDrop(this, sGroup);
19489     },
19490
19491     /**
19492      * Remove's this instance from the supplied interaction group
19493      * @method removeFromGroup
19494      * @param {string}  sGroup  The group to drop
19495      */
19496     removeFromGroup: function(sGroup) {
19497         if (this.groups[sGroup]) {
19498             delete this.groups[sGroup];
19499         }
19500
19501         this.DDM.removeDDFromGroup(this, sGroup);
19502     },
19503
19504     /**
19505      * Allows you to specify that an element other than the linked element
19506      * will be moved with the cursor during a drag
19507      * @method setDragElId
19508      * @param id {string} the id of the element that will be used to initiate the drag
19509      */
19510     setDragElId: function(id) {
19511         this.dragElId = id;
19512     },
19513
19514     /**
19515      * Allows you to specify a child of the linked element that should be
19516      * used to initiate the drag operation.  An example of this would be if
19517      * you have a content div with text and links.  Clicking anywhere in the
19518      * content area would normally start the drag operation.  Use this method
19519      * to specify that an element inside of the content div is the element
19520      * that starts the drag operation.
19521      * @method setHandleElId
19522      * @param id {string} the id of the element that will be used to
19523      * initiate the drag.
19524      */
19525     setHandleElId: function(id) {
19526         if (typeof id !== "string") {
19527             id = Roo.id(id);
19528         }
19529         this.handleElId = id;
19530         this.DDM.regHandle(this.id, id);
19531     },
19532
19533     /**
19534      * Allows you to set an element outside of the linked element as a drag
19535      * handle
19536      * @method setOuterHandleElId
19537      * @param id the id of the element that will be used to initiate the drag
19538      */
19539     setOuterHandleElId: function(id) {
19540         if (typeof id !== "string") {
19541             id = Roo.id(id);
19542         }
19543         Event.on(id, "mousedown",
19544                 this.handleMouseDown, this);
19545         this.setHandleElId(id);
19546
19547         this.hasOuterHandles = true;
19548     },
19549
19550     /**
19551      * Remove all drag and drop hooks for this element
19552      * @method unreg
19553      */
19554     unreg: function() {
19555         Event.un(this.id, "mousedown",
19556                 this.handleMouseDown);
19557         Event.un(this.id, "touchstart",
19558                 this.handleMouseDown);
19559         this._domRef = null;
19560         this.DDM._remove(this);
19561     },
19562
19563     destroy : function(){
19564         this.unreg();
19565     },
19566
19567     /**
19568      * Returns true if this instance is locked, or the drag drop mgr is locked
19569      * (meaning that all drag/drop is disabled on the page.)
19570      * @method isLocked
19571      * @return {boolean} true if this obj or all drag/drop is locked, else
19572      * false
19573      */
19574     isLocked: function() {
19575         return (this.DDM.isLocked() || this.locked);
19576     },
19577
19578     /**
19579      * Fired when this object is clicked
19580      * @method handleMouseDown
19581      * @param {Event} e
19582      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19583      * @private
19584      */
19585     handleMouseDown: function(e, oDD){
19586      
19587         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19588             //Roo.log('not touch/ button !=0');
19589             return;
19590         }
19591         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19592             return; // double touch..
19593         }
19594         
19595
19596         if (this.isLocked()) {
19597             //Roo.log('locked');
19598             return;
19599         }
19600
19601         this.DDM.refreshCache(this.groups);
19602 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19603         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19604         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19605             //Roo.log('no outer handes or not over target');
19606                 // do nothing.
19607         } else {
19608 //            Roo.log('check validator');
19609             if (this.clickValidator(e)) {
19610 //                Roo.log('validate success');
19611                 // set the initial element position
19612                 this.setStartPosition();
19613
19614
19615                 this.b4MouseDown(e);
19616                 this.onMouseDown(e);
19617
19618                 this.DDM.handleMouseDown(e, this);
19619
19620                 this.DDM.stopEvent(e);
19621             } else {
19622
19623
19624             }
19625         }
19626     },
19627
19628     clickValidator: function(e) {
19629         var target = e.getTarget();
19630         return ( this.isValidHandleChild(target) &&
19631                     (this.id == this.handleElId ||
19632                         this.DDM.handleWasClicked(target, this.id)) );
19633     },
19634
19635     /**
19636      * Allows you to specify a tag name that should not start a drag operation
19637      * when clicked.  This is designed to facilitate embedding links within a
19638      * drag handle that do something other than start the drag.
19639      * @method addInvalidHandleType
19640      * @param {string} tagName the type of element to exclude
19641      */
19642     addInvalidHandleType: function(tagName) {
19643         var type = tagName.toUpperCase();
19644         this.invalidHandleTypes[type] = type;
19645     },
19646
19647     /**
19648      * Lets you to specify an element id for a child of a drag handle
19649      * that should not initiate a drag
19650      * @method addInvalidHandleId
19651      * @param {string} id the element id of the element you wish to ignore
19652      */
19653     addInvalidHandleId: function(id) {
19654         if (typeof id !== "string") {
19655             id = Roo.id(id);
19656         }
19657         this.invalidHandleIds[id] = id;
19658     },
19659
19660     /**
19661      * Lets you specify a css class of elements that will not initiate a drag
19662      * @method addInvalidHandleClass
19663      * @param {string} cssClass the class of the elements you wish to ignore
19664      */
19665     addInvalidHandleClass: function(cssClass) {
19666         this.invalidHandleClasses.push(cssClass);
19667     },
19668
19669     /**
19670      * Unsets an excluded tag name set by addInvalidHandleType
19671      * @method removeInvalidHandleType
19672      * @param {string} tagName the type of element to unexclude
19673      */
19674     removeInvalidHandleType: function(tagName) {
19675         var type = tagName.toUpperCase();
19676         // this.invalidHandleTypes[type] = null;
19677         delete this.invalidHandleTypes[type];
19678     },
19679
19680     /**
19681      * Unsets an invalid handle id
19682      * @method removeInvalidHandleId
19683      * @param {string} id the id of the element to re-enable
19684      */
19685     removeInvalidHandleId: function(id) {
19686         if (typeof id !== "string") {
19687             id = Roo.id(id);
19688         }
19689         delete this.invalidHandleIds[id];
19690     },
19691
19692     /**
19693      * Unsets an invalid css class
19694      * @method removeInvalidHandleClass
19695      * @param {string} cssClass the class of the element(s) you wish to
19696      * re-enable
19697      */
19698     removeInvalidHandleClass: function(cssClass) {
19699         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19700             if (this.invalidHandleClasses[i] == cssClass) {
19701                 delete this.invalidHandleClasses[i];
19702             }
19703         }
19704     },
19705
19706     /**
19707      * Checks the tag exclusion list to see if this click should be ignored
19708      * @method isValidHandleChild
19709      * @param {HTMLElement} node the HTMLElement to evaluate
19710      * @return {boolean} true if this is a valid tag type, false if not
19711      */
19712     isValidHandleChild: function(node) {
19713
19714         var valid = true;
19715         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19716         var nodeName;
19717         try {
19718             nodeName = node.nodeName.toUpperCase();
19719         } catch(e) {
19720             nodeName = node.nodeName;
19721         }
19722         valid = valid && !this.invalidHandleTypes[nodeName];
19723         valid = valid && !this.invalidHandleIds[node.id];
19724
19725         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19726             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19727         }
19728
19729
19730         return valid;
19731
19732     },
19733
19734     /**
19735      * Create the array of horizontal tick marks if an interval was specified
19736      * in setXConstraint().
19737      * @method setXTicks
19738      * @private
19739      */
19740     setXTicks: function(iStartX, iTickSize) {
19741         this.xTicks = [];
19742         this.xTickSize = iTickSize;
19743
19744         var tickMap = {};
19745
19746         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19747             if (!tickMap[i]) {
19748                 this.xTicks[this.xTicks.length] = i;
19749                 tickMap[i] = true;
19750             }
19751         }
19752
19753         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19754             if (!tickMap[i]) {
19755                 this.xTicks[this.xTicks.length] = i;
19756                 tickMap[i] = true;
19757             }
19758         }
19759
19760         this.xTicks.sort(this.DDM.numericSort) ;
19761     },
19762
19763     /**
19764      * Create the array of vertical tick marks if an interval was specified in
19765      * setYConstraint().
19766      * @method setYTicks
19767      * @private
19768      */
19769     setYTicks: function(iStartY, iTickSize) {
19770         this.yTicks = [];
19771         this.yTickSize = iTickSize;
19772
19773         var tickMap = {};
19774
19775         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19776             if (!tickMap[i]) {
19777                 this.yTicks[this.yTicks.length] = i;
19778                 tickMap[i] = true;
19779             }
19780         }
19781
19782         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19783             if (!tickMap[i]) {
19784                 this.yTicks[this.yTicks.length] = i;
19785                 tickMap[i] = true;
19786             }
19787         }
19788
19789         this.yTicks.sort(this.DDM.numericSort) ;
19790     },
19791
19792     /**
19793      * By default, the element can be dragged any place on the screen.  Use
19794      * this method to limit the horizontal travel of the element.  Pass in
19795      * 0,0 for the parameters if you want to lock the drag to the y axis.
19796      * @method setXConstraint
19797      * @param {int} iLeft the number of pixels the element can move to the left
19798      * @param {int} iRight the number of pixels the element can move to the
19799      * right
19800      * @param {int} iTickSize optional parameter for specifying that the
19801      * element
19802      * should move iTickSize pixels at a time.
19803      */
19804     setXConstraint: function(iLeft, iRight, iTickSize) {
19805         this.leftConstraint = iLeft;
19806         this.rightConstraint = iRight;
19807
19808         this.minX = this.initPageX - iLeft;
19809         this.maxX = this.initPageX + iRight;
19810         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19811
19812         this.constrainX = true;
19813     },
19814
19815     /**
19816      * Clears any constraints applied to this instance.  Also clears ticks
19817      * since they can't exist independent of a constraint at this time.
19818      * @method clearConstraints
19819      */
19820     clearConstraints: function() {
19821         this.constrainX = false;
19822         this.constrainY = false;
19823         this.clearTicks();
19824     },
19825
19826     /**
19827      * Clears any tick interval defined for this instance
19828      * @method clearTicks
19829      */
19830     clearTicks: function() {
19831         this.xTicks = null;
19832         this.yTicks = null;
19833         this.xTickSize = 0;
19834         this.yTickSize = 0;
19835     },
19836
19837     /**
19838      * By default, the element can be dragged any place on the screen.  Set
19839      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19840      * parameters if you want to lock the drag to the x axis.
19841      * @method setYConstraint
19842      * @param {int} iUp the number of pixels the element can move up
19843      * @param {int} iDown the number of pixels the element can move down
19844      * @param {int} iTickSize optional parameter for specifying that the
19845      * element should move iTickSize pixels at a time.
19846      */
19847     setYConstraint: function(iUp, iDown, iTickSize) {
19848         this.topConstraint = iUp;
19849         this.bottomConstraint = iDown;
19850
19851         this.minY = this.initPageY - iUp;
19852         this.maxY = this.initPageY + iDown;
19853         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19854
19855         this.constrainY = true;
19856
19857     },
19858
19859     /**
19860      * resetConstraints must be called if you manually reposition a dd element.
19861      * @method resetConstraints
19862      * @param {boolean} maintainOffset
19863      */
19864     resetConstraints: function() {
19865
19866
19867         // Maintain offsets if necessary
19868         if (this.initPageX || this.initPageX === 0) {
19869             // figure out how much this thing has moved
19870             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19871             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19872
19873             this.setInitPosition(dx, dy);
19874
19875         // This is the first time we have detected the element's position
19876         } else {
19877             this.setInitPosition();
19878         }
19879
19880         if (this.constrainX) {
19881             this.setXConstraint( this.leftConstraint,
19882                                  this.rightConstraint,
19883                                  this.xTickSize        );
19884         }
19885
19886         if (this.constrainY) {
19887             this.setYConstraint( this.topConstraint,
19888                                  this.bottomConstraint,
19889                                  this.yTickSize         );
19890         }
19891     },
19892
19893     /**
19894      * Normally the drag element is moved pixel by pixel, but we can specify
19895      * that it move a number of pixels at a time.  This method resolves the
19896      * location when we have it set up like this.
19897      * @method getTick
19898      * @param {int} val where we want to place the object
19899      * @param {int[]} tickArray sorted array of valid points
19900      * @return {int} the closest tick
19901      * @private
19902      */
19903     getTick: function(val, tickArray) {
19904
19905         if (!tickArray) {
19906             // If tick interval is not defined, it is effectively 1 pixel,
19907             // so we return the value passed to us.
19908             return val;
19909         } else if (tickArray[0] >= val) {
19910             // The value is lower than the first tick, so we return the first
19911             // tick.
19912             return tickArray[0];
19913         } else {
19914             for (var i=0, len=tickArray.length; i<len; ++i) {
19915                 var next = i + 1;
19916                 if (tickArray[next] && tickArray[next] >= val) {
19917                     var diff1 = val - tickArray[i];
19918                     var diff2 = tickArray[next] - val;
19919                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19920                 }
19921             }
19922
19923             // The value is larger than the last tick, so we return the last
19924             // tick.
19925             return tickArray[tickArray.length - 1];
19926         }
19927     },
19928
19929     /**
19930      * toString method
19931      * @method toString
19932      * @return {string} string representation of the dd obj
19933      */
19934     toString: function() {
19935         return ("DragDrop " + this.id);
19936     }
19937
19938 });
19939
19940 })();
19941 /*
19942  * Based on:
19943  * Ext JS Library 1.1.1
19944  * Copyright(c) 2006-2007, Ext JS, LLC.
19945  *
19946  * Originally Released Under LGPL - original licence link has changed is not relivant.
19947  *
19948  * Fork - LGPL
19949  * <script type="text/javascript">
19950  */
19951
19952
19953 /**
19954  * The drag and drop utility provides a framework for building drag and drop
19955  * applications.  In addition to enabling drag and drop for specific elements,
19956  * the drag and drop elements are tracked by the manager class, and the
19957  * interactions between the various elements are tracked during the drag and
19958  * the implementing code is notified about these important moments.
19959  */
19960
19961 // Only load the library once.  Rewriting the manager class would orphan
19962 // existing drag and drop instances.
19963 if (!Roo.dd.DragDropMgr) {
19964
19965 /**
19966  * @class Roo.dd.DragDropMgr
19967  * DragDropMgr is a singleton that tracks the element interaction for
19968  * all DragDrop items in the window.  Generally, you will not call
19969  * this class directly, but it does have helper methods that could
19970  * be useful in your DragDrop implementations.
19971  * @singleton
19972  */
19973 Roo.dd.DragDropMgr = function() {
19974
19975     var Event = Roo.EventManager;
19976
19977     return {
19978
19979         /**
19980          * Two dimensional Array of registered DragDrop objects.  The first
19981          * dimension is the DragDrop item group, the second the DragDrop
19982          * object.
19983          * @property ids
19984          * @type {string: string}
19985          * @private
19986          * @static
19987          */
19988         ids: {},
19989
19990         /**
19991          * Array of element ids defined as drag handles.  Used to determine
19992          * if the element that generated the mousedown event is actually the
19993          * handle and not the html element itself.
19994          * @property handleIds
19995          * @type {string: string}
19996          * @private
19997          * @static
19998          */
19999         handleIds: {},
20000
20001         /**
20002          * the DragDrop object that is currently being dragged
20003          * @property dragCurrent
20004          * @type DragDrop
20005          * @private
20006          * @static
20007          **/
20008         dragCurrent: null,
20009
20010         /**
20011          * the DragDrop object(s) that are being hovered over
20012          * @property dragOvers
20013          * @type Array
20014          * @private
20015          * @static
20016          */
20017         dragOvers: {},
20018
20019         /**
20020          * the X distance between the cursor and the object being dragged
20021          * @property deltaX
20022          * @type int
20023          * @private
20024          * @static
20025          */
20026         deltaX: 0,
20027
20028         /**
20029          * the Y distance between the cursor and the object being dragged
20030          * @property deltaY
20031          * @type int
20032          * @private
20033          * @static
20034          */
20035         deltaY: 0,
20036
20037         /**
20038          * Flag to determine if we should prevent the default behavior of the
20039          * events we define. By default this is true, but this can be set to
20040          * false if you need the default behavior (not recommended)
20041          * @property preventDefault
20042          * @type boolean
20043          * @static
20044          */
20045         preventDefault: true,
20046
20047         /**
20048          * Flag to determine if we should stop the propagation of the events
20049          * we generate. This is true by default but you may want to set it to
20050          * false if the html element contains other features that require the
20051          * mouse click.
20052          * @property stopPropagation
20053          * @type boolean
20054          * @static
20055          */
20056         stopPropagation: true,
20057
20058         /**
20059          * Internal flag that is set to true when drag and drop has been
20060          * intialized
20061          * @property initialized
20062          * @private
20063          * @static
20064          */
20065         initalized: false,
20066
20067         /**
20068          * All drag and drop can be disabled.
20069          * @property locked
20070          * @private
20071          * @static
20072          */
20073         locked: false,
20074
20075         /**
20076          * Called the first time an element is registered.
20077          * @method init
20078          * @private
20079          * @static
20080          */
20081         init: function() {
20082             this.initialized = true;
20083         },
20084
20085         /**
20086          * In point mode, drag and drop interaction is defined by the
20087          * location of the cursor during the drag/drop
20088          * @property POINT
20089          * @type int
20090          * @static
20091          */
20092         POINT: 0,
20093
20094         /**
20095          * In intersect mode, drag and drop interactio nis defined by the
20096          * overlap of two or more drag and drop objects.
20097          * @property INTERSECT
20098          * @type int
20099          * @static
20100          */
20101         INTERSECT: 1,
20102
20103         /**
20104          * The current drag and drop mode.  Default: POINT
20105          * @property mode
20106          * @type int
20107          * @static
20108          */
20109         mode: 0,
20110
20111         /**
20112          * Runs method on all drag and drop objects
20113          * @method _execOnAll
20114          * @private
20115          * @static
20116          */
20117         _execOnAll: function(sMethod, args) {
20118             for (var i in this.ids) {
20119                 for (var j in this.ids[i]) {
20120                     var oDD = this.ids[i][j];
20121                     if (! this.isTypeOfDD(oDD)) {
20122                         continue;
20123                     }
20124                     oDD[sMethod].apply(oDD, args);
20125                 }
20126             }
20127         },
20128
20129         /**
20130          * Drag and drop initialization.  Sets up the global event handlers
20131          * @method _onLoad
20132          * @private
20133          * @static
20134          */
20135         _onLoad: function() {
20136
20137             this.init();
20138
20139             if (!Roo.isTouch) {
20140                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20141                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20142             }
20143             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20144             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20145             
20146             Event.on(window,   "unload",    this._onUnload, this, true);
20147             Event.on(window,   "resize",    this._onResize, this, true);
20148             // Event.on(window,   "mouseout",    this._test);
20149
20150         },
20151
20152         /**
20153          * Reset constraints on all drag and drop objs
20154          * @method _onResize
20155          * @private
20156          * @static
20157          */
20158         _onResize: function(e) {
20159             this._execOnAll("resetConstraints", []);
20160         },
20161
20162         /**
20163          * Lock all drag and drop functionality
20164          * @method lock
20165          * @static
20166          */
20167         lock: function() { this.locked = true; },
20168
20169         /**
20170          * Unlock all drag and drop functionality
20171          * @method unlock
20172          * @static
20173          */
20174         unlock: function() { this.locked = false; },
20175
20176         /**
20177          * Is drag and drop locked?
20178          * @method isLocked
20179          * @return {boolean} True if drag and drop is locked, false otherwise.
20180          * @static
20181          */
20182         isLocked: function() { return this.locked; },
20183
20184         /**
20185          * Location cache that is set for all drag drop objects when a drag is
20186          * initiated, cleared when the drag is finished.
20187          * @property locationCache
20188          * @private
20189          * @static
20190          */
20191         locationCache: {},
20192
20193         /**
20194          * Set useCache to false if you want to force object the lookup of each
20195          * drag and drop linked element constantly during a drag.
20196          * @property useCache
20197          * @type boolean
20198          * @static
20199          */
20200         useCache: true,
20201
20202         /**
20203          * The number of pixels that the mouse needs to move after the
20204          * mousedown before the drag is initiated.  Default=3;
20205          * @property clickPixelThresh
20206          * @type int
20207          * @static
20208          */
20209         clickPixelThresh: 3,
20210
20211         /**
20212          * The number of milliseconds after the mousedown event to initiate the
20213          * drag if we don't get a mouseup event. Default=1000
20214          * @property clickTimeThresh
20215          * @type int
20216          * @static
20217          */
20218         clickTimeThresh: 350,
20219
20220         /**
20221          * Flag that indicates that either the drag pixel threshold or the
20222          * mousdown time threshold has been met
20223          * @property dragThreshMet
20224          * @type boolean
20225          * @private
20226          * @static
20227          */
20228         dragThreshMet: false,
20229
20230         /**
20231          * Timeout used for the click time threshold
20232          * @property clickTimeout
20233          * @type Object
20234          * @private
20235          * @static
20236          */
20237         clickTimeout: null,
20238
20239         /**
20240          * The X position of the mousedown event stored for later use when a
20241          * drag threshold is met.
20242          * @property startX
20243          * @type int
20244          * @private
20245          * @static
20246          */
20247         startX: 0,
20248
20249         /**
20250          * The Y position of the mousedown event stored for later use when a
20251          * drag threshold is met.
20252          * @property startY
20253          * @type int
20254          * @private
20255          * @static
20256          */
20257         startY: 0,
20258
20259         /**
20260          * Each DragDrop instance must be registered with the DragDropMgr.
20261          * This is executed in DragDrop.init()
20262          * @method regDragDrop
20263          * @param {DragDrop} oDD the DragDrop object to register
20264          * @param {String} sGroup the name of the group this element belongs to
20265          * @static
20266          */
20267         regDragDrop: function(oDD, sGroup) {
20268             if (!this.initialized) { this.init(); }
20269
20270             if (!this.ids[sGroup]) {
20271                 this.ids[sGroup] = {};
20272             }
20273             this.ids[sGroup][oDD.id] = oDD;
20274         },
20275
20276         /**
20277          * Removes the supplied dd instance from the supplied group. Executed
20278          * by DragDrop.removeFromGroup, so don't call this function directly.
20279          * @method removeDDFromGroup
20280          * @private
20281          * @static
20282          */
20283         removeDDFromGroup: function(oDD, sGroup) {
20284             if (!this.ids[sGroup]) {
20285                 this.ids[sGroup] = {};
20286             }
20287
20288             var obj = this.ids[sGroup];
20289             if (obj && obj[oDD.id]) {
20290                 delete obj[oDD.id];
20291             }
20292         },
20293
20294         /**
20295          * Unregisters a drag and drop item.  This is executed in
20296          * DragDrop.unreg, use that method instead of calling this directly.
20297          * @method _remove
20298          * @private
20299          * @static
20300          */
20301         _remove: function(oDD) {
20302             for (var g in oDD.groups) {
20303                 if (g && this.ids[g][oDD.id]) {
20304                     delete this.ids[g][oDD.id];
20305                 }
20306             }
20307             delete this.handleIds[oDD.id];
20308         },
20309
20310         /**
20311          * Each DragDrop handle element must be registered.  This is done
20312          * automatically when executing DragDrop.setHandleElId()
20313          * @method regHandle
20314          * @param {String} sDDId the DragDrop id this element is a handle for
20315          * @param {String} sHandleId the id of the element that is the drag
20316          * handle
20317          * @static
20318          */
20319         regHandle: function(sDDId, sHandleId) {
20320             if (!this.handleIds[sDDId]) {
20321                 this.handleIds[sDDId] = {};
20322             }
20323             this.handleIds[sDDId][sHandleId] = sHandleId;
20324         },
20325
20326         /**
20327          * Utility function to determine if a given element has been
20328          * registered as a drag drop item.
20329          * @method isDragDrop
20330          * @param {String} id the element id to check
20331          * @return {boolean} true if this element is a DragDrop item,
20332          * false otherwise
20333          * @static
20334          */
20335         isDragDrop: function(id) {
20336             return ( this.getDDById(id) ) ? true : false;
20337         },
20338
20339         /**
20340          * Returns the drag and drop instances that are in all groups the
20341          * passed in instance belongs to.
20342          * @method getRelated
20343          * @param {DragDrop} p_oDD the obj to get related data for
20344          * @param {boolean} bTargetsOnly if true, only return targetable objs
20345          * @return {DragDrop[]} the related instances
20346          * @static
20347          */
20348         getRelated: function(p_oDD, bTargetsOnly) {
20349             var oDDs = [];
20350             for (var i in p_oDD.groups) {
20351                 for (j in this.ids[i]) {
20352                     var dd = this.ids[i][j];
20353                     if (! this.isTypeOfDD(dd)) {
20354                         continue;
20355                     }
20356                     if (!bTargetsOnly || dd.isTarget) {
20357                         oDDs[oDDs.length] = dd;
20358                     }
20359                 }
20360             }
20361
20362             return oDDs;
20363         },
20364
20365         /**
20366          * Returns true if the specified dd target is a legal target for
20367          * the specifice drag obj
20368          * @method isLegalTarget
20369          * @param {DragDrop} the drag obj
20370          * @param {DragDrop} the target
20371          * @return {boolean} true if the target is a legal target for the
20372          * dd obj
20373          * @static
20374          */
20375         isLegalTarget: function (oDD, oTargetDD) {
20376             var targets = this.getRelated(oDD, true);
20377             for (var i=0, len=targets.length;i<len;++i) {
20378                 if (targets[i].id == oTargetDD.id) {
20379                     return true;
20380                 }
20381             }
20382
20383             return false;
20384         },
20385
20386         /**
20387          * My goal is to be able to transparently determine if an object is
20388          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20389          * returns "object", oDD.constructor.toString() always returns
20390          * "DragDrop" and not the name of the subclass.  So for now it just
20391          * evaluates a well-known variable in DragDrop.
20392          * @method isTypeOfDD
20393          * @param {Object} the object to evaluate
20394          * @return {boolean} true if typeof oDD = DragDrop
20395          * @static
20396          */
20397         isTypeOfDD: function (oDD) {
20398             return (oDD && oDD.__ygDragDrop);
20399         },
20400
20401         /**
20402          * Utility function to determine if a given element has been
20403          * registered as a drag drop handle for the given Drag Drop object.
20404          * @method isHandle
20405          * @param {String} id the element id to check
20406          * @return {boolean} true if this element is a DragDrop handle, false
20407          * otherwise
20408          * @static
20409          */
20410         isHandle: function(sDDId, sHandleId) {
20411             return ( this.handleIds[sDDId] &&
20412                             this.handleIds[sDDId][sHandleId] );
20413         },
20414
20415         /**
20416          * Returns the DragDrop instance for a given id
20417          * @method getDDById
20418          * @param {String} id the id of the DragDrop object
20419          * @return {DragDrop} the drag drop object, null if it is not found
20420          * @static
20421          */
20422         getDDById: function(id) {
20423             for (var i in this.ids) {
20424                 if (this.ids[i][id]) {
20425                     return this.ids[i][id];
20426                 }
20427             }
20428             return null;
20429         },
20430
20431         /**
20432          * Fired after a registered DragDrop object gets the mousedown event.
20433          * Sets up the events required to track the object being dragged
20434          * @method handleMouseDown
20435          * @param {Event} e the event
20436          * @param oDD the DragDrop object being dragged
20437          * @private
20438          * @static
20439          */
20440         handleMouseDown: function(e, oDD) {
20441             if(Roo.QuickTips){
20442                 Roo.QuickTips.disable();
20443             }
20444             this.currentTarget = e.getTarget();
20445
20446             this.dragCurrent = oDD;
20447
20448             var el = oDD.getEl();
20449
20450             // track start position
20451             this.startX = e.getPageX();
20452             this.startY = e.getPageY();
20453
20454             this.deltaX = this.startX - el.offsetLeft;
20455             this.deltaY = this.startY - el.offsetTop;
20456
20457             this.dragThreshMet = false;
20458
20459             this.clickTimeout = setTimeout(
20460                     function() {
20461                         var DDM = Roo.dd.DDM;
20462                         DDM.startDrag(DDM.startX, DDM.startY);
20463                     },
20464                     this.clickTimeThresh );
20465         },
20466
20467         /**
20468          * Fired when either the drag pixel threshol or the mousedown hold
20469          * time threshold has been met.
20470          * @method startDrag
20471          * @param x {int} the X position of the original mousedown
20472          * @param y {int} the Y position of the original mousedown
20473          * @static
20474          */
20475         startDrag: function(x, y) {
20476             clearTimeout(this.clickTimeout);
20477             if (this.dragCurrent) {
20478                 this.dragCurrent.b4StartDrag(x, y);
20479                 this.dragCurrent.startDrag(x, y);
20480             }
20481             this.dragThreshMet = true;
20482         },
20483
20484         /**
20485          * Internal function to handle the mouseup event.  Will be invoked
20486          * from the context of the document.
20487          * @method handleMouseUp
20488          * @param {Event} e the event
20489          * @private
20490          * @static
20491          */
20492         handleMouseUp: function(e) {
20493
20494             if(Roo.QuickTips){
20495                 Roo.QuickTips.enable();
20496             }
20497             if (! this.dragCurrent) {
20498                 return;
20499             }
20500
20501             clearTimeout(this.clickTimeout);
20502
20503             if (this.dragThreshMet) {
20504                 this.fireEvents(e, true);
20505             } else {
20506             }
20507
20508             this.stopDrag(e);
20509
20510             this.stopEvent(e);
20511         },
20512
20513         /**
20514          * Utility to stop event propagation and event default, if these
20515          * features are turned on.
20516          * @method stopEvent
20517          * @param {Event} e the event as returned by this.getEvent()
20518          * @static
20519          */
20520         stopEvent: function(e){
20521             if(this.stopPropagation) {
20522                 e.stopPropagation();
20523             }
20524
20525             if (this.preventDefault) {
20526                 e.preventDefault();
20527             }
20528         },
20529
20530         /**
20531          * Internal function to clean up event handlers after the drag
20532          * operation is complete
20533          * @method stopDrag
20534          * @param {Event} e the event
20535          * @private
20536          * @static
20537          */
20538         stopDrag: function(e) {
20539             // Fire the drag end event for the item that was dragged
20540             if (this.dragCurrent) {
20541                 if (this.dragThreshMet) {
20542                     this.dragCurrent.b4EndDrag(e);
20543                     this.dragCurrent.endDrag(e);
20544                 }
20545
20546                 this.dragCurrent.onMouseUp(e);
20547             }
20548
20549             this.dragCurrent = null;
20550             this.dragOvers = {};
20551         },
20552
20553         /**
20554          * Internal function to handle the mousemove event.  Will be invoked
20555          * from the context of the html element.
20556          *
20557          * @TODO figure out what we can do about mouse events lost when the
20558          * user drags objects beyond the window boundary.  Currently we can
20559          * detect this in internet explorer by verifying that the mouse is
20560          * down during the mousemove event.  Firefox doesn't give us the
20561          * button state on the mousemove event.
20562          * @method handleMouseMove
20563          * @param {Event} e the event
20564          * @private
20565          * @static
20566          */
20567         handleMouseMove: function(e) {
20568             if (! this.dragCurrent) {
20569                 return true;
20570             }
20571
20572             // var button = e.which || e.button;
20573
20574             // check for IE mouseup outside of page boundary
20575             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20576                 this.stopEvent(e);
20577                 return this.handleMouseUp(e);
20578             }
20579
20580             if (!this.dragThreshMet) {
20581                 var diffX = Math.abs(this.startX - e.getPageX());
20582                 var diffY = Math.abs(this.startY - e.getPageY());
20583                 if (diffX > this.clickPixelThresh ||
20584                             diffY > this.clickPixelThresh) {
20585                     this.startDrag(this.startX, this.startY);
20586                 }
20587             }
20588
20589             if (this.dragThreshMet) {
20590                 this.dragCurrent.b4Drag(e);
20591                 this.dragCurrent.onDrag(e);
20592                 if(!this.dragCurrent.moveOnly){
20593                     this.fireEvents(e, false);
20594                 }
20595             }
20596
20597             this.stopEvent(e);
20598
20599             return true;
20600         },
20601
20602         /**
20603          * Iterates over all of the DragDrop elements to find ones we are
20604          * hovering over or dropping on
20605          * @method fireEvents
20606          * @param {Event} e the event
20607          * @param {boolean} isDrop is this a drop op or a mouseover op?
20608          * @private
20609          * @static
20610          */
20611         fireEvents: function(e, isDrop) {
20612             var dc = this.dragCurrent;
20613
20614             // If the user did the mouse up outside of the window, we could
20615             // get here even though we have ended the drag.
20616             if (!dc || dc.isLocked()) {
20617                 return;
20618             }
20619
20620             var pt = e.getPoint();
20621
20622             // cache the previous dragOver array
20623             var oldOvers = [];
20624
20625             var outEvts   = [];
20626             var overEvts  = [];
20627             var dropEvts  = [];
20628             var enterEvts = [];
20629
20630             // Check to see if the object(s) we were hovering over is no longer
20631             // being hovered over so we can fire the onDragOut event
20632             for (var i in this.dragOvers) {
20633
20634                 var ddo = this.dragOvers[i];
20635
20636                 if (! this.isTypeOfDD(ddo)) {
20637                     continue;
20638                 }
20639
20640                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20641                     outEvts.push( ddo );
20642                 }
20643
20644                 oldOvers[i] = true;
20645                 delete this.dragOvers[i];
20646             }
20647
20648             for (var sGroup in dc.groups) {
20649
20650                 if ("string" != typeof sGroup) {
20651                     continue;
20652                 }
20653
20654                 for (i in this.ids[sGroup]) {
20655                     var oDD = this.ids[sGroup][i];
20656                     if (! this.isTypeOfDD(oDD)) {
20657                         continue;
20658                     }
20659
20660                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20661                         if (this.isOverTarget(pt, oDD, this.mode)) {
20662                             // look for drop interactions
20663                             if (isDrop) {
20664                                 dropEvts.push( oDD );
20665                             // look for drag enter and drag over interactions
20666                             } else {
20667
20668                                 // initial drag over: dragEnter fires
20669                                 if (!oldOvers[oDD.id]) {
20670                                     enterEvts.push( oDD );
20671                                 // subsequent drag overs: dragOver fires
20672                                 } else {
20673                                     overEvts.push( oDD );
20674                                 }
20675
20676                                 this.dragOvers[oDD.id] = oDD;
20677                             }
20678                         }
20679                     }
20680                 }
20681             }
20682
20683             if (this.mode) {
20684                 if (outEvts.length) {
20685                     dc.b4DragOut(e, outEvts);
20686                     dc.onDragOut(e, outEvts);
20687                 }
20688
20689                 if (enterEvts.length) {
20690                     dc.onDragEnter(e, enterEvts);
20691                 }
20692
20693                 if (overEvts.length) {
20694                     dc.b4DragOver(e, overEvts);
20695                     dc.onDragOver(e, overEvts);
20696                 }
20697
20698                 if (dropEvts.length) {
20699                     dc.b4DragDrop(e, dropEvts);
20700                     dc.onDragDrop(e, dropEvts);
20701                 }
20702
20703             } else {
20704                 // fire dragout events
20705                 var len = 0;
20706                 for (i=0, len=outEvts.length; i<len; ++i) {
20707                     dc.b4DragOut(e, outEvts[i].id);
20708                     dc.onDragOut(e, outEvts[i].id);
20709                 }
20710
20711                 // fire enter events
20712                 for (i=0,len=enterEvts.length; i<len; ++i) {
20713                     // dc.b4DragEnter(e, oDD.id);
20714                     dc.onDragEnter(e, enterEvts[i].id);
20715                 }
20716
20717                 // fire over events
20718                 for (i=0,len=overEvts.length; i<len; ++i) {
20719                     dc.b4DragOver(e, overEvts[i].id);
20720                     dc.onDragOver(e, overEvts[i].id);
20721                 }
20722
20723                 // fire drop events
20724                 for (i=0, len=dropEvts.length; i<len; ++i) {
20725                     dc.b4DragDrop(e, dropEvts[i].id);
20726                     dc.onDragDrop(e, dropEvts[i].id);
20727                 }
20728
20729             }
20730
20731             // notify about a drop that did not find a target
20732             if (isDrop && !dropEvts.length) {
20733                 dc.onInvalidDrop(e);
20734             }
20735
20736         },
20737
20738         /**
20739          * Helper function for getting the best match from the list of drag
20740          * and drop objects returned by the drag and drop events when we are
20741          * in INTERSECT mode.  It returns either the first object that the
20742          * cursor is over, or the object that has the greatest overlap with
20743          * the dragged element.
20744          * @method getBestMatch
20745          * @param  {DragDrop[]} dds The array of drag and drop objects
20746          * targeted
20747          * @return {DragDrop}       The best single match
20748          * @static
20749          */
20750         getBestMatch: function(dds) {
20751             var winner = null;
20752             // Return null if the input is not what we expect
20753             //if (!dds || !dds.length || dds.length == 0) {
20754                // winner = null;
20755             // If there is only one item, it wins
20756             //} else if (dds.length == 1) {
20757
20758             var len = dds.length;
20759
20760             if (len == 1) {
20761                 winner = dds[0];
20762             } else {
20763                 // Loop through the targeted items
20764                 for (var i=0; i<len; ++i) {
20765                     var dd = dds[i];
20766                     // If the cursor is over the object, it wins.  If the
20767                     // cursor is over multiple matches, the first one we come
20768                     // to wins.
20769                     if (dd.cursorIsOver) {
20770                         winner = dd;
20771                         break;
20772                     // Otherwise the object with the most overlap wins
20773                     } else {
20774                         if (!winner ||
20775                             winner.overlap.getArea() < dd.overlap.getArea()) {
20776                             winner = dd;
20777                         }
20778                     }
20779                 }
20780             }
20781
20782             return winner;
20783         },
20784
20785         /**
20786          * Refreshes the cache of the top-left and bottom-right points of the
20787          * drag and drop objects in the specified group(s).  This is in the
20788          * format that is stored in the drag and drop instance, so typical
20789          * usage is:
20790          * <code>
20791          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20792          * </code>
20793          * Alternatively:
20794          * <code>
20795          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20796          * </code>
20797          * @TODO this really should be an indexed array.  Alternatively this
20798          * method could accept both.
20799          * @method refreshCache
20800          * @param {Object} groups an associative array of groups to refresh
20801          * @static
20802          */
20803         refreshCache: function(groups) {
20804             for (var sGroup in groups) {
20805                 if ("string" != typeof sGroup) {
20806                     continue;
20807                 }
20808                 for (var i in this.ids[sGroup]) {
20809                     var oDD = this.ids[sGroup][i];
20810
20811                     if (this.isTypeOfDD(oDD)) {
20812                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20813                         var loc = this.getLocation(oDD);
20814                         if (loc) {
20815                             this.locationCache[oDD.id] = loc;
20816                         } else {
20817                             delete this.locationCache[oDD.id];
20818                             // this will unregister the drag and drop object if
20819                             // the element is not in a usable state
20820                             // oDD.unreg();
20821                         }
20822                     }
20823                 }
20824             }
20825         },
20826
20827         /**
20828          * This checks to make sure an element exists and is in the DOM.  The
20829          * main purpose is to handle cases where innerHTML is used to remove
20830          * drag and drop objects from the DOM.  IE provides an 'unspecified
20831          * error' when trying to access the offsetParent of such an element
20832          * @method verifyEl
20833          * @param {HTMLElement} el the element to check
20834          * @return {boolean} true if the element looks usable
20835          * @static
20836          */
20837         verifyEl: function(el) {
20838             if (el) {
20839                 var parent;
20840                 if(Roo.isIE){
20841                     try{
20842                         parent = el.offsetParent;
20843                     }catch(e){}
20844                 }else{
20845                     parent = el.offsetParent;
20846                 }
20847                 if (parent) {
20848                     return true;
20849                 }
20850             }
20851
20852             return false;
20853         },
20854
20855         /**
20856          * Returns a Region object containing the drag and drop element's position
20857          * and size, including the padding configured for it
20858          * @method getLocation
20859          * @param {DragDrop} oDD the drag and drop object to get the
20860          *                       location for
20861          * @return {Roo.lib.Region} a Region object representing the total area
20862          *                             the element occupies, including any padding
20863          *                             the instance is configured for.
20864          * @static
20865          */
20866         getLocation: function(oDD) {
20867             if (! this.isTypeOfDD(oDD)) {
20868                 return null;
20869             }
20870
20871             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20872
20873             try {
20874                 pos= Roo.lib.Dom.getXY(el);
20875             } catch (e) { }
20876
20877             if (!pos) {
20878                 return null;
20879             }
20880
20881             x1 = pos[0];
20882             x2 = x1 + el.offsetWidth;
20883             y1 = pos[1];
20884             y2 = y1 + el.offsetHeight;
20885
20886             t = y1 - oDD.padding[0];
20887             r = x2 + oDD.padding[1];
20888             b = y2 + oDD.padding[2];
20889             l = x1 - oDD.padding[3];
20890
20891             return new Roo.lib.Region( t, r, b, l );
20892         },
20893
20894         /**
20895          * Checks the cursor location to see if it over the target
20896          * @method isOverTarget
20897          * @param {Roo.lib.Point} pt The point to evaluate
20898          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20899          * @return {boolean} true if the mouse is over the target
20900          * @private
20901          * @static
20902          */
20903         isOverTarget: function(pt, oTarget, intersect) {
20904             // use cache if available
20905             var loc = this.locationCache[oTarget.id];
20906             if (!loc || !this.useCache) {
20907                 loc = this.getLocation(oTarget);
20908                 this.locationCache[oTarget.id] = loc;
20909
20910             }
20911
20912             if (!loc) {
20913                 return false;
20914             }
20915
20916             oTarget.cursorIsOver = loc.contains( pt );
20917
20918             // DragDrop is using this as a sanity check for the initial mousedown
20919             // in this case we are done.  In POINT mode, if the drag obj has no
20920             // contraints, we are also done. Otherwise we need to evaluate the
20921             // location of the target as related to the actual location of the
20922             // dragged element.
20923             var dc = this.dragCurrent;
20924             if (!dc || !dc.getTargetCoord ||
20925                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20926                 return oTarget.cursorIsOver;
20927             }
20928
20929             oTarget.overlap = null;
20930
20931             // Get the current location of the drag element, this is the
20932             // location of the mouse event less the delta that represents
20933             // where the original mousedown happened on the element.  We
20934             // need to consider constraints and ticks as well.
20935             var pos = dc.getTargetCoord(pt.x, pt.y);
20936
20937             var el = dc.getDragEl();
20938             var curRegion = new Roo.lib.Region( pos.y,
20939                                                    pos.x + el.offsetWidth,
20940                                                    pos.y + el.offsetHeight,
20941                                                    pos.x );
20942
20943             var overlap = curRegion.intersect(loc);
20944
20945             if (overlap) {
20946                 oTarget.overlap = overlap;
20947                 return (intersect) ? true : oTarget.cursorIsOver;
20948             } else {
20949                 return false;
20950             }
20951         },
20952
20953         /**
20954          * unload event handler
20955          * @method _onUnload
20956          * @private
20957          * @static
20958          */
20959         _onUnload: function(e, me) {
20960             Roo.dd.DragDropMgr.unregAll();
20961         },
20962
20963         /**
20964          * Cleans up the drag and drop events and objects.
20965          * @method unregAll
20966          * @private
20967          * @static
20968          */
20969         unregAll: function() {
20970
20971             if (this.dragCurrent) {
20972                 this.stopDrag();
20973                 this.dragCurrent = null;
20974             }
20975
20976             this._execOnAll("unreg", []);
20977
20978             for (i in this.elementCache) {
20979                 delete this.elementCache[i];
20980             }
20981
20982             this.elementCache = {};
20983             this.ids = {};
20984         },
20985
20986         /**
20987          * A cache of DOM elements
20988          * @property elementCache
20989          * @private
20990          * @static
20991          */
20992         elementCache: {},
20993
20994         /**
20995          * Get the wrapper for the DOM element specified
20996          * @method getElWrapper
20997          * @param {String} id the id of the element to get
20998          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20999          * @private
21000          * @deprecated This wrapper isn't that useful
21001          * @static
21002          */
21003         getElWrapper: function(id) {
21004             var oWrapper = this.elementCache[id];
21005             if (!oWrapper || !oWrapper.el) {
21006                 oWrapper = this.elementCache[id] =
21007                     new this.ElementWrapper(Roo.getDom(id));
21008             }
21009             return oWrapper;
21010         },
21011
21012         /**
21013          * Returns the actual DOM element
21014          * @method getElement
21015          * @param {String} id the id of the elment to get
21016          * @return {Object} The element
21017          * @deprecated use Roo.getDom instead
21018          * @static
21019          */
21020         getElement: function(id) {
21021             return Roo.getDom(id);
21022         },
21023
21024         /**
21025          * Returns the style property for the DOM element (i.e.,
21026          * document.getElById(id).style)
21027          * @method getCss
21028          * @param {String} id the id of the elment to get
21029          * @return {Object} The style property of the element
21030          * @deprecated use Roo.getDom instead
21031          * @static
21032          */
21033         getCss: function(id) {
21034             var el = Roo.getDom(id);
21035             return (el) ? el.style : null;
21036         },
21037
21038         /**
21039          * Inner class for cached elements
21040          * @class DragDropMgr.ElementWrapper
21041          * @for DragDropMgr
21042          * @private
21043          * @deprecated
21044          */
21045         ElementWrapper: function(el) {
21046                 /**
21047                  * The element
21048                  * @property el
21049                  */
21050                 this.el = el || null;
21051                 /**
21052                  * The element id
21053                  * @property id
21054                  */
21055                 this.id = this.el && el.id;
21056                 /**
21057                  * A reference to the style property
21058                  * @property css
21059                  */
21060                 this.css = this.el && el.style;
21061             },
21062
21063         /**
21064          * Returns the X position of an html element
21065          * @method getPosX
21066          * @param el the element for which to get the position
21067          * @return {int} the X coordinate
21068          * @for DragDropMgr
21069          * @deprecated use Roo.lib.Dom.getX instead
21070          * @static
21071          */
21072         getPosX: function(el) {
21073             return Roo.lib.Dom.getX(el);
21074         },
21075
21076         /**
21077          * Returns the Y position of an html element
21078          * @method getPosY
21079          * @param el the element for which to get the position
21080          * @return {int} the Y coordinate
21081          * @deprecated use Roo.lib.Dom.getY instead
21082          * @static
21083          */
21084         getPosY: function(el) {
21085             return Roo.lib.Dom.getY(el);
21086         },
21087
21088         /**
21089          * Swap two nodes.  In IE, we use the native method, for others we
21090          * emulate the IE behavior
21091          * @method swapNode
21092          * @param n1 the first node to swap
21093          * @param n2 the other node to swap
21094          * @static
21095          */
21096         swapNode: function(n1, n2) {
21097             if (n1.swapNode) {
21098                 n1.swapNode(n2);
21099             } else {
21100                 var p = n2.parentNode;
21101                 var s = n2.nextSibling;
21102
21103                 if (s == n1) {
21104                     p.insertBefore(n1, n2);
21105                 } else if (n2 == n1.nextSibling) {
21106                     p.insertBefore(n2, n1);
21107                 } else {
21108                     n1.parentNode.replaceChild(n2, n1);
21109                     p.insertBefore(n1, s);
21110                 }
21111             }
21112         },
21113
21114         /**
21115          * Returns the current scroll position
21116          * @method getScroll
21117          * @private
21118          * @static
21119          */
21120         getScroll: function () {
21121             var t, l, dde=document.documentElement, db=document.body;
21122             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21123                 t = dde.scrollTop;
21124                 l = dde.scrollLeft;
21125             } else if (db) {
21126                 t = db.scrollTop;
21127                 l = db.scrollLeft;
21128             } else {
21129
21130             }
21131             return { top: t, left: l };
21132         },
21133
21134         /**
21135          * Returns the specified element style property
21136          * @method getStyle
21137          * @param {HTMLElement} el          the element
21138          * @param {string}      styleProp   the style property
21139          * @return {string} The value of the style property
21140          * @deprecated use Roo.lib.Dom.getStyle
21141          * @static
21142          */
21143         getStyle: function(el, styleProp) {
21144             return Roo.fly(el).getStyle(styleProp);
21145         },
21146
21147         /**
21148          * Gets the scrollTop
21149          * @method getScrollTop
21150          * @return {int} the document's scrollTop
21151          * @static
21152          */
21153         getScrollTop: function () { return this.getScroll().top; },
21154
21155         /**
21156          * Gets the scrollLeft
21157          * @method getScrollLeft
21158          * @return {int} the document's scrollTop
21159          * @static
21160          */
21161         getScrollLeft: function () { return this.getScroll().left; },
21162
21163         /**
21164          * Sets the x/y position of an element to the location of the
21165          * target element.
21166          * @method moveToEl
21167          * @param {HTMLElement} moveEl      The element to move
21168          * @param {HTMLElement} targetEl    The position reference element
21169          * @static
21170          */
21171         moveToEl: function (moveEl, targetEl) {
21172             var aCoord = Roo.lib.Dom.getXY(targetEl);
21173             Roo.lib.Dom.setXY(moveEl, aCoord);
21174         },
21175
21176         /**
21177          * Numeric array sort function
21178          * @method numericSort
21179          * @static
21180          */
21181         numericSort: function(a, b) { return (a - b); },
21182
21183         /**
21184          * Internal counter
21185          * @property _timeoutCount
21186          * @private
21187          * @static
21188          */
21189         _timeoutCount: 0,
21190
21191         /**
21192          * Trying to make the load order less important.  Without this we get
21193          * an error if this file is loaded before the Event Utility.
21194          * @method _addListeners
21195          * @private
21196          * @static
21197          */
21198         _addListeners: function() {
21199             var DDM = Roo.dd.DDM;
21200             if ( Roo.lib.Event && document ) {
21201                 DDM._onLoad();
21202             } else {
21203                 if (DDM._timeoutCount > 2000) {
21204                 } else {
21205                     setTimeout(DDM._addListeners, 10);
21206                     if (document && document.body) {
21207                         DDM._timeoutCount += 1;
21208                     }
21209                 }
21210             }
21211         },
21212
21213         /**
21214          * Recursively searches the immediate parent and all child nodes for
21215          * the handle element in order to determine wheter or not it was
21216          * clicked.
21217          * @method handleWasClicked
21218          * @param node the html element to inspect
21219          * @static
21220          */
21221         handleWasClicked: function(node, id) {
21222             if (this.isHandle(id, node.id)) {
21223                 return true;
21224             } else {
21225                 // check to see if this is a text node child of the one we want
21226                 var p = node.parentNode;
21227
21228                 while (p) {
21229                     if (this.isHandle(id, p.id)) {
21230                         return true;
21231                     } else {
21232                         p = p.parentNode;
21233                     }
21234                 }
21235             }
21236
21237             return false;
21238         }
21239
21240     };
21241
21242 }();
21243
21244 // shorter alias, save a few bytes
21245 Roo.dd.DDM = Roo.dd.DragDropMgr;
21246 Roo.dd.DDM._addListeners();
21247
21248 }/*
21249  * Based on:
21250  * Ext JS Library 1.1.1
21251  * Copyright(c) 2006-2007, Ext JS, LLC.
21252  *
21253  * Originally Released Under LGPL - original licence link has changed is not relivant.
21254  *
21255  * Fork - LGPL
21256  * <script type="text/javascript">
21257  */
21258
21259 /**
21260  * @class Roo.dd.DD
21261  * A DragDrop implementation where the linked element follows the
21262  * mouse cursor during a drag.
21263  * @extends Roo.dd.DragDrop
21264  * @constructor
21265  * @param {String} id the id of the linked element
21266  * @param {String} sGroup the group of related DragDrop items
21267  * @param {object} config an object containing configurable attributes
21268  *                Valid properties for DD:
21269  *                    scroll
21270  */
21271 Roo.dd.DD = function(id, sGroup, config) {
21272     if (id) {
21273         this.init(id, sGroup, config);
21274     }
21275 };
21276
21277 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21278
21279     /**
21280      * When set to true, the utility automatically tries to scroll the browser
21281      * window wehn a drag and drop element is dragged near the viewport boundary.
21282      * Defaults to true.
21283      * @property scroll
21284      * @type boolean
21285      */
21286     scroll: true,
21287
21288     /**
21289      * Sets the pointer offset to the distance between the linked element's top
21290      * left corner and the location the element was clicked
21291      * @method autoOffset
21292      * @param {int} iPageX the X coordinate of the click
21293      * @param {int} iPageY the Y coordinate of the click
21294      */
21295     autoOffset: function(iPageX, iPageY) {
21296         var x = iPageX - this.startPageX;
21297         var y = iPageY - this.startPageY;
21298         this.setDelta(x, y);
21299     },
21300
21301     /**
21302      * Sets the pointer offset.  You can call this directly to force the
21303      * offset to be in a particular location (e.g., pass in 0,0 to set it
21304      * to the center of the object)
21305      * @method setDelta
21306      * @param {int} iDeltaX the distance from the left
21307      * @param {int} iDeltaY the distance from the top
21308      */
21309     setDelta: function(iDeltaX, iDeltaY) {
21310         this.deltaX = iDeltaX;
21311         this.deltaY = iDeltaY;
21312     },
21313
21314     /**
21315      * Sets the drag element to the location of the mousedown or click event,
21316      * maintaining the cursor location relative to the location on the element
21317      * that was clicked.  Override this if you want to place the element in a
21318      * location other than where the cursor is.
21319      * @method setDragElPos
21320      * @param {int} iPageX the X coordinate of the mousedown or drag event
21321      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21322      */
21323     setDragElPos: function(iPageX, iPageY) {
21324         // the first time we do this, we are going to check to make sure
21325         // the element has css positioning
21326
21327         var el = this.getDragEl();
21328         this.alignElWithMouse(el, iPageX, iPageY);
21329     },
21330
21331     /**
21332      * Sets the element to the location of the mousedown or click event,
21333      * maintaining the cursor location relative to the location on the element
21334      * that was clicked.  Override this if you want to place the element in a
21335      * location other than where the cursor is.
21336      * @method alignElWithMouse
21337      * @param {HTMLElement} el the element to move
21338      * @param {int} iPageX the X coordinate of the mousedown or drag event
21339      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21340      */
21341     alignElWithMouse: function(el, iPageX, iPageY) {
21342         var oCoord = this.getTargetCoord(iPageX, iPageY);
21343         var fly = el.dom ? el : Roo.fly(el);
21344         if (!this.deltaSetXY) {
21345             var aCoord = [oCoord.x, oCoord.y];
21346             fly.setXY(aCoord);
21347             var newLeft = fly.getLeft(true);
21348             var newTop  = fly.getTop(true);
21349             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21350         } else {
21351             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21352         }
21353
21354         this.cachePosition(oCoord.x, oCoord.y);
21355         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21356         return oCoord;
21357     },
21358
21359     /**
21360      * Saves the most recent position so that we can reset the constraints and
21361      * tick marks on-demand.  We need to know this so that we can calculate the
21362      * number of pixels the element is offset from its original position.
21363      * @method cachePosition
21364      * @param iPageX the current x position (optional, this just makes it so we
21365      * don't have to look it up again)
21366      * @param iPageY the current y position (optional, this just makes it so we
21367      * don't have to look it up again)
21368      */
21369     cachePosition: function(iPageX, iPageY) {
21370         if (iPageX) {
21371             this.lastPageX = iPageX;
21372             this.lastPageY = iPageY;
21373         } else {
21374             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21375             this.lastPageX = aCoord[0];
21376             this.lastPageY = aCoord[1];
21377         }
21378     },
21379
21380     /**
21381      * Auto-scroll the window if the dragged object has been moved beyond the
21382      * visible window boundary.
21383      * @method autoScroll
21384      * @param {int} x the drag element's x position
21385      * @param {int} y the drag element's y position
21386      * @param {int} h the height of the drag element
21387      * @param {int} w the width of the drag element
21388      * @private
21389      */
21390     autoScroll: function(x, y, h, w) {
21391
21392         if (this.scroll) {
21393             // The client height
21394             var clientH = Roo.lib.Dom.getViewWidth();
21395
21396             // The client width
21397             var clientW = Roo.lib.Dom.getViewHeight();
21398
21399             // The amt scrolled down
21400             var st = this.DDM.getScrollTop();
21401
21402             // The amt scrolled right
21403             var sl = this.DDM.getScrollLeft();
21404
21405             // Location of the bottom of the element
21406             var bot = h + y;
21407
21408             // Location of the right of the element
21409             var right = w + x;
21410
21411             // The distance from the cursor to the bottom of the visible area,
21412             // adjusted so that we don't scroll if the cursor is beyond the
21413             // element drag constraints
21414             var toBot = (clientH + st - y - this.deltaY);
21415
21416             // The distance from the cursor to the right of the visible area
21417             var toRight = (clientW + sl - x - this.deltaX);
21418
21419
21420             // How close to the edge the cursor must be before we scroll
21421             // var thresh = (document.all) ? 100 : 40;
21422             var thresh = 40;
21423
21424             // How many pixels to scroll per autoscroll op.  This helps to reduce
21425             // clunky scrolling. IE is more sensitive about this ... it needs this
21426             // value to be higher.
21427             var scrAmt = (document.all) ? 80 : 30;
21428
21429             // Scroll down if we are near the bottom of the visible page and the
21430             // obj extends below the crease
21431             if ( bot > clientH && toBot < thresh ) {
21432                 window.scrollTo(sl, st + scrAmt);
21433             }
21434
21435             // Scroll up if the window is scrolled down and the top of the object
21436             // goes above the top border
21437             if ( y < st && st > 0 && y - st < thresh ) {
21438                 window.scrollTo(sl, st - scrAmt);
21439             }
21440
21441             // Scroll right if the obj is beyond the right border and the cursor is
21442             // near the border.
21443             if ( right > clientW && toRight < thresh ) {
21444                 window.scrollTo(sl + scrAmt, st);
21445             }
21446
21447             // Scroll left if the window has been scrolled to the right and the obj
21448             // extends past the left border
21449             if ( x < sl && sl > 0 && x - sl < thresh ) {
21450                 window.scrollTo(sl - scrAmt, st);
21451             }
21452         }
21453     },
21454
21455     /**
21456      * Finds the location the element should be placed if we want to move
21457      * it to where the mouse location less the click offset would place us.
21458      * @method getTargetCoord
21459      * @param {int} iPageX the X coordinate of the click
21460      * @param {int} iPageY the Y coordinate of the click
21461      * @return an object that contains the coordinates (Object.x and Object.y)
21462      * @private
21463      */
21464     getTargetCoord: function(iPageX, iPageY) {
21465
21466
21467         var x = iPageX - this.deltaX;
21468         var y = iPageY - this.deltaY;
21469
21470         if (this.constrainX) {
21471             if (x < this.minX) { x = this.minX; }
21472             if (x > this.maxX) { x = this.maxX; }
21473         }
21474
21475         if (this.constrainY) {
21476             if (y < this.minY) { y = this.minY; }
21477             if (y > this.maxY) { y = this.maxY; }
21478         }
21479
21480         x = this.getTick(x, this.xTicks);
21481         y = this.getTick(y, this.yTicks);
21482
21483
21484         return {x:x, y:y};
21485     },
21486
21487     /*
21488      * Sets up config options specific to this class. Overrides
21489      * Roo.dd.DragDrop, but all versions of this method through the
21490      * inheritance chain are called
21491      */
21492     applyConfig: function() {
21493         Roo.dd.DD.superclass.applyConfig.call(this);
21494         this.scroll = (this.config.scroll !== false);
21495     },
21496
21497     /*
21498      * Event that fires prior to the onMouseDown event.  Overrides
21499      * Roo.dd.DragDrop.
21500      */
21501     b4MouseDown: function(e) {
21502         // this.resetConstraints();
21503         this.autoOffset(e.getPageX(),
21504                             e.getPageY());
21505     },
21506
21507     /*
21508      * Event that fires prior to the onDrag event.  Overrides
21509      * Roo.dd.DragDrop.
21510      */
21511     b4Drag: function(e) {
21512         this.setDragElPos(e.getPageX(),
21513                             e.getPageY());
21514     },
21515
21516     toString: function() {
21517         return ("DD " + this.id);
21518     }
21519
21520     //////////////////////////////////////////////////////////////////////////
21521     // Debugging ygDragDrop events that can be overridden
21522     //////////////////////////////////////////////////////////////////////////
21523     /*
21524     startDrag: function(x, y) {
21525     },
21526
21527     onDrag: function(e) {
21528     },
21529
21530     onDragEnter: function(e, id) {
21531     },
21532
21533     onDragOver: function(e, id) {
21534     },
21535
21536     onDragOut: function(e, id) {
21537     },
21538
21539     onDragDrop: function(e, id) {
21540     },
21541
21542     endDrag: function(e) {
21543     }
21544
21545     */
21546
21547 });/*
21548  * Based on:
21549  * Ext JS Library 1.1.1
21550  * Copyright(c) 2006-2007, Ext JS, LLC.
21551  *
21552  * Originally Released Under LGPL - original licence link has changed is not relivant.
21553  *
21554  * Fork - LGPL
21555  * <script type="text/javascript">
21556  */
21557
21558 /**
21559  * @class Roo.dd.DDProxy
21560  * A DragDrop implementation that inserts an empty, bordered div into
21561  * the document that follows the cursor during drag operations.  At the time of
21562  * the click, the frame div is resized to the dimensions of the linked html
21563  * element, and moved to the exact location of the linked element.
21564  *
21565  * References to the "frame" element refer to the single proxy element that
21566  * was created to be dragged in place of all DDProxy elements on the
21567  * page.
21568  *
21569  * @extends Roo.dd.DD
21570  * @constructor
21571  * @param {String} id the id of the linked html element
21572  * @param {String} sGroup the group of related DragDrop objects
21573  * @param {object} config an object containing configurable attributes
21574  *                Valid properties for DDProxy in addition to those in DragDrop:
21575  *                   resizeFrame, centerFrame, dragElId
21576  */
21577 Roo.dd.DDProxy = function(id, sGroup, config) {
21578     if (id) {
21579         this.init(id, sGroup, config);
21580         this.initFrame();
21581     }
21582 };
21583
21584 /**
21585  * The default drag frame div id
21586  * @property Roo.dd.DDProxy.dragElId
21587  * @type String
21588  * @static
21589  */
21590 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21591
21592 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21593
21594     /**
21595      * By default we resize the drag frame to be the same size as the element
21596      * we want to drag (this is to get the frame effect).  We can turn it off
21597      * if we want a different behavior.
21598      * @property resizeFrame
21599      * @type boolean
21600      */
21601     resizeFrame: true,
21602
21603     /**
21604      * By default the frame is positioned exactly where the drag element is, so
21605      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21606      * you do not have constraints on the obj is to have the drag frame centered
21607      * around the cursor.  Set centerFrame to true for this effect.
21608      * @property centerFrame
21609      * @type boolean
21610      */
21611     centerFrame: false,
21612
21613     /**
21614      * Creates the proxy element if it does not yet exist
21615      * @method createFrame
21616      */
21617     createFrame: function() {
21618         var self = this;
21619         var body = document.body;
21620
21621         if (!body || !body.firstChild) {
21622             setTimeout( function() { self.createFrame(); }, 50 );
21623             return;
21624         }
21625
21626         var div = this.getDragEl();
21627
21628         if (!div) {
21629             div    = document.createElement("div");
21630             div.id = this.dragElId;
21631             var s  = div.style;
21632
21633             s.position   = "absolute";
21634             s.visibility = "hidden";
21635             s.cursor     = "move";
21636             s.border     = "2px solid #aaa";
21637             s.zIndex     = 999;
21638
21639             // appendChild can blow up IE if invoked prior to the window load event
21640             // while rendering a table.  It is possible there are other scenarios
21641             // that would cause this to happen as well.
21642             body.insertBefore(div, body.firstChild);
21643         }
21644     },
21645
21646     /**
21647      * Initialization for the drag frame element.  Must be called in the
21648      * constructor of all subclasses
21649      * @method initFrame
21650      */
21651     initFrame: function() {
21652         this.createFrame();
21653     },
21654
21655     applyConfig: function() {
21656         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21657
21658         this.resizeFrame = (this.config.resizeFrame !== false);
21659         this.centerFrame = (this.config.centerFrame);
21660         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21661     },
21662
21663     /**
21664      * Resizes the drag frame to the dimensions of the clicked object, positions
21665      * it over the object, and finally displays it
21666      * @method showFrame
21667      * @param {int} iPageX X click position
21668      * @param {int} iPageY Y click position
21669      * @private
21670      */
21671     showFrame: function(iPageX, iPageY) {
21672         var el = this.getEl();
21673         var dragEl = this.getDragEl();
21674         var s = dragEl.style;
21675
21676         this._resizeProxy();
21677
21678         if (this.centerFrame) {
21679             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21680                            Math.round(parseInt(s.height, 10)/2) );
21681         }
21682
21683         this.setDragElPos(iPageX, iPageY);
21684
21685         Roo.fly(dragEl).show();
21686     },
21687
21688     /**
21689      * The proxy is automatically resized to the dimensions of the linked
21690      * element when a drag is initiated, unless resizeFrame is set to false
21691      * @method _resizeProxy
21692      * @private
21693      */
21694     _resizeProxy: function() {
21695         if (this.resizeFrame) {
21696             var el = this.getEl();
21697             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21698         }
21699     },
21700
21701     // overrides Roo.dd.DragDrop
21702     b4MouseDown: function(e) {
21703         var x = e.getPageX();
21704         var y = e.getPageY();
21705         this.autoOffset(x, y);
21706         this.setDragElPos(x, y);
21707     },
21708
21709     // overrides Roo.dd.DragDrop
21710     b4StartDrag: function(x, y) {
21711         // show the drag frame
21712         this.showFrame(x, y);
21713     },
21714
21715     // overrides Roo.dd.DragDrop
21716     b4EndDrag: function(e) {
21717         Roo.fly(this.getDragEl()).hide();
21718     },
21719
21720     // overrides Roo.dd.DragDrop
21721     // By default we try to move the element to the last location of the frame.
21722     // This is so that the default behavior mirrors that of Roo.dd.DD.
21723     endDrag: function(e) {
21724
21725         var lel = this.getEl();
21726         var del = this.getDragEl();
21727
21728         // Show the drag frame briefly so we can get its position
21729         del.style.visibility = "";
21730
21731         this.beforeMove();
21732         // Hide the linked element before the move to get around a Safari
21733         // rendering bug.
21734         lel.style.visibility = "hidden";
21735         Roo.dd.DDM.moveToEl(lel, del);
21736         del.style.visibility = "hidden";
21737         lel.style.visibility = "";
21738
21739         this.afterDrag();
21740     },
21741
21742     beforeMove : function(){
21743
21744     },
21745
21746     afterDrag : function(){
21747
21748     },
21749
21750     toString: function() {
21751         return ("DDProxy " + this.id);
21752     }
21753
21754 });
21755 /*
21756  * Based on:
21757  * Ext JS Library 1.1.1
21758  * Copyright(c) 2006-2007, Ext JS, LLC.
21759  *
21760  * Originally Released Under LGPL - original licence link has changed is not relivant.
21761  *
21762  * Fork - LGPL
21763  * <script type="text/javascript">
21764  */
21765
21766  /**
21767  * @class Roo.dd.DDTarget
21768  * A DragDrop implementation that does not move, but can be a drop
21769  * target.  You would get the same result by simply omitting implementation
21770  * for the event callbacks, but this way we reduce the processing cost of the
21771  * event listener and the callbacks.
21772  * @extends Roo.dd.DragDrop
21773  * @constructor
21774  * @param {String} id the id of the element that is a drop target
21775  * @param {String} sGroup the group of related DragDrop objects
21776  * @param {object} config an object containing configurable attributes
21777  *                 Valid properties for DDTarget in addition to those in
21778  *                 DragDrop:
21779  *                    none
21780  */
21781 Roo.dd.DDTarget = function(id, sGroup, config) {
21782     if (id) {
21783         this.initTarget(id, sGroup, config);
21784     }
21785     if (config && (config.listeners || config.events)) { 
21786         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21787             listeners : config.listeners || {}, 
21788             events : config.events || {} 
21789         });    
21790     }
21791 };
21792
21793 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21794 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21795     toString: function() {
21796         return ("DDTarget " + this.id);
21797     }
21798 });
21799 /*
21800  * Based on:
21801  * Ext JS Library 1.1.1
21802  * Copyright(c) 2006-2007, Ext JS, LLC.
21803  *
21804  * Originally Released Under LGPL - original licence link has changed is not relivant.
21805  *
21806  * Fork - LGPL
21807  * <script type="text/javascript">
21808  */
21809  
21810
21811 /**
21812  * @class Roo.dd.ScrollManager
21813  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21814  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21815  * @singleton
21816  */
21817 Roo.dd.ScrollManager = function(){
21818     var ddm = Roo.dd.DragDropMgr;
21819     var els = {};
21820     var dragEl = null;
21821     var proc = {};
21822     
21823     
21824     
21825     var onStop = function(e){
21826         dragEl = null;
21827         clearProc();
21828     };
21829     
21830     var triggerRefresh = function(){
21831         if(ddm.dragCurrent){
21832              ddm.refreshCache(ddm.dragCurrent.groups);
21833         }
21834     };
21835     
21836     var doScroll = function(){
21837         if(ddm.dragCurrent){
21838             var dds = Roo.dd.ScrollManager;
21839             if(!dds.animate){
21840                 if(proc.el.scroll(proc.dir, dds.increment)){
21841                     triggerRefresh();
21842                 }
21843             }else{
21844                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21845             }
21846         }
21847     };
21848     
21849     var clearProc = function(){
21850         if(proc.id){
21851             clearInterval(proc.id);
21852         }
21853         proc.id = 0;
21854         proc.el = null;
21855         proc.dir = "";
21856     };
21857     
21858     var startProc = function(el, dir){
21859          Roo.log('scroll startproc');
21860         clearProc();
21861         proc.el = el;
21862         proc.dir = dir;
21863         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21864     };
21865     
21866     var onFire = function(e, isDrop){
21867        
21868         if(isDrop || !ddm.dragCurrent){ return; }
21869         var dds = Roo.dd.ScrollManager;
21870         if(!dragEl || dragEl != ddm.dragCurrent){
21871             dragEl = ddm.dragCurrent;
21872             // refresh regions on drag start
21873             dds.refreshCache();
21874         }
21875         
21876         var xy = Roo.lib.Event.getXY(e);
21877         var pt = new Roo.lib.Point(xy[0], xy[1]);
21878         for(var id in els){
21879             var el = els[id], r = el._region;
21880             if(r && r.contains(pt) && el.isScrollable()){
21881                 if(r.bottom - pt.y <= dds.thresh){
21882                     if(proc.el != el){
21883                         startProc(el, "down");
21884                     }
21885                     return;
21886                 }else if(r.right - pt.x <= dds.thresh){
21887                     if(proc.el != el){
21888                         startProc(el, "left");
21889                     }
21890                     return;
21891                 }else if(pt.y - r.top <= dds.thresh){
21892                     if(proc.el != el){
21893                         startProc(el, "up");
21894                     }
21895                     return;
21896                 }else if(pt.x - r.left <= dds.thresh){
21897                     if(proc.el != el){
21898                         startProc(el, "right");
21899                     }
21900                     return;
21901                 }
21902             }
21903         }
21904         clearProc();
21905     };
21906     
21907     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21908     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21909     
21910     return {
21911         /**
21912          * Registers new overflow element(s) to auto scroll
21913          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21914          */
21915         register : function(el){
21916             if(el instanceof Array){
21917                 for(var i = 0, len = el.length; i < len; i++) {
21918                         this.register(el[i]);
21919                 }
21920             }else{
21921                 el = Roo.get(el);
21922                 els[el.id] = el;
21923             }
21924             Roo.dd.ScrollManager.els = els;
21925         },
21926         
21927         /**
21928          * Unregisters overflow element(s) so they are no longer scrolled
21929          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21930          */
21931         unregister : function(el){
21932             if(el instanceof Array){
21933                 for(var i = 0, len = el.length; i < len; i++) {
21934                         this.unregister(el[i]);
21935                 }
21936             }else{
21937                 el = Roo.get(el);
21938                 delete els[el.id];
21939             }
21940         },
21941         
21942         /**
21943          * The number of pixels from the edge of a container the pointer needs to be to 
21944          * trigger scrolling (defaults to 25)
21945          * @type Number
21946          */
21947         thresh : 25,
21948         
21949         /**
21950          * The number of pixels to scroll in each scroll increment (defaults to 50)
21951          * @type Number
21952          */
21953         increment : 100,
21954         
21955         /**
21956          * The frequency of scrolls in milliseconds (defaults to 500)
21957          * @type Number
21958          */
21959         frequency : 500,
21960         
21961         /**
21962          * True to animate the scroll (defaults to true)
21963          * @type Boolean
21964          */
21965         animate: true,
21966         
21967         /**
21968          * The animation duration in seconds - 
21969          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21970          * @type Number
21971          */
21972         animDuration: .4,
21973         
21974         /**
21975          * Manually trigger a cache refresh.
21976          */
21977         refreshCache : function(){
21978             for(var id in els){
21979                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21980                     els[id]._region = els[id].getRegion();
21981                 }
21982             }
21983         }
21984     };
21985 }();/*
21986  * Based on:
21987  * Ext JS Library 1.1.1
21988  * Copyright(c) 2006-2007, Ext JS, LLC.
21989  *
21990  * Originally Released Under LGPL - original licence link has changed is not relivant.
21991  *
21992  * Fork - LGPL
21993  * <script type="text/javascript">
21994  */
21995  
21996
21997 /**
21998  * @class Roo.dd.Registry
21999  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
22000  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
22001  * @singleton
22002  */
22003 Roo.dd.Registry = function(){
22004     var elements = {}; 
22005     var handles = {}; 
22006     var autoIdSeed = 0;
22007
22008     var getId = function(el, autogen){
22009         if(typeof el == "string"){
22010             return el;
22011         }
22012         var id = el.id;
22013         if(!id && autogen !== false){
22014             id = "roodd-" + (++autoIdSeed);
22015             el.id = id;
22016         }
22017         return id;
22018     };
22019     
22020     return {
22021     /**
22022      * Register a drag drop element
22023      * @param {String|HTMLElement} element The id or DOM node to register
22024      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
22025      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
22026      * knows how to interpret, plus there are some specific properties known to the Registry that should be
22027      * populated in the data object (if applicable):
22028      * <pre>
22029 Value      Description<br />
22030 ---------  ------------------------------------------<br />
22031 handles    Array of DOM nodes that trigger dragging<br />
22032            for the element being registered<br />
22033 isHandle   True if the element passed in triggers<br />
22034            dragging itself, else false
22035 </pre>
22036      */
22037         register : function(el, data){
22038             data = data || {};
22039             if(typeof el == "string"){
22040                 el = document.getElementById(el);
22041             }
22042             data.ddel = el;
22043             elements[getId(el)] = data;
22044             if(data.isHandle !== false){
22045                 handles[data.ddel.id] = data;
22046             }
22047             if(data.handles){
22048                 var hs = data.handles;
22049                 for(var i = 0, len = hs.length; i < len; i++){
22050                         handles[getId(hs[i])] = data;
22051                 }
22052             }
22053         },
22054
22055     /**
22056      * Unregister a drag drop element
22057      * @param {String|HTMLElement}  element The id or DOM node to unregister
22058      */
22059         unregister : function(el){
22060             var id = getId(el, false);
22061             var data = elements[id];
22062             if(data){
22063                 delete elements[id];
22064                 if(data.handles){
22065                     var hs = data.handles;
22066                     for(var i = 0, len = hs.length; i < len; i++){
22067                         delete handles[getId(hs[i], false)];
22068                     }
22069                 }
22070             }
22071         },
22072
22073     /**
22074      * Returns the handle registered for a DOM Node by id
22075      * @param {String|HTMLElement} id The DOM node or id to look up
22076      * @return {Object} handle The custom handle data
22077      */
22078         getHandle : function(id){
22079             if(typeof id != "string"){ // must be element?
22080                 id = id.id;
22081             }
22082             return handles[id];
22083         },
22084
22085     /**
22086      * Returns the handle that is registered for the DOM node that is the target of the event
22087      * @param {Event} e The event
22088      * @return {Object} handle The custom handle data
22089      */
22090         getHandleFromEvent : function(e){
22091             var t = Roo.lib.Event.getTarget(e);
22092             return t ? handles[t.id] : null;
22093         },
22094
22095     /**
22096      * Returns a custom data object that is registered for a DOM node by id
22097      * @param {String|HTMLElement} id The DOM node or id to look up
22098      * @return {Object} data The custom data
22099      */
22100         getTarget : function(id){
22101             if(typeof id != "string"){ // must be element?
22102                 id = id.id;
22103             }
22104             return elements[id];
22105         },
22106
22107     /**
22108      * Returns a custom data object that is registered for the DOM node that is the target of the event
22109      * @param {Event} e The event
22110      * @return {Object} data The custom data
22111      */
22112         getTargetFromEvent : function(e){
22113             var t = Roo.lib.Event.getTarget(e);
22114             return t ? elements[t.id] || handles[t.id] : null;
22115         }
22116     };
22117 }();/*
22118  * Based on:
22119  * Ext JS Library 1.1.1
22120  * Copyright(c) 2006-2007, Ext JS, LLC.
22121  *
22122  * Originally Released Under LGPL - original licence link has changed is not relivant.
22123  *
22124  * Fork - LGPL
22125  * <script type="text/javascript">
22126  */
22127  
22128
22129 /**
22130  * @class Roo.dd.StatusProxy
22131  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22132  * default drag proxy used by all Roo.dd components.
22133  * @constructor
22134  * @param {Object} config
22135  */
22136 Roo.dd.StatusProxy = function(config){
22137     Roo.apply(this, config);
22138     this.id = this.id || Roo.id();
22139     this.el = new Roo.Layer({
22140         dh: {
22141             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22142                 {tag: "div", cls: "x-dd-drop-icon"},
22143                 {tag: "div", cls: "x-dd-drag-ghost"}
22144             ]
22145         }, 
22146         shadow: !config || config.shadow !== false
22147     });
22148     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22149     this.dropStatus = this.dropNotAllowed;
22150 };
22151
22152 Roo.dd.StatusProxy.prototype = {
22153     /**
22154      * @cfg {String} dropAllowed
22155      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22156      */
22157     dropAllowed : "x-dd-drop-ok",
22158     /**
22159      * @cfg {String} dropNotAllowed
22160      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22161      */
22162     dropNotAllowed : "x-dd-drop-nodrop",
22163
22164     /**
22165      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22166      * over the current target element.
22167      * @param {String} cssClass The css class for the new drop status indicator image
22168      */
22169     setStatus : function(cssClass){
22170         cssClass = cssClass || this.dropNotAllowed;
22171         if(this.dropStatus != cssClass){
22172             this.el.replaceClass(this.dropStatus, cssClass);
22173             this.dropStatus = cssClass;
22174         }
22175     },
22176
22177     /**
22178      * Resets the status indicator to the default dropNotAllowed value
22179      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22180      */
22181     reset : function(clearGhost){
22182         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22183         this.dropStatus = this.dropNotAllowed;
22184         if(clearGhost){
22185             this.ghost.update("");
22186         }
22187     },
22188
22189     /**
22190      * Updates the contents of the ghost element
22191      * @param {String} html The html that will replace the current innerHTML of the ghost element
22192      */
22193     update : function(html){
22194         if(typeof html == "string"){
22195             this.ghost.update(html);
22196         }else{
22197             this.ghost.update("");
22198             html.style.margin = "0";
22199             this.ghost.dom.appendChild(html);
22200         }
22201         // ensure float = none set?? cant remember why though.
22202         var el = this.ghost.dom.firstChild;
22203                 if(el){
22204                         Roo.fly(el).setStyle('float', 'none');
22205                 }
22206     },
22207     
22208     /**
22209      * Returns the underlying proxy {@link Roo.Layer}
22210      * @return {Roo.Layer} el
22211     */
22212     getEl : function(){
22213         return this.el;
22214     },
22215
22216     /**
22217      * Returns the ghost element
22218      * @return {Roo.Element} el
22219      */
22220     getGhost : function(){
22221         return this.ghost;
22222     },
22223
22224     /**
22225      * Hides the proxy
22226      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22227      */
22228     hide : function(clear){
22229         this.el.hide();
22230         if(clear){
22231             this.reset(true);
22232         }
22233     },
22234
22235     /**
22236      * Stops the repair animation if it's currently running
22237      */
22238     stop : function(){
22239         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22240             this.anim.stop();
22241         }
22242     },
22243
22244     /**
22245      * Displays this proxy
22246      */
22247     show : function(){
22248         this.el.show();
22249     },
22250
22251     /**
22252      * Force the Layer to sync its shadow and shim positions to the element
22253      */
22254     sync : function(){
22255         this.el.sync();
22256     },
22257
22258     /**
22259      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22260      * invalid drop operation by the item being dragged.
22261      * @param {Array} xy The XY position of the element ([x, y])
22262      * @param {Function} callback The function to call after the repair is complete
22263      * @param {Object} scope The scope in which to execute the callback
22264      */
22265     repair : function(xy, callback, scope){
22266         this.callback = callback;
22267         this.scope = scope;
22268         if(xy && this.animRepair !== false){
22269             this.el.addClass("x-dd-drag-repair");
22270             this.el.hideUnders(true);
22271             this.anim = this.el.shift({
22272                 duration: this.repairDuration || .5,
22273                 easing: 'easeOut',
22274                 xy: xy,
22275                 stopFx: true,
22276                 callback: this.afterRepair,
22277                 scope: this
22278             });
22279         }else{
22280             this.afterRepair();
22281         }
22282     },
22283
22284     // private
22285     afterRepair : function(){
22286         this.hide(true);
22287         if(typeof this.callback == "function"){
22288             this.callback.call(this.scope || this);
22289         }
22290         this.callback = null;
22291         this.scope = null;
22292     }
22293 };/*
22294  * Based on:
22295  * Ext JS Library 1.1.1
22296  * Copyright(c) 2006-2007, Ext JS, LLC.
22297  *
22298  * Originally Released Under LGPL - original licence link has changed is not relivant.
22299  *
22300  * Fork - LGPL
22301  * <script type="text/javascript">
22302  */
22303
22304 /**
22305  * @class Roo.dd.DragSource
22306  * @extends Roo.dd.DDProxy
22307  * A simple class that provides the basic implementation needed to make any element draggable.
22308  * @constructor
22309  * @param {String/HTMLElement/Element} el The container element
22310  * @param {Object} config
22311  */
22312 Roo.dd.DragSource = function(el, config){
22313     this.el = Roo.get(el);
22314     this.dragData = {};
22315     
22316     Roo.apply(this, config);
22317     
22318     if(!this.proxy){
22319         this.proxy = new Roo.dd.StatusProxy();
22320     }
22321
22322     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22323           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22324     
22325     this.dragging = false;
22326 };
22327
22328 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22329     /**
22330      * @cfg {String} dropAllowed
22331      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22332      */
22333     dropAllowed : "x-dd-drop-ok",
22334     /**
22335      * @cfg {String} dropNotAllowed
22336      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22337      */
22338     dropNotAllowed : "x-dd-drop-nodrop",
22339
22340     /**
22341      * Returns the data object associated with this drag source
22342      * @return {Object} data An object containing arbitrary data
22343      */
22344     getDragData : function(e){
22345         return this.dragData;
22346     },
22347
22348     // private
22349     onDragEnter : function(e, id){
22350         var target = Roo.dd.DragDropMgr.getDDById(id);
22351         this.cachedTarget = target;
22352         if(this.beforeDragEnter(target, e, id) !== false){
22353             if(target.isNotifyTarget){
22354                 var status = target.notifyEnter(this, e, this.dragData);
22355                 this.proxy.setStatus(status);
22356             }else{
22357                 this.proxy.setStatus(this.dropAllowed);
22358             }
22359             
22360             if(this.afterDragEnter){
22361                 /**
22362                  * An empty function by default, but provided so that you can perform a custom action
22363                  * when the dragged item enters the drop target by providing an implementation.
22364                  * @param {Roo.dd.DragDrop} target The drop target
22365                  * @param {Event} e The event object
22366                  * @param {String} id The id of the dragged element
22367                  * @method afterDragEnter
22368                  */
22369                 this.afterDragEnter(target, e, id);
22370             }
22371         }
22372     },
22373
22374     /**
22375      * An empty function by default, but provided so that you can perform a custom action
22376      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22377      * @param {Roo.dd.DragDrop} target The drop target
22378      * @param {Event} e The event object
22379      * @param {String} id The id of the dragged element
22380      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22381      */
22382     beforeDragEnter : function(target, e, id){
22383         return true;
22384     },
22385
22386     // private
22387     alignElWithMouse: function() {
22388         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22389         this.proxy.sync();
22390     },
22391
22392     // private
22393     onDragOver : function(e, id){
22394         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22395         if(this.beforeDragOver(target, e, id) !== false){
22396             if(target.isNotifyTarget){
22397                 var status = target.notifyOver(this, e, this.dragData);
22398                 this.proxy.setStatus(status);
22399             }
22400
22401             if(this.afterDragOver){
22402                 /**
22403                  * An empty function by default, but provided so that you can perform a custom action
22404                  * while the dragged item is over the drop target by providing an implementation.
22405                  * @param {Roo.dd.DragDrop} target The drop target
22406                  * @param {Event} e The event object
22407                  * @param {String} id The id of the dragged element
22408                  * @method afterDragOver
22409                  */
22410                 this.afterDragOver(target, e, id);
22411             }
22412         }
22413     },
22414
22415     /**
22416      * An empty function by default, but provided so that you can perform a custom action
22417      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22418      * @param {Roo.dd.DragDrop} target The drop target
22419      * @param {Event} e The event object
22420      * @param {String} id The id of the dragged element
22421      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22422      */
22423     beforeDragOver : function(target, e, id){
22424         return true;
22425     },
22426
22427     // private
22428     onDragOut : function(e, id){
22429         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22430         if(this.beforeDragOut(target, e, id) !== false){
22431             if(target.isNotifyTarget){
22432                 target.notifyOut(this, e, this.dragData);
22433             }
22434             this.proxy.reset();
22435             if(this.afterDragOut){
22436                 /**
22437                  * An empty function by default, but provided so that you can perform a custom action
22438                  * after the dragged item is dragged out of the target without dropping.
22439                  * @param {Roo.dd.DragDrop} target The drop target
22440                  * @param {Event} e The event object
22441                  * @param {String} id The id of the dragged element
22442                  * @method afterDragOut
22443                  */
22444                 this.afterDragOut(target, e, id);
22445             }
22446         }
22447         this.cachedTarget = null;
22448     },
22449
22450     /**
22451      * An empty function by default, but provided so that you can perform a custom action before the dragged
22452      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22453      * @param {Roo.dd.DragDrop} target The drop target
22454      * @param {Event} e The event object
22455      * @param {String} id The id of the dragged element
22456      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22457      */
22458     beforeDragOut : function(target, e, id){
22459         return true;
22460     },
22461     
22462     // private
22463     onDragDrop : function(e, id){
22464         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22465         if(this.beforeDragDrop(target, e, id) !== false){
22466             if(target.isNotifyTarget){
22467                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22468                     this.onValidDrop(target, e, id);
22469                 }else{
22470                     this.onInvalidDrop(target, e, id);
22471                 }
22472             }else{
22473                 this.onValidDrop(target, e, id);
22474             }
22475             
22476             if(this.afterDragDrop){
22477                 /**
22478                  * An empty function by default, but provided so that you can perform a custom action
22479                  * after a valid drag drop has occurred by providing an implementation.
22480                  * @param {Roo.dd.DragDrop} target The drop target
22481                  * @param {Event} e The event object
22482                  * @param {String} id The id of the dropped element
22483                  * @method afterDragDrop
22484                  */
22485                 this.afterDragDrop(target, e, id);
22486             }
22487         }
22488         delete this.cachedTarget;
22489     },
22490
22491     /**
22492      * An empty function by default, but provided so that you can perform a custom action before the dragged
22493      * item is dropped onto the target and optionally cancel the onDragDrop.
22494      * @param {Roo.dd.DragDrop} target The drop target
22495      * @param {Event} e The event object
22496      * @param {String} id The id of the dragged element
22497      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22498      */
22499     beforeDragDrop : function(target, e, id){
22500         return true;
22501     },
22502
22503     // private
22504     onValidDrop : function(target, e, id){
22505         this.hideProxy();
22506         if(this.afterValidDrop){
22507             /**
22508              * An empty function by default, but provided so that you can perform a custom action
22509              * after a valid drop has occurred by providing an implementation.
22510              * @param {Object} target The target DD 
22511              * @param {Event} e The event object
22512              * @param {String} id The id of the dropped element
22513              * @method afterInvalidDrop
22514              */
22515             this.afterValidDrop(target, e, id);
22516         }
22517     },
22518
22519     // private
22520     getRepairXY : function(e, data){
22521         return this.el.getXY();  
22522     },
22523
22524     // private
22525     onInvalidDrop : function(target, e, id){
22526         this.beforeInvalidDrop(target, e, id);
22527         if(this.cachedTarget){
22528             if(this.cachedTarget.isNotifyTarget){
22529                 this.cachedTarget.notifyOut(this, e, this.dragData);
22530             }
22531             this.cacheTarget = null;
22532         }
22533         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22534
22535         if(this.afterInvalidDrop){
22536             /**
22537              * An empty function by default, but provided so that you can perform a custom action
22538              * after an invalid drop has occurred by providing an implementation.
22539              * @param {Event} e The event object
22540              * @param {String} id The id of the dropped element
22541              * @method afterInvalidDrop
22542              */
22543             this.afterInvalidDrop(e, id);
22544         }
22545     },
22546
22547     // private
22548     afterRepair : function(){
22549         if(Roo.enableFx){
22550             this.el.highlight(this.hlColor || "c3daf9");
22551         }
22552         this.dragging = false;
22553     },
22554
22555     /**
22556      * An empty function by default, but provided so that you can perform a custom action after an invalid
22557      * drop has occurred.
22558      * @param {Roo.dd.DragDrop} target The drop target
22559      * @param {Event} e The event object
22560      * @param {String} id The id of the dragged element
22561      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22562      */
22563     beforeInvalidDrop : function(target, e, id){
22564         return true;
22565     },
22566
22567     // private
22568     handleMouseDown : function(e){
22569         if(this.dragging) {
22570             return;
22571         }
22572         var data = this.getDragData(e);
22573         if(data && this.onBeforeDrag(data, e) !== false){
22574             this.dragData = data;
22575             this.proxy.stop();
22576             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22577         } 
22578     },
22579
22580     /**
22581      * An empty function by default, but provided so that you can perform a custom action before the initial
22582      * drag event begins and optionally cancel it.
22583      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22584      * @param {Event} e The event object
22585      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22586      */
22587     onBeforeDrag : function(data, e){
22588         return true;
22589     },
22590
22591     /**
22592      * An empty function by default, but provided so that you can perform a custom action once the initial
22593      * drag event has begun.  The drag cannot be canceled from this function.
22594      * @param {Number} x The x position of the click on the dragged object
22595      * @param {Number} y The y position of the click on the dragged object
22596      */
22597     onStartDrag : Roo.emptyFn,
22598
22599     // private - YUI override
22600     startDrag : function(x, y){
22601         this.proxy.reset();
22602         this.dragging = true;
22603         this.proxy.update("");
22604         this.onInitDrag(x, y);
22605         this.proxy.show();
22606     },
22607
22608     // private
22609     onInitDrag : function(x, y){
22610         var clone = this.el.dom.cloneNode(true);
22611         clone.id = Roo.id(); // prevent duplicate ids
22612         this.proxy.update(clone);
22613         this.onStartDrag(x, y);
22614         return true;
22615     },
22616
22617     /**
22618      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22619      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22620      */
22621     getProxy : function(){
22622         return this.proxy;  
22623     },
22624
22625     /**
22626      * Hides the drag source's {@link Roo.dd.StatusProxy}
22627      */
22628     hideProxy : function(){
22629         this.proxy.hide();  
22630         this.proxy.reset(true);
22631         this.dragging = false;
22632     },
22633
22634     // private
22635     triggerCacheRefresh : function(){
22636         Roo.dd.DDM.refreshCache(this.groups);
22637     },
22638
22639     // private - override to prevent hiding
22640     b4EndDrag: function(e) {
22641     },
22642
22643     // private - override to prevent moving
22644     endDrag : function(e){
22645         this.onEndDrag(this.dragData, e);
22646     },
22647
22648     // private
22649     onEndDrag : function(data, e){
22650     },
22651     
22652     // private - pin to cursor
22653     autoOffset : function(x, y) {
22654         this.setDelta(-12, -20);
22655     }    
22656 });/*
22657  * Based on:
22658  * Ext JS Library 1.1.1
22659  * Copyright(c) 2006-2007, Ext JS, LLC.
22660  *
22661  * Originally Released Under LGPL - original licence link has changed is not relivant.
22662  *
22663  * Fork - LGPL
22664  * <script type="text/javascript">
22665  */
22666
22667
22668 /**
22669  * @class Roo.dd.DropTarget
22670  * @extends Roo.dd.DDTarget
22671  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22672  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22673  * @constructor
22674  * @param {String/HTMLElement/Element} el The container element
22675  * @param {Object} config
22676  */
22677 Roo.dd.DropTarget = function(el, config){
22678     this.el = Roo.get(el);
22679     
22680     var listeners = false; ;
22681     if (config && config.listeners) {
22682         listeners= config.listeners;
22683         delete config.listeners;
22684     }
22685     Roo.apply(this, config);
22686     
22687     if(this.containerScroll){
22688         Roo.dd.ScrollManager.register(this.el);
22689     }
22690     this.addEvents( {
22691          /**
22692          * @scope Roo.dd.DropTarget
22693          */
22694          
22695          /**
22696          * @event enter
22697          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22698          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22699          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22700          * 
22701          * IMPORTANT : it should set  this.valid to true|false
22702          * 
22703          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22704          * @param {Event} e The event
22705          * @param {Object} data An object containing arbitrary data supplied by the drag source
22706          */
22707         "enter" : true,
22708         
22709          /**
22710          * @event over
22711          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22712          * This method will be called on every mouse movement while the drag source is over the drop target.
22713          * This default implementation simply returns the dropAllowed config value.
22714          * 
22715          * IMPORTANT : it should set  this.valid to true|false
22716          * 
22717          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22718          * @param {Event} e The event
22719          * @param {Object} data An object containing arbitrary data supplied by the drag source
22720          
22721          */
22722         "over" : true,
22723         /**
22724          * @event out
22725          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22726          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22727          * overClass (if any) from the drop element.
22728          * 
22729          * 
22730          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22731          * @param {Event} e The event
22732          * @param {Object} data An object containing arbitrary data supplied by the drag source
22733          */
22734          "out" : true,
22735          
22736         /**
22737          * @event drop
22738          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22739          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22740          * implementation that does something to process the drop event and returns true so that the drag source's
22741          * repair action does not run.
22742          * 
22743          * IMPORTANT : it should set this.success
22744          * 
22745          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22746          * @param {Event} e The event
22747          * @param {Object} data An object containing arbitrary data supplied by the drag source
22748         */
22749          "drop" : true
22750     });
22751             
22752      
22753     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22754         this.el.dom, 
22755         this.ddGroup || this.group,
22756         {
22757             isTarget: true,
22758             listeners : listeners || {} 
22759            
22760         
22761         }
22762     );
22763
22764 };
22765
22766 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22767     /**
22768      * @cfg {String} overClass
22769      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22770      */
22771      /**
22772      * @cfg {String} ddGroup
22773      * The drag drop group to handle drop events for
22774      */
22775      
22776     /**
22777      * @cfg {String} dropAllowed
22778      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22779      */
22780     dropAllowed : "x-dd-drop-ok",
22781     /**
22782      * @cfg {String} dropNotAllowed
22783      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22784      */
22785     dropNotAllowed : "x-dd-drop-nodrop",
22786     /**
22787      * @cfg {boolean} success
22788      * set this after drop listener.. 
22789      */
22790     success : false,
22791     /**
22792      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22793      * if the drop point is valid for over/enter..
22794      */
22795     valid : false,
22796     // private
22797     isTarget : true,
22798
22799     // private
22800     isNotifyTarget : true,
22801     
22802     /**
22803      * @hide
22804      */
22805     notifyEnter : function(dd, e, data)
22806     {
22807         this.valid = true;
22808         this.fireEvent('enter', dd, e, data);
22809         if(this.overClass){
22810             this.el.addClass(this.overClass);
22811         }
22812         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22813             this.valid ? this.dropAllowed : this.dropNotAllowed
22814         );
22815     },
22816
22817     /**
22818      * @hide
22819      */
22820     notifyOver : function(dd, e, data)
22821     {
22822         this.valid = true;
22823         this.fireEvent('over', dd, e, data);
22824         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22825             this.valid ? this.dropAllowed : this.dropNotAllowed
22826         );
22827     },
22828
22829     /**
22830      * @hide
22831      */
22832     notifyOut : function(dd, e, data)
22833     {
22834         this.fireEvent('out', dd, e, data);
22835         if(this.overClass){
22836             this.el.removeClass(this.overClass);
22837         }
22838     },
22839
22840     /**
22841      * @hide
22842      */
22843     notifyDrop : function(dd, e, data)
22844     {
22845         this.success = false;
22846         this.fireEvent('drop', dd, e, data);
22847         return this.success;
22848     }
22849 });/*
22850  * Based on:
22851  * Ext JS Library 1.1.1
22852  * Copyright(c) 2006-2007, Ext JS, LLC.
22853  *
22854  * Originally Released Under LGPL - original licence link has changed is not relivant.
22855  *
22856  * Fork - LGPL
22857  * <script type="text/javascript">
22858  */
22859
22860
22861 /**
22862  * @class Roo.dd.DragZone
22863  * @extends Roo.dd.DragSource
22864  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22865  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22866  * @constructor
22867  * @param {String/HTMLElement/Element} el The container element
22868  * @param {Object} config
22869  */
22870 Roo.dd.DragZone = function(el, config){
22871     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22872     if(this.containerScroll){
22873         Roo.dd.ScrollManager.register(this.el);
22874     }
22875 };
22876
22877 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22878     /**
22879      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22880      * for auto scrolling during drag operations.
22881      */
22882     /**
22883      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22884      * method after a failed drop (defaults to "c3daf9" - light blue)
22885      */
22886
22887     /**
22888      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22889      * for a valid target to drag based on the mouse down. Override this method
22890      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22891      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22892      * @param {EventObject} e The mouse down event
22893      * @return {Object} The dragData
22894      */
22895     getDragData : function(e){
22896         return Roo.dd.Registry.getHandleFromEvent(e);
22897     },
22898     
22899     /**
22900      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22901      * this.dragData.ddel
22902      * @param {Number} x The x position of the click on the dragged object
22903      * @param {Number} y The y position of the click on the dragged object
22904      * @return {Boolean} true to continue the drag, false to cancel
22905      */
22906     onInitDrag : function(x, y){
22907         this.proxy.update(this.dragData.ddel.cloneNode(true));
22908         this.onStartDrag(x, y);
22909         return true;
22910     },
22911     
22912     /**
22913      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22914      */
22915     afterRepair : function(){
22916         if(Roo.enableFx){
22917             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22918         }
22919         this.dragging = false;
22920     },
22921
22922     /**
22923      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22924      * the XY of this.dragData.ddel
22925      * @param {EventObject} e The mouse up event
22926      * @return {Array} The xy location (e.g. [100, 200])
22927      */
22928     getRepairXY : function(e){
22929         return Roo.Element.fly(this.dragData.ddel).getXY();  
22930     }
22931 });/*
22932  * Based on:
22933  * Ext JS Library 1.1.1
22934  * Copyright(c) 2006-2007, Ext JS, LLC.
22935  *
22936  * Originally Released Under LGPL - original licence link has changed is not relivant.
22937  *
22938  * Fork - LGPL
22939  * <script type="text/javascript">
22940  */
22941 /**
22942  * @class Roo.dd.DropZone
22943  * @extends Roo.dd.DropTarget
22944  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22945  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22946  * @constructor
22947  * @param {String/HTMLElement/Element} el The container element
22948  * @param {Object} config
22949  */
22950 Roo.dd.DropZone = function(el, config){
22951     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22952 };
22953
22954 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22955     /**
22956      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22957      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22958      * provide your own custom lookup.
22959      * @param {Event} e The event
22960      * @return {Object} data The custom data
22961      */
22962     getTargetFromEvent : function(e){
22963         return Roo.dd.Registry.getTargetFromEvent(e);
22964     },
22965
22966     /**
22967      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22968      * that it has registered.  This method has no default implementation and should be overridden to provide
22969      * node-specific processing if necessary.
22970      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22971      * {@link #getTargetFromEvent} for this node)
22972      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22973      * @param {Event} e The event
22974      * @param {Object} data An object containing arbitrary data supplied by the drag source
22975      */
22976     onNodeEnter : function(n, dd, e, data){
22977         
22978     },
22979
22980     /**
22981      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22982      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22983      * overridden to provide the proper feedback.
22984      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22985      * {@link #getTargetFromEvent} for this node)
22986      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22987      * @param {Event} e The event
22988      * @param {Object} data An object containing arbitrary data supplied by the drag source
22989      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22990      * underlying {@link Roo.dd.StatusProxy} can be updated
22991      */
22992     onNodeOver : function(n, dd, e, data){
22993         return this.dropAllowed;
22994     },
22995
22996     /**
22997      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22998      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22999      * node-specific processing if necessary.
23000      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23001      * {@link #getTargetFromEvent} for this node)
23002      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23003      * @param {Event} e The event
23004      * @param {Object} data An object containing arbitrary data supplied by the drag source
23005      */
23006     onNodeOut : function(n, dd, e, data){
23007         
23008     },
23009
23010     /**
23011      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
23012      * the drop node.  The default implementation returns false, so it should be overridden to provide the
23013      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
23014      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23015      * {@link #getTargetFromEvent} for this node)
23016      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23017      * @param {Event} e The event
23018      * @param {Object} data An object containing arbitrary data supplied by the drag source
23019      * @return {Boolean} True if the drop was valid, else false
23020      */
23021     onNodeDrop : function(n, dd, e, data){
23022         return false;
23023     },
23024
23025     /**
23026      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
23027      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
23028      * it should be overridden to provide the proper feedback if necessary.
23029      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23030      * @param {Event} e The event
23031      * @param {Object} data An object containing arbitrary data supplied by the drag source
23032      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23033      * underlying {@link Roo.dd.StatusProxy} can be updated
23034      */
23035     onContainerOver : function(dd, e, data){
23036         return this.dropNotAllowed;
23037     },
23038
23039     /**
23040      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
23041      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
23042      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
23043      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
23044      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23045      * @param {Event} e The event
23046      * @param {Object} data An object containing arbitrary data supplied by the drag source
23047      * @return {Boolean} True if the drop was valid, else false
23048      */
23049     onContainerDrop : function(dd, e, data){
23050         return false;
23051     },
23052
23053     /**
23054      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
23055      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
23056      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
23057      * you should override this method and provide a custom implementation.
23058      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23059      * @param {Event} e The event
23060      * @param {Object} data An object containing arbitrary data supplied by the drag source
23061      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23062      * underlying {@link Roo.dd.StatusProxy} can be updated
23063      */
23064     notifyEnter : function(dd, e, data){
23065         return this.dropNotAllowed;
23066     },
23067
23068     /**
23069      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23070      * This method will be called on every mouse movement while the drag source is over the drop zone.
23071      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23072      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23073      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23074      * registered node, it will call {@link #onContainerOver}.
23075      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23076      * @param {Event} e The event
23077      * @param {Object} data An object containing arbitrary data supplied by the drag source
23078      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23079      * underlying {@link Roo.dd.StatusProxy} can be updated
23080      */
23081     notifyOver : function(dd, e, data){
23082         var n = this.getTargetFromEvent(e);
23083         if(!n){ // not over valid drop target
23084             if(this.lastOverNode){
23085                 this.onNodeOut(this.lastOverNode, dd, e, data);
23086                 this.lastOverNode = null;
23087             }
23088             return this.onContainerOver(dd, e, data);
23089         }
23090         if(this.lastOverNode != n){
23091             if(this.lastOverNode){
23092                 this.onNodeOut(this.lastOverNode, dd, e, data);
23093             }
23094             this.onNodeEnter(n, dd, e, data);
23095             this.lastOverNode = n;
23096         }
23097         return this.onNodeOver(n, dd, e, data);
23098     },
23099
23100     /**
23101      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23102      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23103      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23104      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23105      * @param {Event} e The event
23106      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23107      */
23108     notifyOut : function(dd, e, data){
23109         if(this.lastOverNode){
23110             this.onNodeOut(this.lastOverNode, dd, e, data);
23111             this.lastOverNode = null;
23112         }
23113     },
23114
23115     /**
23116      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23117      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23118      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23119      * otherwise it will call {@link #onContainerDrop}.
23120      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23121      * @param {Event} e The event
23122      * @param {Object} data An object containing arbitrary data supplied by the drag source
23123      * @return {Boolean} True if the drop was valid, else false
23124      */
23125     notifyDrop : function(dd, e, data){
23126         if(this.lastOverNode){
23127             this.onNodeOut(this.lastOverNode, dd, e, data);
23128             this.lastOverNode = null;
23129         }
23130         var n = this.getTargetFromEvent(e);
23131         return n ?
23132             this.onNodeDrop(n, dd, e, data) :
23133             this.onContainerDrop(dd, e, data);
23134     },
23135
23136     // private
23137     triggerCacheRefresh : function(){
23138         Roo.dd.DDM.refreshCache(this.groups);
23139     }  
23140 });