listeners still may be undefined for some reason..
[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             if((' '+ci.className+' ').indexOf(v) != -1){
5070                 r[++ri] = ci;
5071             }
5072         }
5073         return r;
5074     };
5075
5076     function attrValue(n, attr){
5077         if(!n.tagName && typeof n.length != "undefined"){
5078             n = n[0];
5079         }
5080         if(!n){
5081             return null;
5082         }
5083         if(attr == "for"){
5084             return n.htmlFor;
5085         }
5086         if(attr == "class" || attr == "className"){
5087             return n.className;
5088         }
5089         return n.getAttribute(attr) || n[attr];
5090
5091     };
5092
5093     function getNodes(ns, mode, tagName){
5094         var result = [], ri = -1, cs;
5095         if(!ns){
5096             return result;
5097         }
5098         tagName = tagName || "*";
5099         if(typeof ns.getElementsByTagName != "undefined"){
5100             ns = [ns];
5101         }
5102         if(!mode){
5103             for(var i = 0, ni; ni = ns[i]; i++){
5104                 cs = ni.getElementsByTagName(tagName);
5105                 for(var j = 0, ci; ci = cs[j]; j++){
5106                     result[++ri] = ci;
5107                 }
5108             }
5109         }else if(mode == "/" || mode == ">"){
5110             var utag = tagName.toUpperCase();
5111             for(var i = 0, ni, cn; ni = ns[i]; i++){
5112                 cn = ni.children || ni.childNodes;
5113                 for(var j = 0, cj; cj = cn[j]; j++){
5114                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5115                         result[++ri] = cj;
5116                     }
5117                 }
5118             }
5119         }else if(mode == "+"){
5120             var utag = tagName.toUpperCase();
5121             for(var i = 0, n; n = ns[i]; i++){
5122                 while((n = n.nextSibling) && n.nodeType != 1);
5123                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5124                     result[++ri] = n;
5125                 }
5126             }
5127         }else if(mode == "~"){
5128             for(var i = 0, n; n = ns[i]; i++){
5129                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5130                 if(n){
5131                     result[++ri] = n;
5132                 }
5133             }
5134         }
5135         return result;
5136     };
5137
5138     function concat(a, b){
5139         if(b.slice){
5140             return a.concat(b);
5141         }
5142         for(var i = 0, l = b.length; i < l; i++){
5143             a[a.length] = b[i];
5144         }
5145         return a;
5146     }
5147
5148     function byTag(cs, tagName){
5149         if(cs.tagName || cs == document){
5150             cs = [cs];
5151         }
5152         if(!tagName){
5153             return cs;
5154         }
5155         var r = [], ri = -1;
5156         tagName = tagName.toLowerCase();
5157         for(var i = 0, ci; ci = cs[i]; i++){
5158             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5159                 r[++ri] = ci;
5160             }
5161         }
5162         return r;
5163     };
5164
5165     function byId(cs, attr, id){
5166         if(cs.tagName || cs == document){
5167             cs = [cs];
5168         }
5169         if(!id){
5170             return cs;
5171         }
5172         var r = [], ri = -1;
5173         for(var i = 0,ci; ci = cs[i]; i++){
5174             if(ci && ci.id == id){
5175                 r[++ri] = ci;
5176                 return r;
5177             }
5178         }
5179         return r;
5180     };
5181
5182     function byAttribute(cs, attr, value, op, custom){
5183         var r = [], ri = -1, st = custom=="{";
5184         var f = Roo.DomQuery.operators[op];
5185         for(var i = 0, ci; ci = cs[i]; i++){
5186             var a;
5187             if(st){
5188                 a = Roo.DomQuery.getStyle(ci, attr);
5189             }
5190             else if(attr == "class" || attr == "className"){
5191                 a = ci.className;
5192             }else if(attr == "for"){
5193                 a = ci.htmlFor;
5194             }else if(attr == "href"){
5195                 a = ci.getAttribute("href", 2);
5196             }else{
5197                 a = ci.getAttribute(attr);
5198             }
5199             if((f && f(a, value)) || (!f && a)){
5200                 r[++ri] = ci;
5201             }
5202         }
5203         return r;
5204     };
5205
5206     function byPseudo(cs, name, value){
5207         return Roo.DomQuery.pseudos[name](cs, value);
5208     };
5209
5210     // This is for IE MSXML which does not support expandos.
5211     // IE runs the same speed using setAttribute, however FF slows way down
5212     // and Safari completely fails so they need to continue to use expandos.
5213     var isIE = window.ActiveXObject ? true : false;
5214
5215     // this eval is stop the compressor from
5216     // renaming the variable to something shorter
5217     
5218     /** eval:var:batch */
5219     var batch = 30803; 
5220
5221     var key = 30803;
5222
5223     function nodupIEXml(cs){
5224         var d = ++key;
5225         cs[0].setAttribute("_nodup", d);
5226         var r = [cs[0]];
5227         for(var i = 1, len = cs.length; i < len; i++){
5228             var c = cs[i];
5229             if(!c.getAttribute("_nodup") != d){
5230                 c.setAttribute("_nodup", d);
5231                 r[r.length] = c;
5232             }
5233         }
5234         for(var i = 0, len = cs.length; i < len; i++){
5235             cs[i].removeAttribute("_nodup");
5236         }
5237         return r;
5238     }
5239
5240     function nodup(cs){
5241         if(!cs){
5242             return [];
5243         }
5244         var len = cs.length, c, i, r = cs, cj, ri = -1;
5245         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5246             return cs;
5247         }
5248         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5249             return nodupIEXml(cs);
5250         }
5251         var d = ++key;
5252         cs[0]._nodup = d;
5253         for(i = 1; c = cs[i]; i++){
5254             if(c._nodup != d){
5255                 c._nodup = d;
5256             }else{
5257                 r = [];
5258                 for(var j = 0; j < i; j++){
5259                     r[++ri] = cs[j];
5260                 }
5261                 for(j = i+1; cj = cs[j]; j++){
5262                     if(cj._nodup != d){
5263                         cj._nodup = d;
5264                         r[++ri] = cj;
5265                     }
5266                 }
5267                 return r;
5268             }
5269         }
5270         return r;
5271     }
5272
5273     function quickDiffIEXml(c1, c2){
5274         var d = ++key;
5275         for(var i = 0, len = c1.length; i < len; i++){
5276             c1[i].setAttribute("_qdiff", d);
5277         }
5278         var r = [];
5279         for(var i = 0, len = c2.length; i < len; i++){
5280             if(c2[i].getAttribute("_qdiff") != d){
5281                 r[r.length] = c2[i];
5282             }
5283         }
5284         for(var i = 0, len = c1.length; i < len; i++){
5285            c1[i].removeAttribute("_qdiff");
5286         }
5287         return r;
5288     }
5289
5290     function quickDiff(c1, c2){
5291         var len1 = c1.length;
5292         if(!len1){
5293             return c2;
5294         }
5295         if(isIE && c1[0].selectSingleNode){
5296             return quickDiffIEXml(c1, c2);
5297         }
5298         var d = ++key;
5299         for(var i = 0; i < len1; i++){
5300             c1[i]._qdiff = d;
5301         }
5302         var r = [];
5303         for(var i = 0, len = c2.length; i < len; i++){
5304             if(c2[i]._qdiff != d){
5305                 r[r.length] = c2[i];
5306             }
5307         }
5308         return r;
5309     }
5310
5311     function quickId(ns, mode, root, id){
5312         if(ns == root){
5313            var d = root.ownerDocument || root;
5314            return d.getElementById(id);
5315         }
5316         ns = getNodes(ns, mode, "*");
5317         return byId(ns, null, id);
5318     }
5319
5320     return {
5321         getStyle : function(el, name){
5322             return Roo.fly(el).getStyle(name);
5323         },
5324         /**
5325          * Compiles a selector/xpath query into a reusable function. The returned function
5326          * takes one parameter "root" (optional), which is the context node from where the query should start.
5327          * @param {String} selector The selector/xpath query
5328          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5329          * @return {Function}
5330          */
5331         compile : function(path, type){
5332             type = type || "select";
5333             
5334             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5335             var q = path, mode, lq;
5336             var tk = Roo.DomQuery.matchers;
5337             var tklen = tk.length;
5338             var mm;
5339
5340             // accept leading mode switch
5341             var lmode = q.match(modeRe);
5342             if(lmode && lmode[1]){
5343                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5344                 q = q.replace(lmode[1], "");
5345             }
5346             // strip leading slashes
5347             while(path.substr(0, 1)=="/"){
5348                 path = path.substr(1);
5349             }
5350
5351             while(q && lq != q){
5352                 lq = q;
5353                 var tm = q.match(tagTokenRe);
5354                 if(type == "select"){
5355                     if(tm){
5356                         if(tm[1] == "#"){
5357                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5358                         }else{
5359                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5360                         }
5361                         q = q.replace(tm[0], "");
5362                     }else if(q.substr(0, 1) != '@'){
5363                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5364                     }
5365                 }else{
5366                     if(tm){
5367                         if(tm[1] == "#"){
5368                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5369                         }else{
5370                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5371                         }
5372                         q = q.replace(tm[0], "");
5373                     }
5374                 }
5375                 while(!(mm = q.match(modeRe))){
5376                     var matched = false;
5377                     for(var j = 0; j < tklen; j++){
5378                         var t = tk[j];
5379                         var m = q.match(t.re);
5380                         if(m){
5381                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5382                                                     return m[i];
5383                                                 });
5384                             q = q.replace(m[0], "");
5385                             matched = true;
5386                             break;
5387                         }
5388                     }
5389                     // prevent infinite loop on bad selector
5390                     if(!matched){
5391                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5392                     }
5393                 }
5394                 if(mm[1]){
5395                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5396                     q = q.replace(mm[1], "");
5397                 }
5398             }
5399             fn[fn.length] = "return nodup(n);\n}";
5400             
5401              /** 
5402               * list of variables that need from compression as they are used by eval.
5403              *  eval:var:batch 
5404              *  eval:var:nodup
5405              *  eval:var:byTag
5406              *  eval:var:ById
5407              *  eval:var:getNodes
5408              *  eval:var:quickId
5409              *  eval:var:mode
5410              *  eval:var:root
5411              *  eval:var:n
5412              *  eval:var:byClassName
5413              *  eval:var:byPseudo
5414              *  eval:var:byAttribute
5415              *  eval:var:attrValue
5416              * 
5417              **/ 
5418             eval(fn.join(""));
5419             return f;
5420         },
5421
5422         /**
5423          * Selects a group of elements.
5424          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5425          * @param {Node} root (optional) The start of the query (defaults to document).
5426          * @return {Array}
5427          */
5428         select : function(path, root, type){
5429             if(!root || root == document){
5430                 root = document;
5431             }
5432             if(typeof root == "string"){
5433                 root = document.getElementById(root);
5434             }
5435             var paths = path.split(",");
5436             var results = [];
5437             for(var i = 0, len = paths.length; i < len; i++){
5438                 var p = paths[i].replace(trimRe, "");
5439                 if(!cache[p]){
5440                     cache[p] = Roo.DomQuery.compile(p);
5441                     if(!cache[p]){
5442                         throw p + " is not a valid selector";
5443                     }
5444                 }
5445                 var result = cache[p](root);
5446                 if(result && result != document){
5447                     results = results.concat(result);
5448                 }
5449             }
5450             if(paths.length > 1){
5451                 return nodup(results);
5452             }
5453             return results;
5454         },
5455
5456         /**
5457          * Selects a single element.
5458          * @param {String} selector The selector/xpath query
5459          * @param {Node} root (optional) The start of the query (defaults to document).
5460          * @return {Element}
5461          */
5462         selectNode : function(path, root){
5463             return Roo.DomQuery.select(path, root)[0];
5464         },
5465
5466         /**
5467          * Selects the value of a node, optionally replacing null with the defaultValue.
5468          * @param {String} selector The selector/xpath query
5469          * @param {Node} root (optional) The start of the query (defaults to document).
5470          * @param {String} defaultValue
5471          */
5472         selectValue : function(path, root, defaultValue){
5473             path = path.replace(trimRe, "");
5474             if(!valueCache[path]){
5475                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5476             }
5477             var n = valueCache[path](root);
5478             n = n[0] ? n[0] : n;
5479             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5480             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5481         },
5482
5483         /**
5484          * Selects the value of a node, parsing integers and floats.
5485          * @param {String} selector The selector/xpath query
5486          * @param {Node} root (optional) The start of the query (defaults to document).
5487          * @param {Number} defaultValue
5488          * @return {Number}
5489          */
5490         selectNumber : function(path, root, defaultValue){
5491             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5492             return parseFloat(v);
5493         },
5494
5495         /**
5496          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5497          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5498          * @param {String} selector The simple selector to test
5499          * @return {Boolean}
5500          */
5501         is : function(el, ss){
5502             if(typeof el == "string"){
5503                 el = document.getElementById(el);
5504             }
5505             var isArray = (el instanceof Array);
5506             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5507             return isArray ? (result.length == el.length) : (result.length > 0);
5508         },
5509
5510         /**
5511          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5512          * @param {Array} el An array of elements to filter
5513          * @param {String} selector The simple selector to test
5514          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5515          * the selector instead of the ones that match
5516          * @return {Array}
5517          */
5518         filter : function(els, ss, nonMatches){
5519             ss = ss.replace(trimRe, "");
5520             if(!simpleCache[ss]){
5521                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5522             }
5523             var result = simpleCache[ss](els);
5524             return nonMatches ? quickDiff(result, els) : result;
5525         },
5526
5527         /**
5528          * Collection of matching regular expressions and code snippets.
5529          */
5530         matchers : [{
5531                 re: /^\.([\w-]+)/,
5532                 select: 'n = byClassName(n, null, " {1} ");'
5533             }, {
5534                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5535                 select: 'n = byPseudo(n, "{1}", "{2}");'
5536             },{
5537                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5538                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5539             }, {
5540                 re: /^#([\w-]+)/,
5541                 select: 'n = byId(n, null, "{1}");'
5542             },{
5543                 re: /^@([\w-]+)/,
5544                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5545             }
5546         ],
5547
5548         /**
5549          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5550          * 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;.
5551          */
5552         operators : {
5553             "=" : function(a, v){
5554                 return a == v;
5555             },
5556             "!=" : function(a, v){
5557                 return a != v;
5558             },
5559             "^=" : function(a, v){
5560                 return a && a.substr(0, v.length) == v;
5561             },
5562             "$=" : function(a, v){
5563                 return a && a.substr(a.length-v.length) == v;
5564             },
5565             "*=" : function(a, v){
5566                 return a && a.indexOf(v) !== -1;
5567             },
5568             "%=" : function(a, v){
5569                 return (a % v) == 0;
5570             },
5571             "|=" : function(a, v){
5572                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5573             },
5574             "~=" : function(a, v){
5575                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5576             }
5577         },
5578
5579         /**
5580          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5581          * and the argument (if any) supplied in the selector.
5582          */
5583         pseudos : {
5584             "first-child" : function(c){
5585                 var r = [], ri = -1, n;
5586                 for(var i = 0, ci; ci = n = c[i]; i++){
5587                     while((n = n.previousSibling) && n.nodeType != 1);
5588                     if(!n){
5589                         r[++ri] = ci;
5590                     }
5591                 }
5592                 return r;
5593             },
5594
5595             "last-child" : function(c){
5596                 var r = [], ri = -1, n;
5597                 for(var i = 0, ci; ci = n = c[i]; i++){
5598                     while((n = n.nextSibling) && n.nodeType != 1);
5599                     if(!n){
5600                         r[++ri] = ci;
5601                     }
5602                 }
5603                 return r;
5604             },
5605
5606             "nth-child" : function(c, a) {
5607                 var r = [], ri = -1;
5608                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5609                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5610                 for(var i = 0, n; n = c[i]; i++){
5611                     var pn = n.parentNode;
5612                     if (batch != pn._batch) {
5613                         var j = 0;
5614                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5615                             if(cn.nodeType == 1){
5616                                cn.nodeIndex = ++j;
5617                             }
5618                         }
5619                         pn._batch = batch;
5620                     }
5621                     if (f == 1) {
5622                         if (l == 0 || n.nodeIndex == l){
5623                             r[++ri] = n;
5624                         }
5625                     } else if ((n.nodeIndex + l) % f == 0){
5626                         r[++ri] = n;
5627                     }
5628                 }
5629
5630                 return r;
5631             },
5632
5633             "only-child" : function(c){
5634                 var r = [], ri = -1;;
5635                 for(var i = 0, ci; ci = c[i]; i++){
5636                     if(!prev(ci) && !next(ci)){
5637                         r[++ri] = ci;
5638                     }
5639                 }
5640                 return r;
5641             },
5642
5643             "empty" : function(c){
5644                 var r = [], ri = -1;
5645                 for(var i = 0, ci; ci = c[i]; i++){
5646                     var cns = ci.childNodes, j = 0, cn, empty = true;
5647                     while(cn = cns[j]){
5648                         ++j;
5649                         if(cn.nodeType == 1 || cn.nodeType == 3){
5650                             empty = false;
5651                             break;
5652                         }
5653                     }
5654                     if(empty){
5655                         r[++ri] = ci;
5656                     }
5657                 }
5658                 return r;
5659             },
5660
5661             "contains" : function(c, v){
5662                 var r = [], ri = -1;
5663                 for(var i = 0, ci; ci = c[i]; i++){
5664                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5665                         r[++ri] = ci;
5666                     }
5667                 }
5668                 return r;
5669             },
5670
5671             "nodeValue" : function(c, v){
5672                 var r = [], ri = -1;
5673                 for(var i = 0, ci; ci = c[i]; i++){
5674                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5675                         r[++ri] = ci;
5676                     }
5677                 }
5678                 return r;
5679             },
5680
5681             "checked" : function(c){
5682                 var r = [], ri = -1;
5683                 for(var i = 0, ci; ci = c[i]; i++){
5684                     if(ci.checked == true){
5685                         r[++ri] = ci;
5686                     }
5687                 }
5688                 return r;
5689             },
5690
5691             "not" : function(c, ss){
5692                 return Roo.DomQuery.filter(c, ss, true);
5693             },
5694
5695             "odd" : function(c){
5696                 return this["nth-child"](c, "odd");
5697             },
5698
5699             "even" : function(c){
5700                 return this["nth-child"](c, "even");
5701             },
5702
5703             "nth" : function(c, a){
5704                 return c[a-1] || [];
5705             },
5706
5707             "first" : function(c){
5708                 return c[0] || [];
5709             },
5710
5711             "last" : function(c){
5712                 return c[c.length-1] || [];
5713             },
5714
5715             "has" : function(c, ss){
5716                 var s = Roo.DomQuery.select;
5717                 var r = [], ri = -1;
5718                 for(var i = 0, ci; ci = c[i]; i++){
5719                     if(s(ss, ci).length > 0){
5720                         r[++ri] = ci;
5721                     }
5722                 }
5723                 return r;
5724             },
5725
5726             "next" : function(c, ss){
5727                 var is = Roo.DomQuery.is;
5728                 var r = [], ri = -1;
5729                 for(var i = 0, ci; ci = c[i]; i++){
5730                     var n = next(ci);
5731                     if(n && is(n, ss)){
5732                         r[++ri] = ci;
5733                     }
5734                 }
5735                 return r;
5736             },
5737
5738             "prev" : function(c, ss){
5739                 var is = Roo.DomQuery.is;
5740                 var r = [], ri = -1;
5741                 for(var i = 0, ci; ci = c[i]; i++){
5742                     var n = prev(ci);
5743                     if(n && is(n, ss)){
5744                         r[++ri] = ci;
5745                     }
5746                 }
5747                 return r;
5748             }
5749         }
5750     };
5751 }();
5752
5753 /**
5754  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5755  * @param {String} path The selector/xpath query
5756  * @param {Node} root (optional) The start of the query (defaults to document).
5757  * @return {Array}
5758  * @member Roo
5759  * @method query
5760  */
5761 Roo.query = Roo.DomQuery.select;
5762 /*
5763  * Based on:
5764  * Ext JS Library 1.1.1
5765  * Copyright(c) 2006-2007, Ext JS, LLC.
5766  *
5767  * Originally Released Under LGPL - original licence link has changed is not relivant.
5768  *
5769  * Fork - LGPL
5770  * <script type="text/javascript">
5771  */
5772
5773 /**
5774  * @class Roo.util.Observable
5775  * Base class that provides a common interface for publishing events. Subclasses are expected to
5776  * to have a property "events" with all the events defined.<br>
5777  * For example:
5778  * <pre><code>
5779  Employee = function(name){
5780     this.name = name;
5781     this.addEvents({
5782         "fired" : true,
5783         "quit" : true
5784     });
5785  }
5786  Roo.extend(Employee, Roo.util.Observable);
5787 </code></pre>
5788  * @param {Object} config properties to use (incuding events / listeners)
5789  */
5790
5791 Roo.util.Observable = function(cfg){
5792     
5793     cfg = cfg|| {};
5794     this.addEvents(cfg.events || {});
5795     if (cfg.events) {
5796         delete cfg.events; // make sure
5797     }
5798      
5799     Roo.apply(this, cfg);
5800     
5801     if(this.listeners){
5802         this.on(this.listeners);
5803         delete this.listeners;
5804     }
5805 };
5806 Roo.util.Observable.prototype = {
5807     /** 
5808  * @cfg {Object} listeners  list of events and functions to call for this object, 
5809  * For example :
5810  * <pre><code>
5811     listeners :  { 
5812        'click' : function(e) {
5813            ..... 
5814         } ,
5815         .... 
5816     } 
5817   </code></pre>
5818  */
5819     
5820     
5821     /**
5822      * Fires the specified event with the passed parameters (minus the event name).
5823      * @param {String} eventName
5824      * @param {Object...} args Variable number of parameters are passed to handlers
5825      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5826      */
5827     fireEvent : function(){
5828         var ce = this.events[arguments[0].toLowerCase()];
5829         if(typeof ce == "object"){
5830             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5831         }else{
5832             return true;
5833         }
5834     },
5835
5836     // private
5837     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5838
5839     /**
5840      * Appends an event handler to this component
5841      * @param {String}   eventName The type of event to listen for
5842      * @param {Function} handler The method the event invokes
5843      * @param {Object}   scope (optional) The scope in which to execute the handler
5844      * function. The handler function's "this" context.
5845      * @param {Object}   options (optional) An object containing handler configuration
5846      * properties. This may contain any of the following properties:<ul>
5847      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5848      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5849      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5850      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5851      * by the specified number of milliseconds. If the event fires again within that time, the original
5852      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5853      * </ul><br>
5854      * <p>
5855      * <b>Combining Options</b><br>
5856      * Using the options argument, it is possible to combine different types of listeners:<br>
5857      * <br>
5858      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5859                 <pre><code>
5860                 el.on('click', this.onClick, this, {
5861                         single: true,
5862                 delay: 100,
5863                 forumId: 4
5864                 });
5865                 </code></pre>
5866      * <p>
5867      * <b>Attaching multiple handlers in 1 call</b><br>
5868      * The method also allows for a single argument to be passed which is a config object containing properties
5869      * which specify multiple handlers.
5870      * <pre><code>
5871                 el.on({
5872                         'click': {
5873                         fn: this.onClick,
5874                         scope: this,
5875                         delay: 100
5876                 }, 
5877                 'mouseover': {
5878                         fn: this.onMouseOver,
5879                         scope: this
5880                 },
5881                 'mouseout': {
5882                         fn: this.onMouseOut,
5883                         scope: this
5884                 }
5885                 });
5886                 </code></pre>
5887      * <p>
5888      * Or a shorthand syntax which passes the same scope object to all handlers:
5889         <pre><code>
5890                 el.on({
5891                         'click': this.onClick,
5892                 'mouseover': this.onMouseOver,
5893                 'mouseout': this.onMouseOut,
5894                 scope: this
5895                 });
5896                 </code></pre>
5897      */
5898     addListener : function(eventName, fn, scope, o){
5899         if(typeof eventName == "object"){
5900             o = eventName;
5901             for(var e in o){
5902                 if(this.filterOptRe.test(e)){
5903                     continue;
5904                 }
5905                 if(typeof o[e] == "function"){
5906                     // shared options
5907                     this.addListener(e, o[e], o.scope,  o);
5908                 }else{
5909                     // individual options
5910                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5911                 }
5912             }
5913             return;
5914         }
5915         o = (!o || typeof o == "boolean") ? {} : o;
5916         eventName = eventName.toLowerCase();
5917         var ce = this.events[eventName] || true;
5918         if(typeof ce == "boolean"){
5919             ce = new Roo.util.Event(this, eventName);
5920             this.events[eventName] = ce;
5921         }
5922         ce.addListener(fn, scope, o);
5923     },
5924
5925     /**
5926      * Removes a listener
5927      * @param {String}   eventName     The type of event to listen for
5928      * @param {Function} handler        The handler to remove
5929      * @param {Object}   scope  (optional) The scope (this object) for the handler
5930      */
5931     removeListener : function(eventName, fn, scope){
5932         var ce = this.events[eventName.toLowerCase()];
5933         if(typeof ce == "object"){
5934             ce.removeListener(fn, scope);
5935         }
5936     },
5937
5938     /**
5939      * Removes all listeners for this object
5940      */
5941     purgeListeners : function(){
5942         for(var evt in this.events){
5943             if(typeof this.events[evt] == "object"){
5944                  this.events[evt].clearListeners();
5945             }
5946         }
5947     },
5948
5949     relayEvents : function(o, events){
5950         var createHandler = function(ename){
5951             return function(){
5952                  
5953                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5954             };
5955         };
5956         for(var i = 0, len = events.length; i < len; i++){
5957             var ename = events[i];
5958             if(!this.events[ename]){
5959                 this.events[ename] = true;
5960             };
5961             o.on(ename, createHandler(ename), this);
5962         }
5963     },
5964
5965     /**
5966      * Used to define events on this Observable
5967      * @param {Object} object The object with the events defined
5968      */
5969     addEvents : function(o){
5970         if(!this.events){
5971             this.events = {};
5972         }
5973         Roo.applyIf(this.events, o);
5974     },
5975
5976     /**
5977      * Checks to see if this object has any listeners for a specified event
5978      * @param {String} eventName The name of the event to check for
5979      * @return {Boolean} True if the event is being listened for, else false
5980      */
5981     hasListener : function(eventName){
5982         var e = this.events[eventName];
5983         return typeof e == "object" && e.listeners.length > 0;
5984     }
5985 };
5986 /**
5987  * Appends an event handler to this element (shorthand for addListener)
5988  * @param {String}   eventName     The type of event to listen for
5989  * @param {Function} handler        The method the event invokes
5990  * @param {Object}   scope (optional) The scope in which to execute the handler
5991  * function. The handler function's "this" context.
5992  * @param {Object}   options  (optional)
5993  * @method
5994  */
5995 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5996 /**
5997  * Removes a listener (shorthand for removeListener)
5998  * @param {String}   eventName     The type of event to listen for
5999  * @param {Function} handler        The handler to remove
6000  * @param {Object}   scope  (optional) The scope (this object) for the handler
6001  * @method
6002  */
6003 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6004
6005 /**
6006  * Starts capture on the specified Observable. All events will be passed
6007  * to the supplied function with the event name + standard signature of the event
6008  * <b>before</b> the event is fired. If the supplied function returns false,
6009  * the event will not fire.
6010  * @param {Observable} o The Observable to capture
6011  * @param {Function} fn The function to call
6012  * @param {Object} scope (optional) The scope (this object) for the fn
6013  * @static
6014  */
6015 Roo.util.Observable.capture = function(o, fn, scope){
6016     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6017 };
6018
6019 /**
6020  * Removes <b>all</b> added captures from the Observable.
6021  * @param {Observable} o The Observable to release
6022  * @static
6023  */
6024 Roo.util.Observable.releaseCapture = function(o){
6025     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6026 };
6027
6028 (function(){
6029
6030     var createBuffered = function(h, o, scope){
6031         var task = new Roo.util.DelayedTask();
6032         return function(){
6033             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6034         };
6035     };
6036
6037     var createSingle = function(h, e, fn, scope){
6038         return function(){
6039             e.removeListener(fn, scope);
6040             return h.apply(scope, arguments);
6041         };
6042     };
6043
6044     var createDelayed = function(h, o, scope){
6045         return function(){
6046             var args = Array.prototype.slice.call(arguments, 0);
6047             setTimeout(function(){
6048                 h.apply(scope, args);
6049             }, o.delay || 10);
6050         };
6051     };
6052
6053     Roo.util.Event = function(obj, name){
6054         this.name = name;
6055         this.obj = obj;
6056         this.listeners = [];
6057     };
6058
6059     Roo.util.Event.prototype = {
6060         addListener : function(fn, scope, options){
6061             var o = options || {};
6062             scope = scope || this.obj;
6063             if(!this.isListening(fn, scope)){
6064                 var l = {fn: fn, scope: scope, options: o};
6065                 var h = fn;
6066                 if(o.delay){
6067                     h = createDelayed(h, o, scope);
6068                 }
6069                 if(o.single){
6070                     h = createSingle(h, this, fn, scope);
6071                 }
6072                 if(o.buffer){
6073                     h = createBuffered(h, o, scope);
6074                 }
6075                 l.fireFn = h;
6076                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6077                     this.listeners.push(l);
6078                 }else{
6079                     this.listeners = this.listeners.slice(0);
6080                     this.listeners.push(l);
6081                 }
6082             }
6083         },
6084
6085         findListener : function(fn, scope){
6086             scope = scope || this.obj;
6087             var ls = this.listeners;
6088             for(var i = 0, len = ls.length; i < len; i++){
6089                 var l = ls[i];
6090                 if(l.fn == fn && l.scope == scope){
6091                     return i;
6092                 }
6093             }
6094             return -1;
6095         },
6096
6097         isListening : function(fn, scope){
6098             return this.findListener(fn, scope) != -1;
6099         },
6100
6101         removeListener : function(fn, scope){
6102             var index;
6103             if((index = this.findListener(fn, scope)) != -1){
6104                 if(!this.firing){
6105                     this.listeners.splice(index, 1);
6106                 }else{
6107                     this.listeners = this.listeners.slice(0);
6108                     this.listeners.splice(index, 1);
6109                 }
6110                 return true;
6111             }
6112             return false;
6113         },
6114
6115         clearListeners : function(){
6116             this.listeners = [];
6117         },
6118
6119         fire : function(){
6120             var ls = this.listeners, scope, len = ls.length;
6121             if(len > 0){
6122                 this.firing = true;
6123                 var args = Array.prototype.slice.call(arguments, 0);                
6124                 for(var i = 0; i < len; i++){
6125                     var l = ls[i];
6126                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6127                         this.firing = false;
6128                         return false;
6129                     }
6130                 }
6131                 this.firing = false;
6132             }
6133             return true;
6134         }
6135     };
6136 })();/*
6137  * RooJS Library 
6138  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6139  *
6140  * Licence LGPL 
6141  *
6142  */
6143  
6144 /**
6145  * @class Roo.Document
6146  * @extends Roo.util.Observable
6147  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6148  * 
6149  * @param {Object} config the methods and properties of the 'base' class for the application.
6150  * 
6151  *  Generic Page handler - implement this to start your app..
6152  * 
6153  * eg.
6154  *  MyProject = new Roo.Document({
6155         events : {
6156             'load' : true // your events..
6157         },
6158         listeners : {
6159             'ready' : function() {
6160                 // fired on Roo.onReady()
6161             }
6162         }
6163  * 
6164  */
6165 Roo.Document = function(cfg) {
6166      
6167     this.addEvents({ 
6168         'ready' : true
6169     });
6170     Roo.util.Observable.call(this,cfg);
6171     
6172     var _this = this;
6173     
6174     Roo.onReady(function() {
6175         _this.fireEvent('ready');
6176     },null,false);
6177     
6178     
6179 }
6180
6181 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6182  * Based on:
6183  * Ext JS Library 1.1.1
6184  * Copyright(c) 2006-2007, Ext JS, LLC.
6185  *
6186  * Originally Released Under LGPL - original licence link has changed is not relivant.
6187  *
6188  * Fork - LGPL
6189  * <script type="text/javascript">
6190  */
6191
6192 /**
6193  * @class Roo.EventManager
6194  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6195  * several useful events directly.
6196  * See {@link Roo.EventObject} for more details on normalized event objects.
6197  * @singleton
6198  */
6199 Roo.EventManager = function(){
6200     var docReadyEvent, docReadyProcId, docReadyState = false;
6201     var resizeEvent, resizeTask, textEvent, textSize;
6202     var E = Roo.lib.Event;
6203     var D = Roo.lib.Dom;
6204
6205     
6206     
6207
6208     var fireDocReady = function(){
6209         if(!docReadyState){
6210             docReadyState = true;
6211             Roo.isReady = true;
6212             if(docReadyProcId){
6213                 clearInterval(docReadyProcId);
6214             }
6215             if(Roo.isGecko || Roo.isOpera) {
6216                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6217             }
6218             if(Roo.isIE){
6219                 var defer = document.getElementById("ie-deferred-loader");
6220                 if(defer){
6221                     defer.onreadystatechange = null;
6222                     defer.parentNode.removeChild(defer);
6223                 }
6224             }
6225             if(docReadyEvent){
6226                 docReadyEvent.fire();
6227                 docReadyEvent.clearListeners();
6228             }
6229         }
6230     };
6231     
6232     var initDocReady = function(){
6233         docReadyEvent = new Roo.util.Event();
6234         if(Roo.isGecko || Roo.isOpera) {
6235             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6236         }else if(Roo.isIE){
6237             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6238             var defer = document.getElementById("ie-deferred-loader");
6239             defer.onreadystatechange = function(){
6240                 if(this.readyState == "complete"){
6241                     fireDocReady();
6242                 }
6243             };
6244         }else if(Roo.isSafari){ 
6245             docReadyProcId = setInterval(function(){
6246                 var rs = document.readyState;
6247                 if(rs == "complete") {
6248                     fireDocReady();     
6249                  }
6250             }, 10);
6251         }
6252         // no matter what, make sure it fires on load
6253         E.on(window, "load", fireDocReady);
6254     };
6255
6256     var createBuffered = function(h, o){
6257         var task = new Roo.util.DelayedTask(h);
6258         return function(e){
6259             // create new event object impl so new events don't wipe out properties
6260             e = new Roo.EventObjectImpl(e);
6261             task.delay(o.buffer, h, null, [e]);
6262         };
6263     };
6264
6265     var createSingle = function(h, el, ename, fn){
6266         return function(e){
6267             Roo.EventManager.removeListener(el, ename, fn);
6268             h(e);
6269         };
6270     };
6271
6272     var createDelayed = function(h, o){
6273         return function(e){
6274             // create new event object impl so new events don't wipe out properties
6275             e = new Roo.EventObjectImpl(e);
6276             setTimeout(function(){
6277                 h(e);
6278             }, o.delay || 10);
6279         };
6280     };
6281     var transitionEndVal = false;
6282     
6283     var transitionEnd = function()
6284     {
6285         if (transitionEndVal) {
6286             return transitionEndVal;
6287         }
6288         var el = document.createElement('div');
6289
6290         var transEndEventNames = {
6291             WebkitTransition : 'webkitTransitionEnd',
6292             MozTransition    : 'transitionend',
6293             OTransition      : 'oTransitionEnd otransitionend',
6294             transition       : 'transitionend'
6295         };
6296     
6297         for (var name in transEndEventNames) {
6298             if (el.style[name] !== undefined) {
6299                 transitionEndVal = transEndEventNames[name];
6300                 return  transitionEndVal ;
6301             }
6302         }
6303     }
6304     
6305   
6306
6307     var listen = function(element, ename, opt, fn, scope)
6308     {
6309         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6310         fn = fn || o.fn; scope = scope || o.scope;
6311         var el = Roo.getDom(element);
6312         
6313         
6314         if(!el){
6315             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6316         }
6317         
6318         if (ename == 'transitionend') {
6319             ename = transitionEnd();
6320         }
6321         var h = function(e){
6322             e = Roo.EventObject.setEvent(e);
6323             var t;
6324             if(o.delegate){
6325                 t = e.getTarget(o.delegate, el);
6326                 if(!t){
6327                     return;
6328                 }
6329             }else{
6330                 t = e.target;
6331             }
6332             if(o.stopEvent === true){
6333                 e.stopEvent();
6334             }
6335             if(o.preventDefault === true){
6336                e.preventDefault();
6337             }
6338             if(o.stopPropagation === true){
6339                 e.stopPropagation();
6340             }
6341
6342             if(o.normalized === false){
6343                 e = e.browserEvent;
6344             }
6345
6346             fn.call(scope || el, e, t, o);
6347         };
6348         if(o.delay){
6349             h = createDelayed(h, o);
6350         }
6351         if(o.single){
6352             h = createSingle(h, el, ename, fn);
6353         }
6354         if(o.buffer){
6355             h = createBuffered(h, o);
6356         }
6357         
6358         fn._handlers = fn._handlers || [];
6359         
6360         
6361         fn._handlers.push([Roo.id(el), ename, h]);
6362         
6363         
6364          
6365         E.on(el, ename, h); // this adds the actuall listener to the object..
6366         
6367         
6368         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6369             el.addEventListener("DOMMouseScroll", h, false);
6370             E.on(window, 'unload', function(){
6371                 el.removeEventListener("DOMMouseScroll", h, false);
6372             });
6373         }
6374         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6375             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6376         }
6377         return h;
6378     };
6379
6380     var stopListening = function(el, ename, fn){
6381         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6382         if(hds){
6383             for(var i = 0, len = hds.length; i < len; i++){
6384                 var h = hds[i];
6385                 if(h[0] == id && h[1] == ename){
6386                     hd = h[2];
6387                     hds.splice(i, 1);
6388                     break;
6389                 }
6390             }
6391         }
6392         E.un(el, ename, hd);
6393         el = Roo.getDom(el);
6394         if(ename == "mousewheel" && el.addEventListener){
6395             el.removeEventListener("DOMMouseScroll", hd, false);
6396         }
6397         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6398             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6399         }
6400     };
6401
6402     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6403     
6404     var pub = {
6405         
6406         
6407         /** 
6408          * Fix for doc tools
6409          * @scope Roo.EventManager
6410          */
6411         
6412         
6413         /** 
6414          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6415          * object with a Roo.EventObject
6416          * @param {Function} fn        The method the event invokes
6417          * @param {Object}   scope    An object that becomes the scope of the handler
6418          * @param {boolean}  override If true, the obj passed in becomes
6419          *                             the execution scope of the listener
6420          * @return {Function} The wrapped function
6421          * @deprecated
6422          */
6423         wrap : function(fn, scope, override){
6424             return function(e){
6425                 Roo.EventObject.setEvent(e);
6426                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6427             };
6428         },
6429         
6430         /**
6431      * Appends an event handler to an element (shorthand for addListener)
6432      * @param {String/HTMLElement}   element        The html element or id to assign the
6433      * @param {String}   eventName The type of event to listen for
6434      * @param {Function} handler The method the event invokes
6435      * @param {Object}   scope (optional) The scope in which to execute the handler
6436      * function. The handler function's "this" context.
6437      * @param {Object}   options (optional) An object containing handler configuration
6438      * properties. This may contain any of the following properties:<ul>
6439      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6440      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6441      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6442      * <li>preventDefault {Boolean} True to prevent the default action</li>
6443      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6444      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6445      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6446      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6447      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6448      * by the specified number of milliseconds. If the event fires again within that time, the original
6449      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6450      * </ul><br>
6451      * <p>
6452      * <b>Combining Options</b><br>
6453      * Using the options argument, it is possible to combine different types of listeners:<br>
6454      * <br>
6455      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6456      * Code:<pre><code>
6457 el.on('click', this.onClick, this, {
6458     single: true,
6459     delay: 100,
6460     stopEvent : true,
6461     forumId: 4
6462 });</code></pre>
6463      * <p>
6464      * <b>Attaching multiple handlers in 1 call</b><br>
6465       * The method also allows for a single argument to be passed which is a config object containing properties
6466      * which specify multiple handlers.
6467      * <p>
6468      * Code:<pre><code>
6469 el.on({
6470     'click' : {
6471         fn: this.onClick
6472         scope: this,
6473         delay: 100
6474     },
6475     'mouseover' : {
6476         fn: this.onMouseOver
6477         scope: this
6478     },
6479     'mouseout' : {
6480         fn: this.onMouseOut
6481         scope: this
6482     }
6483 });</code></pre>
6484      * <p>
6485      * Or a shorthand syntax:<br>
6486      * Code:<pre><code>
6487 el.on({
6488     'click' : this.onClick,
6489     'mouseover' : this.onMouseOver,
6490     'mouseout' : this.onMouseOut
6491     scope: this
6492 });</code></pre>
6493      */
6494         addListener : function(element, eventName, fn, scope, options){
6495             if(typeof eventName == "object"){
6496                 var o = eventName;
6497                 for(var e in o){
6498                     if(propRe.test(e)){
6499                         continue;
6500                     }
6501                     if(typeof o[e] == "function"){
6502                         // shared options
6503                         listen(element, e, o, o[e], o.scope);
6504                     }else{
6505                         // individual options
6506                         listen(element, e, o[e]);
6507                     }
6508                 }
6509                 return;
6510             }
6511             return listen(element, eventName, options, fn, scope);
6512         },
6513         
6514         /**
6515          * Removes an event handler
6516          *
6517          * @param {String/HTMLElement}   element        The id or html element to remove the 
6518          *                             event from
6519          * @param {String}   eventName     The type of event
6520          * @param {Function} fn
6521          * @return {Boolean} True if a listener was actually removed
6522          */
6523         removeListener : function(element, eventName, fn){
6524             return stopListening(element, eventName, fn);
6525         },
6526         
6527         /**
6528          * Fires when the document is ready (before onload and before images are loaded). Can be 
6529          * accessed shorthanded Roo.onReady().
6530          * @param {Function} fn        The method the event invokes
6531          * @param {Object}   scope    An  object that becomes the scope of the handler
6532          * @param {boolean}  options
6533          */
6534         onDocumentReady : function(fn, scope, options){
6535             if(docReadyState){ // if it already fired
6536                 docReadyEvent.addListener(fn, scope, options);
6537                 docReadyEvent.fire();
6538                 docReadyEvent.clearListeners();
6539                 return;
6540             }
6541             if(!docReadyEvent){
6542                 initDocReady();
6543             }
6544             docReadyEvent.addListener(fn, scope, options);
6545         },
6546         
6547         /**
6548          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6549          * @param {Function} fn        The method the event invokes
6550          * @param {Object}   scope    An object that becomes the scope of the handler
6551          * @param {boolean}  options
6552          */
6553         onWindowResize : function(fn, scope, options){
6554             if(!resizeEvent){
6555                 resizeEvent = new Roo.util.Event();
6556                 resizeTask = new Roo.util.DelayedTask(function(){
6557                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6558                 });
6559                 E.on(window, "resize", function(){
6560                     if(Roo.isIE){
6561                         resizeTask.delay(50);
6562                     }else{
6563                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6564                     }
6565                 });
6566             }
6567             resizeEvent.addListener(fn, scope, options);
6568         },
6569
6570         /**
6571          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6572          * @param {Function} fn        The method the event invokes
6573          * @param {Object}   scope    An object that becomes the scope of the handler
6574          * @param {boolean}  options
6575          */
6576         onTextResize : function(fn, scope, options){
6577             if(!textEvent){
6578                 textEvent = new Roo.util.Event();
6579                 var textEl = new Roo.Element(document.createElement('div'));
6580                 textEl.dom.className = 'x-text-resize';
6581                 textEl.dom.innerHTML = 'X';
6582                 textEl.appendTo(document.body);
6583                 textSize = textEl.dom.offsetHeight;
6584                 setInterval(function(){
6585                     if(textEl.dom.offsetHeight != textSize){
6586                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6587                     }
6588                 }, this.textResizeInterval);
6589             }
6590             textEvent.addListener(fn, scope, options);
6591         },
6592
6593         /**
6594          * Removes the passed window resize listener.
6595          * @param {Function} fn        The method the event invokes
6596          * @param {Object}   scope    The scope of handler
6597          */
6598         removeResizeListener : function(fn, scope){
6599             if(resizeEvent){
6600                 resizeEvent.removeListener(fn, scope);
6601             }
6602         },
6603
6604         // private
6605         fireResize : function(){
6606             if(resizeEvent){
6607                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6608             }   
6609         },
6610         /**
6611          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6612          */
6613         ieDeferSrc : false,
6614         /**
6615          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6616          */
6617         textResizeInterval : 50
6618     };
6619     
6620     /**
6621      * Fix for doc tools
6622      * @scopeAlias pub=Roo.EventManager
6623      */
6624     
6625      /**
6626      * Appends an event handler to an element (shorthand for addListener)
6627      * @param {String/HTMLElement}   element        The html element or id to assign the
6628      * @param {String}   eventName The type of event to listen for
6629      * @param {Function} handler The method the event invokes
6630      * @param {Object}   scope (optional) The scope in which to execute the handler
6631      * function. The handler function's "this" context.
6632      * @param {Object}   options (optional) An object containing handler configuration
6633      * properties. This may contain any of the following properties:<ul>
6634      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6635      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6636      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6637      * <li>preventDefault {Boolean} True to prevent the default action</li>
6638      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6639      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6640      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6641      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6642      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6643      * by the specified number of milliseconds. If the event fires again within that time, the original
6644      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6645      * </ul><br>
6646      * <p>
6647      * <b>Combining Options</b><br>
6648      * Using the options argument, it is possible to combine different types of listeners:<br>
6649      * <br>
6650      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6651      * Code:<pre><code>
6652 el.on('click', this.onClick, this, {
6653     single: true,
6654     delay: 100,
6655     stopEvent : true,
6656     forumId: 4
6657 });</code></pre>
6658      * <p>
6659      * <b>Attaching multiple handlers in 1 call</b><br>
6660       * The method also allows for a single argument to be passed which is a config object containing properties
6661      * which specify multiple handlers.
6662      * <p>
6663      * Code:<pre><code>
6664 el.on({
6665     'click' : {
6666         fn: this.onClick
6667         scope: this,
6668         delay: 100
6669     },
6670     'mouseover' : {
6671         fn: this.onMouseOver
6672         scope: this
6673     },
6674     'mouseout' : {
6675         fn: this.onMouseOut
6676         scope: this
6677     }
6678 });</code></pre>
6679      * <p>
6680      * Or a shorthand syntax:<br>
6681      * Code:<pre><code>
6682 el.on({
6683     'click' : this.onClick,
6684     'mouseover' : this.onMouseOver,
6685     'mouseout' : this.onMouseOut
6686     scope: this
6687 });</code></pre>
6688      */
6689     pub.on = pub.addListener;
6690     pub.un = pub.removeListener;
6691
6692     pub.stoppedMouseDownEvent = new Roo.util.Event();
6693     return pub;
6694 }();
6695 /**
6696   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6697   * @param {Function} fn        The method the event invokes
6698   * @param {Object}   scope    An  object that becomes the scope of the handler
6699   * @param {boolean}  override If true, the obj passed in becomes
6700   *                             the execution scope of the listener
6701   * @member Roo
6702   * @method onReady
6703  */
6704 Roo.onReady = Roo.EventManager.onDocumentReady;
6705
6706 Roo.onReady(function(){
6707     var bd = Roo.get(document.body);
6708     if(!bd){ return; }
6709
6710     var cls = [
6711             Roo.isIE ? "roo-ie"
6712             : Roo.isIE11 ? "roo-ie11"
6713             : Roo.isEdge ? "roo-edge"
6714             : Roo.isGecko ? "roo-gecko"
6715             : Roo.isOpera ? "roo-opera"
6716             : Roo.isSafari ? "roo-safari" : ""];
6717
6718     if(Roo.isMac){
6719         cls.push("roo-mac");
6720     }
6721     if(Roo.isLinux){
6722         cls.push("roo-linux");
6723     }
6724     if(Roo.isIOS){
6725         cls.push("roo-ios");
6726     }
6727     if(Roo.isTouch){
6728         cls.push("roo-touch");
6729     }
6730     if(Roo.isBorderBox){
6731         cls.push('roo-border-box');
6732     }
6733     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6734         var p = bd.dom.parentNode;
6735         if(p){
6736             p.className += ' roo-strict';
6737         }
6738     }
6739     bd.addClass(cls.join(' '));
6740 });
6741
6742 /**
6743  * @class Roo.EventObject
6744  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6745  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6746  * Example:
6747  * <pre><code>
6748  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6749     e.preventDefault();
6750     var target = e.getTarget();
6751     ...
6752  }
6753  var myDiv = Roo.get("myDiv");
6754  myDiv.on("click", handleClick);
6755  //or
6756  Roo.EventManager.on("myDiv", 'click', handleClick);
6757  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6758  </code></pre>
6759  * @singleton
6760  */
6761 Roo.EventObject = function(){
6762     
6763     var E = Roo.lib.Event;
6764     
6765     // safari keypress events for special keys return bad keycodes
6766     var safariKeys = {
6767         63234 : 37, // left
6768         63235 : 39, // right
6769         63232 : 38, // up
6770         63233 : 40, // down
6771         63276 : 33, // page up
6772         63277 : 34, // page down
6773         63272 : 46, // delete
6774         63273 : 36, // home
6775         63275 : 35  // end
6776     };
6777
6778     // normalize button clicks
6779     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6780                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6781
6782     Roo.EventObjectImpl = function(e){
6783         if(e){
6784             this.setEvent(e.browserEvent || e);
6785         }
6786     };
6787     Roo.EventObjectImpl.prototype = {
6788         /**
6789          * Used to fix doc tools.
6790          * @scope Roo.EventObject.prototype
6791          */
6792             
6793
6794         
6795         
6796         /** The normal browser event */
6797         browserEvent : null,
6798         /** The button pressed in a mouse event */
6799         button : -1,
6800         /** True if the shift key was down during the event */
6801         shiftKey : false,
6802         /** True if the control key was down during the event */
6803         ctrlKey : false,
6804         /** True if the alt key was down during the event */
6805         altKey : false,
6806
6807         /** Key constant 
6808         * @type Number */
6809         BACKSPACE : 8,
6810         /** Key constant 
6811         * @type Number */
6812         TAB : 9,
6813         /** Key constant 
6814         * @type Number */
6815         RETURN : 13,
6816         /** Key constant 
6817         * @type Number */
6818         ENTER : 13,
6819         /** Key constant 
6820         * @type Number */
6821         SHIFT : 16,
6822         /** Key constant 
6823         * @type Number */
6824         CONTROL : 17,
6825         /** Key constant 
6826         * @type Number */
6827         ESC : 27,
6828         /** Key constant 
6829         * @type Number */
6830         SPACE : 32,
6831         /** Key constant 
6832         * @type Number */
6833         PAGEUP : 33,
6834         /** Key constant 
6835         * @type Number */
6836         PAGEDOWN : 34,
6837         /** Key constant 
6838         * @type Number */
6839         END : 35,
6840         /** Key constant 
6841         * @type Number */
6842         HOME : 36,
6843         /** Key constant 
6844         * @type Number */
6845         LEFT : 37,
6846         /** Key constant 
6847         * @type Number */
6848         UP : 38,
6849         /** Key constant 
6850         * @type Number */
6851         RIGHT : 39,
6852         /** Key constant 
6853         * @type Number */
6854         DOWN : 40,
6855         /** Key constant 
6856         * @type Number */
6857         DELETE : 46,
6858         /** Key constant 
6859         * @type Number */
6860         F5 : 116,
6861
6862            /** @private */
6863         setEvent : function(e){
6864             if(e == this || (e && e.browserEvent)){ // already wrapped
6865                 return e;
6866             }
6867             this.browserEvent = e;
6868             if(e){
6869                 // normalize buttons
6870                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6871                 if(e.type == 'click' && this.button == -1){
6872                     this.button = 0;
6873                 }
6874                 this.type = e.type;
6875                 this.shiftKey = e.shiftKey;
6876                 // mac metaKey behaves like ctrlKey
6877                 this.ctrlKey = e.ctrlKey || e.metaKey;
6878                 this.altKey = e.altKey;
6879                 // in getKey these will be normalized for the mac
6880                 this.keyCode = e.keyCode;
6881                 // keyup warnings on firefox.
6882                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6883                 // cache the target for the delayed and or buffered events
6884                 this.target = E.getTarget(e);
6885                 // same for XY
6886                 this.xy = E.getXY(e);
6887             }else{
6888                 this.button = -1;
6889                 this.shiftKey = false;
6890                 this.ctrlKey = false;
6891                 this.altKey = false;
6892                 this.keyCode = 0;
6893                 this.charCode =0;
6894                 this.target = null;
6895                 this.xy = [0, 0];
6896             }
6897             return this;
6898         },
6899
6900         /**
6901          * Stop the event (preventDefault and stopPropagation)
6902          */
6903         stopEvent : function(){
6904             if(this.browserEvent){
6905                 if(this.browserEvent.type == 'mousedown'){
6906                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6907                 }
6908                 E.stopEvent(this.browserEvent);
6909             }
6910         },
6911
6912         /**
6913          * Prevents the browsers default handling of the event.
6914          */
6915         preventDefault : function(){
6916             if(this.browserEvent){
6917                 E.preventDefault(this.browserEvent);
6918             }
6919         },
6920
6921         /** @private */
6922         isNavKeyPress : function(){
6923             var k = this.keyCode;
6924             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6925             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6926         },
6927
6928         isSpecialKey : function(){
6929             var k = this.keyCode;
6930             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6931             (k == 16) || (k == 17) ||
6932             (k >= 18 && k <= 20) ||
6933             (k >= 33 && k <= 35) ||
6934             (k >= 36 && k <= 39) ||
6935             (k >= 44 && k <= 45);
6936         },
6937         /**
6938          * Cancels bubbling of the event.
6939          */
6940         stopPropagation : function(){
6941             if(this.browserEvent){
6942                 if(this.type == 'mousedown'){
6943                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6944                 }
6945                 E.stopPropagation(this.browserEvent);
6946             }
6947         },
6948
6949         /**
6950          * Gets the key code for the event.
6951          * @return {Number}
6952          */
6953         getCharCode : function(){
6954             return this.charCode || this.keyCode;
6955         },
6956
6957         /**
6958          * Returns a normalized keyCode for the event.
6959          * @return {Number} The key code
6960          */
6961         getKey : function(){
6962             var k = this.keyCode || this.charCode;
6963             return Roo.isSafari ? (safariKeys[k] || k) : k;
6964         },
6965
6966         /**
6967          * Gets the x coordinate of the event.
6968          * @return {Number}
6969          */
6970         getPageX : function(){
6971             return this.xy[0];
6972         },
6973
6974         /**
6975          * Gets the y coordinate of the event.
6976          * @return {Number}
6977          */
6978         getPageY : function(){
6979             return this.xy[1];
6980         },
6981
6982         /**
6983          * Gets the time of the event.
6984          * @return {Number}
6985          */
6986         getTime : function(){
6987             if(this.browserEvent){
6988                 return E.getTime(this.browserEvent);
6989             }
6990             return null;
6991         },
6992
6993         /**
6994          * Gets the page coordinates of the event.
6995          * @return {Array} The xy values like [x, y]
6996          */
6997         getXY : function(){
6998             return this.xy;
6999         },
7000
7001         /**
7002          * Gets the target for the event.
7003          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7004          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7005                 search as a number or element (defaults to 10 || document.body)
7006          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7007          * @return {HTMLelement}
7008          */
7009         getTarget : function(selector, maxDepth, returnEl){
7010             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7011         },
7012         /**
7013          * Gets the related target.
7014          * @return {HTMLElement}
7015          */
7016         getRelatedTarget : function(){
7017             if(this.browserEvent){
7018                 return E.getRelatedTarget(this.browserEvent);
7019             }
7020             return null;
7021         },
7022
7023         /**
7024          * Normalizes mouse wheel delta across browsers
7025          * @return {Number} The delta
7026          */
7027         getWheelDelta : function(){
7028             var e = this.browserEvent;
7029             var delta = 0;
7030             if(e.wheelDelta){ /* IE/Opera. */
7031                 delta = e.wheelDelta/120;
7032             }else if(e.detail){ /* Mozilla case. */
7033                 delta = -e.detail/3;
7034             }
7035             return delta;
7036         },
7037
7038         /**
7039          * Returns true if the control, meta, shift or alt key was pressed during this event.
7040          * @return {Boolean}
7041          */
7042         hasModifier : function(){
7043             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7044         },
7045
7046         /**
7047          * Returns true if the target of this event equals el or is a child of el
7048          * @param {String/HTMLElement/Element} el
7049          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7050          * @return {Boolean}
7051          */
7052         within : function(el, related){
7053             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7054             return t && Roo.fly(el).contains(t);
7055         },
7056
7057         getPoint : function(){
7058             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7059         }
7060     };
7061
7062     return new Roo.EventObjectImpl();
7063 }();
7064             
7065     /*
7066  * Based on:
7067  * Ext JS Library 1.1.1
7068  * Copyright(c) 2006-2007, Ext JS, LLC.
7069  *
7070  * Originally Released Under LGPL - original licence link has changed is not relivant.
7071  *
7072  * Fork - LGPL
7073  * <script type="text/javascript">
7074  */
7075
7076  
7077 // was in Composite Element!??!?!
7078  
7079 (function(){
7080     var D = Roo.lib.Dom;
7081     var E = Roo.lib.Event;
7082     var A = Roo.lib.Anim;
7083
7084     // local style camelizing for speed
7085     var propCache = {};
7086     var camelRe = /(-[a-z])/gi;
7087     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7088     var view = document.defaultView;
7089
7090 /**
7091  * @class Roo.Element
7092  * Represents an Element in the DOM.<br><br>
7093  * Usage:<br>
7094 <pre><code>
7095 var el = Roo.get("my-div");
7096
7097 // or with getEl
7098 var el = getEl("my-div");
7099
7100 // or with a DOM element
7101 var el = Roo.get(myDivElement);
7102 </code></pre>
7103  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7104  * each call instead of constructing a new one.<br><br>
7105  * <b>Animations</b><br />
7106  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7107  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7108 <pre>
7109 Option    Default   Description
7110 --------- --------  ---------------------------------------------
7111 duration  .35       The duration of the animation in seconds
7112 easing    easeOut   The YUI easing method
7113 callback  none      A function to execute when the anim completes
7114 scope     this      The scope (this) of the callback function
7115 </pre>
7116 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7117 * manipulate the animation. Here's an example:
7118 <pre><code>
7119 var el = Roo.get("my-div");
7120
7121 // no animation
7122 el.setWidth(100);
7123
7124 // default animation
7125 el.setWidth(100, true);
7126
7127 // animation with some options set
7128 el.setWidth(100, {
7129     duration: 1,
7130     callback: this.foo,
7131     scope: this
7132 });
7133
7134 // using the "anim" property to get the Anim object
7135 var opt = {
7136     duration: 1,
7137     callback: this.foo,
7138     scope: this
7139 };
7140 el.setWidth(100, opt);
7141 ...
7142 if(opt.anim.isAnimated()){
7143     opt.anim.stop();
7144 }
7145 </code></pre>
7146 * <b> Composite (Collections of) Elements</b><br />
7147  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7148  * @constructor Create a new Element directly.
7149  * @param {String/HTMLElement} element
7150  * @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).
7151  */
7152     Roo.Element = function(element, forceNew)
7153     {
7154         var dom = typeof element == "string" ?
7155                 document.getElementById(element) : element;
7156         
7157         this.listeners = {};
7158         
7159         if(!dom){ // invalid id/element
7160             return null;
7161         }
7162         var id = dom.id;
7163         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7164             return Roo.Element.cache[id];
7165         }
7166
7167         /**
7168          * The DOM element
7169          * @type HTMLElement
7170          */
7171         this.dom = dom;
7172
7173         /**
7174          * The DOM element ID
7175          * @type String
7176          */
7177         this.id = id || Roo.id(dom);
7178         
7179         return this; // assumed for cctor?
7180     };
7181
7182     var El = Roo.Element;
7183
7184     El.prototype = {
7185         /**
7186          * The element's default display mode  (defaults to "") 
7187          * @type String
7188          */
7189         originalDisplay : "",
7190
7191         
7192         // note this is overridden in BS version..
7193         visibilityMode : 1, 
7194         /**
7195          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7196          * @type String
7197          */
7198         defaultUnit : "px",
7199         
7200         /**
7201          * Sets the element's visibility mode. When setVisible() is called it
7202          * will use this to determine whether to set the visibility or the display property.
7203          * @param visMode Element.VISIBILITY or Element.DISPLAY
7204          * @return {Roo.Element} this
7205          */
7206         setVisibilityMode : function(visMode){
7207             this.visibilityMode = visMode;
7208             return this;
7209         },
7210         /**
7211          * Convenience method for setVisibilityMode(Element.DISPLAY)
7212          * @param {String} display (optional) What to set display to when visible
7213          * @return {Roo.Element} this
7214          */
7215         enableDisplayMode : function(display){
7216             this.setVisibilityMode(El.DISPLAY);
7217             if(typeof display != "undefined") { this.originalDisplay = display; }
7218             return this;
7219         },
7220
7221         /**
7222          * 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)
7223          * @param {String} selector The simple selector to test
7224          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7225                 search as a number or element (defaults to 10 || document.body)
7226          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7227          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7228          */
7229         findParent : function(simpleSelector, maxDepth, returnEl){
7230             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7231             maxDepth = maxDepth || 50;
7232             if(typeof maxDepth != "number"){
7233                 stopEl = Roo.getDom(maxDepth);
7234                 maxDepth = 10;
7235             }
7236             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7237                 if(dq.is(p, simpleSelector)){
7238                     return returnEl ? Roo.get(p) : p;
7239                 }
7240                 depth++;
7241                 p = p.parentNode;
7242             }
7243             return null;
7244         },
7245
7246
7247         /**
7248          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7249          * @param {String} selector The simple selector to test
7250          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7251                 search as a number or element (defaults to 10 || document.body)
7252          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7253          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7254          */
7255         findParentNode : function(simpleSelector, maxDepth, returnEl){
7256             var p = Roo.fly(this.dom.parentNode, '_internal');
7257             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7258         },
7259         
7260         /**
7261          * Looks at  the scrollable parent element
7262          */
7263         findScrollableParent : function()
7264         {
7265             var overflowRegex = /(auto|scroll)/;
7266             
7267             if(this.getStyle('position') === 'fixed'){
7268                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7269             }
7270             
7271             var excludeStaticParent = this.getStyle('position') === "absolute";
7272             
7273             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7274                 
7275                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7276                     continue;
7277                 }
7278                 
7279                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7280                     return parent;
7281                 }
7282                 
7283                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7284                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7285                 }
7286             }
7287             
7288             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7289         },
7290
7291         /**
7292          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7293          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7294          * @param {String} selector The simple selector to test
7295          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7296                 search as a number or element (defaults to 10 || document.body)
7297          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7298          */
7299         up : function(simpleSelector, maxDepth){
7300             return this.findParentNode(simpleSelector, maxDepth, true);
7301         },
7302
7303
7304
7305         /**
7306          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7307          * @param {String} selector The simple selector to test
7308          * @return {Boolean} True if this element matches the selector, else false
7309          */
7310         is : function(simpleSelector){
7311             return Roo.DomQuery.is(this.dom, simpleSelector);
7312         },
7313
7314         /**
7315          * Perform animation on this element.
7316          * @param {Object} args The YUI animation control args
7317          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7318          * @param {Function} onComplete (optional) Function to call when animation completes
7319          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7320          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7321          * @return {Roo.Element} this
7322          */
7323         animate : function(args, duration, onComplete, easing, animType){
7324             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7325             return this;
7326         },
7327
7328         /*
7329          * @private Internal animation call
7330          */
7331         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7332             animType = animType || 'run';
7333             opt = opt || {};
7334             var anim = Roo.lib.Anim[animType](
7335                 this.dom, args,
7336                 (opt.duration || defaultDur) || .35,
7337                 (opt.easing || defaultEase) || 'easeOut',
7338                 function(){
7339                     Roo.callback(cb, this);
7340                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7341                 },
7342                 this
7343             );
7344             opt.anim = anim;
7345             return anim;
7346         },
7347
7348         // private legacy anim prep
7349         preanim : function(a, i){
7350             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7351         },
7352
7353         /**
7354          * Removes worthless text nodes
7355          * @param {Boolean} forceReclean (optional) By default the element
7356          * keeps track if it has been cleaned already so
7357          * you can call this over and over. However, if you update the element and
7358          * need to force a reclean, you can pass true.
7359          */
7360         clean : function(forceReclean){
7361             if(this.isCleaned && forceReclean !== true){
7362                 return this;
7363             }
7364             var ns = /\S/;
7365             var d = this.dom, n = d.firstChild, ni = -1;
7366             while(n){
7367                 var nx = n.nextSibling;
7368                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7369                     d.removeChild(n);
7370                 }else{
7371                     n.nodeIndex = ++ni;
7372                 }
7373                 n = nx;
7374             }
7375             this.isCleaned = true;
7376             return this;
7377         },
7378
7379         // private
7380         calcOffsetsTo : function(el){
7381             el = Roo.get(el);
7382             var d = el.dom;
7383             var restorePos = false;
7384             if(el.getStyle('position') == 'static'){
7385                 el.position('relative');
7386                 restorePos = true;
7387             }
7388             var x = 0, y =0;
7389             var op = this.dom;
7390             while(op && op != d && op.tagName != 'HTML'){
7391                 x+= op.offsetLeft;
7392                 y+= op.offsetTop;
7393                 op = op.offsetParent;
7394             }
7395             if(restorePos){
7396                 el.position('static');
7397             }
7398             return [x, y];
7399         },
7400
7401         /**
7402          * Scrolls this element into view within the passed container.
7403          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7404          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7405          * @return {Roo.Element} this
7406          */
7407         scrollIntoView : function(container, hscroll){
7408             var c = Roo.getDom(container) || document.body;
7409             var el = this.dom;
7410
7411             var o = this.calcOffsetsTo(c),
7412                 l = o[0],
7413                 t = o[1],
7414                 b = t+el.offsetHeight,
7415                 r = l+el.offsetWidth;
7416
7417             var ch = c.clientHeight;
7418             var ct = parseInt(c.scrollTop, 10);
7419             var cl = parseInt(c.scrollLeft, 10);
7420             var cb = ct + ch;
7421             var cr = cl + c.clientWidth;
7422
7423             if(t < ct){
7424                 c.scrollTop = t;
7425             }else if(b > cb){
7426                 c.scrollTop = b-ch;
7427             }
7428
7429             if(hscroll !== false){
7430                 if(l < cl){
7431                     c.scrollLeft = l;
7432                 }else if(r > cr){
7433                     c.scrollLeft = r-c.clientWidth;
7434                 }
7435             }
7436             return this;
7437         },
7438
7439         // private
7440         scrollChildIntoView : function(child, hscroll){
7441             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7442         },
7443
7444         /**
7445          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7446          * the new height may not be available immediately.
7447          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7448          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7449          * @param {Function} onComplete (optional) Function to call when animation completes
7450          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7451          * @return {Roo.Element} this
7452          */
7453         autoHeight : function(animate, duration, onComplete, easing){
7454             var oldHeight = this.getHeight();
7455             this.clip();
7456             this.setHeight(1); // force clipping
7457             setTimeout(function(){
7458                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7459                 if(!animate){
7460                     this.setHeight(height);
7461                     this.unclip();
7462                     if(typeof onComplete == "function"){
7463                         onComplete();
7464                     }
7465                 }else{
7466                     this.setHeight(oldHeight); // restore original height
7467                     this.setHeight(height, animate, duration, function(){
7468                         this.unclip();
7469                         if(typeof onComplete == "function") { onComplete(); }
7470                     }.createDelegate(this), easing);
7471                 }
7472             }.createDelegate(this), 0);
7473             return this;
7474         },
7475
7476         /**
7477          * Returns true if this element is an ancestor of the passed element
7478          * @param {HTMLElement/String} el The element to check
7479          * @return {Boolean} True if this element is an ancestor of el, else false
7480          */
7481         contains : function(el){
7482             if(!el){return false;}
7483             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7484         },
7485
7486         /**
7487          * Checks whether the element is currently visible using both visibility and display properties.
7488          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7489          * @return {Boolean} True if the element is currently visible, else false
7490          */
7491         isVisible : function(deep) {
7492             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7493             if(deep !== true || !vis){
7494                 return vis;
7495             }
7496             var p = this.dom.parentNode;
7497             while(p && p.tagName.toLowerCase() != "body"){
7498                 if(!Roo.fly(p, '_isVisible').isVisible()){
7499                     return false;
7500                 }
7501                 p = p.parentNode;
7502             }
7503             return true;
7504         },
7505
7506         /**
7507          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7508          * @param {String} selector The CSS selector
7509          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7510          * @return {CompositeElement/CompositeElementLite} The composite element
7511          */
7512         select : function(selector, unique){
7513             return El.select(selector, unique, this.dom);
7514         },
7515
7516         /**
7517          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7518          * @param {String} selector The CSS selector
7519          * @return {Array} An array of the matched nodes
7520          */
7521         query : function(selector, unique){
7522             return Roo.DomQuery.select(selector, this.dom);
7523         },
7524
7525         /**
7526          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7527          * @param {String} selector The CSS selector
7528          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7529          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7530          */
7531         child : function(selector, returnDom){
7532             var n = Roo.DomQuery.selectNode(selector, this.dom);
7533             return returnDom ? n : Roo.get(n);
7534         },
7535
7536         /**
7537          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7538          * @param {String} selector The CSS selector
7539          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7540          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7541          */
7542         down : function(selector, returnDom){
7543             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7544             return returnDom ? n : Roo.get(n);
7545         },
7546
7547         /**
7548          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7549          * @param {String} group The group the DD object is member of
7550          * @param {Object} config The DD config object
7551          * @param {Object} overrides An object containing methods to override/implement on the DD object
7552          * @return {Roo.dd.DD} The DD object
7553          */
7554         initDD : function(group, config, overrides){
7555             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7556             return Roo.apply(dd, overrides);
7557         },
7558
7559         /**
7560          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7561          * @param {String} group The group the DDProxy object is member of
7562          * @param {Object} config The DDProxy config object
7563          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7564          * @return {Roo.dd.DDProxy} The DDProxy object
7565          */
7566         initDDProxy : function(group, config, overrides){
7567             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7568             return Roo.apply(dd, overrides);
7569         },
7570
7571         /**
7572          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7573          * @param {String} group The group the DDTarget object is member of
7574          * @param {Object} config The DDTarget config object
7575          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7576          * @return {Roo.dd.DDTarget} The DDTarget object
7577          */
7578         initDDTarget : function(group, config, overrides){
7579             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7580             return Roo.apply(dd, overrides);
7581         },
7582
7583         /**
7584          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7585          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7586          * @param {Boolean} visible Whether the element is visible
7587          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7588          * @return {Roo.Element} this
7589          */
7590          setVisible : function(visible, animate){
7591             if(!animate || !A){
7592                 if(this.visibilityMode == El.DISPLAY){
7593                     this.setDisplayed(visible);
7594                 }else{
7595                     this.fixDisplay();
7596                     this.dom.style.visibility = visible ? "visible" : "hidden";
7597                 }
7598             }else{
7599                 // closure for composites
7600                 var dom = this.dom;
7601                 var visMode = this.visibilityMode;
7602                 if(visible){
7603                     this.setOpacity(.01);
7604                     this.setVisible(true);
7605                 }
7606                 this.anim({opacity: { to: (visible?1:0) }},
7607                       this.preanim(arguments, 1),
7608                       null, .35, 'easeIn', function(){
7609                          if(!visible){
7610                              if(visMode == El.DISPLAY){
7611                                  dom.style.display = "none";
7612                              }else{
7613                                  dom.style.visibility = "hidden";
7614                              }
7615                              Roo.get(dom).setOpacity(1);
7616                          }
7617                      });
7618             }
7619             return this;
7620         },
7621
7622         /**
7623          * Returns true if display is not "none"
7624          * @return {Boolean}
7625          */
7626         isDisplayed : function() {
7627             return this.getStyle("display") != "none";
7628         },
7629
7630         /**
7631          * Toggles the element's visibility or display, depending on visibility mode.
7632          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7633          * @return {Roo.Element} this
7634          */
7635         toggle : function(animate){
7636             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7637             return this;
7638         },
7639
7640         /**
7641          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7642          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7643          * @return {Roo.Element} this
7644          */
7645         setDisplayed : function(value) {
7646             if(typeof value == "boolean"){
7647                value = value ? this.originalDisplay : "none";
7648             }
7649             this.setStyle("display", value);
7650             return this;
7651         },
7652
7653         /**
7654          * Tries to focus the element. Any exceptions are caught and ignored.
7655          * @return {Roo.Element} this
7656          */
7657         focus : function() {
7658             try{
7659                 this.dom.focus();
7660             }catch(e){}
7661             return this;
7662         },
7663
7664         /**
7665          * Tries to blur the element. Any exceptions are caught and ignored.
7666          * @return {Roo.Element} this
7667          */
7668         blur : function() {
7669             try{
7670                 this.dom.blur();
7671             }catch(e){}
7672             return this;
7673         },
7674
7675         /**
7676          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7677          * @param {String/Array} className The CSS class to add, or an array of classes
7678          * @return {Roo.Element} this
7679          */
7680         addClass : function(className){
7681             if(className instanceof Array){
7682                 for(var i = 0, len = className.length; i < len; i++) {
7683                     this.addClass(className[i]);
7684                 }
7685             }else{
7686                 if(className && !this.hasClass(className)){
7687                     if (this.dom instanceof SVGElement) {
7688                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
7689                     } else {
7690                         this.dom.className = this.dom.className + " " + className;
7691                     }
7692                 }
7693             }
7694             return this;
7695         },
7696
7697         /**
7698          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7699          * @param {String/Array} className The CSS class to add, or an array of classes
7700          * @return {Roo.Element} this
7701          */
7702         radioClass : function(className){
7703             var siblings = this.dom.parentNode.childNodes;
7704             for(var i = 0; i < siblings.length; i++) {
7705                 var s = siblings[i];
7706                 if(s.nodeType == 1){
7707                     Roo.get(s).removeClass(className);
7708                 }
7709             }
7710             this.addClass(className);
7711             return this;
7712         },
7713
7714         /**
7715          * Removes one or more CSS classes from the element.
7716          * @param {String/Array} className The CSS class to remove, or an array of classes
7717          * @return {Roo.Element} this
7718          */
7719         removeClass : function(className){
7720             
7721             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
7722             if(!className || !cn){
7723                 return this;
7724             }
7725             if(className instanceof Array){
7726                 for(var i = 0, len = className.length; i < len; i++) {
7727                     this.removeClass(className[i]);
7728                 }
7729             }else{
7730                 if(this.hasClass(className)){
7731                     var re = this.classReCache[className];
7732                     if (!re) {
7733                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7734                        this.classReCache[className] = re;
7735                     }
7736                     if (this.dom instanceof SVGElement) {
7737                         this.dom.className.baseVal = cn.replace(re, " ");
7738                     } else {
7739                         this.dom.className = cn.replace(re, " ");
7740                     }
7741                 }
7742             }
7743             return this;
7744         },
7745
7746         // private
7747         classReCache: {},
7748
7749         /**
7750          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7751          * @param {String} className The CSS class to toggle
7752          * @return {Roo.Element} this
7753          */
7754         toggleClass : function(className){
7755             if(this.hasClass(className)){
7756                 this.removeClass(className);
7757             }else{
7758                 this.addClass(className);
7759             }
7760             return this;
7761         },
7762
7763         /**
7764          * Checks if the specified CSS class exists on this element's DOM node.
7765          * @param {String} className The CSS class to check for
7766          * @return {Boolean} True if the class exists, else false
7767          */
7768         hasClass : function(className){
7769             if (this.dom instanceof SVGElement) {
7770                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
7771             } 
7772             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7773         },
7774
7775         /**
7776          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7777          * @param {String} oldClassName The CSS class to replace
7778          * @param {String} newClassName The replacement CSS class
7779          * @return {Roo.Element} this
7780          */
7781         replaceClass : function(oldClassName, newClassName){
7782             this.removeClass(oldClassName);
7783             this.addClass(newClassName);
7784             return this;
7785         },
7786
7787         /**
7788          * Returns an object with properties matching the styles requested.
7789          * For example, el.getStyles('color', 'font-size', 'width') might return
7790          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7791          * @param {String} style1 A style name
7792          * @param {String} style2 A style name
7793          * @param {String} etc.
7794          * @return {Object} The style object
7795          */
7796         getStyles : function(){
7797             var a = arguments, len = a.length, r = {};
7798             for(var i = 0; i < len; i++){
7799                 r[a[i]] = this.getStyle(a[i]);
7800             }
7801             return r;
7802         },
7803
7804         /**
7805          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7806          * @param {String} property The style property whose value is returned.
7807          * @return {String} The current value of the style property for this element.
7808          */
7809         getStyle : function(){
7810             return view && view.getComputedStyle ?
7811                 function(prop){
7812                     var el = this.dom, v, cs, camel;
7813                     if(prop == 'float'){
7814                         prop = "cssFloat";
7815                     }
7816                     if(el.style && (v = el.style[prop])){
7817                         return v;
7818                     }
7819                     if(cs = view.getComputedStyle(el, "")){
7820                         if(!(camel = propCache[prop])){
7821                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7822                         }
7823                         return cs[camel];
7824                     }
7825                     return null;
7826                 } :
7827                 function(prop){
7828                     var el = this.dom, v, cs, camel;
7829                     if(prop == 'opacity'){
7830                         if(typeof el.style.filter == 'string'){
7831                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7832                             if(m){
7833                                 var fv = parseFloat(m[1]);
7834                                 if(!isNaN(fv)){
7835                                     return fv ? fv / 100 : 0;
7836                                 }
7837                             }
7838                         }
7839                         return 1;
7840                     }else if(prop == 'float'){
7841                         prop = "styleFloat";
7842                     }
7843                     if(!(camel = propCache[prop])){
7844                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7845                     }
7846                     if(v = el.style[camel]){
7847                         return v;
7848                     }
7849                     if(cs = el.currentStyle){
7850                         return cs[camel];
7851                     }
7852                     return null;
7853                 };
7854         }(),
7855
7856         /**
7857          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7858          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7859          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7860          * @return {Roo.Element} this
7861          */
7862         setStyle : function(prop, value){
7863             if(typeof prop == "string"){
7864                 
7865                 if (prop == 'float') {
7866                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7867                     return this;
7868                 }
7869                 
7870                 var camel;
7871                 if(!(camel = propCache[prop])){
7872                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7873                 }
7874                 
7875                 if(camel == 'opacity') {
7876                     this.setOpacity(value);
7877                 }else{
7878                     this.dom.style[camel] = value;
7879                 }
7880             }else{
7881                 for(var style in prop){
7882                     if(typeof prop[style] != "function"){
7883                        this.setStyle(style, prop[style]);
7884                     }
7885                 }
7886             }
7887             return this;
7888         },
7889
7890         /**
7891          * More flexible version of {@link #setStyle} for setting style properties.
7892          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7893          * a function which returns such a specification.
7894          * @return {Roo.Element} this
7895          */
7896         applyStyles : function(style){
7897             Roo.DomHelper.applyStyles(this.dom, style);
7898             return this;
7899         },
7900
7901         /**
7902           * 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).
7903           * @return {Number} The X position of the element
7904           */
7905         getX : function(){
7906             return D.getX(this.dom);
7907         },
7908
7909         /**
7910           * 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).
7911           * @return {Number} The Y position of the element
7912           */
7913         getY : function(){
7914             return D.getY(this.dom);
7915         },
7916
7917         /**
7918           * 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).
7919           * @return {Array} The XY position of the element
7920           */
7921         getXY : function(){
7922             return D.getXY(this.dom);
7923         },
7924
7925         /**
7926          * 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).
7927          * @param {Number} The X position of the element
7928          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7929          * @return {Roo.Element} this
7930          */
7931         setX : function(x, animate){
7932             if(!animate || !A){
7933                 D.setX(this.dom, x);
7934             }else{
7935                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7936             }
7937             return this;
7938         },
7939
7940         /**
7941          * 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).
7942          * @param {Number} The Y position of the element
7943          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7944          * @return {Roo.Element} this
7945          */
7946         setY : function(y, animate){
7947             if(!animate || !A){
7948                 D.setY(this.dom, y);
7949             }else{
7950                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7951             }
7952             return this;
7953         },
7954
7955         /**
7956          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7957          * @param {String} left The left CSS property value
7958          * @return {Roo.Element} this
7959          */
7960         setLeft : function(left){
7961             this.setStyle("left", this.addUnits(left));
7962             return this;
7963         },
7964
7965         /**
7966          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7967          * @param {String} top The top CSS property value
7968          * @return {Roo.Element} this
7969          */
7970         setTop : function(top){
7971             this.setStyle("top", this.addUnits(top));
7972             return this;
7973         },
7974
7975         /**
7976          * Sets the element's CSS right style.
7977          * @param {String} right The right CSS property value
7978          * @return {Roo.Element} this
7979          */
7980         setRight : function(right){
7981             this.setStyle("right", this.addUnits(right));
7982             return this;
7983         },
7984
7985         /**
7986          * Sets the element's CSS bottom style.
7987          * @param {String} bottom The bottom CSS property value
7988          * @return {Roo.Element} this
7989          */
7990         setBottom : function(bottom){
7991             this.setStyle("bottom", this.addUnits(bottom));
7992             return this;
7993         },
7994
7995         /**
7996          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7997          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7998          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7999          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8000          * @return {Roo.Element} this
8001          */
8002         setXY : function(pos, animate){
8003             if(!animate || !A){
8004                 D.setXY(this.dom, pos);
8005             }else{
8006                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
8007             }
8008             return this;
8009         },
8010
8011         /**
8012          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8013          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8014          * @param {Number} x X value for new position (coordinates are page-based)
8015          * @param {Number} y Y value for new position (coordinates are page-based)
8016          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8017          * @return {Roo.Element} this
8018          */
8019         setLocation : function(x, y, animate){
8020             this.setXY([x, y], this.preanim(arguments, 2));
8021             return this;
8022         },
8023
8024         /**
8025          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8026          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8027          * @param {Number} x X value for new position (coordinates are page-based)
8028          * @param {Number} y Y value for new position (coordinates are page-based)
8029          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8030          * @return {Roo.Element} this
8031          */
8032         moveTo : function(x, y, animate){
8033             this.setXY([x, y], this.preanim(arguments, 2));
8034             return this;
8035         },
8036
8037         /**
8038          * Returns the region of the given element.
8039          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8040          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8041          */
8042         getRegion : function(){
8043             return D.getRegion(this.dom);
8044         },
8045
8046         /**
8047          * Returns the offset height of the element
8048          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8049          * @return {Number} The element's height
8050          */
8051         getHeight : function(contentHeight){
8052             var h = this.dom.offsetHeight || 0;
8053             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8054         },
8055
8056         /**
8057          * Returns the offset width of the element
8058          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8059          * @return {Number} The element's width
8060          */
8061         getWidth : function(contentWidth){
8062             var w = this.dom.offsetWidth || 0;
8063             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8064         },
8065
8066         /**
8067          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8068          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8069          * if a height has not been set using CSS.
8070          * @return {Number}
8071          */
8072         getComputedHeight : function(){
8073             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8074             if(!h){
8075                 h = parseInt(this.getStyle('height'), 10) || 0;
8076                 if(!this.isBorderBox()){
8077                     h += this.getFrameWidth('tb');
8078                 }
8079             }
8080             return h;
8081         },
8082
8083         /**
8084          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8085          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8086          * if a width has not been set using CSS.
8087          * @return {Number}
8088          */
8089         getComputedWidth : function(){
8090             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8091             if(!w){
8092                 w = parseInt(this.getStyle('width'), 10) || 0;
8093                 if(!this.isBorderBox()){
8094                     w += this.getFrameWidth('lr');
8095                 }
8096             }
8097             return w;
8098         },
8099
8100         /**
8101          * Returns the size of the element.
8102          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8103          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8104          */
8105         getSize : function(contentSize){
8106             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8107         },
8108
8109         /**
8110          * Returns the width and height of the viewport.
8111          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8112          */
8113         getViewSize : function(){
8114             var d = this.dom, doc = document, aw = 0, ah = 0;
8115             if(d == doc || d == doc.body){
8116                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8117             }else{
8118                 return {
8119                     width : d.clientWidth,
8120                     height: d.clientHeight
8121                 };
8122             }
8123         },
8124
8125         /**
8126          * Returns the value of the "value" attribute
8127          * @param {Boolean} asNumber true to parse the value as a number
8128          * @return {String/Number}
8129          */
8130         getValue : function(asNumber){
8131             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8132         },
8133
8134         // private
8135         adjustWidth : function(width){
8136             if(typeof width == "number"){
8137                 if(this.autoBoxAdjust && !this.isBorderBox()){
8138                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8139                 }
8140                 if(width < 0){
8141                     width = 0;
8142                 }
8143             }
8144             return width;
8145         },
8146
8147         // private
8148         adjustHeight : function(height){
8149             if(typeof height == "number"){
8150                if(this.autoBoxAdjust && !this.isBorderBox()){
8151                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8152                }
8153                if(height < 0){
8154                    height = 0;
8155                }
8156             }
8157             return height;
8158         },
8159
8160         /**
8161          * Set the width of the element
8162          * @param {Number} width The new width
8163          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8164          * @return {Roo.Element} this
8165          */
8166         setWidth : function(width, animate){
8167             width = this.adjustWidth(width);
8168             if(!animate || !A){
8169                 this.dom.style.width = this.addUnits(width);
8170             }else{
8171                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8172             }
8173             return this;
8174         },
8175
8176         /**
8177          * Set the height of the element
8178          * @param {Number} height The new height
8179          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8180          * @return {Roo.Element} this
8181          */
8182          setHeight : function(height, animate){
8183             height = this.adjustHeight(height);
8184             if(!animate || !A){
8185                 this.dom.style.height = this.addUnits(height);
8186             }else{
8187                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8188             }
8189             return this;
8190         },
8191
8192         /**
8193          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8194          * @param {Number} width The new width
8195          * @param {Number} height The new height
8196          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8197          * @return {Roo.Element} this
8198          */
8199          setSize : function(width, height, animate){
8200             if(typeof width == "object"){ // in case of object from getSize()
8201                 height = width.height; width = width.width;
8202             }
8203             width = this.adjustWidth(width); height = this.adjustHeight(height);
8204             if(!animate || !A){
8205                 this.dom.style.width = this.addUnits(width);
8206                 this.dom.style.height = this.addUnits(height);
8207             }else{
8208                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8209             }
8210             return this;
8211         },
8212
8213         /**
8214          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8215          * @param {Number} x X value for new position (coordinates are page-based)
8216          * @param {Number} y Y value for new position (coordinates are page-based)
8217          * @param {Number} width The new width
8218          * @param {Number} height The new height
8219          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8220          * @return {Roo.Element} this
8221          */
8222         setBounds : function(x, y, width, height, animate){
8223             if(!animate || !A){
8224                 this.setSize(width, height);
8225                 this.setLocation(x, y);
8226             }else{
8227                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8228                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8229                               this.preanim(arguments, 4), 'motion');
8230             }
8231             return this;
8232         },
8233
8234         /**
8235          * 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.
8236          * @param {Roo.lib.Region} region The region to fill
8237          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8238          * @return {Roo.Element} this
8239          */
8240         setRegion : function(region, animate){
8241             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8242             return this;
8243         },
8244
8245         /**
8246          * Appends an event handler
8247          *
8248          * @param {String}   eventName     The type of event to append
8249          * @param {Function} fn        The method the event invokes
8250          * @param {Object} scope       (optional) The scope (this object) of the fn
8251          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8252          */
8253         addListener : function(eventName, fn, scope, options)
8254         {
8255             if (eventName == 'dblclick') { // doublclick (touchstart) - faked on touch.
8256                 this.addListener('touchstart', this.onTapHandler, this);
8257             }
8258             
8259             // we need to handle a special case where dom element is a svg element.
8260             // in this case we do not actua
8261             if (!this.dom) {
8262                 return;
8263             }
8264             
8265             if (this.dom instanceof SVGElement && !(this.dom instanceof SVGSVGElement)) {
8266                 if (typeof(this.listeners[eventName]) == 'undefined') {
8267                     this.listeners[eventName] =  new Roo.util.Event(this, eventName);
8268                 }
8269                 this.listeners[eventName].addListener(fn, scope, options);
8270                 return;
8271             }
8272             
8273                 
8274             Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8275             
8276             
8277         },
8278         tapedTwice : false,
8279         onTapHandler : function(event)
8280         {
8281             if(!this.tapedTwice) {
8282                 this.tapedTwice = true;
8283                 var s = this;
8284                 setTimeout( function() {
8285                     s.tapedTwice = false;
8286                 }, 300 );
8287                 return;
8288             }
8289             event.preventDefault();
8290             var revent = new MouseEvent('dblclick',  {
8291                 view: window,
8292                 bubbles: true,
8293                 cancelable: true
8294             });
8295              
8296             this.dom.dispatchEvent(revent);
8297             //action on double tap goes below
8298              
8299         }, 
8300
8301         /**
8302          * Removes an event handler from this element
8303          * @param {String} eventName the type of event to remove
8304          * @param {Function} fn the method the event invokes
8305          * @param {Function} scope (needed for svg fake listeners)
8306          * @return {Roo.Element} this
8307          */
8308         removeListener : function(eventName, fn, scope){
8309             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8310             if (typeof(this.listeners) == 'undefined'  || typeof(this.listeners[eventName]) == 'undefined') {
8311                 return this;
8312             }
8313             this.listeners[eventName].removeListener(fn, scope);
8314             return this;
8315         },
8316
8317         /**
8318          * Removes all previous added listeners from this element
8319          * @return {Roo.Element} this
8320          */
8321         removeAllListeners : function(){
8322             E.purgeElement(this.dom);
8323             this.listeners = {};
8324             return this;
8325         },
8326
8327         relayEvent : function(eventName, observable){
8328             this.on(eventName, function(e){
8329                 observable.fireEvent(eventName, e);
8330             });
8331         },
8332
8333         
8334         /**
8335          * Set the opacity of the element
8336          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8337          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8338          * @return {Roo.Element} this
8339          */
8340          setOpacity : function(opacity, animate){
8341             if(!animate || !A){
8342                 var s = this.dom.style;
8343                 if(Roo.isIE){
8344                     s.zoom = 1;
8345                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8346                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8347                 }else{
8348                     s.opacity = opacity;
8349                 }
8350             }else{
8351                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8352             }
8353             return this;
8354         },
8355
8356         /**
8357          * Gets the left X coordinate
8358          * @param {Boolean} local True to get the local css position instead of page coordinate
8359          * @return {Number}
8360          */
8361         getLeft : function(local){
8362             if(!local){
8363                 return this.getX();
8364             }else{
8365                 return parseInt(this.getStyle("left"), 10) || 0;
8366             }
8367         },
8368
8369         /**
8370          * Gets the right X coordinate of the element (element X position + element width)
8371          * @param {Boolean} local True to get the local css position instead of page coordinate
8372          * @return {Number}
8373          */
8374         getRight : function(local){
8375             if(!local){
8376                 return this.getX() + this.getWidth();
8377             }else{
8378                 return (this.getLeft(true) + this.getWidth()) || 0;
8379             }
8380         },
8381
8382         /**
8383          * Gets the top Y coordinate
8384          * @param {Boolean} local True to get the local css position instead of page coordinate
8385          * @return {Number}
8386          */
8387         getTop : function(local) {
8388             if(!local){
8389                 return this.getY();
8390             }else{
8391                 return parseInt(this.getStyle("top"), 10) || 0;
8392             }
8393         },
8394
8395         /**
8396          * Gets the bottom Y coordinate of the element (element Y position + element height)
8397          * @param {Boolean} local True to get the local css position instead of page coordinate
8398          * @return {Number}
8399          */
8400         getBottom : function(local){
8401             if(!local){
8402                 return this.getY() + this.getHeight();
8403             }else{
8404                 return (this.getTop(true) + this.getHeight()) || 0;
8405             }
8406         },
8407
8408         /**
8409         * Initializes positioning on this element. If a desired position is not passed, it will make the
8410         * the element positioned relative IF it is not already positioned.
8411         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8412         * @param {Number} zIndex (optional) The zIndex to apply
8413         * @param {Number} x (optional) Set the page X position
8414         * @param {Number} y (optional) Set the page Y position
8415         */
8416         position : function(pos, zIndex, x, y){
8417             if(!pos){
8418                if(this.getStyle('position') == 'static'){
8419                    this.setStyle('position', 'relative');
8420                }
8421             }else{
8422                 this.setStyle("position", pos);
8423             }
8424             if(zIndex){
8425                 this.setStyle("z-index", zIndex);
8426             }
8427             if(x !== undefined && y !== undefined){
8428                 this.setXY([x, y]);
8429             }else if(x !== undefined){
8430                 this.setX(x);
8431             }else if(y !== undefined){
8432                 this.setY(y);
8433             }
8434         },
8435
8436         /**
8437         * Clear positioning back to the default when the document was loaded
8438         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8439         * @return {Roo.Element} this
8440          */
8441         clearPositioning : function(value){
8442             value = value ||'';
8443             this.setStyle({
8444                 "left": value,
8445                 "right": value,
8446                 "top": value,
8447                 "bottom": value,
8448                 "z-index": "",
8449                 "position" : "static"
8450             });
8451             return this;
8452         },
8453
8454         /**
8455         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8456         * snapshot before performing an update and then restoring the element.
8457         * @return {Object}
8458         */
8459         getPositioning : function(){
8460             var l = this.getStyle("left");
8461             var t = this.getStyle("top");
8462             return {
8463                 "position" : this.getStyle("position"),
8464                 "left" : l,
8465                 "right" : l ? "" : this.getStyle("right"),
8466                 "top" : t,
8467                 "bottom" : t ? "" : this.getStyle("bottom"),
8468                 "z-index" : this.getStyle("z-index")
8469             };
8470         },
8471
8472         /**
8473          * Gets the width of the border(s) for the specified side(s)
8474          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8475          * passing lr would get the border (l)eft width + the border (r)ight width.
8476          * @return {Number} The width of the sides passed added together
8477          */
8478         getBorderWidth : function(side){
8479             return this.addStyles(side, El.borders);
8480         },
8481
8482         /**
8483          * Gets the width of the padding(s) for the specified side(s)
8484          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8485          * passing lr would get the padding (l)eft + the padding (r)ight.
8486          * @return {Number} The padding of the sides passed added together
8487          */
8488         getPadding : function(side){
8489             return this.addStyles(side, El.paddings);
8490         },
8491
8492         /**
8493         * Set positioning with an object returned by getPositioning().
8494         * @param {Object} posCfg
8495         * @return {Roo.Element} this
8496          */
8497         setPositioning : function(pc){
8498             this.applyStyles(pc);
8499             if(pc.right == "auto"){
8500                 this.dom.style.right = "";
8501             }
8502             if(pc.bottom == "auto"){
8503                 this.dom.style.bottom = "";
8504             }
8505             return this;
8506         },
8507
8508         // private
8509         fixDisplay : function(){
8510             if(this.getStyle("display") == "none"){
8511                 this.setStyle("visibility", "hidden");
8512                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8513                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8514                     this.setStyle("display", "block");
8515                 }
8516             }
8517         },
8518
8519         /**
8520          * Quick set left and top adding default units
8521          * @param {String} left The left CSS property value
8522          * @param {String} top The top CSS property value
8523          * @return {Roo.Element} this
8524          */
8525          setLeftTop : function(left, top){
8526             this.dom.style.left = this.addUnits(left);
8527             this.dom.style.top = this.addUnits(top);
8528             return this;
8529         },
8530
8531         /**
8532          * Move this element relative to its current position.
8533          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8534          * @param {Number} distance How far to move the element in pixels
8535          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8536          * @return {Roo.Element} this
8537          */
8538          move : function(direction, distance, animate){
8539             var xy = this.getXY();
8540             direction = direction.toLowerCase();
8541             switch(direction){
8542                 case "l":
8543                 case "left":
8544                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8545                     break;
8546                case "r":
8547                case "right":
8548                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8549                     break;
8550                case "t":
8551                case "top":
8552                case "up":
8553                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8554                     break;
8555                case "b":
8556                case "bottom":
8557                case "down":
8558                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8559                     break;
8560             }
8561             return this;
8562         },
8563
8564         /**
8565          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8566          * @return {Roo.Element} this
8567          */
8568         clip : function(){
8569             if(!this.isClipped){
8570                this.isClipped = true;
8571                this.originalClip = {
8572                    "o": this.getStyle("overflow"),
8573                    "x": this.getStyle("overflow-x"),
8574                    "y": this.getStyle("overflow-y")
8575                };
8576                this.setStyle("overflow", "hidden");
8577                this.setStyle("overflow-x", "hidden");
8578                this.setStyle("overflow-y", "hidden");
8579             }
8580             return this;
8581         },
8582
8583         /**
8584          *  Return clipping (overflow) to original clipping before clip() was called
8585          * @return {Roo.Element} this
8586          */
8587         unclip : function(){
8588             if(this.isClipped){
8589                 this.isClipped = false;
8590                 var o = this.originalClip;
8591                 if(o.o){this.setStyle("overflow", o.o);}
8592                 if(o.x){this.setStyle("overflow-x", o.x);}
8593                 if(o.y){this.setStyle("overflow-y", o.y);}
8594             }
8595             return this;
8596         },
8597
8598
8599         /**
8600          * Gets the x,y coordinates specified by the anchor position on the element.
8601          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8602          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8603          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8604          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8605          * @return {Array} [x, y] An array containing the element's x and y coordinates
8606          */
8607         getAnchorXY : function(anchor, local, s){
8608             //Passing a different size is useful for pre-calculating anchors,
8609             //especially for anchored animations that change the el size.
8610
8611             var w, h, vp = false;
8612             if(!s){
8613                 var d = this.dom;
8614                 if(d == document.body || d == document){
8615                     vp = true;
8616                     w = D.getViewWidth(); h = D.getViewHeight();
8617                 }else{
8618                     w = this.getWidth(); h = this.getHeight();
8619                 }
8620             }else{
8621                 w = s.width;  h = s.height;
8622             }
8623             var x = 0, y = 0, r = Math.round;
8624             switch((anchor || "tl").toLowerCase()){
8625                 case "c":
8626                     x = r(w*.5);
8627                     y = r(h*.5);
8628                 break;
8629                 case "t":
8630                     x = r(w*.5);
8631                     y = 0;
8632                 break;
8633                 case "l":
8634                     x = 0;
8635                     y = r(h*.5);
8636                 break;
8637                 case "r":
8638                     x = w;
8639                     y = r(h*.5);
8640                 break;
8641                 case "b":
8642                     x = r(w*.5);
8643                     y = h;
8644                 break;
8645                 case "tl":
8646                     x = 0;
8647                     y = 0;
8648                 break;
8649                 case "bl":
8650                     x = 0;
8651                     y = h;
8652                 break;
8653                 case "br":
8654                     x = w;
8655                     y = h;
8656                 break;
8657                 case "tr":
8658                     x = w;
8659                     y = 0;
8660                 break;
8661             }
8662             if(local === true){
8663                 return [x, y];
8664             }
8665             if(vp){
8666                 var sc = this.getScroll();
8667                 return [x + sc.left, y + sc.top];
8668             }
8669             //Add the element's offset xy
8670             var o = this.getXY();
8671             return [x+o[0], y+o[1]];
8672         },
8673
8674         /**
8675          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8676          * supported position values.
8677          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8678          * @param {String} position The position to align to.
8679          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8680          * @return {Array} [x, y]
8681          */
8682         getAlignToXY : function(el, p, o)
8683         {
8684             el = Roo.get(el);
8685             var d = this.dom;
8686             if(!el.dom){
8687                 throw "Element.alignTo with an element that doesn't exist";
8688             }
8689             var c = false; //constrain to viewport
8690             var p1 = "", p2 = "";
8691             o = o || [0,0];
8692
8693             if(!p){
8694                 p = "tl-bl";
8695             }else if(p == "?"){
8696                 p = "tl-bl?";
8697             }else if(p.indexOf("-") == -1){
8698                 p = "tl-" + p;
8699             }
8700             p = p.toLowerCase();
8701             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8702             if(!m){
8703                throw "Element.alignTo with an invalid alignment " + p;
8704             }
8705             p1 = m[1]; p2 = m[2]; c = !!m[3];
8706
8707             //Subtract the aligned el's internal xy from the target's offset xy
8708             //plus custom offset to get the aligned el's new offset xy
8709             var a1 = this.getAnchorXY(p1, true);
8710             var a2 = el.getAnchorXY(p2, false);
8711             var x = a2[0] - a1[0] + o[0];
8712             var y = a2[1] - a1[1] + o[1];
8713             if(c){
8714                 //constrain the aligned el to viewport if necessary
8715                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8716                 // 5px of margin for ie
8717                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8718
8719                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8720                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8721                 //otherwise swap the aligned el to the opposite border of the target.
8722                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8723                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8724                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8725                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8726
8727                var doc = document;
8728                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8729                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8730
8731                if((x+w) > dw + scrollX){
8732                     x = swapX ? r.left-w : dw+scrollX-w;
8733                 }
8734                if(x < scrollX){
8735                    x = swapX ? r.right : scrollX;
8736                }
8737                if((y+h) > dh + scrollY){
8738                     y = swapY ? r.top-h : dh+scrollY-h;
8739                 }
8740                if (y < scrollY){
8741                    y = swapY ? r.bottom : scrollY;
8742                }
8743             }
8744             return [x,y];
8745         },
8746
8747         // private
8748         getConstrainToXY : function(){
8749             var os = {top:0, left:0, bottom:0, right: 0};
8750
8751             return function(el, local, offsets, proposedXY){
8752                 el = Roo.get(el);
8753                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8754
8755                 var vw, vh, vx = 0, vy = 0;
8756                 if(el.dom == document.body || el.dom == document){
8757                     vw = Roo.lib.Dom.getViewWidth();
8758                     vh = Roo.lib.Dom.getViewHeight();
8759                 }else{
8760                     vw = el.dom.clientWidth;
8761                     vh = el.dom.clientHeight;
8762                     if(!local){
8763                         var vxy = el.getXY();
8764                         vx = vxy[0];
8765                         vy = vxy[1];
8766                     }
8767                 }
8768
8769                 var s = el.getScroll();
8770
8771                 vx += offsets.left + s.left;
8772                 vy += offsets.top + s.top;
8773
8774                 vw -= offsets.right;
8775                 vh -= offsets.bottom;
8776
8777                 var vr = vx+vw;
8778                 var vb = vy+vh;
8779
8780                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8781                 var x = xy[0], y = xy[1];
8782                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8783
8784                 // only move it if it needs it
8785                 var moved = false;
8786
8787                 // first validate right/bottom
8788                 if((x + w) > vr){
8789                     x = vr - w;
8790                     moved = true;
8791                 }
8792                 if((y + h) > vb){
8793                     y = vb - h;
8794                     moved = true;
8795                 }
8796                 // then make sure top/left isn't negative
8797                 if(x < vx){
8798                     x = vx;
8799                     moved = true;
8800                 }
8801                 if(y < vy){
8802                     y = vy;
8803                     moved = true;
8804                 }
8805                 return moved ? [x, y] : false;
8806             };
8807         }(),
8808
8809         // private
8810         adjustForConstraints : function(xy, parent, offsets){
8811             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8812         },
8813
8814         /**
8815          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8816          * document it aligns it to the viewport.
8817          * The position parameter is optional, and can be specified in any one of the following formats:
8818          * <ul>
8819          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8820          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8821          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8822          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8823          *   <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
8824          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8825          * </ul>
8826          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8827          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8828          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8829          * that specified in order to enforce the viewport constraints.
8830          * Following are all of the supported anchor positions:
8831     <pre>
8832     Value  Description
8833     -----  -----------------------------
8834     tl     The top left corner (default)
8835     t      The center of the top edge
8836     tr     The top right corner
8837     l      The center of the left edge
8838     c      In the center of the element
8839     r      The center of the right edge
8840     bl     The bottom left corner
8841     b      The center of the bottom edge
8842     br     The bottom right corner
8843     </pre>
8844     Example Usage:
8845     <pre><code>
8846     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8847     el.alignTo("other-el");
8848
8849     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8850     el.alignTo("other-el", "tr?");
8851
8852     // align the bottom right corner of el with the center left edge of other-el
8853     el.alignTo("other-el", "br-l?");
8854
8855     // align the center of el with the bottom left corner of other-el and
8856     // adjust the x position by -6 pixels (and the y position by 0)
8857     el.alignTo("other-el", "c-bl", [-6, 0]);
8858     </code></pre>
8859          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8860          * @param {String} position The position to align to.
8861          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8862          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8863          * @return {Roo.Element} this
8864          */
8865         alignTo : function(element, position, offsets, animate){
8866             var xy = this.getAlignToXY(element, position, offsets);
8867             this.setXY(xy, this.preanim(arguments, 3));
8868             return this;
8869         },
8870
8871         /**
8872          * Anchors an element to another element and realigns it when the window is resized.
8873          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8874          * @param {String} position The position to align to.
8875          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8876          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8877          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8878          * is a number, it is used as the buffer delay (defaults to 50ms).
8879          * @param {Function} callback The function to call after the animation finishes
8880          * @return {Roo.Element} this
8881          */
8882         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8883             var action = function(){
8884                 this.alignTo(el, alignment, offsets, animate);
8885                 Roo.callback(callback, this);
8886             };
8887             Roo.EventManager.onWindowResize(action, this);
8888             var tm = typeof monitorScroll;
8889             if(tm != 'undefined'){
8890                 Roo.EventManager.on(window, 'scroll', action, this,
8891                     {buffer: tm == 'number' ? monitorScroll : 50});
8892             }
8893             action.call(this); // align immediately
8894             return this;
8895         },
8896         /**
8897          * Clears any opacity settings from this element. Required in some cases for IE.
8898          * @return {Roo.Element} this
8899          */
8900         clearOpacity : function(){
8901             if (window.ActiveXObject) {
8902                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8903                     this.dom.style.filter = "";
8904                 }
8905             } else {
8906                 this.dom.style.opacity = "";
8907                 this.dom.style["-moz-opacity"] = "";
8908                 this.dom.style["-khtml-opacity"] = "";
8909             }
8910             return this;
8911         },
8912
8913         /**
8914          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8915          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8916          * @return {Roo.Element} this
8917          */
8918         hide : function(animate){
8919             this.setVisible(false, this.preanim(arguments, 0));
8920             return this;
8921         },
8922
8923         /**
8924         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8925         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8926          * @return {Roo.Element} this
8927          */
8928         show : function(animate){
8929             this.setVisible(true, this.preanim(arguments, 0));
8930             return this;
8931         },
8932
8933         /**
8934          * @private Test if size has a unit, otherwise appends the default
8935          */
8936         addUnits : function(size){
8937             return Roo.Element.addUnits(size, this.defaultUnit);
8938         },
8939
8940         /**
8941          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8942          * @return {Roo.Element} this
8943          */
8944         beginMeasure : function(){
8945             var el = this.dom;
8946             if(el.offsetWidth || el.offsetHeight){
8947                 return this; // offsets work already
8948             }
8949             var changed = [];
8950             var p = this.dom, b = document.body; // start with this element
8951             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8952                 var pe = Roo.get(p);
8953                 if(pe.getStyle('display') == 'none'){
8954                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8955                     p.style.visibility = "hidden";
8956                     p.style.display = "block";
8957                 }
8958                 p = p.parentNode;
8959             }
8960             this._measureChanged = changed;
8961             return this;
8962
8963         },
8964
8965         /**
8966          * Restores displays to before beginMeasure was called
8967          * @return {Roo.Element} this
8968          */
8969         endMeasure : function(){
8970             var changed = this._measureChanged;
8971             if(changed){
8972                 for(var i = 0, len = changed.length; i < len; i++) {
8973                     var r = changed[i];
8974                     r.el.style.visibility = r.visibility;
8975                     r.el.style.display = "none";
8976                 }
8977                 this._measureChanged = null;
8978             }
8979             return this;
8980         },
8981
8982         /**
8983         * Update the innerHTML of this element, optionally searching for and processing scripts
8984         * @param {String} html The new HTML
8985         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8986         * @param {Function} callback For async script loading you can be noticed when the update completes
8987         * @return {Roo.Element} this
8988          */
8989         update : function(html, loadScripts, callback){
8990             if(typeof html == "undefined"){
8991                 html = "";
8992             }
8993             if(loadScripts !== true){
8994                 this.dom.innerHTML = html;
8995                 if(typeof callback == "function"){
8996                     callback();
8997                 }
8998                 return this;
8999             }
9000             var id = Roo.id();
9001             var dom = this.dom;
9002
9003             html += '<span id="' + id + '"></span>';
9004
9005             E.onAvailable(id, function(){
9006                 var hd = document.getElementsByTagName("head")[0];
9007                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
9008                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
9009                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
9010
9011                 var match;
9012                 while(match = re.exec(html)){
9013                     var attrs = match[1];
9014                     var srcMatch = attrs ? attrs.match(srcRe) : false;
9015                     if(srcMatch && srcMatch[2]){
9016                        var s = document.createElement("script");
9017                        s.src = srcMatch[2];
9018                        var typeMatch = attrs.match(typeRe);
9019                        if(typeMatch && typeMatch[2]){
9020                            s.type = typeMatch[2];
9021                        }
9022                        hd.appendChild(s);
9023                     }else if(match[2] && match[2].length > 0){
9024                         if(window.execScript) {
9025                            window.execScript(match[2]);
9026                         } else {
9027                             /**
9028                              * eval:var:id
9029                              * eval:var:dom
9030                              * eval:var:html
9031                              * 
9032                              */
9033                            window.eval(match[2]);
9034                         }
9035                     }
9036                 }
9037                 var el = document.getElementById(id);
9038                 if(el){el.parentNode.removeChild(el);}
9039                 if(typeof callback == "function"){
9040                     callback();
9041                 }
9042             });
9043             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
9044             return this;
9045         },
9046
9047         /**
9048          * Direct access to the UpdateManager update() method (takes the same parameters).
9049          * @param {String/Function} url The url for this request or a function to call to get the url
9050          * @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}
9051          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9052          * @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.
9053          * @return {Roo.Element} this
9054          */
9055         load : function(){
9056             var um = this.getUpdateManager();
9057             um.update.apply(um, arguments);
9058             return this;
9059         },
9060
9061         /**
9062         * Gets this element's UpdateManager
9063         * @return {Roo.UpdateManager} The UpdateManager
9064         */
9065         getUpdateManager : function(){
9066             if(!this.updateManager){
9067                 this.updateManager = new Roo.UpdateManager(this);
9068             }
9069             return this.updateManager;
9070         },
9071
9072         /**
9073          * Disables text selection for this element (normalized across browsers)
9074          * @return {Roo.Element} this
9075          */
9076         unselectable : function(){
9077             this.dom.unselectable = "on";
9078             this.swallowEvent("selectstart", true);
9079             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9080             this.addClass("x-unselectable");
9081             return this;
9082         },
9083
9084         /**
9085         * Calculates the x, y to center this element on the screen
9086         * @return {Array} The x, y values [x, y]
9087         */
9088         getCenterXY : function(){
9089             return this.getAlignToXY(document, 'c-c');
9090         },
9091
9092         /**
9093         * Centers the Element in either the viewport, or another Element.
9094         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9095         */
9096         center : function(centerIn){
9097             this.alignTo(centerIn || document, 'c-c');
9098             return this;
9099         },
9100
9101         /**
9102          * Tests various css rules/browsers to determine if this element uses a border box
9103          * @return {Boolean}
9104          */
9105         isBorderBox : function(){
9106             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9107         },
9108
9109         /**
9110          * Return a box {x, y, width, height} that can be used to set another elements
9111          * size/location to match this element.
9112          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9113          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9114          * @return {Object} box An object in the format {x, y, width, height}
9115          */
9116         getBox : function(contentBox, local){
9117             var xy;
9118             if(!local){
9119                 xy = this.getXY();
9120             }else{
9121                 var left = parseInt(this.getStyle("left"), 10) || 0;
9122                 var top = parseInt(this.getStyle("top"), 10) || 0;
9123                 xy = [left, top];
9124             }
9125             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9126             if(!contentBox){
9127                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9128             }else{
9129                 var l = this.getBorderWidth("l")+this.getPadding("l");
9130                 var r = this.getBorderWidth("r")+this.getPadding("r");
9131                 var t = this.getBorderWidth("t")+this.getPadding("t");
9132                 var b = this.getBorderWidth("b")+this.getPadding("b");
9133                 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)};
9134             }
9135             bx.right = bx.x + bx.width;
9136             bx.bottom = bx.y + bx.height;
9137             return bx;
9138         },
9139
9140         /**
9141          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9142          for more information about the sides.
9143          * @param {String} sides
9144          * @return {Number}
9145          */
9146         getFrameWidth : function(sides, onlyContentBox){
9147             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9148         },
9149
9150         /**
9151          * 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.
9152          * @param {Object} box The box to fill {x, y, width, height}
9153          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9154          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9155          * @return {Roo.Element} this
9156          */
9157         setBox : function(box, adjust, animate){
9158             var w = box.width, h = box.height;
9159             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9160                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9161                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9162             }
9163             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9164             return this;
9165         },
9166
9167         /**
9168          * Forces the browser to repaint this element
9169          * @return {Roo.Element} this
9170          */
9171          repaint : function(){
9172             var dom = this.dom;
9173             this.addClass("x-repaint");
9174             setTimeout(function(){
9175                 Roo.get(dom).removeClass("x-repaint");
9176             }, 1);
9177             return this;
9178         },
9179
9180         /**
9181          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9182          * then it returns the calculated width of the sides (see getPadding)
9183          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9184          * @return {Object/Number}
9185          */
9186         getMargins : function(side){
9187             if(!side){
9188                 return {
9189                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9190                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9191                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9192                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9193                 };
9194             }else{
9195                 return this.addStyles(side, El.margins);
9196              }
9197         },
9198
9199         // private
9200         addStyles : function(sides, styles){
9201             var val = 0, v, w;
9202             for(var i = 0, len = sides.length; i < len; i++){
9203                 v = this.getStyle(styles[sides.charAt(i)]);
9204                 if(v){
9205                      w = parseInt(v, 10);
9206                      if(w){ val += w; }
9207                 }
9208             }
9209             return val;
9210         },
9211
9212         /**
9213          * Creates a proxy element of this element
9214          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9215          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9216          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9217          * @return {Roo.Element} The new proxy element
9218          */
9219         createProxy : function(config, renderTo, matchBox){
9220             if(renderTo){
9221                 renderTo = Roo.getDom(renderTo);
9222             }else{
9223                 renderTo = document.body;
9224             }
9225             config = typeof config == "object" ?
9226                 config : {tag : "div", cls: config};
9227             var proxy = Roo.DomHelper.append(renderTo, config, true);
9228             if(matchBox){
9229                proxy.setBox(this.getBox());
9230             }
9231             return proxy;
9232         },
9233
9234         /**
9235          * Puts a mask over this element to disable user interaction. Requires core.css.
9236          * This method can only be applied to elements which accept child nodes.
9237          * @param {String} msg (optional) A message to display in the mask
9238          * @param {String} msgCls (optional) A css class to apply to the msg element
9239          * @return {Element} The mask  element
9240          */
9241         mask : function(msg, msgCls)
9242         {
9243             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9244                 this.setStyle("position", "relative");
9245             }
9246             if(!this._mask){
9247                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9248             }
9249             
9250             this.addClass("x-masked");
9251             this._mask.setDisplayed(true);
9252             
9253             // we wander
9254             var z = 0;
9255             var dom = this.dom;
9256             while (dom && dom.style) {
9257                 if (!isNaN(parseInt(dom.style.zIndex))) {
9258                     z = Math.max(z, parseInt(dom.style.zIndex));
9259                 }
9260                 dom = dom.parentNode;
9261             }
9262             // if we are masking the body - then it hides everything..
9263             if (this.dom == document.body) {
9264                 z = 1000000;
9265                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9266                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9267             }
9268            
9269             if(typeof msg == 'string'){
9270                 if(!this._maskMsg){
9271                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9272                         cls: "roo-el-mask-msg", 
9273                         cn: [
9274                             {
9275                                 tag: 'i',
9276                                 cls: 'fa fa-spinner fa-spin'
9277                             },
9278                             {
9279                                 tag: 'div'
9280                             }   
9281                         ]
9282                     }, true);
9283                 }
9284                 var mm = this._maskMsg;
9285                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9286                 if (mm.dom.lastChild) { // weird IE issue?
9287                     mm.dom.lastChild.innerHTML = msg;
9288                 }
9289                 mm.setDisplayed(true);
9290                 mm.center(this);
9291                 mm.setStyle('z-index', z + 102);
9292             }
9293             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9294                 this._mask.setHeight(this.getHeight());
9295             }
9296             this._mask.setStyle('z-index', z + 100);
9297             
9298             return this._mask;
9299         },
9300
9301         /**
9302          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9303          * it is cached for reuse.
9304          */
9305         unmask : function(removeEl){
9306             if(this._mask){
9307                 if(removeEl === true){
9308                     this._mask.remove();
9309                     delete this._mask;
9310                     if(this._maskMsg){
9311                         this._maskMsg.remove();
9312                         delete this._maskMsg;
9313                     }
9314                 }else{
9315                     this._mask.setDisplayed(false);
9316                     if(this._maskMsg){
9317                         this._maskMsg.setDisplayed(false);
9318                     }
9319                 }
9320             }
9321             this.removeClass("x-masked");
9322         },
9323
9324         /**
9325          * Returns true if this element is masked
9326          * @return {Boolean}
9327          */
9328         isMasked : function(){
9329             return this._mask && this._mask.isVisible();
9330         },
9331
9332         /**
9333          * Creates an iframe shim for this element to keep selects and other windowed objects from
9334          * showing through.
9335          * @return {Roo.Element} The new shim element
9336          */
9337         createShim : function(){
9338             var el = document.createElement('iframe');
9339             el.frameBorder = 'no';
9340             el.className = 'roo-shim';
9341             if(Roo.isIE && Roo.isSecure){
9342                 el.src = Roo.SSL_SECURE_URL;
9343             }
9344             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9345             shim.autoBoxAdjust = false;
9346             return shim;
9347         },
9348
9349         /**
9350          * Removes this element from the DOM and deletes it from the cache
9351          */
9352         remove : function(){
9353             if(this.dom.parentNode){
9354                 this.dom.parentNode.removeChild(this.dom);
9355             }
9356             delete El.cache[this.dom.id];
9357         },
9358
9359         /**
9360          * Sets up event handlers to add and remove a css class when the mouse is over this element
9361          * @param {String} className
9362          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9363          * mouseout events for children elements
9364          * @return {Roo.Element} this
9365          */
9366         addClassOnOver : function(className, preventFlicker){
9367             this.on("mouseover", function(){
9368                 Roo.fly(this, '_internal').addClass(className);
9369             }, this.dom);
9370             var removeFn = function(e){
9371                 if(preventFlicker !== true || !e.within(this, true)){
9372                     Roo.fly(this, '_internal').removeClass(className);
9373                 }
9374             };
9375             this.on("mouseout", removeFn, this.dom);
9376             return this;
9377         },
9378
9379         /**
9380          * Sets up event handlers to add and remove a css class when this element has the focus
9381          * @param {String} className
9382          * @return {Roo.Element} this
9383          */
9384         addClassOnFocus : function(className){
9385             this.on("focus", function(){
9386                 Roo.fly(this, '_internal').addClass(className);
9387             }, this.dom);
9388             this.on("blur", function(){
9389                 Roo.fly(this, '_internal').removeClass(className);
9390             }, this.dom);
9391             return this;
9392         },
9393         /**
9394          * 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)
9395          * @param {String} className
9396          * @return {Roo.Element} this
9397          */
9398         addClassOnClick : function(className){
9399             var dom = this.dom;
9400             this.on("mousedown", function(){
9401                 Roo.fly(dom, '_internal').addClass(className);
9402                 var d = Roo.get(document);
9403                 var fn = function(){
9404                     Roo.fly(dom, '_internal').removeClass(className);
9405                     d.removeListener("mouseup", fn);
9406                 };
9407                 d.on("mouseup", fn);
9408             });
9409             return this;
9410         },
9411
9412         /**
9413          * Stops the specified event from bubbling and optionally prevents the default action
9414          * @param {String} eventName
9415          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9416          * @return {Roo.Element} this
9417          */
9418         swallowEvent : function(eventName, preventDefault){
9419             var fn = function(e){
9420                 e.stopPropagation();
9421                 if(preventDefault){
9422                     e.preventDefault();
9423                 }
9424             };
9425             if(eventName instanceof Array){
9426                 for(var i = 0, len = eventName.length; i < len; i++){
9427                      this.on(eventName[i], fn);
9428                 }
9429                 return this;
9430             }
9431             this.on(eventName, fn);
9432             return this;
9433         },
9434
9435         /**
9436          * @private
9437          */
9438         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9439
9440         /**
9441          * Sizes this element to its parent element's dimensions performing
9442          * neccessary box adjustments.
9443          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9444          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9445          * @return {Roo.Element} this
9446          */
9447         fitToParent : function(monitorResize, targetParent) {
9448           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9449           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9450           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9451             return this;
9452           }
9453           var p = Roo.get(targetParent || this.dom.parentNode);
9454           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9455           if (monitorResize === true) {
9456             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9457             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9458           }
9459           return this;
9460         },
9461
9462         /**
9463          * Gets the next sibling, skipping text nodes
9464          * @return {HTMLElement} The next sibling or null
9465          */
9466         getNextSibling : function(){
9467             var n = this.dom.nextSibling;
9468             while(n && n.nodeType != 1){
9469                 n = n.nextSibling;
9470             }
9471             return n;
9472         },
9473
9474         /**
9475          * Gets the previous sibling, skipping text nodes
9476          * @return {HTMLElement} The previous sibling or null
9477          */
9478         getPrevSibling : function(){
9479             var n = this.dom.previousSibling;
9480             while(n && n.nodeType != 1){
9481                 n = n.previousSibling;
9482             }
9483             return n;
9484         },
9485
9486
9487         /**
9488          * Appends the passed element(s) to this element
9489          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9490          * @return {Roo.Element} this
9491          */
9492         appendChild: function(el){
9493             el = Roo.get(el);
9494             el.appendTo(this);
9495             return this;
9496         },
9497
9498         /**
9499          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9500          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9501          * automatically generated with the specified attributes.
9502          * @param {HTMLElement} insertBefore (optional) a child element of this element
9503          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9504          * @return {Roo.Element} The new child element
9505          */
9506         createChild: function(config, insertBefore, returnDom){
9507             config = config || {tag:'div'};
9508             if(insertBefore){
9509                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9510             }
9511             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9512         },
9513
9514         /**
9515          * Appends this element to the passed element
9516          * @param {String/HTMLElement/Element} el The new parent element
9517          * @return {Roo.Element} this
9518          */
9519         appendTo: function(el){
9520             el = Roo.getDom(el);
9521             el.appendChild(this.dom);
9522             return this;
9523         },
9524
9525         /**
9526          * Inserts this element before the passed element in the DOM
9527          * @param {String/HTMLElement/Element} el The element to insert before
9528          * @return {Roo.Element} this
9529          */
9530         insertBefore: function(el){
9531             el = Roo.getDom(el);
9532             el.parentNode.insertBefore(this.dom, el);
9533             return this;
9534         },
9535
9536         /**
9537          * Inserts this element after the passed element in the DOM
9538          * @param {String/HTMLElement/Element} el The element to insert after
9539          * @return {Roo.Element} this
9540          */
9541         insertAfter: function(el){
9542             el = Roo.getDom(el);
9543             el.parentNode.insertBefore(this.dom, el.nextSibling);
9544             return this;
9545         },
9546
9547         /**
9548          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9549          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9550          * @return {Roo.Element} The new child
9551          */
9552         insertFirst: function(el, returnDom){
9553             el = el || {};
9554             if(typeof el == 'object' && !el.nodeType){ // dh config
9555                 return this.createChild(el, this.dom.firstChild, returnDom);
9556             }else{
9557                 el = Roo.getDom(el);
9558                 this.dom.insertBefore(el, this.dom.firstChild);
9559                 return !returnDom ? Roo.get(el) : el;
9560             }
9561         },
9562
9563         /**
9564          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9565          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9566          * @param {String} where (optional) 'before' or 'after' defaults to before
9567          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9568          * @return {Roo.Element} the inserted Element
9569          */
9570         insertSibling: function(el, where, returnDom){
9571             where = where ? where.toLowerCase() : 'before';
9572             el = el || {};
9573             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9574
9575             if(typeof el == 'object' && !el.nodeType){ // dh config
9576                 if(where == 'after' && !this.dom.nextSibling){
9577                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9578                 }else{
9579                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9580                 }
9581
9582             }else{
9583                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9584                             where == 'before' ? this.dom : this.dom.nextSibling);
9585                 if(!returnDom){
9586                     rt = Roo.get(rt);
9587                 }
9588             }
9589             return rt;
9590         },
9591
9592         /**
9593          * Creates and wraps this element with another element
9594          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9595          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9596          * @return {HTMLElement/Element} The newly created wrapper element
9597          */
9598         wrap: function(config, returnDom){
9599             if(!config){
9600                 config = {tag: "div"};
9601             }
9602             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9603             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9604             return newEl;
9605         },
9606
9607         /**
9608          * Replaces the passed element with this element
9609          * @param {String/HTMLElement/Element} el The element to replace
9610          * @return {Roo.Element} this
9611          */
9612         replace: function(el){
9613             el = Roo.get(el);
9614             this.insertBefore(el);
9615             el.remove();
9616             return this;
9617         },
9618
9619         /**
9620          * Inserts an html fragment into this element
9621          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9622          * @param {String} html The HTML fragment
9623          * @param {Boolean} returnEl True to return an Roo.Element
9624          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9625          */
9626         insertHtml : function(where, html, returnEl){
9627             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9628             return returnEl ? Roo.get(el) : el;
9629         },
9630
9631         /**
9632          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9633          * @param {Object} o The object with the attributes
9634          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9635          * @return {Roo.Element} this
9636          */
9637         set : function(o, useSet){
9638             var el = this.dom;
9639             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9640             for(var attr in o){
9641                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9642                 if(attr=="cls"){
9643                     el.className = o["cls"];
9644                 }else{
9645                     if(useSet) {
9646                         el.setAttribute(attr, o[attr]);
9647                     } else {
9648                         el[attr] = o[attr];
9649                     }
9650                 }
9651             }
9652             if(o.style){
9653                 Roo.DomHelper.applyStyles(el, o.style);
9654             }
9655             return this;
9656         },
9657
9658         /**
9659          * Convenience method for constructing a KeyMap
9660          * @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:
9661          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9662          * @param {Function} fn The function to call
9663          * @param {Object} scope (optional) The scope of the function
9664          * @return {Roo.KeyMap} The KeyMap created
9665          */
9666         addKeyListener : function(key, fn, scope){
9667             var config;
9668             if(typeof key != "object" || key instanceof Array){
9669                 config = {
9670                     key: key,
9671                     fn: fn,
9672                     scope: scope
9673                 };
9674             }else{
9675                 config = {
9676                     key : key.key,
9677                     shift : key.shift,
9678                     ctrl : key.ctrl,
9679                     alt : key.alt,
9680                     fn: fn,
9681                     scope: scope
9682                 };
9683             }
9684             return new Roo.KeyMap(this, config);
9685         },
9686
9687         /**
9688          * Creates a KeyMap for this element
9689          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9690          * @return {Roo.KeyMap} The KeyMap created
9691          */
9692         addKeyMap : function(config){
9693             return new Roo.KeyMap(this, config);
9694         },
9695
9696         /**
9697          * Returns true if this element is scrollable.
9698          * @return {Boolean}
9699          */
9700          isScrollable : function(){
9701             var dom = this.dom;
9702             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9703         },
9704
9705         /**
9706          * 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().
9707          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9708          * @param {Number} value The new scroll value
9709          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9710          * @return {Element} this
9711          */
9712
9713         scrollTo : function(side, value, animate){
9714             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9715             if(!animate || !A){
9716                 this.dom[prop] = value;
9717             }else{
9718                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9719                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9720             }
9721             return this;
9722         },
9723
9724         /**
9725          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9726          * within this element's scrollable range.
9727          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9728          * @param {Number} distance How far to scroll the element in pixels
9729          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9730          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9731          * was scrolled as far as it could go.
9732          */
9733          scroll : function(direction, distance, animate){
9734              if(!this.isScrollable()){
9735                  return;
9736              }
9737              var el = this.dom;
9738              var l = el.scrollLeft, t = el.scrollTop;
9739              var w = el.scrollWidth, h = el.scrollHeight;
9740              var cw = el.clientWidth, ch = el.clientHeight;
9741              direction = direction.toLowerCase();
9742              var scrolled = false;
9743              var a = this.preanim(arguments, 2);
9744              switch(direction){
9745                  case "l":
9746                  case "left":
9747                      if(w - l > cw){
9748                          var v = Math.min(l + distance, w-cw);
9749                          this.scrollTo("left", v, a);
9750                          scrolled = true;
9751                      }
9752                      break;
9753                 case "r":
9754                 case "right":
9755                      if(l > 0){
9756                          var v = Math.max(l - distance, 0);
9757                          this.scrollTo("left", v, a);
9758                          scrolled = true;
9759                      }
9760                      break;
9761                 case "t":
9762                 case "top":
9763                 case "up":
9764                      if(t > 0){
9765                          var v = Math.max(t - distance, 0);
9766                          this.scrollTo("top", v, a);
9767                          scrolled = true;
9768                      }
9769                      break;
9770                 case "b":
9771                 case "bottom":
9772                 case "down":
9773                      if(h - t > ch){
9774                          var v = Math.min(t + distance, h-ch);
9775                          this.scrollTo("top", v, a);
9776                          scrolled = true;
9777                      }
9778                      break;
9779              }
9780              return scrolled;
9781         },
9782
9783         /**
9784          * Translates the passed page coordinates into left/top css values for this element
9785          * @param {Number/Array} x The page x or an array containing [x, y]
9786          * @param {Number} y The page y
9787          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9788          */
9789         translatePoints : function(x, y){
9790             if(typeof x == 'object' || x instanceof Array){
9791                 y = x[1]; x = x[0];
9792             }
9793             var p = this.getStyle('position');
9794             var o = this.getXY();
9795
9796             var l = parseInt(this.getStyle('left'), 10);
9797             var t = parseInt(this.getStyle('top'), 10);
9798
9799             if(isNaN(l)){
9800                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9801             }
9802             if(isNaN(t)){
9803                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9804             }
9805
9806             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9807         },
9808
9809         /**
9810          * Returns the current scroll position of the element.
9811          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9812          */
9813         getScroll : function(){
9814             var d = this.dom, doc = document;
9815             if(d == doc || d == doc.body){
9816                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9817                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9818                 return {left: l, top: t};
9819             }else{
9820                 return {left: d.scrollLeft, top: d.scrollTop};
9821             }
9822         },
9823
9824         /**
9825          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9826          * are convert to standard 6 digit hex color.
9827          * @param {String} attr The css attribute
9828          * @param {String} defaultValue The default value to use when a valid color isn't found
9829          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9830          * YUI color anims.
9831          */
9832         getColor : function(attr, defaultValue, prefix){
9833             var v = this.getStyle(attr);
9834             if(!v || v == "transparent" || v == "inherit") {
9835                 return defaultValue;
9836             }
9837             var color = typeof prefix == "undefined" ? "#" : prefix;
9838             if(v.substr(0, 4) == "rgb("){
9839                 var rvs = v.slice(4, v.length -1).split(",");
9840                 for(var i = 0; i < 3; i++){
9841                     var h = parseInt(rvs[i]).toString(16);
9842                     if(h < 16){
9843                         h = "0" + h;
9844                     }
9845                     color += h;
9846                 }
9847             } else {
9848                 if(v.substr(0, 1) == "#"){
9849                     if(v.length == 4) {
9850                         for(var i = 1; i < 4; i++){
9851                             var c = v.charAt(i);
9852                             color +=  c + c;
9853                         }
9854                     }else if(v.length == 7){
9855                         color += v.substr(1);
9856                     }
9857                 }
9858             }
9859             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9860         },
9861
9862         /**
9863          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9864          * gradient background, rounded corners and a 4-way shadow.
9865          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9866          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9867          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9868          * @return {Roo.Element} this
9869          */
9870         boxWrap : function(cls){
9871             cls = cls || 'x-box';
9872             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9873             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9874             return el;
9875         },
9876
9877         /**
9878          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9879          * @param {String} namespace The namespace in which to look for the attribute
9880          * @param {String} name The attribute name
9881          * @return {String} The attribute value
9882          */
9883         getAttributeNS : Roo.isIE ? function(ns, name){
9884             var d = this.dom;
9885             var type = typeof d[ns+":"+name];
9886             if(type != 'undefined' && type != 'unknown'){
9887                 return d[ns+":"+name];
9888             }
9889             return d[name];
9890         } : function(ns, name){
9891             var d = this.dom;
9892             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9893         },
9894         
9895         
9896         /**
9897          * Sets or Returns the value the dom attribute value
9898          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9899          * @param {String} value (optional) The value to set the attribute to
9900          * @return {String} The attribute value
9901          */
9902         attr : function(name){
9903             if (arguments.length > 1) {
9904                 this.dom.setAttribute(name, arguments[1]);
9905                 return arguments[1];
9906             }
9907             if (typeof(name) == 'object') {
9908                 for(var i in name) {
9909                     this.attr(i, name[i]);
9910                 }
9911                 return name;
9912             }
9913             
9914             
9915             if (!this.dom.hasAttribute(name)) {
9916                 return undefined;
9917             }
9918             return this.dom.getAttribute(name);
9919         }
9920         
9921         
9922         
9923     };
9924
9925     var ep = El.prototype;
9926
9927     /**
9928      * Appends an event handler (Shorthand for addListener)
9929      * @param {String}   eventName     The type of event to append
9930      * @param {Function} fn        The method the event invokes
9931      * @param {Object} scope       (optional) The scope (this object) of the fn
9932      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9933      * @method
9934      */
9935     ep.on = ep.addListener;
9936         // backwards compat
9937     ep.mon = ep.addListener;
9938
9939     /**
9940      * Removes an event handler from this element (shorthand for removeListener)
9941      * @param {String} eventName the type of event to remove
9942      * @param {Function} fn the method the event invokes
9943      * @return {Roo.Element} this
9944      * @method
9945      */
9946     ep.un = ep.removeListener;
9947
9948     /**
9949      * true to automatically adjust width and height settings for box-model issues (default to true)
9950      */
9951     ep.autoBoxAdjust = true;
9952
9953     // private
9954     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9955
9956     // private
9957     El.addUnits = function(v, defaultUnit){
9958         if(v === "" || v == "auto"){
9959             return v;
9960         }
9961         if(v === undefined){
9962             return '';
9963         }
9964         if(typeof v == "number" || !El.unitPattern.test(v)){
9965             return v + (defaultUnit || 'px');
9966         }
9967         return v;
9968     };
9969
9970     // special markup used throughout Roo when box wrapping elements
9971     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>';
9972     /**
9973      * Visibility mode constant - Use visibility to hide element
9974      * @static
9975      * @type Number
9976      */
9977     El.VISIBILITY = 1;
9978     /**
9979      * Visibility mode constant - Use display to hide element
9980      * @static
9981      * @type Number
9982      */
9983     El.DISPLAY = 2;
9984
9985     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9986     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9987     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9988
9989
9990
9991     /**
9992      * @private
9993      */
9994     El.cache = {};
9995
9996     var docEl;
9997
9998     /**
9999      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10000      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10001      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10002      * @return {Element} The Element object
10003      * @static
10004      */
10005     El.get = function(el){
10006         var ex, elm, id;
10007         if(!el){ return null; }
10008         if(typeof el == "string"){ // element id
10009             if(!(elm = document.getElementById(el))){
10010                 return null;
10011             }
10012             if(ex = El.cache[el]){
10013                 ex.dom = elm;
10014             }else{
10015                 ex = El.cache[el] = new El(elm);
10016             }
10017             return ex;
10018         }else if(el.tagName){ // dom element
10019             if(!(id = el.id)){
10020                 id = Roo.id(el);
10021             }
10022             if(ex = El.cache[id]){
10023                 ex.dom = el;
10024             }else{
10025                 ex = El.cache[id] = new El(el);
10026             }
10027             return ex;
10028         }else if(el instanceof El){
10029             if(el != docEl){
10030                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
10031                                                               // catch case where it hasn't been appended
10032                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
10033             }
10034             return el;
10035         }else if(el.isComposite){
10036             return el;
10037         }else if(el instanceof Array){
10038             return El.select(el);
10039         }else if(el == document){
10040             // create a bogus element object representing the document object
10041             if(!docEl){
10042                 var f = function(){};
10043                 f.prototype = El.prototype;
10044                 docEl = new f();
10045                 docEl.dom = document;
10046             }
10047             return docEl;
10048         }
10049         return null;
10050     };
10051
10052     // private
10053     El.uncache = function(el){
10054         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
10055             if(a[i]){
10056                 delete El.cache[a[i].id || a[i]];
10057             }
10058         }
10059     };
10060
10061     // private
10062     // Garbage collection - uncache elements/purge listeners on orphaned elements
10063     // so we don't hold a reference and cause the browser to retain them
10064     El.garbageCollect = function(){
10065         if(!Roo.enableGarbageCollector){
10066             clearInterval(El.collectorThread);
10067             return;
10068         }
10069         for(var eid in El.cache){
10070             var el = El.cache[eid], d = el.dom;
10071             // -------------------------------------------------------
10072             // Determining what is garbage:
10073             // -------------------------------------------------------
10074             // !d
10075             // dom node is null, definitely garbage
10076             // -------------------------------------------------------
10077             // !d.parentNode
10078             // no parentNode == direct orphan, definitely garbage
10079             // -------------------------------------------------------
10080             // !d.offsetParent && !document.getElementById(eid)
10081             // display none elements have no offsetParent so we will
10082             // also try to look it up by it's id. However, check
10083             // offsetParent first so we don't do unneeded lookups.
10084             // This enables collection of elements that are not orphans
10085             // directly, but somewhere up the line they have an orphan
10086             // parent.
10087             // -------------------------------------------------------
10088             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10089                 delete El.cache[eid];
10090                 if(d && Roo.enableListenerCollection){
10091                     E.purgeElement(d);
10092                 }
10093             }
10094         }
10095     }
10096     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10097
10098
10099     // dom is optional
10100     El.Flyweight = function(dom){
10101         this.dom = dom;
10102     };
10103     El.Flyweight.prototype = El.prototype;
10104
10105     El._flyweights = {};
10106     /**
10107      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10108      * the dom node can be overwritten by other code.
10109      * @param {String/HTMLElement} el The dom node or id
10110      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10111      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10112      * @static
10113      * @return {Element} The shared Element object
10114      */
10115     El.fly = function(el, named){
10116         named = named || '_global';
10117         el = Roo.getDom(el);
10118         if(!el){
10119             return null;
10120         }
10121         if(!El._flyweights[named]){
10122             El._flyweights[named] = new El.Flyweight();
10123         }
10124         El._flyweights[named].dom = el;
10125         return El._flyweights[named];
10126     };
10127
10128     /**
10129      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10130      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10131      * Shorthand of {@link Roo.Element#get}
10132      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10133      * @return {Element} The Element object
10134      * @member Roo
10135      * @method get
10136      */
10137     Roo.get = El.get;
10138     /**
10139      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10140      * the dom node can be overwritten by other code.
10141      * Shorthand of {@link Roo.Element#fly}
10142      * @param {String/HTMLElement} el The dom node or id
10143      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10144      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10145      * @static
10146      * @return {Element} The shared Element object
10147      * @member Roo
10148      * @method fly
10149      */
10150     Roo.fly = El.fly;
10151
10152     // speedy lookup for elements never to box adjust
10153     var noBoxAdjust = Roo.isStrict ? {
10154         select:1
10155     } : {
10156         input:1, select:1, textarea:1
10157     };
10158     if(Roo.isIE || Roo.isGecko){
10159         noBoxAdjust['button'] = 1;
10160     }
10161
10162
10163     Roo.EventManager.on(window, 'unload', function(){
10164         delete El.cache;
10165         delete El._flyweights;
10166     });
10167 })();
10168
10169
10170
10171
10172 if(Roo.DomQuery){
10173     Roo.Element.selectorFunction = Roo.DomQuery.select;
10174 }
10175
10176 Roo.Element.select = function(selector, unique, root){
10177     var els;
10178     if(typeof selector == "string"){
10179         els = Roo.Element.selectorFunction(selector, root);
10180     }else if(selector.length !== undefined){
10181         els = selector;
10182     }else{
10183         throw "Invalid selector";
10184     }
10185     if(unique === true){
10186         return new Roo.CompositeElement(els);
10187     }else{
10188         return new Roo.CompositeElementLite(els);
10189     }
10190 };
10191 /**
10192  * Selects elements based on the passed CSS selector to enable working on them as 1.
10193  * @param {String/Array} selector The CSS selector or an array of elements
10194  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10195  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10196  * @return {CompositeElementLite/CompositeElement}
10197  * @member Roo
10198  * @method select
10199  */
10200 Roo.select = Roo.Element.select;
10201
10202
10203
10204
10205
10206
10207
10208
10209
10210
10211
10212
10213
10214
10215 /*
10216  * Based on:
10217  * Ext JS Library 1.1.1
10218  * Copyright(c) 2006-2007, Ext JS, LLC.
10219  *
10220  * Originally Released Under LGPL - original licence link has changed is not relivant.
10221  *
10222  * Fork - LGPL
10223  * <script type="text/javascript">
10224  */
10225
10226
10227
10228 //Notifies Element that fx methods are available
10229 Roo.enableFx = true;
10230
10231 /**
10232  * @class Roo.Fx
10233  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10234  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10235  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10236  * Element effects to work.</p><br/>
10237  *
10238  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10239  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10240  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10241  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10242  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10243  * expected results and should be done with care.</p><br/>
10244  *
10245  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10246  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10247 <pre>
10248 Value  Description
10249 -----  -----------------------------
10250 tl     The top left corner
10251 t      The center of the top edge
10252 tr     The top right corner
10253 l      The center of the left edge
10254 r      The center of the right edge
10255 bl     The bottom left corner
10256 b      The center of the bottom edge
10257 br     The bottom right corner
10258 </pre>
10259  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10260  * below are common options that can be passed to any Fx method.</b>
10261  * @cfg {Function} callback A function called when the effect is finished
10262  * @cfg {Object} scope The scope of the effect function
10263  * @cfg {String} easing A valid Easing value for the effect
10264  * @cfg {String} afterCls A css class to apply after the effect
10265  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10266  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10267  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10268  * effects that end with the element being visually hidden, ignored otherwise)
10269  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10270  * a function which returns such a specification that will be applied to the Element after the effect finishes
10271  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10272  * @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
10273  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10274  */
10275 Roo.Fx = {
10276         /**
10277          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10278          * origin for the slide effect.  This function automatically handles wrapping the element with
10279          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10280          * Usage:
10281          *<pre><code>
10282 // default: slide the element in from the top
10283 el.slideIn();
10284
10285 // custom: slide the element in from the right with a 2-second duration
10286 el.slideIn('r', { duration: 2 });
10287
10288 // common config options shown with default values
10289 el.slideIn('t', {
10290     easing: 'easeOut',
10291     duration: .5
10292 });
10293 </code></pre>
10294          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10295          * @param {Object} options (optional) Object literal with any of the Fx config options
10296          * @return {Roo.Element} The Element
10297          */
10298     slideIn : function(anchor, o){
10299         var el = this.getFxEl();
10300         o = o || {};
10301
10302         el.queueFx(o, function(){
10303
10304             anchor = anchor || "t";
10305
10306             // fix display to visibility
10307             this.fixDisplay();
10308
10309             // restore values after effect
10310             var r = this.getFxRestore();
10311             var b = this.getBox();
10312             // fixed size for slide
10313             this.setSize(b);
10314
10315             // wrap if needed
10316             var wrap = this.fxWrap(r.pos, o, "hidden");
10317
10318             var st = this.dom.style;
10319             st.visibility = "visible";
10320             st.position = "absolute";
10321
10322             // clear out temp styles after slide and unwrap
10323             var after = function(){
10324                 el.fxUnwrap(wrap, r.pos, o);
10325                 st.width = r.width;
10326                 st.height = r.height;
10327                 el.afterFx(o);
10328             };
10329             // time to calc the positions
10330             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10331
10332             switch(anchor.toLowerCase()){
10333                 case "t":
10334                     wrap.setSize(b.width, 0);
10335                     st.left = st.bottom = "0";
10336                     a = {height: bh};
10337                 break;
10338                 case "l":
10339                     wrap.setSize(0, b.height);
10340                     st.right = st.top = "0";
10341                     a = {width: bw};
10342                 break;
10343                 case "r":
10344                     wrap.setSize(0, b.height);
10345                     wrap.setX(b.right);
10346                     st.left = st.top = "0";
10347                     a = {width: bw, points: pt};
10348                 break;
10349                 case "b":
10350                     wrap.setSize(b.width, 0);
10351                     wrap.setY(b.bottom);
10352                     st.left = st.top = "0";
10353                     a = {height: bh, points: pt};
10354                 break;
10355                 case "tl":
10356                     wrap.setSize(0, 0);
10357                     st.right = st.bottom = "0";
10358                     a = {width: bw, height: bh};
10359                 break;
10360                 case "bl":
10361                     wrap.setSize(0, 0);
10362                     wrap.setY(b.y+b.height);
10363                     st.right = st.top = "0";
10364                     a = {width: bw, height: bh, points: pt};
10365                 break;
10366                 case "br":
10367                     wrap.setSize(0, 0);
10368                     wrap.setXY([b.right, b.bottom]);
10369                     st.left = st.top = "0";
10370                     a = {width: bw, height: bh, points: pt};
10371                 break;
10372                 case "tr":
10373                     wrap.setSize(0, 0);
10374                     wrap.setX(b.x+b.width);
10375                     st.left = st.bottom = "0";
10376                     a = {width: bw, height: bh, points: pt};
10377                 break;
10378             }
10379             this.dom.style.visibility = "visible";
10380             wrap.show();
10381
10382             arguments.callee.anim = wrap.fxanim(a,
10383                 o,
10384                 'motion',
10385                 .5,
10386                 'easeOut', after);
10387         });
10388         return this;
10389     },
10390     
10391         /**
10392          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10393          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10394          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10395          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10396          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10397          * Usage:
10398          *<pre><code>
10399 // default: slide the element out to the top
10400 el.slideOut();
10401
10402 // custom: slide the element out to the right with a 2-second duration
10403 el.slideOut('r', { duration: 2 });
10404
10405 // common config options shown with default values
10406 el.slideOut('t', {
10407     easing: 'easeOut',
10408     duration: .5,
10409     remove: false,
10410     useDisplay: false
10411 });
10412 </code></pre>
10413          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10414          * @param {Object} options (optional) Object literal with any of the Fx config options
10415          * @return {Roo.Element} The Element
10416          */
10417     slideOut : function(anchor, o){
10418         var el = this.getFxEl();
10419         o = o || {};
10420
10421         el.queueFx(o, function(){
10422
10423             anchor = anchor || "t";
10424
10425             // restore values after effect
10426             var r = this.getFxRestore();
10427             
10428             var b = this.getBox();
10429             // fixed size for slide
10430             this.setSize(b);
10431
10432             // wrap if needed
10433             var wrap = this.fxWrap(r.pos, o, "visible");
10434
10435             var st = this.dom.style;
10436             st.visibility = "visible";
10437             st.position = "absolute";
10438
10439             wrap.setSize(b);
10440
10441             var after = function(){
10442                 if(o.useDisplay){
10443                     el.setDisplayed(false);
10444                 }else{
10445                     el.hide();
10446                 }
10447
10448                 el.fxUnwrap(wrap, r.pos, o);
10449
10450                 st.width = r.width;
10451                 st.height = r.height;
10452
10453                 el.afterFx(o);
10454             };
10455
10456             var a, zero = {to: 0};
10457             switch(anchor.toLowerCase()){
10458                 case "t":
10459                     st.left = st.bottom = "0";
10460                     a = {height: zero};
10461                 break;
10462                 case "l":
10463                     st.right = st.top = "0";
10464                     a = {width: zero};
10465                 break;
10466                 case "r":
10467                     st.left = st.top = "0";
10468                     a = {width: zero, points: {to:[b.right, b.y]}};
10469                 break;
10470                 case "b":
10471                     st.left = st.top = "0";
10472                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10473                 break;
10474                 case "tl":
10475                     st.right = st.bottom = "0";
10476                     a = {width: zero, height: zero};
10477                 break;
10478                 case "bl":
10479                     st.right = st.top = "0";
10480                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10481                 break;
10482                 case "br":
10483                     st.left = st.top = "0";
10484                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10485                 break;
10486                 case "tr":
10487                     st.left = st.bottom = "0";
10488                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10489                 break;
10490             }
10491
10492             arguments.callee.anim = wrap.fxanim(a,
10493                 o,
10494                 'motion',
10495                 .5,
10496                 "easeOut", after);
10497         });
10498         return this;
10499     },
10500
10501         /**
10502          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10503          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10504          * The element must be removed from the DOM using the 'remove' config option if desired.
10505          * Usage:
10506          *<pre><code>
10507 // default
10508 el.puff();
10509
10510 // common config options shown with default values
10511 el.puff({
10512     easing: 'easeOut',
10513     duration: .5,
10514     remove: false,
10515     useDisplay: false
10516 });
10517 </code></pre>
10518          * @param {Object} options (optional) Object literal with any of the Fx config options
10519          * @return {Roo.Element} The Element
10520          */
10521     puff : function(o){
10522         var el = this.getFxEl();
10523         o = o || {};
10524
10525         el.queueFx(o, function(){
10526             this.clearOpacity();
10527             this.show();
10528
10529             // restore values after effect
10530             var r = this.getFxRestore();
10531             var st = this.dom.style;
10532
10533             var after = function(){
10534                 if(o.useDisplay){
10535                     el.setDisplayed(false);
10536                 }else{
10537                     el.hide();
10538                 }
10539
10540                 el.clearOpacity();
10541
10542                 el.setPositioning(r.pos);
10543                 st.width = r.width;
10544                 st.height = r.height;
10545                 st.fontSize = '';
10546                 el.afterFx(o);
10547             };
10548
10549             var width = this.getWidth();
10550             var height = this.getHeight();
10551
10552             arguments.callee.anim = this.fxanim({
10553                     width : {to: this.adjustWidth(width * 2)},
10554                     height : {to: this.adjustHeight(height * 2)},
10555                     points : {by: [-(width * .5), -(height * .5)]},
10556                     opacity : {to: 0},
10557                     fontSize: {to:200, unit: "%"}
10558                 },
10559                 o,
10560                 'motion',
10561                 .5,
10562                 "easeOut", after);
10563         });
10564         return this;
10565     },
10566
10567         /**
10568          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10569          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10570          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10571          * Usage:
10572          *<pre><code>
10573 // default
10574 el.switchOff();
10575
10576 // all config options shown with default values
10577 el.switchOff({
10578     easing: 'easeIn',
10579     duration: .3,
10580     remove: false,
10581     useDisplay: false
10582 });
10583 </code></pre>
10584          * @param {Object} options (optional) Object literal with any of the Fx config options
10585          * @return {Roo.Element} The Element
10586          */
10587     switchOff : function(o){
10588         var el = this.getFxEl();
10589         o = o || {};
10590
10591         el.queueFx(o, function(){
10592             this.clearOpacity();
10593             this.clip();
10594
10595             // restore values after effect
10596             var r = this.getFxRestore();
10597             var st = this.dom.style;
10598
10599             var after = function(){
10600                 if(o.useDisplay){
10601                     el.setDisplayed(false);
10602                 }else{
10603                     el.hide();
10604                 }
10605
10606                 el.clearOpacity();
10607                 el.setPositioning(r.pos);
10608                 st.width = r.width;
10609                 st.height = r.height;
10610
10611                 el.afterFx(o);
10612             };
10613
10614             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10615                 this.clearOpacity();
10616                 (function(){
10617                     this.fxanim({
10618                         height:{to:1},
10619                         points:{by:[0, this.getHeight() * .5]}
10620                     }, o, 'motion', 0.3, 'easeIn', after);
10621                 }).defer(100, this);
10622             });
10623         });
10624         return this;
10625     },
10626
10627     /**
10628      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10629      * changed using the "attr" config option) and then fading back to the original color. If no original
10630      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10631      * Usage:
10632 <pre><code>
10633 // default: highlight background to yellow
10634 el.highlight();
10635
10636 // custom: highlight foreground text to blue for 2 seconds
10637 el.highlight("0000ff", { attr: 'color', duration: 2 });
10638
10639 // common config options shown with default values
10640 el.highlight("ffff9c", {
10641     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10642     endColor: (current color) or "ffffff",
10643     easing: 'easeIn',
10644     duration: 1
10645 });
10646 </code></pre>
10647      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10648      * @param {Object} options (optional) Object literal with any of the Fx config options
10649      * @return {Roo.Element} The Element
10650      */ 
10651     highlight : function(color, o){
10652         var el = this.getFxEl();
10653         o = o || {};
10654
10655         el.queueFx(o, function(){
10656             color = color || "ffff9c";
10657             attr = o.attr || "backgroundColor";
10658
10659             this.clearOpacity();
10660             this.show();
10661
10662             var origColor = this.getColor(attr);
10663             var restoreColor = this.dom.style[attr];
10664             endColor = (o.endColor || origColor) || "ffffff";
10665
10666             var after = function(){
10667                 el.dom.style[attr] = restoreColor;
10668                 el.afterFx(o);
10669             };
10670
10671             var a = {};
10672             a[attr] = {from: color, to: endColor};
10673             arguments.callee.anim = this.fxanim(a,
10674                 o,
10675                 'color',
10676                 1,
10677                 'easeIn', after);
10678         });
10679         return this;
10680     },
10681
10682    /**
10683     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10684     * Usage:
10685 <pre><code>
10686 // default: a single light blue ripple
10687 el.frame();
10688
10689 // custom: 3 red ripples lasting 3 seconds total
10690 el.frame("ff0000", 3, { duration: 3 });
10691
10692 // common config options shown with default values
10693 el.frame("C3DAF9", 1, {
10694     duration: 1 //duration of entire animation (not each individual ripple)
10695     // Note: Easing is not configurable and will be ignored if included
10696 });
10697 </code></pre>
10698     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10699     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10700     * @param {Object} options (optional) Object literal with any of the Fx config options
10701     * @return {Roo.Element} The Element
10702     */
10703     frame : function(color, count, o){
10704         var el = this.getFxEl();
10705         o = o || {};
10706
10707         el.queueFx(o, function(){
10708             color = color || "#C3DAF9";
10709             if(color.length == 6){
10710                 color = "#" + color;
10711             }
10712             count = count || 1;
10713             duration = o.duration || 1;
10714             this.show();
10715
10716             var b = this.getBox();
10717             var animFn = function(){
10718                 var proxy = this.createProxy({
10719
10720                      style:{
10721                         visbility:"hidden",
10722                         position:"absolute",
10723                         "z-index":"35000", // yee haw
10724                         border:"0px solid " + color
10725                      }
10726                   });
10727                 var scale = Roo.isBorderBox ? 2 : 1;
10728                 proxy.animate({
10729                     top:{from:b.y, to:b.y - 20},
10730                     left:{from:b.x, to:b.x - 20},
10731                     borderWidth:{from:0, to:10},
10732                     opacity:{from:1, to:0},
10733                     height:{from:b.height, to:(b.height + (20*scale))},
10734                     width:{from:b.width, to:(b.width + (20*scale))}
10735                 }, duration, function(){
10736                     proxy.remove();
10737                 });
10738                 if(--count > 0){
10739                      animFn.defer((duration/2)*1000, this);
10740                 }else{
10741                     el.afterFx(o);
10742                 }
10743             };
10744             animFn.call(this);
10745         });
10746         return this;
10747     },
10748
10749    /**
10750     * Creates a pause before any subsequent queued effects begin.  If there are
10751     * no effects queued after the pause it will have no effect.
10752     * Usage:
10753 <pre><code>
10754 el.pause(1);
10755 </code></pre>
10756     * @param {Number} seconds The length of time to pause (in seconds)
10757     * @return {Roo.Element} The Element
10758     */
10759     pause : function(seconds){
10760         var el = this.getFxEl();
10761         var o = {};
10762
10763         el.queueFx(o, function(){
10764             setTimeout(function(){
10765                 el.afterFx(o);
10766             }, seconds * 1000);
10767         });
10768         return this;
10769     },
10770
10771    /**
10772     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10773     * using the "endOpacity" config option.
10774     * Usage:
10775 <pre><code>
10776 // default: fade in from opacity 0 to 100%
10777 el.fadeIn();
10778
10779 // custom: fade in from opacity 0 to 75% over 2 seconds
10780 el.fadeIn({ endOpacity: .75, duration: 2});
10781
10782 // common config options shown with default values
10783 el.fadeIn({
10784     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10785     easing: 'easeOut',
10786     duration: .5
10787 });
10788 </code></pre>
10789     * @param {Object} options (optional) Object literal with any of the Fx config options
10790     * @return {Roo.Element} The Element
10791     */
10792     fadeIn : function(o){
10793         var el = this.getFxEl();
10794         o = o || {};
10795         el.queueFx(o, function(){
10796             this.setOpacity(0);
10797             this.fixDisplay();
10798             this.dom.style.visibility = 'visible';
10799             var to = o.endOpacity || 1;
10800             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10801                 o, null, .5, "easeOut", function(){
10802                 if(to == 1){
10803                     this.clearOpacity();
10804                 }
10805                 el.afterFx(o);
10806             });
10807         });
10808         return this;
10809     },
10810
10811    /**
10812     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10813     * using the "endOpacity" config option.
10814     * Usage:
10815 <pre><code>
10816 // default: fade out from the element's current opacity to 0
10817 el.fadeOut();
10818
10819 // custom: fade out from the element's current opacity to 25% over 2 seconds
10820 el.fadeOut({ endOpacity: .25, duration: 2});
10821
10822 // common config options shown with default values
10823 el.fadeOut({
10824     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10825     easing: 'easeOut',
10826     duration: .5
10827     remove: false,
10828     useDisplay: false
10829 });
10830 </code></pre>
10831     * @param {Object} options (optional) Object literal with any of the Fx config options
10832     * @return {Roo.Element} The Element
10833     */
10834     fadeOut : function(o){
10835         var el = this.getFxEl();
10836         o = o || {};
10837         el.queueFx(o, function(){
10838             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10839                 o, null, .5, "easeOut", function(){
10840                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10841                      this.dom.style.display = "none";
10842                 }else{
10843                      this.dom.style.visibility = "hidden";
10844                 }
10845                 this.clearOpacity();
10846                 el.afterFx(o);
10847             });
10848         });
10849         return this;
10850     },
10851
10852    /**
10853     * Animates the transition of an element's dimensions from a starting height/width
10854     * to an ending height/width.
10855     * Usage:
10856 <pre><code>
10857 // change height and width to 100x100 pixels
10858 el.scale(100, 100);
10859
10860 // common config options shown with default values.  The height and width will default to
10861 // the element's existing values if passed as null.
10862 el.scale(
10863     [element's width],
10864     [element's height], {
10865     easing: 'easeOut',
10866     duration: .35
10867 });
10868 </code></pre>
10869     * @param {Number} width  The new width (pass undefined to keep the original width)
10870     * @param {Number} height  The new height (pass undefined to keep the original height)
10871     * @param {Object} options (optional) Object literal with any of the Fx config options
10872     * @return {Roo.Element} The Element
10873     */
10874     scale : function(w, h, o){
10875         this.shift(Roo.apply({}, o, {
10876             width: w,
10877             height: h
10878         }));
10879         return this;
10880     },
10881
10882    /**
10883     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10884     * Any of these properties not specified in the config object will not be changed.  This effect 
10885     * requires that at least one new dimension, position or opacity setting must be passed in on
10886     * the config object in order for the function to have any effect.
10887     * Usage:
10888 <pre><code>
10889 // slide the element horizontally to x position 200 while changing the height and opacity
10890 el.shift({ x: 200, height: 50, opacity: .8 });
10891
10892 // common config options shown with default values.
10893 el.shift({
10894     width: [element's width],
10895     height: [element's height],
10896     x: [element's x position],
10897     y: [element's y position],
10898     opacity: [element's opacity],
10899     easing: 'easeOut',
10900     duration: .35
10901 });
10902 </code></pre>
10903     * @param {Object} options  Object literal with any of the Fx config options
10904     * @return {Roo.Element} The Element
10905     */
10906     shift : function(o){
10907         var el = this.getFxEl();
10908         o = o || {};
10909         el.queueFx(o, function(){
10910             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10911             if(w !== undefined){
10912                 a.width = {to: this.adjustWidth(w)};
10913             }
10914             if(h !== undefined){
10915                 a.height = {to: this.adjustHeight(h)};
10916             }
10917             if(x !== undefined || y !== undefined){
10918                 a.points = {to: [
10919                     x !== undefined ? x : this.getX(),
10920                     y !== undefined ? y : this.getY()
10921                 ]};
10922             }
10923             if(op !== undefined){
10924                 a.opacity = {to: op};
10925             }
10926             if(o.xy !== undefined){
10927                 a.points = {to: o.xy};
10928             }
10929             arguments.callee.anim = this.fxanim(a,
10930                 o, 'motion', .35, "easeOut", function(){
10931                 el.afterFx(o);
10932             });
10933         });
10934         return this;
10935     },
10936
10937         /**
10938          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10939          * ending point of the effect.
10940          * Usage:
10941          *<pre><code>
10942 // default: slide the element downward while fading out
10943 el.ghost();
10944
10945 // custom: slide the element out to the right with a 2-second duration
10946 el.ghost('r', { duration: 2 });
10947
10948 // common config options shown with default values
10949 el.ghost('b', {
10950     easing: 'easeOut',
10951     duration: .5
10952     remove: false,
10953     useDisplay: false
10954 });
10955 </code></pre>
10956          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10957          * @param {Object} options (optional) Object literal with any of the Fx config options
10958          * @return {Roo.Element} The Element
10959          */
10960     ghost : function(anchor, o){
10961         var el = this.getFxEl();
10962         o = o || {};
10963
10964         el.queueFx(o, function(){
10965             anchor = anchor || "b";
10966
10967             // restore values after effect
10968             var r = this.getFxRestore();
10969             var w = this.getWidth(),
10970                 h = this.getHeight();
10971
10972             var st = this.dom.style;
10973
10974             var after = function(){
10975                 if(o.useDisplay){
10976                     el.setDisplayed(false);
10977                 }else{
10978                     el.hide();
10979                 }
10980
10981                 el.clearOpacity();
10982                 el.setPositioning(r.pos);
10983                 st.width = r.width;
10984                 st.height = r.height;
10985
10986                 el.afterFx(o);
10987             };
10988
10989             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10990             switch(anchor.toLowerCase()){
10991                 case "t":
10992                     pt.by = [0, -h];
10993                 break;
10994                 case "l":
10995                     pt.by = [-w, 0];
10996                 break;
10997                 case "r":
10998                     pt.by = [w, 0];
10999                 break;
11000                 case "b":
11001                     pt.by = [0, h];
11002                 break;
11003                 case "tl":
11004                     pt.by = [-w, -h];
11005                 break;
11006                 case "bl":
11007                     pt.by = [-w, h];
11008                 break;
11009                 case "br":
11010                     pt.by = [w, h];
11011                 break;
11012                 case "tr":
11013                     pt.by = [w, -h];
11014                 break;
11015             }
11016
11017             arguments.callee.anim = this.fxanim(a,
11018                 o,
11019                 'motion',
11020                 .5,
11021                 "easeOut", after);
11022         });
11023         return this;
11024     },
11025
11026         /**
11027          * Ensures that all effects queued after syncFx is called on the element are
11028          * run concurrently.  This is the opposite of {@link #sequenceFx}.
11029          * @return {Roo.Element} The Element
11030          */
11031     syncFx : function(){
11032         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11033             block : false,
11034             concurrent : true,
11035             stopFx : false
11036         });
11037         return this;
11038     },
11039
11040         /**
11041          * Ensures that all effects queued after sequenceFx is called on the element are
11042          * run in sequence.  This is the opposite of {@link #syncFx}.
11043          * @return {Roo.Element} The Element
11044          */
11045     sequenceFx : function(){
11046         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11047             block : false,
11048             concurrent : false,
11049             stopFx : false
11050         });
11051         return this;
11052     },
11053
11054         /* @private */
11055     nextFx : function(){
11056         var ef = this.fxQueue[0];
11057         if(ef){
11058             ef.call(this);
11059         }
11060     },
11061
11062         /**
11063          * Returns true if the element has any effects actively running or queued, else returns false.
11064          * @return {Boolean} True if element has active effects, else false
11065          */
11066     hasActiveFx : function(){
11067         return this.fxQueue && this.fxQueue[0];
11068     },
11069
11070         /**
11071          * Stops any running effects and clears the element's internal effects queue if it contains
11072          * any additional effects that haven't started yet.
11073          * @return {Roo.Element} The Element
11074          */
11075     stopFx : function(){
11076         if(this.hasActiveFx()){
11077             var cur = this.fxQueue[0];
11078             if(cur && cur.anim && cur.anim.isAnimated()){
11079                 this.fxQueue = [cur]; // clear out others
11080                 cur.anim.stop(true);
11081             }
11082         }
11083         return this;
11084     },
11085
11086         /* @private */
11087     beforeFx : function(o){
11088         if(this.hasActiveFx() && !o.concurrent){
11089            if(o.stopFx){
11090                this.stopFx();
11091                return true;
11092            }
11093            return false;
11094         }
11095         return true;
11096     },
11097
11098         /**
11099          * Returns true if the element is currently blocking so that no other effect can be queued
11100          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11101          * used to ensure that an effect initiated by a user action runs to completion prior to the
11102          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11103          * @return {Boolean} True if blocking, else false
11104          */
11105     hasFxBlock : function(){
11106         var q = this.fxQueue;
11107         return q && q[0] && q[0].block;
11108     },
11109
11110         /* @private */
11111     queueFx : function(o, fn){
11112         if(!this.fxQueue){
11113             this.fxQueue = [];
11114         }
11115         if(!this.hasFxBlock()){
11116             Roo.applyIf(o, this.fxDefaults);
11117             if(!o.concurrent){
11118                 var run = this.beforeFx(o);
11119                 fn.block = o.block;
11120                 this.fxQueue.push(fn);
11121                 if(run){
11122                     this.nextFx();
11123                 }
11124             }else{
11125                 fn.call(this);
11126             }
11127         }
11128         return this;
11129     },
11130
11131         /* @private */
11132     fxWrap : function(pos, o, vis){
11133         var wrap;
11134         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11135             var wrapXY;
11136             if(o.fixPosition){
11137                 wrapXY = this.getXY();
11138             }
11139             var div = document.createElement("div");
11140             div.style.visibility = vis;
11141             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11142             wrap.setPositioning(pos);
11143             if(wrap.getStyle("position") == "static"){
11144                 wrap.position("relative");
11145             }
11146             this.clearPositioning('auto');
11147             wrap.clip();
11148             wrap.dom.appendChild(this.dom);
11149             if(wrapXY){
11150                 wrap.setXY(wrapXY);
11151             }
11152         }
11153         return wrap;
11154     },
11155
11156         /* @private */
11157     fxUnwrap : function(wrap, pos, o){
11158         this.clearPositioning();
11159         this.setPositioning(pos);
11160         if(!o.wrap){
11161             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11162             wrap.remove();
11163         }
11164     },
11165
11166         /* @private */
11167     getFxRestore : function(){
11168         var st = this.dom.style;
11169         return {pos: this.getPositioning(), width: st.width, height : st.height};
11170     },
11171
11172         /* @private */
11173     afterFx : function(o){
11174         if(o.afterStyle){
11175             this.applyStyles(o.afterStyle);
11176         }
11177         if(o.afterCls){
11178             this.addClass(o.afterCls);
11179         }
11180         if(o.remove === true){
11181             this.remove();
11182         }
11183         Roo.callback(o.callback, o.scope, [this]);
11184         if(!o.concurrent){
11185             this.fxQueue.shift();
11186             this.nextFx();
11187         }
11188     },
11189
11190         /* @private */
11191     getFxEl : function(){ // support for composite element fx
11192         return Roo.get(this.dom);
11193     },
11194
11195         /* @private */
11196     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11197         animType = animType || 'run';
11198         opt = opt || {};
11199         var anim = Roo.lib.Anim[animType](
11200             this.dom, args,
11201             (opt.duration || defaultDur) || .35,
11202             (opt.easing || defaultEase) || 'easeOut',
11203             function(){
11204                 Roo.callback(cb, this);
11205             },
11206             this
11207         );
11208         opt.anim = anim;
11209         return anim;
11210     }
11211 };
11212
11213 // backwords compat
11214 Roo.Fx.resize = Roo.Fx.scale;
11215
11216 //When included, Roo.Fx is automatically applied to Element so that all basic
11217 //effects are available directly via the Element API
11218 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11219  * Based on:
11220  * Ext JS Library 1.1.1
11221  * Copyright(c) 2006-2007, Ext JS, LLC.
11222  *
11223  * Originally Released Under LGPL - original licence link has changed is not relivant.
11224  *
11225  * Fork - LGPL
11226  * <script type="text/javascript">
11227  */
11228
11229
11230 /**
11231  * @class Roo.CompositeElement
11232  * Standard composite class. Creates a Roo.Element for every element in the collection.
11233  * <br><br>
11234  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11235  * actions will be performed on all the elements in this collection.</b>
11236  * <br><br>
11237  * All methods return <i>this</i> and can be chained.
11238  <pre><code>
11239  var els = Roo.select("#some-el div.some-class", true);
11240  // or select directly from an existing element
11241  var el = Roo.get('some-el');
11242  el.select('div.some-class', true);
11243
11244  els.setWidth(100); // all elements become 100 width
11245  els.hide(true); // all elements fade out and hide
11246  // or
11247  els.setWidth(100).hide(true);
11248  </code></pre>
11249  */
11250 Roo.CompositeElement = function(els){
11251     this.elements = [];
11252     this.addElements(els);
11253 };
11254 Roo.CompositeElement.prototype = {
11255     isComposite: true,
11256     addElements : function(els){
11257         if(!els) {
11258             return this;
11259         }
11260         if(typeof els == "string"){
11261             els = Roo.Element.selectorFunction(els);
11262         }
11263         var yels = this.elements;
11264         var index = yels.length-1;
11265         for(var i = 0, len = els.length; i < len; i++) {
11266                 yels[++index] = Roo.get(els[i]);
11267         }
11268         return this;
11269     },
11270
11271     /**
11272     * Clears this composite and adds the elements returned by the passed selector.
11273     * @param {String/Array} els A string CSS selector, an array of elements or an element
11274     * @return {CompositeElement} this
11275     */
11276     fill : function(els){
11277         this.elements = [];
11278         this.add(els);
11279         return this;
11280     },
11281
11282     /**
11283     * Filters this composite to only elements that match the passed selector.
11284     * @param {String} selector A string CSS selector
11285     * @param {Boolean} inverse return inverse filter (not matches)
11286     * @return {CompositeElement} this
11287     */
11288     filter : function(selector, inverse){
11289         var els = [];
11290         inverse = inverse || false;
11291         this.each(function(el){
11292             var match = inverse ? !el.is(selector) : el.is(selector);
11293             if(match){
11294                 els[els.length] = el.dom;
11295             }
11296         });
11297         this.fill(els);
11298         return this;
11299     },
11300
11301     invoke : function(fn, args){
11302         var els = this.elements;
11303         for(var i = 0, len = els.length; i < len; i++) {
11304                 Roo.Element.prototype[fn].apply(els[i], args);
11305         }
11306         return this;
11307     },
11308     /**
11309     * Adds elements to this composite.
11310     * @param {String/Array} els A string CSS selector, an array of elements or an element
11311     * @return {CompositeElement} this
11312     */
11313     add : function(els){
11314         if(typeof els == "string"){
11315             this.addElements(Roo.Element.selectorFunction(els));
11316         }else if(els.length !== undefined){
11317             this.addElements(els);
11318         }else{
11319             this.addElements([els]);
11320         }
11321         return this;
11322     },
11323     /**
11324     * Calls the passed function passing (el, this, index) for each element in this composite.
11325     * @param {Function} fn The function to call
11326     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11327     * @return {CompositeElement} this
11328     */
11329     each : function(fn, scope){
11330         var els = this.elements;
11331         for(var i = 0, len = els.length; i < len; i++){
11332             if(fn.call(scope || els[i], els[i], this, i) === false) {
11333                 break;
11334             }
11335         }
11336         return this;
11337     },
11338
11339     /**
11340      * Returns the Element object at the specified index
11341      * @param {Number} index
11342      * @return {Roo.Element}
11343      */
11344     item : function(index){
11345         return this.elements[index] || null;
11346     },
11347
11348     /**
11349      * Returns the first Element
11350      * @return {Roo.Element}
11351      */
11352     first : function(){
11353         return this.item(0);
11354     },
11355
11356     /**
11357      * Returns the last Element
11358      * @return {Roo.Element}
11359      */
11360     last : function(){
11361         return this.item(this.elements.length-1);
11362     },
11363
11364     /**
11365      * Returns the number of elements in this composite
11366      * @return Number
11367      */
11368     getCount : function(){
11369         return this.elements.length;
11370     },
11371
11372     /**
11373      * Returns true if this composite contains the passed element
11374      * @return Boolean
11375      */
11376     contains : function(el){
11377         return this.indexOf(el) !== -1;
11378     },
11379
11380     /**
11381      * Returns true if this composite contains the passed element
11382      * @return Boolean
11383      */
11384     indexOf : function(el){
11385         return this.elements.indexOf(Roo.get(el));
11386     },
11387
11388
11389     /**
11390     * Removes the specified element(s).
11391     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11392     * or an array of any of those.
11393     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11394     * @return {CompositeElement} this
11395     */
11396     removeElement : function(el, removeDom){
11397         if(el instanceof Array){
11398             for(var i = 0, len = el.length; i < len; i++){
11399                 this.removeElement(el[i]);
11400             }
11401             return this;
11402         }
11403         var index = typeof el == 'number' ? el : this.indexOf(el);
11404         if(index !== -1){
11405             if(removeDom){
11406                 var d = this.elements[index];
11407                 if(d.dom){
11408                     d.remove();
11409                 }else{
11410                     d.parentNode.removeChild(d);
11411                 }
11412             }
11413             this.elements.splice(index, 1);
11414         }
11415         return this;
11416     },
11417
11418     /**
11419     * Replaces the specified element with the passed element.
11420     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11421     * to replace.
11422     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11423     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11424     * @return {CompositeElement} this
11425     */
11426     replaceElement : function(el, replacement, domReplace){
11427         var index = typeof el == 'number' ? el : this.indexOf(el);
11428         if(index !== -1){
11429             if(domReplace){
11430                 this.elements[index].replaceWith(replacement);
11431             }else{
11432                 this.elements.splice(index, 1, Roo.get(replacement))
11433             }
11434         }
11435         return this;
11436     },
11437
11438     /**
11439      * Removes all elements.
11440      */
11441     clear : function(){
11442         this.elements = [];
11443     }
11444 };
11445 (function(){
11446     Roo.CompositeElement.createCall = function(proto, fnName){
11447         if(!proto[fnName]){
11448             proto[fnName] = function(){
11449                 return this.invoke(fnName, arguments);
11450             };
11451         }
11452     };
11453     for(var fnName in Roo.Element.prototype){
11454         if(typeof Roo.Element.prototype[fnName] == "function"){
11455             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11456         }
11457     };
11458 })();
11459 /*
11460  * Based on:
11461  * Ext JS Library 1.1.1
11462  * Copyright(c) 2006-2007, Ext JS, LLC.
11463  *
11464  * Originally Released Under LGPL - original licence link has changed is not relivant.
11465  *
11466  * Fork - LGPL
11467  * <script type="text/javascript">
11468  */
11469
11470 /**
11471  * @class Roo.CompositeElementLite
11472  * @extends Roo.CompositeElement
11473  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11474  <pre><code>
11475  var els = Roo.select("#some-el div.some-class");
11476  // or select directly from an existing element
11477  var el = Roo.get('some-el');
11478  el.select('div.some-class');
11479
11480  els.setWidth(100); // all elements become 100 width
11481  els.hide(true); // all elements fade out and hide
11482  // or
11483  els.setWidth(100).hide(true);
11484  </code></pre><br><br>
11485  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11486  * actions will be performed on all the elements in this collection.</b>
11487  */
11488 Roo.CompositeElementLite = function(els){
11489     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11490     this.el = new Roo.Element.Flyweight();
11491 };
11492 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11493     addElements : function(els){
11494         if(els){
11495             if(els instanceof Array){
11496                 this.elements = this.elements.concat(els);
11497             }else{
11498                 var yels = this.elements;
11499                 var index = yels.length-1;
11500                 for(var i = 0, len = els.length; i < len; i++) {
11501                     yels[++index] = els[i];
11502                 }
11503             }
11504         }
11505         return this;
11506     },
11507     invoke : function(fn, args){
11508         var els = this.elements;
11509         var el = this.el;
11510         for(var i = 0, len = els.length; i < len; i++) {
11511             el.dom = els[i];
11512                 Roo.Element.prototype[fn].apply(el, args);
11513         }
11514         return this;
11515     },
11516     /**
11517      * Returns a flyweight Element of the dom element object at the specified index
11518      * @param {Number} index
11519      * @return {Roo.Element}
11520      */
11521     item : function(index){
11522         if(!this.elements[index]){
11523             return null;
11524         }
11525         this.el.dom = this.elements[index];
11526         return this.el;
11527     },
11528
11529     // fixes scope with flyweight
11530     addListener : function(eventName, handler, scope, opt){
11531         var els = this.elements;
11532         for(var i = 0, len = els.length; i < len; i++) {
11533             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11534         }
11535         return this;
11536     },
11537
11538     /**
11539     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11540     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11541     * a reference to the dom node, use el.dom.</b>
11542     * @param {Function} fn The function to call
11543     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11544     * @return {CompositeElement} this
11545     */
11546     each : function(fn, scope){
11547         var els = this.elements;
11548         var el = this.el;
11549         for(var i = 0, len = els.length; i < len; i++){
11550             el.dom = els[i];
11551                 if(fn.call(scope || el, el, this, i) === false){
11552                 break;
11553             }
11554         }
11555         return this;
11556     },
11557
11558     indexOf : function(el){
11559         return this.elements.indexOf(Roo.getDom(el));
11560     },
11561
11562     replaceElement : function(el, replacement, domReplace){
11563         var index = typeof el == 'number' ? el : this.indexOf(el);
11564         if(index !== -1){
11565             replacement = Roo.getDom(replacement);
11566             if(domReplace){
11567                 var d = this.elements[index];
11568                 d.parentNode.insertBefore(replacement, d);
11569                 d.parentNode.removeChild(d);
11570             }
11571             this.elements.splice(index, 1, replacement);
11572         }
11573         return this;
11574     }
11575 });
11576 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11577
11578 /*
11579  * Based on:
11580  * Ext JS Library 1.1.1
11581  * Copyright(c) 2006-2007, Ext JS, LLC.
11582  *
11583  * Originally Released Under LGPL - original licence link has changed is not relivant.
11584  *
11585  * Fork - LGPL
11586  * <script type="text/javascript">
11587  */
11588
11589  
11590
11591 /**
11592  * @class Roo.data.Connection
11593  * @extends Roo.util.Observable
11594  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11595  * either to a configured URL, or to a URL specified at request time. 
11596  * 
11597  * Requests made by this class are asynchronous, and will return immediately. No data from
11598  * the server will be available to the statement immediately following the {@link #request} call.
11599  * To process returned data, use a callback in the request options object, or an event listener.
11600  * 
11601  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11602  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11603  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11604  * property and, if present, the IFRAME's XML document as the responseXML property.
11605  * 
11606  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11607  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11608  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11609  * standard DOM methods.
11610  * @constructor
11611  * @param {Object} config a configuration object.
11612  */
11613 Roo.data.Connection = function(config){
11614     Roo.apply(this, config);
11615     this.addEvents({
11616         /**
11617          * @event beforerequest
11618          * Fires before a network request is made to retrieve a data object.
11619          * @param {Connection} conn This Connection object.
11620          * @param {Object} options The options config object passed to the {@link #request} method.
11621          */
11622         "beforerequest" : true,
11623         /**
11624          * @event requestcomplete
11625          * Fires if the request was successfully completed.
11626          * @param {Connection} conn This Connection object.
11627          * @param {Object} response The XHR object containing the response data.
11628          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11629          * @param {Object} options The options config object passed to the {@link #request} method.
11630          */
11631         "requestcomplete" : true,
11632         /**
11633          * @event requestexception
11634          * Fires if an error HTTP status was returned from the server.
11635          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11636          * @param {Connection} conn This Connection object.
11637          * @param {Object} response The XHR object containing the response data.
11638          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11639          * @param {Object} options The options config object passed to the {@link #request} method.
11640          */
11641         "requestexception" : true
11642     });
11643     Roo.data.Connection.superclass.constructor.call(this);
11644 };
11645
11646 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11647     /**
11648      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11649      */
11650     /**
11651      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11652      * extra parameters to each request made by this object. (defaults to undefined)
11653      */
11654     /**
11655      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11656      *  to each request made by this object. (defaults to undefined)
11657      */
11658     /**
11659      * @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)
11660      */
11661     /**
11662      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11663      */
11664     timeout : 30000,
11665     /**
11666      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11667      * @type Boolean
11668      */
11669     autoAbort:false,
11670
11671     /**
11672      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11673      * @type Boolean
11674      */
11675     disableCaching: true,
11676
11677     /**
11678      * Sends an HTTP request to a remote server.
11679      * @param {Object} options An object which may contain the following properties:<ul>
11680      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11681      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11682      * request, a url encoded string or a function to call to get either.</li>
11683      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11684      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11685      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11686      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11687      * <li>options {Object} The parameter to the request call.</li>
11688      * <li>success {Boolean} True if the request succeeded.</li>
11689      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11690      * </ul></li>
11691      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11692      * The callback is passed the following parameters:<ul>
11693      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11694      * <li>options {Object} The parameter to the request call.</li>
11695      * </ul></li>
11696      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11697      * The callback is passed the following parameters:<ul>
11698      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11699      * <li>options {Object} The parameter to the request call.</li>
11700      * </ul></li>
11701      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11702      * for the callback function. Defaults to the browser window.</li>
11703      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11704      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11705      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11706      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11707      * params for the post data. Any params will be appended to the URL.</li>
11708      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11709      * </ul>
11710      * @return {Number} transactionId
11711      */
11712     request : function(o){
11713         if(this.fireEvent("beforerequest", this, o) !== false){
11714             var p = o.params;
11715
11716             if(typeof p == "function"){
11717                 p = p.call(o.scope||window, o);
11718             }
11719             if(typeof p == "object"){
11720                 p = Roo.urlEncode(o.params);
11721             }
11722             if(this.extraParams){
11723                 var extras = Roo.urlEncode(this.extraParams);
11724                 p = p ? (p + '&' + extras) : extras;
11725             }
11726
11727             var url = o.url || this.url;
11728             if(typeof url == 'function'){
11729                 url = url.call(o.scope||window, o);
11730             }
11731
11732             if(o.form){
11733                 var form = Roo.getDom(o.form);
11734                 url = url || form.action;
11735
11736                 var enctype = form.getAttribute("enctype");
11737                 
11738                 if (o.formData) {
11739                     return this.doFormDataUpload(o, url);
11740                 }
11741                 
11742                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11743                     return this.doFormUpload(o, p, url);
11744                 }
11745                 var f = Roo.lib.Ajax.serializeForm(form);
11746                 p = p ? (p + '&' + f) : f;
11747             }
11748             
11749             if (!o.form && o.formData) {
11750                 o.formData = o.formData === true ? new FormData() : o.formData;
11751                 for (var k in o.params) {
11752                     o.formData.append(k,o.params[k]);
11753                 }
11754                     
11755                 return this.doFormDataUpload(o, url);
11756             }
11757             
11758
11759             var hs = o.headers;
11760             if(this.defaultHeaders){
11761                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11762                 if(!o.headers){
11763                     o.headers = hs;
11764                 }
11765             }
11766
11767             var cb = {
11768                 success: this.handleResponse,
11769                 failure: this.handleFailure,
11770                 scope: this,
11771                 argument: {options: o},
11772                 timeout : o.timeout || this.timeout
11773             };
11774
11775             var method = o.method||this.method||(p ? "POST" : "GET");
11776
11777             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11778                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11779             }
11780
11781             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11782                 if(o.autoAbort){
11783                     this.abort();
11784                 }
11785             }else if(this.autoAbort !== false){
11786                 this.abort();
11787             }
11788
11789             if((method == 'GET' && p) || o.xmlData){
11790                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11791                 p = '';
11792             }
11793             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11794             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11795             Roo.lib.Ajax.useDefaultHeader == true;
11796             return this.transId;
11797         }else{
11798             Roo.callback(o.callback, o.scope, [o, null, null]);
11799             return null;
11800         }
11801     },
11802
11803     /**
11804      * Determine whether this object has a request outstanding.
11805      * @param {Number} transactionId (Optional) defaults to the last transaction
11806      * @return {Boolean} True if there is an outstanding request.
11807      */
11808     isLoading : function(transId){
11809         if(transId){
11810             return Roo.lib.Ajax.isCallInProgress(transId);
11811         }else{
11812             return this.transId ? true : false;
11813         }
11814     },
11815
11816     /**
11817      * Aborts any outstanding request.
11818      * @param {Number} transactionId (Optional) defaults to the last transaction
11819      */
11820     abort : function(transId){
11821         if(transId || this.isLoading()){
11822             Roo.lib.Ajax.abort(transId || this.transId);
11823         }
11824     },
11825
11826     // private
11827     handleResponse : function(response){
11828         this.transId = false;
11829         var options = response.argument.options;
11830         response.argument = options ? options.argument : null;
11831         this.fireEvent("requestcomplete", this, response, options);
11832         Roo.callback(options.success, options.scope, [response, options]);
11833         Roo.callback(options.callback, options.scope, [options, true, response]);
11834     },
11835
11836     // private
11837     handleFailure : function(response, e){
11838         this.transId = false;
11839         var options = response.argument.options;
11840         response.argument = options ? options.argument : null;
11841         this.fireEvent("requestexception", this, response, options, e);
11842         Roo.callback(options.failure, options.scope, [response, options]);
11843         Roo.callback(options.callback, options.scope, [options, false, response]);
11844     },
11845
11846     // private
11847     doFormUpload : function(o, ps, url){
11848         var id = Roo.id();
11849         var frame = document.createElement('iframe');
11850         frame.id = id;
11851         frame.name = id;
11852         frame.className = 'x-hidden';
11853         if(Roo.isIE){
11854             frame.src = Roo.SSL_SECURE_URL;
11855         }
11856         document.body.appendChild(frame);
11857
11858         if(Roo.isIE){
11859            document.frames[id].name = id;
11860         }
11861
11862         var form = Roo.getDom(o.form);
11863         form.target = id;
11864         form.method = 'POST';
11865         form.enctype = form.encoding = 'multipart/form-data';
11866         if(url){
11867             form.action = url;
11868         }
11869
11870         var hiddens, hd;
11871         if(ps){ // add dynamic params
11872             hiddens = [];
11873             ps = Roo.urlDecode(ps, false);
11874             for(var k in ps){
11875                 if(ps.hasOwnProperty(k)){
11876                     hd = document.createElement('input');
11877                     hd.type = 'hidden';
11878                     hd.name = k;
11879                     hd.value = ps[k];
11880                     form.appendChild(hd);
11881                     hiddens.push(hd);
11882                 }
11883             }
11884         }
11885
11886         function cb(){
11887             var r = {  // bogus response object
11888                 responseText : '',
11889                 responseXML : null
11890             };
11891
11892             r.argument = o ? o.argument : null;
11893
11894             try { //
11895                 var doc;
11896                 if(Roo.isIE){
11897                     doc = frame.contentWindow.document;
11898                 }else {
11899                     doc = (frame.contentDocument || window.frames[id].document);
11900                 }
11901                 if(doc && doc.body){
11902                     r.responseText = doc.body.innerHTML;
11903                 }
11904                 if(doc && doc.XMLDocument){
11905                     r.responseXML = doc.XMLDocument;
11906                 }else {
11907                     r.responseXML = doc;
11908                 }
11909             }
11910             catch(e) {
11911                 // ignore
11912             }
11913
11914             Roo.EventManager.removeListener(frame, 'load', cb, this);
11915
11916             this.fireEvent("requestcomplete", this, r, o);
11917             Roo.callback(o.success, o.scope, [r, o]);
11918             Roo.callback(o.callback, o.scope, [o, true, r]);
11919
11920             setTimeout(function(){document.body.removeChild(frame);}, 100);
11921         }
11922
11923         Roo.EventManager.on(frame, 'load', cb, this);
11924         form.submit();
11925
11926         if(hiddens){ // remove dynamic params
11927             for(var i = 0, len = hiddens.length; i < len; i++){
11928                 form.removeChild(hiddens[i]);
11929             }
11930         }
11931     },
11932     // this is a 'formdata version???'
11933     
11934     
11935     doFormDataUpload : function(o,  url)
11936     {
11937         var formData;
11938         if (o.form) {
11939             var form =  Roo.getDom(o.form);
11940             form.enctype = form.encoding = 'multipart/form-data';
11941             formData = o.formData === true ? new FormData(form) : o.formData;
11942         } else {
11943             formData = o.formData === true ? new FormData() : o.formData;
11944         }
11945         
11946       
11947         var cb = {
11948             success: this.handleResponse,
11949             failure: this.handleFailure,
11950             scope: this,
11951             argument: {options: o},
11952             timeout : o.timeout || this.timeout
11953         };
11954  
11955         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11956             if(o.autoAbort){
11957                 this.abort();
11958             }
11959         }else if(this.autoAbort !== false){
11960             this.abort();
11961         }
11962
11963         //Roo.lib.Ajax.defaultPostHeader = null;
11964         Roo.lib.Ajax.useDefaultHeader = false;
11965         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11966         Roo.lib.Ajax.useDefaultHeader = true;
11967  
11968          
11969     }
11970     
11971 });
11972 /*
11973  * Based on:
11974  * Ext JS Library 1.1.1
11975  * Copyright(c) 2006-2007, Ext JS, LLC.
11976  *
11977  * Originally Released Under LGPL - original licence link has changed is not relivant.
11978  *
11979  * Fork - LGPL
11980  * <script type="text/javascript">
11981  */
11982  
11983 /**
11984  * Global Ajax request class.
11985  * 
11986  * @class Roo.Ajax
11987  * @extends Roo.data.Connection
11988  * @static
11989  * 
11990  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11991  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11992  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11993  * @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)
11994  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11995  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11996  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11997  */
11998 Roo.Ajax = new Roo.data.Connection({
11999     // fix up the docs
12000     /**
12001      * @scope Roo.Ajax
12002      * @type {Boolear} 
12003      */
12004     autoAbort : false,
12005
12006     /**
12007      * Serialize the passed form into a url encoded string
12008      * @scope Roo.Ajax
12009      * @param {String/HTMLElement} form
12010      * @return {String}
12011      */
12012     serializeForm : function(form){
12013         return Roo.lib.Ajax.serializeForm(form);
12014     }
12015 });/*
12016  * Based on:
12017  * Ext JS Library 1.1.1
12018  * Copyright(c) 2006-2007, Ext JS, LLC.
12019  *
12020  * Originally Released Under LGPL - original licence link has changed is not relivant.
12021  *
12022  * Fork - LGPL
12023  * <script type="text/javascript">
12024  */
12025
12026  
12027 /**
12028  * @class Roo.UpdateManager
12029  * @extends Roo.util.Observable
12030  * Provides AJAX-style update for Element object.<br><br>
12031  * Usage:<br>
12032  * <pre><code>
12033  * // Get it from a Roo.Element object
12034  * var el = Roo.get("foo");
12035  * var mgr = el.getUpdateManager();
12036  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
12037  * ...
12038  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
12039  * <br>
12040  * // or directly (returns the same UpdateManager instance)
12041  * var mgr = new Roo.UpdateManager("myElementId");
12042  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
12043  * mgr.on("update", myFcnNeedsToKnow);
12044  * <br>
12045    // short handed call directly from the element object
12046    Roo.get("foo").load({
12047         url: "bar.php",
12048         scripts:true,
12049         params: "for=bar",
12050         text: "Loading Foo..."
12051    });
12052  * </code></pre>
12053  * @constructor
12054  * Create new UpdateManager directly.
12055  * @param {String/HTMLElement/Roo.Element} el The element to update
12056  * @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).
12057  */
12058 Roo.UpdateManager = function(el, forceNew){
12059     el = Roo.get(el);
12060     if(!forceNew && el.updateManager){
12061         return el.updateManager;
12062     }
12063     /**
12064      * The Element object
12065      * @type Roo.Element
12066      */
12067     this.el = el;
12068     /**
12069      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
12070      * @type String
12071      */
12072     this.defaultUrl = null;
12073
12074     this.addEvents({
12075         /**
12076          * @event beforeupdate
12077          * Fired before an update is made, return false from your handler and the update is cancelled.
12078          * @param {Roo.Element} el
12079          * @param {String/Object/Function} url
12080          * @param {String/Object} params
12081          */
12082         "beforeupdate": true,
12083         /**
12084          * @event update
12085          * Fired after successful update is made.
12086          * @param {Roo.Element} el
12087          * @param {Object} oResponseObject The response Object
12088          */
12089         "update": true,
12090         /**
12091          * @event failure
12092          * Fired on update failure.
12093          * @param {Roo.Element} el
12094          * @param {Object} oResponseObject The response Object
12095          */
12096         "failure": true
12097     });
12098     var d = Roo.UpdateManager.defaults;
12099     /**
12100      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12101      * @type String
12102      */
12103     this.sslBlankUrl = d.sslBlankUrl;
12104     /**
12105      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12106      * @type Boolean
12107      */
12108     this.disableCaching = d.disableCaching;
12109     /**
12110      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12111      * @type String
12112      */
12113     this.indicatorText = d.indicatorText;
12114     /**
12115      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12116      * @type String
12117      */
12118     this.showLoadIndicator = d.showLoadIndicator;
12119     /**
12120      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12121      * @type Number
12122      */
12123     this.timeout = d.timeout;
12124
12125     /**
12126      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12127      * @type Boolean
12128      */
12129     this.loadScripts = d.loadScripts;
12130
12131     /**
12132      * Transaction object of current executing transaction
12133      */
12134     this.transaction = null;
12135
12136     /**
12137      * @private
12138      */
12139     this.autoRefreshProcId = null;
12140     /**
12141      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12142      * @type Function
12143      */
12144     this.refreshDelegate = this.refresh.createDelegate(this);
12145     /**
12146      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12147      * @type Function
12148      */
12149     this.updateDelegate = this.update.createDelegate(this);
12150     /**
12151      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12152      * @type Function
12153      */
12154     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12155     /**
12156      * @private
12157      */
12158     this.successDelegate = this.processSuccess.createDelegate(this);
12159     /**
12160      * @private
12161      */
12162     this.failureDelegate = this.processFailure.createDelegate(this);
12163
12164     if(!this.renderer){
12165      /**
12166       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12167       */
12168     this.renderer = new Roo.UpdateManager.BasicRenderer();
12169     }
12170     
12171     Roo.UpdateManager.superclass.constructor.call(this);
12172 };
12173
12174 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12175     /**
12176      * Get the Element this UpdateManager is bound to
12177      * @return {Roo.Element} The element
12178      */
12179     getEl : function(){
12180         return this.el;
12181     },
12182     /**
12183      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12184      * @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:
12185 <pre><code>
12186 um.update({<br/>
12187     url: "your-url.php",<br/>
12188     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12189     callback: yourFunction,<br/>
12190     scope: yourObject, //(optional scope)  <br/>
12191     discardUrl: false, <br/>
12192     nocache: false,<br/>
12193     text: "Loading...",<br/>
12194     timeout: 30,<br/>
12195     scripts: false<br/>
12196 });
12197 </code></pre>
12198      * The only required property is url. The optional properties nocache, text and scripts
12199      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12200      * @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}
12201      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12202      * @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.
12203      */
12204     update : function(url, params, callback, discardUrl){
12205         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12206             var method = this.method,
12207                 cfg;
12208             if(typeof url == "object"){ // must be config object
12209                 cfg = url;
12210                 url = cfg.url;
12211                 params = params || cfg.params;
12212                 callback = callback || cfg.callback;
12213                 discardUrl = discardUrl || cfg.discardUrl;
12214                 if(callback && cfg.scope){
12215                     callback = callback.createDelegate(cfg.scope);
12216                 }
12217                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12218                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12219                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12220                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12221                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12222             }
12223             this.showLoading();
12224             if(!discardUrl){
12225                 this.defaultUrl = url;
12226             }
12227             if(typeof url == "function"){
12228                 url = url.call(this);
12229             }
12230
12231             method = method || (params ? "POST" : "GET");
12232             if(method == "GET"){
12233                 url = this.prepareUrl(url);
12234             }
12235
12236             var o = Roo.apply(cfg ||{}, {
12237                 url : url,
12238                 params: params,
12239                 success: this.successDelegate,
12240                 failure: this.failureDelegate,
12241                 callback: undefined,
12242                 timeout: (this.timeout*1000),
12243                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12244             });
12245             Roo.log("updated manager called with timeout of " + o.timeout);
12246             this.transaction = Roo.Ajax.request(o);
12247         }
12248     },
12249
12250     /**
12251      * 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.
12252      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12253      * @param {String/HTMLElement} form The form Id or form element
12254      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12255      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12256      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12257      */
12258     formUpdate : function(form, url, reset, callback){
12259         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12260             if(typeof url == "function"){
12261                 url = url.call(this);
12262             }
12263             form = Roo.getDom(form);
12264             this.transaction = Roo.Ajax.request({
12265                 form: form,
12266                 url:url,
12267                 success: this.successDelegate,
12268                 failure: this.failureDelegate,
12269                 timeout: (this.timeout*1000),
12270                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12271             });
12272             this.showLoading.defer(1, this);
12273         }
12274     },
12275
12276     /**
12277      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12278      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12279      */
12280     refresh : function(callback){
12281         if(this.defaultUrl == null){
12282             return;
12283         }
12284         this.update(this.defaultUrl, null, callback, true);
12285     },
12286
12287     /**
12288      * Set this element to auto refresh.
12289      * @param {Number} interval How often to update (in seconds).
12290      * @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)
12291      * @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}
12292      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12293      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12294      */
12295     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12296         if(refreshNow){
12297             this.update(url || this.defaultUrl, params, callback, true);
12298         }
12299         if(this.autoRefreshProcId){
12300             clearInterval(this.autoRefreshProcId);
12301         }
12302         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12303     },
12304
12305     /**
12306      * Stop auto refresh on this element.
12307      */
12308      stopAutoRefresh : function(){
12309         if(this.autoRefreshProcId){
12310             clearInterval(this.autoRefreshProcId);
12311             delete this.autoRefreshProcId;
12312         }
12313     },
12314
12315     isAutoRefreshing : function(){
12316        return this.autoRefreshProcId ? true : false;
12317     },
12318     /**
12319      * Called to update the element to "Loading" state. Override to perform custom action.
12320      */
12321     showLoading : function(){
12322         if(this.showLoadIndicator){
12323             this.el.update(this.indicatorText);
12324         }
12325     },
12326
12327     /**
12328      * Adds unique parameter to query string if disableCaching = true
12329      * @private
12330      */
12331     prepareUrl : function(url){
12332         if(this.disableCaching){
12333             var append = "_dc=" + (new Date().getTime());
12334             if(url.indexOf("?") !== -1){
12335                 url += "&" + append;
12336             }else{
12337                 url += "?" + append;
12338             }
12339         }
12340         return url;
12341     },
12342
12343     /**
12344      * @private
12345      */
12346     processSuccess : function(response){
12347         this.transaction = null;
12348         if(response.argument.form && response.argument.reset){
12349             try{ // put in try/catch since some older FF releases had problems with this
12350                 response.argument.form.reset();
12351             }catch(e){}
12352         }
12353         if(this.loadScripts){
12354             this.renderer.render(this.el, response, this,
12355                 this.updateComplete.createDelegate(this, [response]));
12356         }else{
12357             this.renderer.render(this.el, response, this);
12358             this.updateComplete(response);
12359         }
12360     },
12361
12362     updateComplete : function(response){
12363         this.fireEvent("update", this.el, response);
12364         if(typeof response.argument.callback == "function"){
12365             response.argument.callback(this.el, true, response);
12366         }
12367     },
12368
12369     /**
12370      * @private
12371      */
12372     processFailure : function(response){
12373         this.transaction = null;
12374         this.fireEvent("failure", this.el, response);
12375         if(typeof response.argument.callback == "function"){
12376             response.argument.callback(this.el, false, response);
12377         }
12378     },
12379
12380     /**
12381      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12382      * @param {Object} renderer The object implementing the render() method
12383      */
12384     setRenderer : function(renderer){
12385         this.renderer = renderer;
12386     },
12387
12388     getRenderer : function(){
12389        return this.renderer;
12390     },
12391
12392     /**
12393      * Set the defaultUrl used for updates
12394      * @param {String/Function} defaultUrl The url or a function to call to get the url
12395      */
12396     setDefaultUrl : function(defaultUrl){
12397         this.defaultUrl = defaultUrl;
12398     },
12399
12400     /**
12401      * Aborts the executing transaction
12402      */
12403     abort : function(){
12404         if(this.transaction){
12405             Roo.Ajax.abort(this.transaction);
12406         }
12407     },
12408
12409     /**
12410      * Returns true if an update is in progress
12411      * @return {Boolean}
12412      */
12413     isUpdating : function(){
12414         if(this.transaction){
12415             return Roo.Ajax.isLoading(this.transaction);
12416         }
12417         return false;
12418     }
12419 });
12420
12421 /**
12422  * @class Roo.UpdateManager.defaults
12423  * @static (not really - but it helps the doc tool)
12424  * The defaults collection enables customizing the default properties of UpdateManager
12425  */
12426    Roo.UpdateManager.defaults = {
12427        /**
12428          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12429          * @type Number
12430          */
12431          timeout : 30,
12432
12433          /**
12434          * True to process scripts by default (Defaults to false).
12435          * @type Boolean
12436          */
12437         loadScripts : false,
12438
12439         /**
12440         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12441         * @type String
12442         */
12443         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12444         /**
12445          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12446          * @type Boolean
12447          */
12448         disableCaching : false,
12449         /**
12450          * Whether to show indicatorText when loading (Defaults to true).
12451          * @type Boolean
12452          */
12453         showLoadIndicator : true,
12454         /**
12455          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12456          * @type String
12457          */
12458         indicatorText : '<div class="loading-indicator">Loading...</div>'
12459    };
12460
12461 /**
12462  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12463  *Usage:
12464  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12465  * @param {String/HTMLElement/Roo.Element} el The element to update
12466  * @param {String} url The url
12467  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12468  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12469  * @static
12470  * @deprecated
12471  * @member Roo.UpdateManager
12472  */
12473 Roo.UpdateManager.updateElement = function(el, url, params, options){
12474     var um = Roo.get(el, true).getUpdateManager();
12475     Roo.apply(um, options);
12476     um.update(url, params, options ? options.callback : null);
12477 };
12478 // alias for backwards compat
12479 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12480 /**
12481  * @class Roo.UpdateManager.BasicRenderer
12482  * Default Content renderer. Updates the elements innerHTML with the responseText.
12483  */
12484 Roo.UpdateManager.BasicRenderer = function(){};
12485
12486 Roo.UpdateManager.BasicRenderer.prototype = {
12487     /**
12488      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12489      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12490      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12491      * @param {Roo.Element} el The element being rendered
12492      * @param {Object} response The YUI Connect response object
12493      * @param {UpdateManager} updateManager The calling update manager
12494      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12495      */
12496      render : function(el, response, updateManager, callback){
12497         el.update(response.responseText, updateManager.loadScripts, callback);
12498     }
12499 };
12500 /*
12501  * Based on:
12502  * Roo JS
12503  * (c)) Alan Knowles
12504  * Licence : LGPL
12505  */
12506
12507
12508 /**
12509  * @class Roo.DomTemplate
12510  * @extends Roo.Template
12511  * An effort at a dom based template engine..
12512  *
12513  * Similar to XTemplate, except it uses dom parsing to create the template..
12514  *
12515  * Supported features:
12516  *
12517  *  Tags:
12518
12519 <pre><code>
12520       {a_variable} - output encoded.
12521       {a_variable.format:("Y-m-d")} - call a method on the variable
12522       {a_variable:raw} - unencoded output
12523       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12524       {a_variable:this.method_on_template(...)} - call a method on the template object.
12525  
12526 </code></pre>
12527  *  The tpl tag:
12528 <pre><code>
12529         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12530         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12531         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12532         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12533   
12534 </code></pre>
12535  *      
12536  */
12537 Roo.DomTemplate = function()
12538 {
12539      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12540      if (this.html) {
12541         this.compile();
12542      }
12543 };
12544
12545
12546 Roo.extend(Roo.DomTemplate, Roo.Template, {
12547     /**
12548      * id counter for sub templates.
12549      */
12550     id : 0,
12551     /**
12552      * flag to indicate if dom parser is inside a pre,
12553      * it will strip whitespace if not.
12554      */
12555     inPre : false,
12556     
12557     /**
12558      * The various sub templates
12559      */
12560     tpls : false,
12561     
12562     
12563     
12564     /**
12565      *
12566      * basic tag replacing syntax
12567      * WORD:WORD()
12568      *
12569      * // you can fake an object call by doing this
12570      *  x.t:(test,tesT) 
12571      * 
12572      */
12573     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12574     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12575     
12576     iterChild : function (node, method) {
12577         
12578         var oldPre = this.inPre;
12579         if (node.tagName == 'PRE') {
12580             this.inPre = true;
12581         }
12582         for( var i = 0; i < node.childNodes.length; i++) {
12583             method.call(this, node.childNodes[i]);
12584         }
12585         this.inPre = oldPre;
12586     },
12587     
12588     
12589     
12590     /**
12591      * compile the template
12592      *
12593      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12594      *
12595      */
12596     compile: function()
12597     {
12598         var s = this.html;
12599         
12600         // covert the html into DOM...
12601         var doc = false;
12602         var div =false;
12603         try {
12604             doc = document.implementation.createHTMLDocument("");
12605             doc.documentElement.innerHTML =   this.html  ;
12606             div = doc.documentElement;
12607         } catch (e) {
12608             // old IE... - nasty -- it causes all sorts of issues.. with
12609             // images getting pulled from server..
12610             div = document.createElement('div');
12611             div.innerHTML = this.html;
12612         }
12613         //doc.documentElement.innerHTML = htmlBody
12614          
12615         
12616         
12617         this.tpls = [];
12618         var _t = this;
12619         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12620         
12621         var tpls = this.tpls;
12622         
12623         // create a top level template from the snippet..
12624         
12625         //Roo.log(div.innerHTML);
12626         
12627         var tpl = {
12628             uid : 'master',
12629             id : this.id++,
12630             attr : false,
12631             value : false,
12632             body : div.innerHTML,
12633             
12634             forCall : false,
12635             execCall : false,
12636             dom : div,
12637             isTop : true
12638             
12639         };
12640         tpls.unshift(tpl);
12641         
12642         
12643         // compile them...
12644         this.tpls = [];
12645         Roo.each(tpls, function(tp){
12646             this.compileTpl(tp);
12647             this.tpls[tp.id] = tp;
12648         }, this);
12649         
12650         this.master = tpls[0];
12651         return this;
12652         
12653         
12654     },
12655     
12656     compileNode : function(node, istop) {
12657         // test for
12658         //Roo.log(node);
12659         
12660         
12661         // skip anything not a tag..
12662         if (node.nodeType != 1) {
12663             if (node.nodeType == 3 && !this.inPre) {
12664                 // reduce white space..
12665                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12666                 
12667             }
12668             return;
12669         }
12670         
12671         var tpl = {
12672             uid : false,
12673             id : false,
12674             attr : false,
12675             value : false,
12676             body : '',
12677             
12678             forCall : false,
12679             execCall : false,
12680             dom : false,
12681             isTop : istop
12682             
12683             
12684         };
12685         
12686         
12687         switch(true) {
12688             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12689             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12690             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12691             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12692             // no default..
12693         }
12694         
12695         
12696         if (!tpl.attr) {
12697             // just itterate children..
12698             this.iterChild(node,this.compileNode);
12699             return;
12700         }
12701         tpl.uid = this.id++;
12702         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12703         node.removeAttribute('roo-'+ tpl.attr);
12704         if (tpl.attr != 'name') {
12705             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12706             node.parentNode.replaceChild(placeholder,  node);
12707         } else {
12708             
12709             var placeholder =  document.createElement('span');
12710             placeholder.className = 'roo-tpl-' + tpl.value;
12711             node.parentNode.replaceChild(placeholder,  node);
12712         }
12713         
12714         // parent now sees '{domtplXXXX}
12715         this.iterChild(node,this.compileNode);
12716         
12717         // we should now have node body...
12718         var div = document.createElement('div');
12719         div.appendChild(node);
12720         tpl.dom = node;
12721         // this has the unfortunate side effect of converting tagged attributes
12722         // eg. href="{...}" into %7C...%7D
12723         // this has been fixed by searching for those combo's although it's a bit hacky..
12724         
12725         
12726         tpl.body = div.innerHTML;
12727         
12728         
12729          
12730         tpl.id = tpl.uid;
12731         switch(tpl.attr) {
12732             case 'for' :
12733                 switch (tpl.value) {
12734                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12735                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12736                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12737                 }
12738                 break;
12739             
12740             case 'exec':
12741                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12742                 break;
12743             
12744             case 'if':     
12745                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12746                 break;
12747             
12748             case 'name':
12749                 tpl.id  = tpl.value; // replace non characters???
12750                 break;
12751             
12752         }
12753         
12754         
12755         this.tpls.push(tpl);
12756         
12757         
12758         
12759     },
12760     
12761     
12762     
12763     
12764     /**
12765      * Compile a segment of the template into a 'sub-template'
12766      *
12767      * 
12768      * 
12769      *
12770      */
12771     compileTpl : function(tpl)
12772     {
12773         var fm = Roo.util.Format;
12774         var useF = this.disableFormats !== true;
12775         
12776         var sep = Roo.isGecko ? "+\n" : ",\n";
12777         
12778         var undef = function(str) {
12779             Roo.debug && Roo.log("Property not found :"  + str);
12780             return '';
12781         };
12782           
12783         //Roo.log(tpl.body);
12784         
12785         
12786         
12787         var fn = function(m, lbrace, name, format, args)
12788         {
12789             //Roo.log("ARGS");
12790             //Roo.log(arguments);
12791             args = args ? args.replace(/\\'/g,"'") : args;
12792             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12793             if (typeof(format) == 'undefined') {
12794                 format =  'htmlEncode'; 
12795             }
12796             if (format == 'raw' ) {
12797                 format = false;
12798             }
12799             
12800             if(name.substr(0, 6) == 'domtpl'){
12801                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12802             }
12803             
12804             // build an array of options to determine if value is undefined..
12805             
12806             // basically get 'xxxx.yyyy' then do
12807             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12808             //    (function () { Roo.log("Property not found"); return ''; })() :
12809             //    ......
12810             
12811             var udef_ar = [];
12812             var lookfor = '';
12813             Roo.each(name.split('.'), function(st) {
12814                 lookfor += (lookfor.length ? '.': '') + st;
12815                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12816             });
12817             
12818             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12819             
12820             
12821             if(format && useF){
12822                 
12823                 args = args ? ',' + args : "";
12824                  
12825                 if(format.substr(0, 5) != "this."){
12826                     format = "fm." + format + '(';
12827                 }else{
12828                     format = 'this.call("'+ format.substr(5) + '", ';
12829                     args = ", values";
12830                 }
12831                 
12832                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12833             }
12834              
12835             if (args && args.length) {
12836                 // called with xxyx.yuu:(test,test)
12837                 // change to ()
12838                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12839             }
12840             // raw.. - :raw modifier..
12841             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12842             
12843         };
12844         var body;
12845         // branched to use + in gecko and [].join() in others
12846         if(Roo.isGecko){
12847             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12848                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12849                     "';};};";
12850         }else{
12851             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12852             body.push(tpl.body.replace(/(\r\n|\n)/g,
12853                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12854             body.push("'].join('');};};");
12855             body = body.join('');
12856         }
12857         
12858         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12859        
12860         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12861         eval(body);
12862         
12863         return this;
12864     },
12865      
12866     /**
12867      * same as applyTemplate, except it's done to one of the subTemplates
12868      * when using named templates, you can do:
12869      *
12870      * var str = pl.applySubTemplate('your-name', values);
12871      *
12872      * 
12873      * @param {Number} id of the template
12874      * @param {Object} values to apply to template
12875      * @param {Object} parent (normaly the instance of this object)
12876      */
12877     applySubTemplate : function(id, values, parent)
12878     {
12879         
12880         
12881         var t = this.tpls[id];
12882         
12883         
12884         try { 
12885             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12886                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12887                 return '';
12888             }
12889         } catch(e) {
12890             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12891             Roo.log(values);
12892           
12893             return '';
12894         }
12895         try { 
12896             
12897             if(t.execCall && t.execCall.call(this, values, parent)){
12898                 return '';
12899             }
12900         } catch(e) {
12901             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12902             Roo.log(values);
12903             return '';
12904         }
12905         
12906         try {
12907             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12908             parent = t.target ? values : parent;
12909             if(t.forCall && vs instanceof Array){
12910                 var buf = [];
12911                 for(var i = 0, len = vs.length; i < len; i++){
12912                     try {
12913                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12914                     } catch (e) {
12915                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12916                         Roo.log(e.body);
12917                         //Roo.log(t.compiled);
12918                         Roo.log(vs[i]);
12919                     }   
12920                 }
12921                 return buf.join('');
12922             }
12923         } catch (e) {
12924             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12925             Roo.log(values);
12926             return '';
12927         }
12928         try {
12929             return t.compiled.call(this, vs, parent);
12930         } catch (e) {
12931             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12932             Roo.log(e.body);
12933             //Roo.log(t.compiled);
12934             Roo.log(values);
12935             return '';
12936         }
12937     },
12938
12939    
12940
12941     applyTemplate : function(values){
12942         return this.master.compiled.call(this, values, {});
12943         //var s = this.subs;
12944     },
12945
12946     apply : function(){
12947         return this.applyTemplate.apply(this, arguments);
12948     }
12949
12950  });
12951
12952 Roo.DomTemplate.from = function(el){
12953     el = Roo.getDom(el);
12954     return new Roo.Domtemplate(el.value || el.innerHTML);
12955 };/*
12956  * Based on:
12957  * Ext JS Library 1.1.1
12958  * Copyright(c) 2006-2007, Ext JS, LLC.
12959  *
12960  * Originally Released Under LGPL - original licence link has changed is not relivant.
12961  *
12962  * Fork - LGPL
12963  * <script type="text/javascript">
12964  */
12965
12966 /**
12967  * @class Roo.util.DelayedTask
12968  * Provides a convenient method of performing setTimeout where a new
12969  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12970  * You can use this class to buffer
12971  * the keypress events for a certain number of milliseconds, and perform only if they stop
12972  * for that amount of time.
12973  * @constructor The parameters to this constructor serve as defaults and are not required.
12974  * @param {Function} fn (optional) The default function to timeout
12975  * @param {Object} scope (optional) The default scope of that timeout
12976  * @param {Array} args (optional) The default Array of arguments
12977  */
12978 Roo.util.DelayedTask = function(fn, scope, args){
12979     var id = null, d, t;
12980
12981     var call = function(){
12982         var now = new Date().getTime();
12983         if(now - t >= d){
12984             clearInterval(id);
12985             id = null;
12986             fn.apply(scope, args || []);
12987         }
12988     };
12989     /**
12990      * Cancels any pending timeout and queues a new one
12991      * @param {Number} delay The milliseconds to delay
12992      * @param {Function} newFn (optional) Overrides function passed to constructor
12993      * @param {Object} newScope (optional) Overrides scope passed to constructor
12994      * @param {Array} newArgs (optional) Overrides args passed to constructor
12995      */
12996     this.delay = function(delay, newFn, newScope, newArgs){
12997         if(id && delay != d){
12998             this.cancel();
12999         }
13000         d = delay;
13001         t = new Date().getTime();
13002         fn = newFn || fn;
13003         scope = newScope || scope;
13004         args = newArgs || args;
13005         if(!id){
13006             id = setInterval(call, d);
13007         }
13008     };
13009
13010     /**
13011      * Cancel the last queued timeout
13012      */
13013     this.cancel = function(){
13014         if(id){
13015             clearInterval(id);
13016             id = null;
13017         }
13018     };
13019 };/*
13020  * Based on:
13021  * Ext JS Library 1.1.1
13022  * Copyright(c) 2006-2007, Ext JS, LLC.
13023  *
13024  * Originally Released Under LGPL - original licence link has changed is not relivant.
13025  *
13026  * Fork - LGPL
13027  * <script type="text/javascript">
13028  */
13029  
13030  
13031 Roo.util.TaskRunner = function(interval){
13032     interval = interval || 10;
13033     var tasks = [], removeQueue = [];
13034     var id = 0;
13035     var running = false;
13036
13037     var stopThread = function(){
13038         running = false;
13039         clearInterval(id);
13040         id = 0;
13041     };
13042
13043     var startThread = function(){
13044         if(!running){
13045             running = true;
13046             id = setInterval(runTasks, interval);
13047         }
13048     };
13049
13050     var removeTask = function(task){
13051         removeQueue.push(task);
13052         if(task.onStop){
13053             task.onStop();
13054         }
13055     };
13056
13057     var runTasks = function(){
13058         if(removeQueue.length > 0){
13059             for(var i = 0, len = removeQueue.length; i < len; i++){
13060                 tasks.remove(removeQueue[i]);
13061             }
13062             removeQueue = [];
13063             if(tasks.length < 1){
13064                 stopThread();
13065                 return;
13066             }
13067         }
13068         var now = new Date().getTime();
13069         for(var i = 0, len = tasks.length; i < len; ++i){
13070             var t = tasks[i];
13071             var itime = now - t.taskRunTime;
13072             if(t.interval <= itime){
13073                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13074                 t.taskRunTime = now;
13075                 if(rt === false || t.taskRunCount === t.repeat){
13076                     removeTask(t);
13077                     return;
13078                 }
13079             }
13080             if(t.duration && t.duration <= (now - t.taskStartTime)){
13081                 removeTask(t);
13082             }
13083         }
13084     };
13085
13086     /**
13087      * Queues a new task.
13088      * @param {Object} task
13089      */
13090     this.start = function(task){
13091         tasks.push(task);
13092         task.taskStartTime = new Date().getTime();
13093         task.taskRunTime = 0;
13094         task.taskRunCount = 0;
13095         startThread();
13096         return task;
13097     };
13098
13099     this.stop = function(task){
13100         removeTask(task);
13101         return task;
13102     };
13103
13104     this.stopAll = function(){
13105         stopThread();
13106         for(var i = 0, len = tasks.length; i < len; i++){
13107             if(tasks[i].onStop){
13108                 tasks[i].onStop();
13109             }
13110         }
13111         tasks = [];
13112         removeQueue = [];
13113     };
13114 };
13115
13116 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13117  * Based on:
13118  * Ext JS Library 1.1.1
13119  * Copyright(c) 2006-2007, Ext JS, LLC.
13120  *
13121  * Originally Released Under LGPL - original licence link has changed is not relivant.
13122  *
13123  * Fork - LGPL
13124  * <script type="text/javascript">
13125  */
13126
13127  
13128 /**
13129  * @class Roo.util.MixedCollection
13130  * @extends Roo.util.Observable
13131  * A Collection class that maintains both numeric indexes and keys and exposes events.
13132  * @constructor
13133  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13134  * collection (defaults to false)
13135  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13136  * and return the key value for that item.  This is used when available to look up the key on items that
13137  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13138  * equivalent to providing an implementation for the {@link #getKey} method.
13139  */
13140 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13141     this.items = [];
13142     this.map = {};
13143     this.keys = [];
13144     this.length = 0;
13145     this.addEvents({
13146         /**
13147          * @event clear
13148          * Fires when the collection is cleared.
13149          */
13150         "clear" : true,
13151         /**
13152          * @event add
13153          * Fires when an item is added to the collection.
13154          * @param {Number} index The index at which the item was added.
13155          * @param {Object} o The item added.
13156          * @param {String} key The key associated with the added item.
13157          */
13158         "add" : true,
13159         /**
13160          * @event replace
13161          * Fires when an item is replaced in the collection.
13162          * @param {String} key he key associated with the new added.
13163          * @param {Object} old The item being replaced.
13164          * @param {Object} new The new item.
13165          */
13166         "replace" : true,
13167         /**
13168          * @event remove
13169          * Fires when an item is removed from the collection.
13170          * @param {Object} o The item being removed.
13171          * @param {String} key (optional) The key associated with the removed item.
13172          */
13173         "remove" : true,
13174         "sort" : true
13175     });
13176     this.allowFunctions = allowFunctions === true;
13177     if(keyFn){
13178         this.getKey = keyFn;
13179     }
13180     Roo.util.MixedCollection.superclass.constructor.call(this);
13181 };
13182
13183 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13184     allowFunctions : false,
13185     
13186 /**
13187  * Adds an item to the collection.
13188  * @param {String} key The key to associate with the item
13189  * @param {Object} o The item to add.
13190  * @return {Object} The item added.
13191  */
13192     add : function(key, o){
13193         if(arguments.length == 1){
13194             o = arguments[0];
13195             key = this.getKey(o);
13196         }
13197         if(typeof key == "undefined" || key === null){
13198             this.length++;
13199             this.items.push(o);
13200             this.keys.push(null);
13201         }else{
13202             var old = this.map[key];
13203             if(old){
13204                 return this.replace(key, o);
13205             }
13206             this.length++;
13207             this.items.push(o);
13208             this.map[key] = o;
13209             this.keys.push(key);
13210         }
13211         this.fireEvent("add", this.length-1, o, key);
13212         return o;
13213     },
13214        
13215 /**
13216   * MixedCollection has a generic way to fetch keys if you implement getKey.
13217 <pre><code>
13218 // normal way
13219 var mc = new Roo.util.MixedCollection();
13220 mc.add(someEl.dom.id, someEl);
13221 mc.add(otherEl.dom.id, otherEl);
13222 //and so on
13223
13224 // using getKey
13225 var mc = new Roo.util.MixedCollection();
13226 mc.getKey = function(el){
13227    return el.dom.id;
13228 };
13229 mc.add(someEl);
13230 mc.add(otherEl);
13231
13232 // or via the constructor
13233 var mc = new Roo.util.MixedCollection(false, function(el){
13234    return el.dom.id;
13235 });
13236 mc.add(someEl);
13237 mc.add(otherEl);
13238 </code></pre>
13239  * @param o {Object} The item for which to find the key.
13240  * @return {Object} The key for the passed item.
13241  */
13242     getKey : function(o){
13243          return o.id; 
13244     },
13245    
13246 /**
13247  * Replaces an item in the collection.
13248  * @param {String} key The key associated with the item to replace, or the item to replace.
13249  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13250  * @return {Object}  The new item.
13251  */
13252     replace : function(key, o){
13253         if(arguments.length == 1){
13254             o = arguments[0];
13255             key = this.getKey(o);
13256         }
13257         var old = this.item(key);
13258         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13259              return this.add(key, o);
13260         }
13261         var index = this.indexOfKey(key);
13262         this.items[index] = o;
13263         this.map[key] = o;
13264         this.fireEvent("replace", key, old, o);
13265         return o;
13266     },
13267    
13268 /**
13269  * Adds all elements of an Array or an Object to the collection.
13270  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13271  * an Array of values, each of which are added to the collection.
13272  */
13273     addAll : function(objs){
13274         if(arguments.length > 1 || objs instanceof Array){
13275             var args = arguments.length > 1 ? arguments : objs;
13276             for(var i = 0, len = args.length; i < len; i++){
13277                 this.add(args[i]);
13278             }
13279         }else{
13280             for(var key in objs){
13281                 if(this.allowFunctions || typeof objs[key] != "function"){
13282                     this.add(key, objs[key]);
13283                 }
13284             }
13285         }
13286     },
13287    
13288 /**
13289  * Executes the specified function once for every item in the collection, passing each
13290  * item as the first and only parameter. returning false from the function will stop the iteration.
13291  * @param {Function} fn The function to execute for each item.
13292  * @param {Object} scope (optional) The scope in which to execute the function.
13293  */
13294     each : function(fn, scope){
13295         var items = [].concat(this.items); // each safe for removal
13296         for(var i = 0, len = items.length; i < len; i++){
13297             if(fn.call(scope || items[i], items[i], i, len) === false){
13298                 break;
13299             }
13300         }
13301     },
13302    
13303 /**
13304  * Executes the specified function once for every key in the collection, passing each
13305  * key, and its associated item as the first two parameters.
13306  * @param {Function} fn The function to execute for each item.
13307  * @param {Object} scope (optional) The scope in which to execute the function.
13308  */
13309     eachKey : function(fn, scope){
13310         for(var i = 0, len = this.keys.length; i < len; i++){
13311             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13312         }
13313     },
13314    
13315 /**
13316  * Returns the first item in the collection which elicits a true return value from the
13317  * passed selection function.
13318  * @param {Function} fn The selection function to execute for each item.
13319  * @param {Object} scope (optional) The scope in which to execute the function.
13320  * @return {Object} The first item in the collection which returned true from the selection function.
13321  */
13322     find : function(fn, scope){
13323         for(var i = 0, len = this.items.length; i < len; i++){
13324             if(fn.call(scope || window, this.items[i], this.keys[i])){
13325                 return this.items[i];
13326             }
13327         }
13328         return null;
13329     },
13330    
13331 /**
13332  * Inserts an item at the specified index in the collection.
13333  * @param {Number} index The index to insert the item at.
13334  * @param {String} key The key to associate with the new item, or the item itself.
13335  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13336  * @return {Object} The item inserted.
13337  */
13338     insert : function(index, key, o){
13339         if(arguments.length == 2){
13340             o = arguments[1];
13341             key = this.getKey(o);
13342         }
13343         if(index >= this.length){
13344             return this.add(key, o);
13345         }
13346         this.length++;
13347         this.items.splice(index, 0, o);
13348         if(typeof key != "undefined" && key != null){
13349             this.map[key] = o;
13350         }
13351         this.keys.splice(index, 0, key);
13352         this.fireEvent("add", index, o, key);
13353         return o;
13354     },
13355    
13356 /**
13357  * Removed an item from the collection.
13358  * @param {Object} o The item to remove.
13359  * @return {Object} The item removed.
13360  */
13361     remove : function(o){
13362         return this.removeAt(this.indexOf(o));
13363     },
13364    
13365 /**
13366  * Remove an item from a specified index in the collection.
13367  * @param {Number} index The index within the collection of the item to remove.
13368  */
13369     removeAt : function(index){
13370         if(index < this.length && index >= 0){
13371             this.length--;
13372             var o = this.items[index];
13373             this.items.splice(index, 1);
13374             var key = this.keys[index];
13375             if(typeof key != "undefined"){
13376                 delete this.map[key];
13377             }
13378             this.keys.splice(index, 1);
13379             this.fireEvent("remove", o, key);
13380         }
13381     },
13382    
13383 /**
13384  * Removed an item associated with the passed key fom the collection.
13385  * @param {String} key The key of the item to remove.
13386  */
13387     removeKey : function(key){
13388         return this.removeAt(this.indexOfKey(key));
13389     },
13390    
13391 /**
13392  * Returns the number of items in the collection.
13393  * @return {Number} the number of items in the collection.
13394  */
13395     getCount : function(){
13396         return this.length; 
13397     },
13398    
13399 /**
13400  * Returns index within the collection of the passed Object.
13401  * @param {Object} o The item to find the index of.
13402  * @return {Number} index of the item.
13403  */
13404     indexOf : function(o){
13405         if(!this.items.indexOf){
13406             for(var i = 0, len = this.items.length; i < len; i++){
13407                 if(this.items[i] == o) {
13408                     return i;
13409                 }
13410             }
13411             return -1;
13412         }else{
13413             return this.items.indexOf(o);
13414         }
13415     },
13416    
13417 /**
13418  * Returns index within the collection of the passed key.
13419  * @param {String} key The key to find the index of.
13420  * @return {Number} index of the key.
13421  */
13422     indexOfKey : function(key){
13423         if(!this.keys.indexOf){
13424             for(var i = 0, len = this.keys.length; i < len; i++){
13425                 if(this.keys[i] == key) {
13426                     return i;
13427                 }
13428             }
13429             return -1;
13430         }else{
13431             return this.keys.indexOf(key);
13432         }
13433     },
13434    
13435 /**
13436  * Returns the item associated with the passed key OR index. Key has priority over index.
13437  * @param {String/Number} key The key or index of the item.
13438  * @return {Object} The item associated with the passed key.
13439  */
13440     item : function(key){
13441         if (key === 'length') {
13442             return null;
13443         }
13444         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13445         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13446     },
13447     
13448 /**
13449  * Returns the item at the specified index.
13450  * @param {Number} index The index of the item.
13451  * @return {Object}
13452  */
13453     itemAt : function(index){
13454         return this.items[index];
13455     },
13456     
13457 /**
13458  * Returns the item associated with the passed key.
13459  * @param {String/Number} key The key of the item.
13460  * @return {Object} The item associated with the passed key.
13461  */
13462     key : function(key){
13463         return this.map[key];
13464     },
13465    
13466 /**
13467  * Returns true if the collection contains the passed Object as an item.
13468  * @param {Object} o  The Object to look for in the collection.
13469  * @return {Boolean} True if the collection contains the Object as an item.
13470  */
13471     contains : function(o){
13472         return this.indexOf(o) != -1;
13473     },
13474    
13475 /**
13476  * Returns true if the collection contains the passed Object as a key.
13477  * @param {String} key The key to look for in the collection.
13478  * @return {Boolean} True if the collection contains the Object as a key.
13479  */
13480     containsKey : function(key){
13481         return typeof this.map[key] != "undefined";
13482     },
13483    
13484 /**
13485  * Removes all items from the collection.
13486  */
13487     clear : function(){
13488         this.length = 0;
13489         this.items = [];
13490         this.keys = [];
13491         this.map = {};
13492         this.fireEvent("clear");
13493     },
13494    
13495 /**
13496  * Returns the first item in the collection.
13497  * @return {Object} the first item in the collection..
13498  */
13499     first : function(){
13500         return this.items[0]; 
13501     },
13502    
13503 /**
13504  * Returns the last item in the collection.
13505  * @return {Object} the last item in the collection..
13506  */
13507     last : function(){
13508         return this.items[this.length-1];   
13509     },
13510     
13511     _sort : function(property, dir, fn){
13512         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13513         fn = fn || function(a, b){
13514             return a-b;
13515         };
13516         var c = [], k = this.keys, items = this.items;
13517         for(var i = 0, len = items.length; i < len; i++){
13518             c[c.length] = {key: k[i], value: items[i], index: i};
13519         }
13520         c.sort(function(a, b){
13521             var v = fn(a[property], b[property]) * dsc;
13522             if(v == 0){
13523                 v = (a.index < b.index ? -1 : 1);
13524             }
13525             return v;
13526         });
13527         for(var i = 0, len = c.length; i < len; i++){
13528             items[i] = c[i].value;
13529             k[i] = c[i].key;
13530         }
13531         this.fireEvent("sort", this);
13532     },
13533     
13534     /**
13535      * Sorts this collection with the passed comparison function
13536      * @param {String} direction (optional) "ASC" or "DESC"
13537      * @param {Function} fn (optional) comparison function
13538      */
13539     sort : function(dir, fn){
13540         this._sort("value", dir, fn);
13541     },
13542     
13543     /**
13544      * Sorts this collection by keys
13545      * @param {String} direction (optional) "ASC" or "DESC"
13546      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13547      */
13548     keySort : function(dir, fn){
13549         this._sort("key", dir, fn || function(a, b){
13550             return String(a).toUpperCase()-String(b).toUpperCase();
13551         });
13552     },
13553     
13554     /**
13555      * Returns a range of items in this collection
13556      * @param {Number} startIndex (optional) defaults to 0
13557      * @param {Number} endIndex (optional) default to the last item
13558      * @return {Array} An array of items
13559      */
13560     getRange : function(start, end){
13561         var items = this.items;
13562         if(items.length < 1){
13563             return [];
13564         }
13565         start = start || 0;
13566         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13567         var r = [];
13568         if(start <= end){
13569             for(var i = start; i <= end; i++) {
13570                     r[r.length] = items[i];
13571             }
13572         }else{
13573             for(var i = start; i >= end; i--) {
13574                     r[r.length] = items[i];
13575             }
13576         }
13577         return r;
13578     },
13579         
13580     /**
13581      * Filter the <i>objects</i> in this collection by a specific property. 
13582      * Returns a new collection that has been filtered.
13583      * @param {String} property A property on your objects
13584      * @param {String/RegExp} value Either string that the property values 
13585      * should start with or a RegExp to test against the property
13586      * @return {MixedCollection} The new filtered collection
13587      */
13588     filter : function(property, value){
13589         if(!value.exec){ // not a regex
13590             value = String(value);
13591             if(value.length == 0){
13592                 return this.clone();
13593             }
13594             value = new RegExp("^" + Roo.escapeRe(value), "i");
13595         }
13596         return this.filterBy(function(o){
13597             return o && value.test(o[property]);
13598         });
13599         },
13600     
13601     /**
13602      * Filter by a function. * Returns a new collection that has been filtered.
13603      * The passed function will be called with each 
13604      * object in the collection. If the function returns true, the value is included 
13605      * otherwise it is filtered.
13606      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13607      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13608      * @return {MixedCollection} The new filtered collection
13609      */
13610     filterBy : function(fn, scope){
13611         var r = new Roo.util.MixedCollection();
13612         r.getKey = this.getKey;
13613         var k = this.keys, it = this.items;
13614         for(var i = 0, len = it.length; i < len; i++){
13615             if(fn.call(scope||this, it[i], k[i])){
13616                                 r.add(k[i], it[i]);
13617                         }
13618         }
13619         return r;
13620     },
13621     
13622     /**
13623      * Creates a duplicate of this collection
13624      * @return {MixedCollection}
13625      */
13626     clone : function(){
13627         var r = new Roo.util.MixedCollection();
13628         var k = this.keys, it = this.items;
13629         for(var i = 0, len = it.length; i < len; i++){
13630             r.add(k[i], it[i]);
13631         }
13632         r.getKey = this.getKey;
13633         return r;
13634     }
13635 });
13636 /**
13637  * Returns the item associated with the passed key or index.
13638  * @method
13639  * @param {String/Number} key The key or index of the item.
13640  * @return {Object} The item associated with the passed key.
13641  */
13642 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13643  * Based on:
13644  * Ext JS Library 1.1.1
13645  * Copyright(c) 2006-2007, Ext JS, LLC.
13646  *
13647  * Originally Released Under LGPL - original licence link has changed is not relivant.
13648  *
13649  * Fork - LGPL
13650  * <script type="text/javascript">
13651  */
13652 /**
13653  * @class Roo.util.JSON
13654  * Modified version of Douglas Crockford"s json.js that doesn"t
13655  * mess with the Object prototype 
13656  * http://www.json.org/js.html
13657  * @singleton
13658  */
13659 Roo.util.JSON = new (function(){
13660     var useHasOwn = {}.hasOwnProperty ? true : false;
13661     
13662     // crashes Safari in some instances
13663     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13664     
13665     var pad = function(n) {
13666         return n < 10 ? "0" + n : n;
13667     };
13668     
13669     var m = {
13670         "\b": '\\b',
13671         "\t": '\\t',
13672         "\n": '\\n',
13673         "\f": '\\f',
13674         "\r": '\\r',
13675         '"' : '\\"',
13676         "\\": '\\\\'
13677     };
13678
13679     var encodeString = function(s){
13680         if (/["\\\x00-\x1f]/.test(s)) {
13681             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13682                 var c = m[b];
13683                 if(c){
13684                     return c;
13685                 }
13686                 c = b.charCodeAt();
13687                 return "\\u00" +
13688                     Math.floor(c / 16).toString(16) +
13689                     (c % 16).toString(16);
13690             }) + '"';
13691         }
13692         return '"' + s + '"';
13693     };
13694     
13695     var encodeArray = function(o){
13696         var a = ["["], b, i, l = o.length, v;
13697             for (i = 0; i < l; i += 1) {
13698                 v = o[i];
13699                 switch (typeof v) {
13700                     case "undefined":
13701                     case "function":
13702                     case "unknown":
13703                         break;
13704                     default:
13705                         if (b) {
13706                             a.push(',');
13707                         }
13708                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13709                         b = true;
13710                 }
13711             }
13712             a.push("]");
13713             return a.join("");
13714     };
13715     
13716     var encodeDate = function(o){
13717         return '"' + o.getFullYear() + "-" +
13718                 pad(o.getMonth() + 1) + "-" +
13719                 pad(o.getDate()) + "T" +
13720                 pad(o.getHours()) + ":" +
13721                 pad(o.getMinutes()) + ":" +
13722                 pad(o.getSeconds()) + '"';
13723     };
13724     
13725     /**
13726      * Encodes an Object, Array or other value
13727      * @param {Mixed} o The variable to encode
13728      * @return {String} The JSON string
13729      */
13730     this.encode = function(o)
13731     {
13732         // should this be extended to fully wrap stringify..
13733         
13734         if(typeof o == "undefined" || o === null){
13735             return "null";
13736         }else if(o instanceof Array){
13737             return encodeArray(o);
13738         }else if(o instanceof Date){
13739             return encodeDate(o);
13740         }else if(typeof o == "string"){
13741             return encodeString(o);
13742         }else if(typeof o == "number"){
13743             return isFinite(o) ? String(o) : "null";
13744         }else if(typeof o == "boolean"){
13745             return String(o);
13746         }else {
13747             var a = ["{"], b, i, v;
13748             for (i in o) {
13749                 if(!useHasOwn || o.hasOwnProperty(i)) {
13750                     v = o[i];
13751                     switch (typeof v) {
13752                     case "undefined":
13753                     case "function":
13754                     case "unknown":
13755                         break;
13756                     default:
13757                         if(b){
13758                             a.push(',');
13759                         }
13760                         a.push(this.encode(i), ":",
13761                                 v === null ? "null" : this.encode(v));
13762                         b = true;
13763                     }
13764                 }
13765             }
13766             a.push("}");
13767             return a.join("");
13768         }
13769     };
13770     
13771     /**
13772      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13773      * @param {String} json The JSON string
13774      * @return {Object} The resulting object
13775      */
13776     this.decode = function(json){
13777         
13778         return  /** eval:var:json */ eval("(" + json + ')');
13779     };
13780 })();
13781 /** 
13782  * Shorthand for {@link Roo.util.JSON#encode}
13783  * @member Roo encode 
13784  * @method */
13785 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13786 /** 
13787  * Shorthand for {@link Roo.util.JSON#decode}
13788  * @member Roo decode 
13789  * @method */
13790 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13791 /*
13792  * Based on:
13793  * Ext JS Library 1.1.1
13794  * Copyright(c) 2006-2007, Ext JS, LLC.
13795  *
13796  * Originally Released Under LGPL - original licence link has changed is not relivant.
13797  *
13798  * Fork - LGPL
13799  * <script type="text/javascript">
13800  */
13801  
13802 /**
13803  * @class Roo.util.Format
13804  * Reusable data formatting functions
13805  * @singleton
13806  */
13807 Roo.util.Format = function(){
13808     var trimRe = /^\s+|\s+$/g;
13809     return {
13810         /**
13811          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13812          * @param {String} value The string to truncate
13813          * @param {Number} length The maximum length to allow before truncating
13814          * @return {String} The converted text
13815          */
13816         ellipsis : function(value, len){
13817             if(value && value.length > len){
13818                 return value.substr(0, len-3)+"...";
13819             }
13820             return value;
13821         },
13822
13823         /**
13824          * Checks a reference and converts it to empty string if it is undefined
13825          * @param {Mixed} value Reference to check
13826          * @return {Mixed} Empty string if converted, otherwise the original value
13827          */
13828         undef : function(value){
13829             return typeof value != "undefined" ? value : "";
13830         },
13831
13832         /**
13833          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13834          * @param {String} value The string to encode
13835          * @return {String} The encoded text
13836          */
13837         htmlEncode : function(value){
13838             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13839         },
13840
13841         /**
13842          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13843          * @param {String} value The string to decode
13844          * @return {String} The decoded text
13845          */
13846         htmlDecode : function(value){
13847             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13848         },
13849
13850         /**
13851          * Trims any whitespace from either side of a string
13852          * @param {String} value The text to trim
13853          * @return {String} The trimmed text
13854          */
13855         trim : function(value){
13856             return String(value).replace(trimRe, "");
13857         },
13858
13859         /**
13860          * Returns a substring from within an original string
13861          * @param {String} value The original text
13862          * @param {Number} start The start index of the substring
13863          * @param {Number} length The length of the substring
13864          * @return {String} The substring
13865          */
13866         substr : function(value, start, length){
13867             return String(value).substr(start, length);
13868         },
13869
13870         /**
13871          * Converts a string to all lower case letters
13872          * @param {String} value The text to convert
13873          * @return {String} The converted text
13874          */
13875         lowercase : function(value){
13876             return String(value).toLowerCase();
13877         },
13878
13879         /**
13880          * Converts a string to all upper case letters
13881          * @param {String} value The text to convert
13882          * @return {String} The converted text
13883          */
13884         uppercase : function(value){
13885             return String(value).toUpperCase();
13886         },
13887
13888         /**
13889          * Converts the first character only of a string to upper case
13890          * @param {String} value The text to convert
13891          * @return {String} The converted text
13892          */
13893         capitalize : function(value){
13894             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13895         },
13896
13897         // private
13898         call : function(value, fn){
13899             if(arguments.length > 2){
13900                 var args = Array.prototype.slice.call(arguments, 2);
13901                 args.unshift(value);
13902                  
13903                 return /** eval:var:value */  eval(fn).apply(window, args);
13904             }else{
13905                 /** eval:var:value */
13906                 return /** eval:var:value */ eval(fn).call(window, value);
13907             }
13908         },
13909
13910        
13911         /**
13912          * safer version of Math.toFixed..??/
13913          * @param {Number/String} value The numeric value to format
13914          * @param {Number/String} value Decimal places 
13915          * @return {String} The formatted currency string
13916          */
13917         toFixed : function(v, n)
13918         {
13919             // why not use to fixed - precision is buggered???
13920             if (!n) {
13921                 return Math.round(v-0);
13922             }
13923             var fact = Math.pow(10,n+1);
13924             v = (Math.round((v-0)*fact))/fact;
13925             var z = (''+fact).substring(2);
13926             if (v == Math.floor(v)) {
13927                 return Math.floor(v) + '.' + z;
13928             }
13929             
13930             // now just padd decimals..
13931             var ps = String(v).split('.');
13932             var fd = (ps[1] + z);
13933             var r = fd.substring(0,n); 
13934             var rm = fd.substring(n); 
13935             if (rm < 5) {
13936                 return ps[0] + '.' + r;
13937             }
13938             r*=1; // turn it into a number;
13939             r++;
13940             if (String(r).length != n) {
13941                 ps[0]*=1;
13942                 ps[0]++;
13943                 r = String(r).substring(1); // chop the end off.
13944             }
13945             
13946             return ps[0] + '.' + r;
13947              
13948         },
13949         
13950         /**
13951          * Format a number as US currency
13952          * @param {Number/String} value The numeric value to format
13953          * @return {String} The formatted currency string
13954          */
13955         usMoney : function(v){
13956             return '$' + Roo.util.Format.number(v);
13957         },
13958         
13959         /**
13960          * Format a number
13961          * eventually this should probably emulate php's number_format
13962          * @param {Number/String} value The numeric value to format
13963          * @param {Number} decimals number of decimal places
13964          * @param {String} delimiter for thousands (default comma)
13965          * @return {String} The formatted currency string
13966          */
13967         number : function(v, decimals, thousandsDelimiter)
13968         {
13969             // multiply and round.
13970             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13971             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13972             
13973             var mul = Math.pow(10, decimals);
13974             var zero = String(mul).substring(1);
13975             v = (Math.round((v-0)*mul))/mul;
13976             
13977             // if it's '0' number.. then
13978             
13979             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13980             v = String(v);
13981             var ps = v.split('.');
13982             var whole = ps[0];
13983             
13984             var r = /(\d+)(\d{3})/;
13985             // add comma's
13986             
13987             if(thousandsDelimiter.length != 0) {
13988                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13989             } 
13990             
13991             var sub = ps[1] ?
13992                     // has decimals..
13993                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13994                     // does not have decimals
13995                     (decimals ? ('.' + zero) : '');
13996             
13997             
13998             return whole + sub ;
13999         },
14000         
14001         /**
14002          * Parse a value into a formatted date using the specified format pattern.
14003          * @param {Mixed} value The value to format
14004          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
14005          * @return {String} The formatted date string
14006          */
14007         date : function(v, format){
14008             if(!v){
14009                 return "";
14010             }
14011             if(!(v instanceof Date)){
14012                 v = new Date(Date.parse(v));
14013             }
14014             return v.dateFormat(format || Roo.util.Format.defaults.date);
14015         },
14016
14017         /**
14018          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
14019          * @param {String} format Any valid date format string
14020          * @return {Function} The date formatting function
14021          */
14022         dateRenderer : function(format){
14023             return function(v){
14024                 return Roo.util.Format.date(v, format);  
14025             };
14026         },
14027
14028         // private
14029         stripTagsRE : /<\/?[^>]+>/gi,
14030         
14031         /**
14032          * Strips all HTML tags
14033          * @param {Mixed} value The text from which to strip tags
14034          * @return {String} The stripped text
14035          */
14036         stripTags : function(v){
14037             return !v ? v : String(v).replace(this.stripTagsRE, "");
14038         },
14039         
14040         /**
14041          * Size in Mb,Gb etc.
14042          * @param {Number} value The number to be formated
14043          * @param {number} decimals how many decimal places
14044          * @return {String} the formated string
14045          */
14046         size : function(value, decimals)
14047         {
14048             var sizes = ['b', 'k', 'M', 'G', 'T'];
14049             if (value == 0) {
14050                 return 0;
14051             }
14052             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
14053             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
14054         }
14055         
14056         
14057         
14058     };
14059 }();
14060 Roo.util.Format.defaults = {
14061     date : 'd/M/Y'
14062 };/*
14063  * Based on:
14064  * Ext JS Library 1.1.1
14065  * Copyright(c) 2006-2007, Ext JS, LLC.
14066  *
14067  * Originally Released Under LGPL - original licence link has changed is not relivant.
14068  *
14069  * Fork - LGPL
14070  * <script type="text/javascript">
14071  */
14072
14073
14074  
14075
14076 /**
14077  * @class Roo.MasterTemplate
14078  * @extends Roo.Template
14079  * Provides a template that can have child templates. The syntax is:
14080 <pre><code>
14081 var t = new Roo.MasterTemplate(
14082         '&lt;select name="{name}"&gt;',
14083                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14084         '&lt;/select&gt;'
14085 );
14086 t.add('options', {value: 'foo', text: 'bar'});
14087 // or you can add multiple child elements in one shot
14088 t.addAll('options', [
14089     {value: 'foo', text: 'bar'},
14090     {value: 'foo2', text: 'bar2'},
14091     {value: 'foo3', text: 'bar3'}
14092 ]);
14093 // then append, applying the master template values
14094 t.append('my-form', {name: 'my-select'});
14095 </code></pre>
14096 * A name attribute for the child template is not required if you have only one child
14097 * template or you want to refer to them by index.
14098  */
14099 Roo.MasterTemplate = function(){
14100     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14101     this.originalHtml = this.html;
14102     var st = {};
14103     var m, re = this.subTemplateRe;
14104     re.lastIndex = 0;
14105     var subIndex = 0;
14106     while(m = re.exec(this.html)){
14107         var name = m[1], content = m[2];
14108         st[subIndex] = {
14109             name: name,
14110             index: subIndex,
14111             buffer: [],
14112             tpl : new Roo.Template(content)
14113         };
14114         if(name){
14115             st[name] = st[subIndex];
14116         }
14117         st[subIndex].tpl.compile();
14118         st[subIndex].tpl.call = this.call.createDelegate(this);
14119         subIndex++;
14120     }
14121     this.subCount = subIndex;
14122     this.subs = st;
14123 };
14124 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14125     /**
14126     * The regular expression used to match sub templates
14127     * @type RegExp
14128     * @property
14129     */
14130     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14131
14132     /**
14133      * Applies the passed values to a child template.
14134      * @param {String/Number} name (optional) The name or index of the child template
14135      * @param {Array/Object} values The values to be applied to the template
14136      * @return {MasterTemplate} this
14137      */
14138      add : function(name, values){
14139         if(arguments.length == 1){
14140             values = arguments[0];
14141             name = 0;
14142         }
14143         var s = this.subs[name];
14144         s.buffer[s.buffer.length] = s.tpl.apply(values);
14145         return this;
14146     },
14147
14148     /**
14149      * Applies all the passed values to a child template.
14150      * @param {String/Number} name (optional) The name or index of the child template
14151      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14152      * @param {Boolean} reset (optional) True to reset the template first
14153      * @return {MasterTemplate} this
14154      */
14155     fill : function(name, values, reset){
14156         var a = arguments;
14157         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14158             values = a[0];
14159             name = 0;
14160             reset = a[1];
14161         }
14162         if(reset){
14163             this.reset();
14164         }
14165         for(var i = 0, len = values.length; i < len; i++){
14166             this.add(name, values[i]);
14167         }
14168         return this;
14169     },
14170
14171     /**
14172      * Resets the template for reuse
14173      * @return {MasterTemplate} this
14174      */
14175      reset : function(){
14176         var s = this.subs;
14177         for(var i = 0; i < this.subCount; i++){
14178             s[i].buffer = [];
14179         }
14180         return this;
14181     },
14182
14183     applyTemplate : function(values){
14184         var s = this.subs;
14185         var replaceIndex = -1;
14186         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14187             return s[++replaceIndex].buffer.join("");
14188         });
14189         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14190     },
14191
14192     apply : function(){
14193         return this.applyTemplate.apply(this, arguments);
14194     },
14195
14196     compile : function(){return this;}
14197 });
14198
14199 /**
14200  * Alias for fill().
14201  * @method
14202  */
14203 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14204  /**
14205  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14206  * var tpl = Roo.MasterTemplate.from('element-id');
14207  * @param {String/HTMLElement} el
14208  * @param {Object} config
14209  * @static
14210  */
14211 Roo.MasterTemplate.from = function(el, config){
14212     el = Roo.getDom(el);
14213     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14214 };/*
14215  * Based on:
14216  * Ext JS Library 1.1.1
14217  * Copyright(c) 2006-2007, Ext JS, LLC.
14218  *
14219  * Originally Released Under LGPL - original licence link has changed is not relivant.
14220  *
14221  * Fork - LGPL
14222  * <script type="text/javascript">
14223  */
14224
14225  
14226 /**
14227  * @class Roo.util.CSS
14228  * Utility class for manipulating CSS rules
14229  * @singleton
14230  */
14231 Roo.util.CSS = function(){
14232         var rules = null;
14233         var doc = document;
14234
14235     var camelRe = /(-[a-z])/gi;
14236     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14237
14238    return {
14239    /**
14240     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14241     * tag and appended to the HEAD of the document.
14242     * @param {String|Object} cssText The text containing the css rules
14243     * @param {String} id An id to add to the stylesheet for later removal
14244     * @return {StyleSheet}
14245     */
14246     createStyleSheet : function(cssText, id){
14247         var ss;
14248         var head = doc.getElementsByTagName("head")[0];
14249         var nrules = doc.createElement("style");
14250         nrules.setAttribute("type", "text/css");
14251         if(id){
14252             nrules.setAttribute("id", id);
14253         }
14254         if (typeof(cssText) != 'string') {
14255             // support object maps..
14256             // not sure if this a good idea.. 
14257             // perhaps it should be merged with the general css handling
14258             // and handle js style props.
14259             var cssTextNew = [];
14260             for(var n in cssText) {
14261                 var citems = [];
14262                 for(var k in cssText[n]) {
14263                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14264                 }
14265                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14266                 
14267             }
14268             cssText = cssTextNew.join("\n");
14269             
14270         }
14271        
14272        
14273        if(Roo.isIE){
14274            head.appendChild(nrules);
14275            ss = nrules.styleSheet;
14276            ss.cssText = cssText;
14277        }else{
14278            try{
14279                 nrules.appendChild(doc.createTextNode(cssText));
14280            }catch(e){
14281                nrules.cssText = cssText; 
14282            }
14283            head.appendChild(nrules);
14284            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14285        }
14286        this.cacheStyleSheet(ss);
14287        return ss;
14288    },
14289
14290    /**
14291     * Removes a style or link tag by id
14292     * @param {String} id The id of the tag
14293     */
14294    removeStyleSheet : function(id){
14295        var existing = doc.getElementById(id);
14296        if(existing){
14297            existing.parentNode.removeChild(existing);
14298        }
14299    },
14300
14301    /**
14302     * Dynamically swaps an existing stylesheet reference for a new one
14303     * @param {String} id The id of an existing link tag to remove
14304     * @param {String} url The href of the new stylesheet to include
14305     */
14306    swapStyleSheet : function(id, url){
14307        this.removeStyleSheet(id);
14308        var ss = doc.createElement("link");
14309        ss.setAttribute("rel", "stylesheet");
14310        ss.setAttribute("type", "text/css");
14311        ss.setAttribute("id", id);
14312        ss.setAttribute("href", url);
14313        doc.getElementsByTagName("head")[0].appendChild(ss);
14314    },
14315    
14316    /**
14317     * Refresh the rule cache if you have dynamically added stylesheets
14318     * @return {Object} An object (hash) of rules indexed by selector
14319     */
14320    refreshCache : function(){
14321        return this.getRules(true);
14322    },
14323
14324    // private
14325    cacheStyleSheet : function(stylesheet){
14326        if(!rules){
14327            rules = {};
14328        }
14329        try{// try catch for cross domain access issue
14330            var ssRules = stylesheet.cssRules || stylesheet.rules;
14331            for(var j = ssRules.length-1; j >= 0; --j){
14332                rules[ssRules[j].selectorText] = ssRules[j];
14333            }
14334        }catch(e){}
14335    },
14336    
14337    /**
14338     * Gets all css rules for the document
14339     * @param {Boolean} refreshCache true to refresh the internal cache
14340     * @return {Object} An object (hash) of rules indexed by selector
14341     */
14342    getRules : function(refreshCache){
14343                 if(rules == null || refreshCache){
14344                         rules = {};
14345                         var ds = doc.styleSheets;
14346                         for(var i =0, len = ds.length; i < len; i++){
14347                             try{
14348                         this.cacheStyleSheet(ds[i]);
14349                     }catch(e){} 
14350                 }
14351                 }
14352                 return rules;
14353         },
14354         
14355         /**
14356     * Gets an an individual CSS rule by selector(s)
14357     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14358     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14359     * @return {CSSRule} The CSS rule or null if one is not found
14360     */
14361    getRule : function(selector, refreshCache){
14362                 var rs = this.getRules(refreshCache);
14363                 if(!(selector instanceof Array)){
14364                     return rs[selector];
14365                 }
14366                 for(var i = 0; i < selector.length; i++){
14367                         if(rs[selector[i]]){
14368                                 return rs[selector[i]];
14369                         }
14370                 }
14371                 return null;
14372         },
14373         
14374         
14375         /**
14376     * Updates a rule property
14377     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14378     * @param {String} property The css property
14379     * @param {String} value The new value for the property
14380     * @return {Boolean} true If a rule was found and updated
14381     */
14382    updateRule : function(selector, property, value){
14383                 if(!(selector instanceof Array)){
14384                         var rule = this.getRule(selector);
14385                         if(rule){
14386                                 rule.style[property.replace(camelRe, camelFn)] = value;
14387                                 return true;
14388                         }
14389                 }else{
14390                         for(var i = 0; i < selector.length; i++){
14391                                 if(this.updateRule(selector[i], property, value)){
14392                                         return true;
14393                                 }
14394                         }
14395                 }
14396                 return false;
14397         }
14398    };   
14399 }();/*
14400  * Based on:
14401  * Ext JS Library 1.1.1
14402  * Copyright(c) 2006-2007, Ext JS, LLC.
14403  *
14404  * Originally Released Under LGPL - original licence link has changed is not relivant.
14405  *
14406  * Fork - LGPL
14407  * <script type="text/javascript">
14408  */
14409
14410  
14411
14412 /**
14413  * @class Roo.util.ClickRepeater
14414  * @extends Roo.util.Observable
14415  * 
14416  * A wrapper class which can be applied to any element. Fires a "click" event while the
14417  * mouse is pressed. The interval between firings may be specified in the config but
14418  * defaults to 10 milliseconds.
14419  * 
14420  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14421  * 
14422  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14423  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14424  * Similar to an autorepeat key delay.
14425  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14426  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14427  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14428  *           "interval" and "delay" are ignored. "immediate" is honored.
14429  * @cfg {Boolean} preventDefault True to prevent the default click event
14430  * @cfg {Boolean} stopDefault True to stop the default click event
14431  * 
14432  * @history
14433  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14434  *     2007-02-02 jvs Renamed to ClickRepeater
14435  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14436  *
14437  *  @constructor
14438  * @param {String/HTMLElement/Element} el The element to listen on
14439  * @param {Object} config
14440  **/
14441 Roo.util.ClickRepeater = function(el, config)
14442 {
14443     this.el = Roo.get(el);
14444     this.el.unselectable();
14445
14446     Roo.apply(this, config);
14447
14448     this.addEvents({
14449     /**
14450      * @event mousedown
14451      * Fires when the mouse button is depressed.
14452      * @param {Roo.util.ClickRepeater} this
14453      */
14454         "mousedown" : true,
14455     /**
14456      * @event click
14457      * Fires on a specified interval during the time the element is pressed.
14458      * @param {Roo.util.ClickRepeater} this
14459      */
14460         "click" : true,
14461     /**
14462      * @event mouseup
14463      * Fires when the mouse key is released.
14464      * @param {Roo.util.ClickRepeater} this
14465      */
14466         "mouseup" : true
14467     });
14468
14469     this.el.on("mousedown", this.handleMouseDown, this);
14470     if(this.preventDefault || this.stopDefault){
14471         this.el.on("click", function(e){
14472             if(this.preventDefault){
14473                 e.preventDefault();
14474             }
14475             if(this.stopDefault){
14476                 e.stopEvent();
14477             }
14478         }, this);
14479     }
14480
14481     // allow inline handler
14482     if(this.handler){
14483         this.on("click", this.handler,  this.scope || this);
14484     }
14485
14486     Roo.util.ClickRepeater.superclass.constructor.call(this);
14487 };
14488
14489 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14490     interval : 20,
14491     delay: 250,
14492     preventDefault : true,
14493     stopDefault : false,
14494     timer : 0,
14495
14496     // private
14497     handleMouseDown : function(){
14498         clearTimeout(this.timer);
14499         this.el.blur();
14500         if(this.pressClass){
14501             this.el.addClass(this.pressClass);
14502         }
14503         this.mousedownTime = new Date();
14504
14505         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14506         this.el.on("mouseout", this.handleMouseOut, this);
14507
14508         this.fireEvent("mousedown", this);
14509         this.fireEvent("click", this);
14510         
14511         this.timer = this.click.defer(this.delay || this.interval, this);
14512     },
14513
14514     // private
14515     click : function(){
14516         this.fireEvent("click", this);
14517         this.timer = this.click.defer(this.getInterval(), this);
14518     },
14519
14520     // private
14521     getInterval: function(){
14522         if(!this.accelerate){
14523             return this.interval;
14524         }
14525         var pressTime = this.mousedownTime.getElapsed();
14526         if(pressTime < 500){
14527             return 400;
14528         }else if(pressTime < 1700){
14529             return 320;
14530         }else if(pressTime < 2600){
14531             return 250;
14532         }else if(pressTime < 3500){
14533             return 180;
14534         }else if(pressTime < 4400){
14535             return 140;
14536         }else if(pressTime < 5300){
14537             return 80;
14538         }else if(pressTime < 6200){
14539             return 50;
14540         }else{
14541             return 10;
14542         }
14543     },
14544
14545     // private
14546     handleMouseOut : function(){
14547         clearTimeout(this.timer);
14548         if(this.pressClass){
14549             this.el.removeClass(this.pressClass);
14550         }
14551         this.el.on("mouseover", this.handleMouseReturn, this);
14552     },
14553
14554     // private
14555     handleMouseReturn : function(){
14556         this.el.un("mouseover", this.handleMouseReturn);
14557         if(this.pressClass){
14558             this.el.addClass(this.pressClass);
14559         }
14560         this.click();
14561     },
14562
14563     // private
14564     handleMouseUp : function(){
14565         clearTimeout(this.timer);
14566         this.el.un("mouseover", this.handleMouseReturn);
14567         this.el.un("mouseout", this.handleMouseOut);
14568         Roo.get(document).un("mouseup", this.handleMouseUp);
14569         this.el.removeClass(this.pressClass);
14570         this.fireEvent("mouseup", this);
14571     }
14572 });/**
14573  * @class Roo.util.Clipboard
14574  * @static
14575  * 
14576  * Clipboard UTILS
14577  * 
14578  **/
14579 Roo.util.Clipboard = {
14580     /**
14581      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14582      * @param {String} text to copy to clipboard
14583      */
14584     write : function(text) {
14585         // navigator clipboard api needs a secure context (https)
14586         if (navigator.clipboard && window.isSecureContext) {
14587             // navigator clipboard api method'
14588             navigator.clipboard.writeText(text);
14589             return ;
14590         } 
14591         // text area method
14592         var ta = document.createElement("textarea");
14593         ta.value = text;
14594         // make the textarea out of viewport
14595         ta.style.position = "fixed";
14596         ta.style.left = "-999999px";
14597         ta.style.top = "-999999px";
14598         document.body.appendChild(ta);
14599         ta.focus();
14600         ta.select();
14601         document.execCommand('copy');
14602         (function() {
14603             ta.remove();
14604         }).defer(100);
14605         
14606     }
14607         
14608 }
14609     /*
14610  * Based on:
14611  * Ext JS Library 1.1.1
14612  * Copyright(c) 2006-2007, Ext JS, LLC.
14613  *
14614  * Originally Released Under LGPL - original licence link has changed is not relivant.
14615  *
14616  * Fork - LGPL
14617  * <script type="text/javascript">
14618  */
14619
14620  
14621 /**
14622  * @class Roo.KeyNav
14623  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14624  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14625  * way to implement custom navigation schemes for any UI component.</p>
14626  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14627  * pageUp, pageDown, del, home, end.  Usage:</p>
14628  <pre><code>
14629 var nav = new Roo.KeyNav("my-element", {
14630     "left" : function(e){
14631         this.moveLeft(e.ctrlKey);
14632     },
14633     "right" : function(e){
14634         this.moveRight(e.ctrlKey);
14635     },
14636     "enter" : function(e){
14637         this.save();
14638     },
14639     scope : this
14640 });
14641 </code></pre>
14642  * @constructor
14643  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14644  * @param {Object} config The config
14645  */
14646 Roo.KeyNav = function(el, config){
14647     this.el = Roo.get(el);
14648     Roo.apply(this, config);
14649     if(!this.disabled){
14650         this.disabled = true;
14651         this.enable();
14652     }
14653 };
14654
14655 Roo.KeyNav.prototype = {
14656     /**
14657      * @cfg {Boolean} disabled
14658      * True to disable this KeyNav instance (defaults to false)
14659      */
14660     disabled : false,
14661     /**
14662      * @cfg {String} defaultEventAction
14663      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14664      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14665      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14666      */
14667     defaultEventAction: "stopEvent",
14668     /**
14669      * @cfg {Boolean} forceKeyDown
14670      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14671      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14672      * handle keydown instead of keypress.
14673      */
14674     forceKeyDown : false,
14675
14676     // private
14677     prepareEvent : function(e){
14678         var k = e.getKey();
14679         var h = this.keyToHandler[k];
14680         //if(h && this[h]){
14681         //    e.stopPropagation();
14682         //}
14683         if(Roo.isSafari && h && k >= 37 && k <= 40){
14684             e.stopEvent();
14685         }
14686     },
14687
14688     // private
14689     relay : function(e){
14690         var k = e.getKey();
14691         var h = this.keyToHandler[k];
14692         if(h && this[h]){
14693             if(this.doRelay(e, this[h], h) !== true){
14694                 e[this.defaultEventAction]();
14695             }
14696         }
14697     },
14698
14699     // private
14700     doRelay : function(e, h, hname){
14701         return h.call(this.scope || this, e);
14702     },
14703
14704     // possible handlers
14705     enter : false,
14706     left : false,
14707     right : false,
14708     up : false,
14709     down : false,
14710     tab : false,
14711     esc : false,
14712     pageUp : false,
14713     pageDown : false,
14714     del : false,
14715     home : false,
14716     end : false,
14717
14718     // quick lookup hash
14719     keyToHandler : {
14720         37 : "left",
14721         39 : "right",
14722         38 : "up",
14723         40 : "down",
14724         33 : "pageUp",
14725         34 : "pageDown",
14726         46 : "del",
14727         36 : "home",
14728         35 : "end",
14729         13 : "enter",
14730         27 : "esc",
14731         9  : "tab"
14732     },
14733
14734         /**
14735          * Enable this KeyNav
14736          */
14737         enable: function(){
14738                 if(this.disabled){
14739             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14740             // the EventObject will normalize Safari automatically
14741             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14742                 this.el.on("keydown", this.relay,  this);
14743             }else{
14744                 this.el.on("keydown", this.prepareEvent,  this);
14745                 this.el.on("keypress", this.relay,  this);
14746             }
14747                     this.disabled = false;
14748                 }
14749         },
14750
14751         /**
14752          * Disable this KeyNav
14753          */
14754         disable: function(){
14755                 if(!this.disabled){
14756                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14757                 this.el.un("keydown", this.relay);
14758             }else{
14759                 this.el.un("keydown", this.prepareEvent);
14760                 this.el.un("keypress", this.relay);
14761             }
14762                     this.disabled = true;
14763                 }
14764         }
14765 };/*
14766  * Based on:
14767  * Ext JS Library 1.1.1
14768  * Copyright(c) 2006-2007, Ext JS, LLC.
14769  *
14770  * Originally Released Under LGPL - original licence link has changed is not relivant.
14771  *
14772  * Fork - LGPL
14773  * <script type="text/javascript">
14774  */
14775
14776  
14777 /**
14778  * @class Roo.KeyMap
14779  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14780  * The constructor accepts the same config object as defined by {@link #addBinding}.
14781  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14782  * combination it will call the function with this signature (if the match is a multi-key
14783  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14784  * A KeyMap can also handle a string representation of keys.<br />
14785  * Usage:
14786  <pre><code>
14787 // map one key by key code
14788 var map = new Roo.KeyMap("my-element", {
14789     key: 13, // or Roo.EventObject.ENTER
14790     fn: myHandler,
14791     scope: myObject
14792 });
14793
14794 // map multiple keys to one action by string
14795 var map = new Roo.KeyMap("my-element", {
14796     key: "a\r\n\t",
14797     fn: myHandler,
14798     scope: myObject
14799 });
14800
14801 // map multiple keys to multiple actions by strings and array of codes
14802 var map = new Roo.KeyMap("my-element", [
14803     {
14804         key: [10,13],
14805         fn: function(){ alert("Return was pressed"); }
14806     }, {
14807         key: "abc",
14808         fn: function(){ alert('a, b or c was pressed'); }
14809     }, {
14810         key: "\t",
14811         ctrl:true,
14812         shift:true,
14813         fn: function(){ alert('Control + shift + tab was pressed.'); }
14814     }
14815 ]);
14816 </code></pre>
14817  * <b>Note: A KeyMap starts enabled</b>
14818  * @constructor
14819  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14820  * @param {Object} config The config (see {@link #addBinding})
14821  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14822  */
14823 Roo.KeyMap = function(el, config, eventName){
14824     this.el  = Roo.get(el);
14825     this.eventName = eventName || "keydown";
14826     this.bindings = [];
14827     if(config){
14828         this.addBinding(config);
14829     }
14830     this.enable();
14831 };
14832
14833 Roo.KeyMap.prototype = {
14834     /**
14835      * True to stop the event from bubbling and prevent the default browser action if the
14836      * key was handled by the KeyMap (defaults to false)
14837      * @type Boolean
14838      */
14839     stopEvent : false,
14840
14841     /**
14842      * Add a new binding to this KeyMap. The following config object properties are supported:
14843      * <pre>
14844 Property    Type             Description
14845 ----------  ---------------  ----------------------------------------------------------------------
14846 key         String/Array     A single keycode or an array of keycodes to handle
14847 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14848 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14849 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14850 fn          Function         The function to call when KeyMap finds the expected key combination
14851 scope       Object           The scope of the callback function
14852 </pre>
14853      *
14854      * Usage:
14855      * <pre><code>
14856 // Create a KeyMap
14857 var map = new Roo.KeyMap(document, {
14858     key: Roo.EventObject.ENTER,
14859     fn: handleKey,
14860     scope: this
14861 });
14862
14863 //Add a new binding to the existing KeyMap later
14864 map.addBinding({
14865     key: 'abc',
14866     shift: true,
14867     fn: handleKey,
14868     scope: this
14869 });
14870 </code></pre>
14871      * @param {Object/Array} config A single KeyMap config or an array of configs
14872      */
14873         addBinding : function(config){
14874         if(config instanceof Array){
14875             for(var i = 0, len = config.length; i < len; i++){
14876                 this.addBinding(config[i]);
14877             }
14878             return;
14879         }
14880         var keyCode = config.key,
14881             shift = config.shift, 
14882             ctrl = config.ctrl, 
14883             alt = config.alt,
14884             fn = config.fn,
14885             scope = config.scope;
14886         if(typeof keyCode == "string"){
14887             var ks = [];
14888             var keyString = keyCode.toUpperCase();
14889             for(var j = 0, len = keyString.length; j < len; j++){
14890                 ks.push(keyString.charCodeAt(j));
14891             }
14892             keyCode = ks;
14893         }
14894         var keyArray = keyCode instanceof Array;
14895         var handler = function(e){
14896             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14897                 var k = e.getKey();
14898                 if(keyArray){
14899                     for(var i = 0, len = keyCode.length; i < len; i++){
14900                         if(keyCode[i] == k){
14901                           if(this.stopEvent){
14902                               e.stopEvent();
14903                           }
14904                           fn.call(scope || window, k, e);
14905                           return;
14906                         }
14907                     }
14908                 }else{
14909                     if(k == keyCode){
14910                         if(this.stopEvent){
14911                            e.stopEvent();
14912                         }
14913                         fn.call(scope || window, k, e);
14914                     }
14915                 }
14916             }
14917         };
14918         this.bindings.push(handler);  
14919         },
14920
14921     /**
14922      * Shorthand for adding a single key listener
14923      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14924      * following options:
14925      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14926      * @param {Function} fn The function to call
14927      * @param {Object} scope (optional) The scope of the function
14928      */
14929     on : function(key, fn, scope){
14930         var keyCode, shift, ctrl, alt;
14931         if(typeof key == "object" && !(key instanceof Array)){
14932             keyCode = key.key;
14933             shift = key.shift;
14934             ctrl = key.ctrl;
14935             alt = key.alt;
14936         }else{
14937             keyCode = key;
14938         }
14939         this.addBinding({
14940             key: keyCode,
14941             shift: shift,
14942             ctrl: ctrl,
14943             alt: alt,
14944             fn: fn,
14945             scope: scope
14946         })
14947     },
14948
14949     // private
14950     handleKeyDown : function(e){
14951             if(this.enabled){ //just in case
14952             var b = this.bindings;
14953             for(var i = 0, len = b.length; i < len; i++){
14954                 b[i].call(this, e);
14955             }
14956             }
14957         },
14958         
14959         /**
14960          * Returns true if this KeyMap is enabled
14961          * @return {Boolean} 
14962          */
14963         isEnabled : function(){
14964             return this.enabled;  
14965         },
14966         
14967         /**
14968          * Enables this KeyMap
14969          */
14970         enable: function(){
14971                 if(!this.enabled){
14972                     this.el.on(this.eventName, this.handleKeyDown, this);
14973                     this.enabled = true;
14974                 }
14975         },
14976
14977         /**
14978          * Disable this KeyMap
14979          */
14980         disable: function(){
14981                 if(this.enabled){
14982                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14983                     this.enabled = false;
14984                 }
14985         }
14986 };/*
14987  * Based on:
14988  * Ext JS Library 1.1.1
14989  * Copyright(c) 2006-2007, Ext JS, LLC.
14990  *
14991  * Originally Released Under LGPL - original licence link has changed is not relivant.
14992  *
14993  * Fork - LGPL
14994  * <script type="text/javascript">
14995  */
14996
14997  
14998 /**
14999  * @class Roo.util.TextMetrics
15000  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
15001  * wide, in pixels, a given block of text will be.
15002  * @singleton
15003  */
15004 Roo.util.TextMetrics = function(){
15005     var shared;
15006     return {
15007         /**
15008          * Measures the size of the specified text
15009          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
15010          * that can affect the size of the rendered text
15011          * @param {String} text The text to measure
15012          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15013          * in order to accurately measure the text height
15014          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15015          */
15016         measure : function(el, text, fixedWidth){
15017             if(!shared){
15018                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
15019             }
15020             shared.bind(el);
15021             shared.setFixedWidth(fixedWidth || 'auto');
15022             return shared.getSize(text);
15023         },
15024
15025         /**
15026          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
15027          * the overhead of multiple calls to initialize the style properties on each measurement.
15028          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
15029          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15030          * in order to accurately measure the text height
15031          * @return {Roo.util.TextMetrics.Instance} instance The new instance
15032          */
15033         createInstance : function(el, fixedWidth){
15034             return Roo.util.TextMetrics.Instance(el, fixedWidth);
15035         }
15036     };
15037 }();
15038
15039  
15040
15041 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
15042     var ml = new Roo.Element(document.createElement('div'));
15043     document.body.appendChild(ml.dom);
15044     ml.position('absolute');
15045     ml.setLeftTop(-1000, -1000);
15046     ml.hide();
15047
15048     if(fixedWidth){
15049         ml.setWidth(fixedWidth);
15050     }
15051      
15052     var instance = {
15053         /**
15054          * Returns the size of the specified text based on the internal element's style and width properties
15055          * @memberOf Roo.util.TextMetrics.Instance#
15056          * @param {String} text The text to measure
15057          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15058          */
15059         getSize : function(text){
15060             ml.update(text);
15061             var s = ml.getSize();
15062             ml.update('');
15063             return s;
15064         },
15065
15066         /**
15067          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15068          * that can affect the size of the rendered text
15069          * @memberOf Roo.util.TextMetrics.Instance#
15070          * @param {String/HTMLElement} el The element, dom node or id
15071          */
15072         bind : function(el){
15073             ml.setStyle(
15074                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15075             );
15076         },
15077
15078         /**
15079          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15080          * to set a fixed width in order to accurately measure the text height.
15081          * @memberOf Roo.util.TextMetrics.Instance#
15082          * @param {Number} width The width to set on the element
15083          */
15084         setFixedWidth : function(width){
15085             ml.setWidth(width);
15086         },
15087
15088         /**
15089          * Returns the measured width of the specified text
15090          * @memberOf Roo.util.TextMetrics.Instance#
15091          * @param {String} text The text to measure
15092          * @return {Number} width The width in pixels
15093          */
15094         getWidth : function(text){
15095             ml.dom.style.width = 'auto';
15096             return this.getSize(text).width;
15097         },
15098
15099         /**
15100          * Returns the measured height of the specified text.  For multiline text, be sure to call
15101          * {@link #setFixedWidth} if necessary.
15102          * @memberOf Roo.util.TextMetrics.Instance#
15103          * @param {String} text The text to measure
15104          * @return {Number} height The height in pixels
15105          */
15106         getHeight : function(text){
15107             return this.getSize(text).height;
15108         }
15109     };
15110
15111     instance.bind(bindTo);
15112
15113     return instance;
15114 };
15115
15116 // backwards compat
15117 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15118  * Based on:
15119  * Ext JS Library 1.1.1
15120  * Copyright(c) 2006-2007, Ext JS, LLC.
15121  *
15122  * Originally Released Under LGPL - original licence link has changed is not relivant.
15123  *
15124  * Fork - LGPL
15125  * <script type="text/javascript">
15126  */
15127
15128 /**
15129  * @class Roo.state.Provider
15130  * Abstract base class for state provider implementations. This class provides methods
15131  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15132  * Provider interface.
15133  */
15134 Roo.state.Provider = function(){
15135     /**
15136      * @event statechange
15137      * Fires when a state change occurs.
15138      * @param {Provider} this This state provider
15139      * @param {String} key The state key which was changed
15140      * @param {String} value The encoded value for the state
15141      */
15142     this.addEvents({
15143         "statechange": true
15144     });
15145     this.state = {};
15146     Roo.state.Provider.superclass.constructor.call(this);
15147 };
15148 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15149     /**
15150      * Returns the current value for a key
15151      * @param {String} name The key name
15152      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15153      * @return {Mixed} The state data
15154      */
15155     get : function(name, defaultValue){
15156         return typeof this.state[name] == "undefined" ?
15157             defaultValue : this.state[name];
15158     },
15159     
15160     /**
15161      * Clears a value from the state
15162      * @param {String} name The key name
15163      */
15164     clear : function(name){
15165         delete this.state[name];
15166         this.fireEvent("statechange", this, name, null);
15167     },
15168     
15169     /**
15170      * Sets the value for a key
15171      * @param {String} name The key name
15172      * @param {Mixed} value The value to set
15173      */
15174     set : function(name, value){
15175         this.state[name] = value;
15176         this.fireEvent("statechange", this, name, value);
15177     },
15178     
15179     /**
15180      * Decodes a string previously encoded with {@link #encodeValue}.
15181      * @param {String} value The value to decode
15182      * @return {Mixed} The decoded value
15183      */
15184     decodeValue : function(cookie){
15185         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15186         var matches = re.exec(unescape(cookie));
15187         if(!matches || !matches[1]) {
15188             return; // non state cookie
15189         }
15190         var type = matches[1];
15191         var v = matches[2];
15192         switch(type){
15193             case "n":
15194                 return parseFloat(v);
15195             case "d":
15196                 return new Date(Date.parse(v));
15197             case "b":
15198                 return (v == "1");
15199             case "a":
15200                 var all = [];
15201                 var values = v.split("^");
15202                 for(var i = 0, len = values.length; i < len; i++){
15203                     all.push(this.decodeValue(values[i]));
15204                 }
15205                 return all;
15206            case "o":
15207                 var all = {};
15208                 var values = v.split("^");
15209                 for(var i = 0, len = values.length; i < len; i++){
15210                     var kv = values[i].split("=");
15211                     all[kv[0]] = this.decodeValue(kv[1]);
15212                 }
15213                 return all;
15214            default:
15215                 return v;
15216         }
15217     },
15218     
15219     /**
15220      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15221      * @param {Mixed} value The value to encode
15222      * @return {String} The encoded value
15223      */
15224     encodeValue : function(v){
15225         var enc;
15226         if(typeof v == "number"){
15227             enc = "n:" + v;
15228         }else if(typeof v == "boolean"){
15229             enc = "b:" + (v ? "1" : "0");
15230         }else if(v instanceof Date){
15231             enc = "d:" + v.toGMTString();
15232         }else if(v instanceof Array){
15233             var flat = "";
15234             for(var i = 0, len = v.length; i < len; i++){
15235                 flat += this.encodeValue(v[i]);
15236                 if(i != len-1) {
15237                     flat += "^";
15238                 }
15239             }
15240             enc = "a:" + flat;
15241         }else if(typeof v == "object"){
15242             var flat = "";
15243             for(var key in v){
15244                 if(typeof v[key] != "function"){
15245                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15246                 }
15247             }
15248             enc = "o:" + flat.substring(0, flat.length-1);
15249         }else{
15250             enc = "s:" + v;
15251         }
15252         return escape(enc);        
15253     }
15254 });
15255
15256 /*
15257  * Based on:
15258  * Ext JS Library 1.1.1
15259  * Copyright(c) 2006-2007, Ext JS, LLC.
15260  *
15261  * Originally Released Under LGPL - original licence link has changed is not relivant.
15262  *
15263  * Fork - LGPL
15264  * <script type="text/javascript">
15265  */
15266 /**
15267  * @class Roo.state.Manager
15268  * This is the global state manager. By default all components that are "state aware" check this class
15269  * for state information if you don't pass them a custom state provider. In order for this class
15270  * to be useful, it must be initialized with a provider when your application initializes.
15271  <pre><code>
15272 // in your initialization function
15273 init : function(){
15274    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15275    ...
15276    // supposed you have a {@link Roo.BorderLayout}
15277    var layout = new Roo.BorderLayout(...);
15278    layout.restoreState();
15279    // or a {Roo.BasicDialog}
15280    var dialog = new Roo.BasicDialog(...);
15281    dialog.restoreState();
15282  </code></pre>
15283  * @singleton
15284  */
15285 Roo.state.Manager = function(){
15286     var provider = new Roo.state.Provider();
15287     
15288     return {
15289         /**
15290          * Configures the default state provider for your application
15291          * @param {Provider} stateProvider The state provider to set
15292          */
15293         setProvider : function(stateProvider){
15294             provider = stateProvider;
15295         },
15296         
15297         /**
15298          * Returns the current value for a key
15299          * @param {String} name The key name
15300          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15301          * @return {Mixed} The state data
15302          */
15303         get : function(key, defaultValue){
15304             return provider.get(key, defaultValue);
15305         },
15306         
15307         /**
15308          * Sets the value for a key
15309          * @param {String} name The key name
15310          * @param {Mixed} value The state data
15311          */
15312          set : function(key, value){
15313             provider.set(key, value);
15314         },
15315         
15316         /**
15317          * Clears a value from the state
15318          * @param {String} name The key name
15319          */
15320         clear : function(key){
15321             provider.clear(key);
15322         },
15323         
15324         /**
15325          * Gets the currently configured state provider
15326          * @return {Provider} The state provider
15327          */
15328         getProvider : function(){
15329             return provider;
15330         }
15331     };
15332 }();
15333 /*
15334  * Based on:
15335  * Ext JS Library 1.1.1
15336  * Copyright(c) 2006-2007, Ext JS, LLC.
15337  *
15338  * Originally Released Under LGPL - original licence link has changed is not relivant.
15339  *
15340  * Fork - LGPL
15341  * <script type="text/javascript">
15342  */
15343 /**
15344  * @class Roo.state.CookieProvider
15345  * @extends Roo.state.Provider
15346  * The default Provider implementation which saves state via cookies.
15347  * <br />Usage:
15348  <pre><code>
15349    var cp = new Roo.state.CookieProvider({
15350        path: "/cgi-bin/",
15351        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15352        domain: "roojs.com"
15353    })
15354    Roo.state.Manager.setProvider(cp);
15355  </code></pre>
15356  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15357  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15358  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15359  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15360  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15361  * domain the page is running on including the 'www' like 'www.roojs.com')
15362  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15363  * @constructor
15364  * Create a new CookieProvider
15365  * @param {Object} config The configuration object
15366  */
15367 Roo.state.CookieProvider = function(config){
15368     Roo.state.CookieProvider.superclass.constructor.call(this);
15369     this.path = "/";
15370     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15371     this.domain = null;
15372     this.secure = false;
15373     Roo.apply(this, config);
15374     this.state = this.readCookies();
15375 };
15376
15377 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15378     // private
15379     set : function(name, value){
15380         if(typeof value == "undefined" || value === null){
15381             this.clear(name);
15382             return;
15383         }
15384         this.setCookie(name, value);
15385         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15386     },
15387
15388     // private
15389     clear : function(name){
15390         this.clearCookie(name);
15391         Roo.state.CookieProvider.superclass.clear.call(this, name);
15392     },
15393
15394     // private
15395     readCookies : function(){
15396         var cookies = {};
15397         var c = document.cookie + ";";
15398         var re = /\s?(.*?)=(.*?);/g;
15399         var matches;
15400         while((matches = re.exec(c)) != null){
15401             var name = matches[1];
15402             var value = matches[2];
15403             if(name && name.substring(0,3) == "ys-"){
15404                 cookies[name.substr(3)] = this.decodeValue(value);
15405             }
15406         }
15407         return cookies;
15408     },
15409
15410     // private
15411     setCookie : function(name, value){
15412         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15413            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15414            ((this.path == null) ? "" : ("; path=" + this.path)) +
15415            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15416            ((this.secure == true) ? "; secure" : "");
15417     },
15418
15419     // private
15420     clearCookie : function(name){
15421         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15422            ((this.path == null) ? "" : ("; path=" + this.path)) +
15423            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15424            ((this.secure == true) ? "; secure" : "");
15425     }
15426 });/*
15427  * Based on:
15428  * Ext JS Library 1.1.1
15429  * Copyright(c) 2006-2007, Ext JS, LLC.
15430  *
15431  * Originally Released Under LGPL - original licence link has changed is not relivant.
15432  *
15433  * Fork - LGPL
15434  * <script type="text/javascript">
15435  */
15436  
15437
15438 /**
15439  * @class Roo.ComponentMgr
15440  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15441  * @singleton
15442  */
15443 Roo.ComponentMgr = function(){
15444     var all = new Roo.util.MixedCollection();
15445
15446     return {
15447         /**
15448          * Registers a component.
15449          * @param {Roo.Component} c The component
15450          */
15451         register : function(c){
15452             all.add(c);
15453         },
15454
15455         /**
15456          * Unregisters a component.
15457          * @param {Roo.Component} c The component
15458          */
15459         unregister : function(c){
15460             all.remove(c);
15461         },
15462
15463         /**
15464          * Returns a component by id
15465          * @param {String} id The component id
15466          */
15467         get : function(id){
15468             return all.get(id);
15469         },
15470
15471         /**
15472          * Registers a function that will be called when a specified component is added to ComponentMgr
15473          * @param {String} id The component id
15474          * @param {Funtction} fn The callback function
15475          * @param {Object} scope The scope of the callback
15476          */
15477         onAvailable : function(id, fn, scope){
15478             all.on("add", function(index, o){
15479                 if(o.id == id){
15480                     fn.call(scope || o, o);
15481                     all.un("add", fn, scope);
15482                 }
15483             });
15484         }
15485     };
15486 }();/*
15487  * Based on:
15488  * Ext JS Library 1.1.1
15489  * Copyright(c) 2006-2007, Ext JS, LLC.
15490  *
15491  * Originally Released Under LGPL - original licence link has changed is not relivant.
15492  *
15493  * Fork - LGPL
15494  * <script type="text/javascript">
15495  */
15496  
15497 /**
15498  * @class Roo.Component
15499  * @extends Roo.util.Observable
15500  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15501  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15502  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15503  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15504  * All visual components (widgets) that require rendering into a layout should subclass Component.
15505  * @constructor
15506  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15507  * 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
15508  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15509  */
15510 Roo.Component = function(config){
15511     config = config || {};
15512     if(config.tagName || config.dom || typeof config == "string"){ // element object
15513         config = {el: config, id: config.id || config};
15514     }
15515     this.initialConfig = config;
15516
15517     Roo.apply(this, config);
15518     this.addEvents({
15519         /**
15520          * @event disable
15521          * Fires after the component is disabled.
15522              * @param {Roo.Component} this
15523              */
15524         disable : true,
15525         /**
15526          * @event enable
15527          * Fires after the component is enabled.
15528              * @param {Roo.Component} this
15529              */
15530         enable : true,
15531         /**
15532          * @event beforeshow
15533          * Fires before the component is shown.  Return false to stop the show.
15534              * @param {Roo.Component} this
15535              */
15536         beforeshow : true,
15537         /**
15538          * @event show
15539          * Fires after the component is shown.
15540              * @param {Roo.Component} this
15541              */
15542         show : true,
15543         /**
15544          * @event beforehide
15545          * Fires before the component is hidden. Return false to stop the hide.
15546              * @param {Roo.Component} this
15547              */
15548         beforehide : true,
15549         /**
15550          * @event hide
15551          * Fires after the component is hidden.
15552              * @param {Roo.Component} this
15553              */
15554         hide : true,
15555         /**
15556          * @event beforerender
15557          * Fires before the component is rendered. Return false to stop the render.
15558              * @param {Roo.Component} this
15559              */
15560         beforerender : true,
15561         /**
15562          * @event render
15563          * Fires after the component is rendered.
15564              * @param {Roo.Component} this
15565              */
15566         render : true,
15567         /**
15568          * @event beforedestroy
15569          * Fires before the component is destroyed. Return false to stop the destroy.
15570              * @param {Roo.Component} this
15571              */
15572         beforedestroy : true,
15573         /**
15574          * @event destroy
15575          * Fires after the component is destroyed.
15576              * @param {Roo.Component} this
15577              */
15578         destroy : true
15579     });
15580     if(!this.id){
15581         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15582     }
15583     Roo.ComponentMgr.register(this);
15584     Roo.Component.superclass.constructor.call(this);
15585     this.initComponent();
15586     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15587         this.render(this.renderTo);
15588         delete this.renderTo;
15589     }
15590 };
15591
15592 /** @private */
15593 Roo.Component.AUTO_ID = 1000;
15594
15595 Roo.extend(Roo.Component, Roo.util.Observable, {
15596     /**
15597      * @scope Roo.Component.prototype
15598      * @type {Boolean}
15599      * true if this component is hidden. Read-only.
15600      */
15601     hidden : false,
15602     /**
15603      * @type {Boolean}
15604      * true if this component is disabled. Read-only.
15605      */
15606     disabled : false,
15607     /**
15608      * @type {Boolean}
15609      * true if this component has been rendered. Read-only.
15610      */
15611     rendered : false,
15612     
15613     /** @cfg {String} disableClass
15614      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15615      */
15616     disabledClass : "x-item-disabled",
15617         /** @cfg {Boolean} allowDomMove
15618          * Whether the component can move the Dom node when rendering (defaults to true).
15619          */
15620     allowDomMove : true,
15621     /** @cfg {String} hideMode (display|visibility)
15622      * How this component should hidden. Supported values are
15623      * "visibility" (css visibility), "offsets" (negative offset position) and
15624      * "display" (css display) - defaults to "display".
15625      */
15626     hideMode: 'display',
15627
15628     /** @private */
15629     ctype : "Roo.Component",
15630
15631     /**
15632      * @cfg {String} actionMode 
15633      * which property holds the element that used for  hide() / show() / disable() / enable()
15634      * default is 'el' for forms you probably want to set this to fieldEl 
15635      */
15636     actionMode : "el",
15637
15638     /** @private */
15639     getActionEl : function(){
15640         return this[this.actionMode];
15641     },
15642
15643     initComponent : Roo.emptyFn,
15644     /**
15645      * If this is a lazy rendering component, render it to its container element.
15646      * @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.
15647      */
15648     render : function(container, position){
15649         
15650         if(this.rendered){
15651             return this;
15652         }
15653         
15654         if(this.fireEvent("beforerender", this) === false){
15655             return false;
15656         }
15657         
15658         if(!container && this.el){
15659             this.el = Roo.get(this.el);
15660             container = this.el.dom.parentNode;
15661             this.allowDomMove = false;
15662         }
15663         this.container = Roo.get(container);
15664         this.rendered = true;
15665         if(position !== undefined){
15666             if(typeof position == 'number'){
15667                 position = this.container.dom.childNodes[position];
15668             }else{
15669                 position = Roo.getDom(position);
15670             }
15671         }
15672         this.onRender(this.container, position || null);
15673         if(this.cls){
15674             this.el.addClass(this.cls);
15675             delete this.cls;
15676         }
15677         if(this.style){
15678             this.el.applyStyles(this.style);
15679             delete this.style;
15680         }
15681         this.fireEvent("render", this);
15682         this.afterRender(this.container);
15683         if(this.hidden){
15684             this.hide();
15685         }
15686         if(this.disabled){
15687             this.disable();
15688         }
15689
15690         return this;
15691         
15692     },
15693
15694     /** @private */
15695     // default function is not really useful
15696     onRender : function(ct, position){
15697         if(this.el){
15698             this.el = Roo.get(this.el);
15699             if(this.allowDomMove !== false){
15700                 ct.dom.insertBefore(this.el.dom, position);
15701             }
15702         }
15703     },
15704
15705     /** @private */
15706     getAutoCreate : function(){
15707         var cfg = typeof this.autoCreate == "object" ?
15708                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15709         if(this.id && !cfg.id){
15710             cfg.id = this.id;
15711         }
15712         return cfg;
15713     },
15714
15715     /** @private */
15716     afterRender : Roo.emptyFn,
15717
15718     /**
15719      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15720      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15721      */
15722     destroy : function(){
15723         if(this.fireEvent("beforedestroy", this) !== false){
15724             this.purgeListeners();
15725             this.beforeDestroy();
15726             if(this.rendered){
15727                 this.el.removeAllListeners();
15728                 this.el.remove();
15729                 if(this.actionMode == "container"){
15730                     this.container.remove();
15731                 }
15732             }
15733             this.onDestroy();
15734             Roo.ComponentMgr.unregister(this);
15735             this.fireEvent("destroy", this);
15736         }
15737     },
15738
15739         /** @private */
15740     beforeDestroy : function(){
15741
15742     },
15743
15744         /** @private */
15745         onDestroy : function(){
15746
15747     },
15748
15749     /**
15750      * Returns the underlying {@link Roo.Element}.
15751      * @return {Roo.Element} The element
15752      */
15753     getEl : function(){
15754         return this.el;
15755     },
15756
15757     /**
15758      * Returns the id of this component.
15759      * @return {String}
15760      */
15761     getId : function(){
15762         return this.id;
15763     },
15764
15765     /**
15766      * Try to focus this component.
15767      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15768      * @return {Roo.Component} this
15769      */
15770     focus : function(selectText){
15771         if(this.rendered){
15772             this.el.focus();
15773             if(selectText === true){
15774                 this.el.dom.select();
15775             }
15776         }
15777         return this;
15778     },
15779
15780     /** @private */
15781     blur : function(){
15782         if(this.rendered){
15783             this.el.blur();
15784         }
15785         return this;
15786     },
15787
15788     /**
15789      * Disable this component.
15790      * @return {Roo.Component} this
15791      */
15792     disable : function(){
15793         if(this.rendered){
15794             this.onDisable();
15795         }
15796         this.disabled = true;
15797         this.fireEvent("disable", this);
15798         return this;
15799     },
15800
15801         // private
15802     onDisable : function(){
15803         this.getActionEl().addClass(this.disabledClass);
15804         this.el.dom.disabled = true;
15805     },
15806
15807     /**
15808      * Enable this component.
15809      * @return {Roo.Component} this
15810      */
15811     enable : function(){
15812         if(this.rendered){
15813             this.onEnable();
15814         }
15815         this.disabled = false;
15816         this.fireEvent("enable", this);
15817         return this;
15818     },
15819
15820         // private
15821     onEnable : function(){
15822         this.getActionEl().removeClass(this.disabledClass);
15823         this.el.dom.disabled = false;
15824     },
15825
15826     /**
15827      * Convenience function for setting disabled/enabled by boolean.
15828      * @param {Boolean} disabled
15829      */
15830     setDisabled : function(disabled){
15831         this[disabled ? "disable" : "enable"]();
15832     },
15833
15834     /**
15835      * Show this component.
15836      * @return {Roo.Component} this
15837      */
15838     show: function(){
15839         if(this.fireEvent("beforeshow", this) !== false){
15840             this.hidden = false;
15841             if(this.rendered){
15842                 this.onShow();
15843             }
15844             this.fireEvent("show", this);
15845         }
15846         return this;
15847     },
15848
15849     // private
15850     onShow : function(){
15851         var ae = this.getActionEl();
15852         if(this.hideMode == 'visibility'){
15853             ae.dom.style.visibility = "visible";
15854         }else if(this.hideMode == 'offsets'){
15855             ae.removeClass('x-hidden');
15856         }else{
15857             ae.dom.style.display = "";
15858         }
15859     },
15860
15861     /**
15862      * Hide this component.
15863      * @return {Roo.Component} this
15864      */
15865     hide: function(){
15866         if(this.fireEvent("beforehide", this) !== false){
15867             this.hidden = true;
15868             if(this.rendered){
15869                 this.onHide();
15870             }
15871             this.fireEvent("hide", this);
15872         }
15873         return this;
15874     },
15875
15876     // private
15877     onHide : function(){
15878         var ae = this.getActionEl();
15879         if(this.hideMode == 'visibility'){
15880             ae.dom.style.visibility = "hidden";
15881         }else if(this.hideMode == 'offsets'){
15882             ae.addClass('x-hidden');
15883         }else{
15884             ae.dom.style.display = "none";
15885         }
15886     },
15887
15888     /**
15889      * Convenience function to hide or show this component by boolean.
15890      * @param {Boolean} visible True to show, false to hide
15891      * @return {Roo.Component} this
15892      */
15893     setVisible: function(visible){
15894         if(visible) {
15895             this.show();
15896         }else{
15897             this.hide();
15898         }
15899         return this;
15900     },
15901
15902     /**
15903      * Returns true if this component is visible.
15904      */
15905     isVisible : function(){
15906         return this.getActionEl().isVisible();
15907     },
15908
15909     cloneConfig : function(overrides){
15910         overrides = overrides || {};
15911         var id = overrides.id || Roo.id();
15912         var cfg = Roo.applyIf(overrides, this.initialConfig);
15913         cfg.id = id; // prevent dup id
15914         return new this.constructor(cfg);
15915     }
15916 });/*
15917  * Based on:
15918  * Ext JS Library 1.1.1
15919  * Copyright(c) 2006-2007, Ext JS, LLC.
15920  *
15921  * Originally Released Under LGPL - original licence link has changed is not relivant.
15922  *
15923  * Fork - LGPL
15924  * <script type="text/javascript">
15925  */
15926
15927 /**
15928  * @class Roo.BoxComponent
15929  * @extends Roo.Component
15930  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15931  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15932  * container classes should subclass BoxComponent so that they will work consistently when nested within other Roo
15933  * layout containers.
15934  * @constructor
15935  * @param {Roo.Element/String/Object} config The configuration options.
15936  */
15937 Roo.BoxComponent = function(config){
15938     Roo.Component.call(this, config);
15939     this.addEvents({
15940         /**
15941          * @event resize
15942          * Fires after the component is resized.
15943              * @param {Roo.Component} this
15944              * @param {Number} adjWidth The box-adjusted width that was set
15945              * @param {Number} adjHeight The box-adjusted height that was set
15946              * @param {Number} rawWidth The width that was originally specified
15947              * @param {Number} rawHeight The height that was originally specified
15948              */
15949         resize : true,
15950         /**
15951          * @event move
15952          * Fires after the component is moved.
15953              * @param {Roo.Component} this
15954              * @param {Number} x The new x position
15955              * @param {Number} y The new y position
15956              */
15957         move : true
15958     });
15959 };
15960
15961 Roo.extend(Roo.BoxComponent, Roo.Component, {
15962     // private, set in afterRender to signify that the component has been rendered
15963     boxReady : false,
15964     // private, used to defer height settings to subclasses
15965     deferHeight: false,
15966     /** @cfg {Number} width
15967      * width (optional) size of component
15968      */
15969      /** @cfg {Number} height
15970      * height (optional) size of component
15971      */
15972      
15973     /**
15974      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15975      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15976      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15977      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15978      * @return {Roo.BoxComponent} this
15979      */
15980     setSize : function(w, h){
15981         // support for standard size objects
15982         if(typeof w == 'object'){
15983             h = w.height;
15984             w = w.width;
15985         }
15986         // not rendered
15987         if(!this.boxReady){
15988             this.width = w;
15989             this.height = h;
15990             return this;
15991         }
15992
15993         // prevent recalcs when not needed
15994         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15995             return this;
15996         }
15997         this.lastSize = {width: w, height: h};
15998
15999         var adj = this.adjustSize(w, h);
16000         var aw = adj.width, ah = adj.height;
16001         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
16002             var rz = this.getResizeEl();
16003             if(!this.deferHeight && aw !== undefined && ah !== undefined){
16004                 rz.setSize(aw, ah);
16005             }else if(!this.deferHeight && ah !== undefined){
16006                 rz.setHeight(ah);
16007             }else if(aw !== undefined){
16008                 rz.setWidth(aw);
16009             }
16010             this.onResize(aw, ah, w, h);
16011             this.fireEvent('resize', this, aw, ah, w, h);
16012         }
16013         return this;
16014     },
16015
16016     /**
16017      * Gets the current size of the component's underlying element.
16018      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
16019      */
16020     getSize : function(){
16021         return this.el.getSize();
16022     },
16023
16024     /**
16025      * Gets the current XY position of the component's underlying element.
16026      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16027      * @return {Array} The XY position of the element (e.g., [100, 200])
16028      */
16029     getPosition : function(local){
16030         if(local === true){
16031             return [this.el.getLeft(true), this.el.getTop(true)];
16032         }
16033         return this.xy || this.el.getXY();
16034     },
16035
16036     /**
16037      * Gets the current box measurements of the component's underlying element.
16038      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16039      * @returns {Object} box An object in the format {x, y, width, height}
16040      */
16041     getBox : function(local){
16042         var s = this.el.getSize();
16043         if(local){
16044             s.x = this.el.getLeft(true);
16045             s.y = this.el.getTop(true);
16046         }else{
16047             var xy = this.xy || this.el.getXY();
16048             s.x = xy[0];
16049             s.y = xy[1];
16050         }
16051         return s;
16052     },
16053
16054     /**
16055      * Sets the current box measurements of the component's underlying element.
16056      * @param {Object} box An object in the format {x, y, width, height}
16057      * @returns {Roo.BoxComponent} this
16058      */
16059     updateBox : function(box){
16060         this.setSize(box.width, box.height);
16061         this.setPagePosition(box.x, box.y);
16062         return this;
16063     },
16064
16065     // protected
16066     getResizeEl : function(){
16067         return this.resizeEl || this.el;
16068     },
16069
16070     // protected
16071     getPositionEl : function(){
16072         return this.positionEl || this.el;
16073     },
16074
16075     /**
16076      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16077      * This method fires the move event.
16078      * @param {Number} left The new left
16079      * @param {Number} top The new top
16080      * @returns {Roo.BoxComponent} this
16081      */
16082     setPosition : function(x, y){
16083         this.x = x;
16084         this.y = y;
16085         if(!this.boxReady){
16086             return this;
16087         }
16088         var adj = this.adjustPosition(x, y);
16089         var ax = adj.x, ay = adj.y;
16090
16091         var el = this.getPositionEl();
16092         if(ax !== undefined || ay !== undefined){
16093             if(ax !== undefined && ay !== undefined){
16094                 el.setLeftTop(ax, ay);
16095             }else if(ax !== undefined){
16096                 el.setLeft(ax);
16097             }else if(ay !== undefined){
16098                 el.setTop(ay);
16099             }
16100             this.onPosition(ax, ay);
16101             this.fireEvent('move', this, ax, ay);
16102         }
16103         return this;
16104     },
16105
16106     /**
16107      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16108      * This method fires the move event.
16109      * @param {Number} x The new x position
16110      * @param {Number} y The new y position
16111      * @returns {Roo.BoxComponent} this
16112      */
16113     setPagePosition : function(x, y){
16114         this.pageX = x;
16115         this.pageY = y;
16116         if(!this.boxReady){
16117             return;
16118         }
16119         if(x === undefined || y === undefined){ // cannot translate undefined points
16120             return;
16121         }
16122         var p = this.el.translatePoints(x, y);
16123         this.setPosition(p.left, p.top);
16124         return this;
16125     },
16126
16127     // private
16128     onRender : function(ct, position){
16129         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16130         if(this.resizeEl){
16131             this.resizeEl = Roo.get(this.resizeEl);
16132         }
16133         if(this.positionEl){
16134             this.positionEl = Roo.get(this.positionEl);
16135         }
16136     },
16137
16138     // private
16139     afterRender : function(){
16140         Roo.BoxComponent.superclass.afterRender.call(this);
16141         this.boxReady = true;
16142         this.setSize(this.width, this.height);
16143         if(this.x || this.y){
16144             this.setPosition(this.x, this.y);
16145         }
16146         if(this.pageX || this.pageY){
16147             this.setPagePosition(this.pageX, this.pageY);
16148         }
16149     },
16150
16151     /**
16152      * Force the component's size to recalculate based on the underlying element's current height and width.
16153      * @returns {Roo.BoxComponent} this
16154      */
16155     syncSize : function(){
16156         delete this.lastSize;
16157         this.setSize(this.el.getWidth(), this.el.getHeight());
16158         return this;
16159     },
16160
16161     /**
16162      * Called after the component is resized, this method is empty by default but can be implemented by any
16163      * subclass that needs to perform custom logic after a resize occurs.
16164      * @param {Number} adjWidth The box-adjusted width that was set
16165      * @param {Number} adjHeight The box-adjusted height that was set
16166      * @param {Number} rawWidth The width that was originally specified
16167      * @param {Number} rawHeight The height that was originally specified
16168      */
16169     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16170
16171     },
16172
16173     /**
16174      * Called after the component is moved, this method is empty by default but can be implemented by any
16175      * subclass that needs to perform custom logic after a move occurs.
16176      * @param {Number} x The new x position
16177      * @param {Number} y The new y position
16178      */
16179     onPosition : function(x, y){
16180
16181     },
16182
16183     // private
16184     adjustSize : function(w, h){
16185         if(this.autoWidth){
16186             w = 'auto';
16187         }
16188         if(this.autoHeight){
16189             h = 'auto';
16190         }
16191         return {width : w, height: h};
16192     },
16193
16194     // private
16195     adjustPosition : function(x, y){
16196         return {x : x, y: y};
16197     }
16198 });/*
16199  * Based on:
16200  * Ext JS Library 1.1.1
16201  * Copyright(c) 2006-2007, Ext JS, LLC.
16202  *
16203  * Originally Released Under LGPL - original licence link has changed is not relivant.
16204  *
16205  * Fork - LGPL
16206  * <script type="text/javascript">
16207  */
16208  (function(){ 
16209 /**
16210  * @class Roo.Layer
16211  * @extends Roo.Element
16212  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16213  * automatic maintaining of shadow/shim positions.
16214  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16215  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16216  * you can pass a string with a CSS class name. False turns off the shadow.
16217  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16218  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16219  * @cfg {String} cls CSS class to add to the element
16220  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16221  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16222  * @constructor
16223  * @param {Object} config An object with config options.
16224  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16225  */
16226
16227 Roo.Layer = function(config, existingEl){
16228     config = config || {};
16229     var dh = Roo.DomHelper;
16230     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16231     if(existingEl){
16232         this.dom = Roo.getDom(existingEl);
16233     }
16234     if(!this.dom){
16235         var o = config.dh || {tag: "div", cls: "x-layer"};
16236         this.dom = dh.append(pel, o);
16237     }
16238     if(config.cls){
16239         this.addClass(config.cls);
16240     }
16241     this.constrain = config.constrain !== false;
16242     this.visibilityMode = Roo.Element.VISIBILITY;
16243     if(config.id){
16244         this.id = this.dom.id = config.id;
16245     }else{
16246         this.id = Roo.id(this.dom);
16247     }
16248     this.zindex = config.zindex || this.getZIndex();
16249     this.position("absolute", this.zindex);
16250     if(config.shadow){
16251         this.shadowOffset = config.shadowOffset || 4;
16252         this.shadow = new Roo.Shadow({
16253             offset : this.shadowOffset,
16254             mode : config.shadow
16255         });
16256     }else{
16257         this.shadowOffset = 0;
16258     }
16259     this.useShim = config.shim !== false && Roo.useShims;
16260     this.useDisplay = config.useDisplay;
16261     this.hide();
16262 };
16263
16264 var supr = Roo.Element.prototype;
16265
16266 // shims are shared among layer to keep from having 100 iframes
16267 var shims = [];
16268
16269 Roo.extend(Roo.Layer, Roo.Element, {
16270
16271     getZIndex : function(){
16272         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16273     },
16274
16275     getShim : function(){
16276         if(!this.useShim){
16277             return null;
16278         }
16279         if(this.shim){
16280             return this.shim;
16281         }
16282         var shim = shims.shift();
16283         if(!shim){
16284             shim = this.createShim();
16285             shim.enableDisplayMode('block');
16286             shim.dom.style.display = 'none';
16287             shim.dom.style.visibility = 'visible';
16288         }
16289         var pn = this.dom.parentNode;
16290         if(shim.dom.parentNode != pn){
16291             pn.insertBefore(shim.dom, this.dom);
16292         }
16293         shim.setStyle('z-index', this.getZIndex()-2);
16294         this.shim = shim;
16295         return shim;
16296     },
16297
16298     hideShim : function(){
16299         if(this.shim){
16300             this.shim.setDisplayed(false);
16301             shims.push(this.shim);
16302             delete this.shim;
16303         }
16304     },
16305
16306     disableShadow : function(){
16307         if(this.shadow){
16308             this.shadowDisabled = true;
16309             this.shadow.hide();
16310             this.lastShadowOffset = this.shadowOffset;
16311             this.shadowOffset = 0;
16312         }
16313     },
16314
16315     enableShadow : function(show){
16316         if(this.shadow){
16317             this.shadowDisabled = false;
16318             this.shadowOffset = this.lastShadowOffset;
16319             delete this.lastShadowOffset;
16320             if(show){
16321                 this.sync(true);
16322             }
16323         }
16324     },
16325
16326     // private
16327     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16328     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16329     sync : function(doShow){
16330         var sw = this.shadow;
16331         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16332             var sh = this.getShim();
16333
16334             var w = this.getWidth(),
16335                 h = this.getHeight();
16336
16337             var l = this.getLeft(true),
16338                 t = this.getTop(true);
16339
16340             if(sw && !this.shadowDisabled){
16341                 if(doShow && !sw.isVisible()){
16342                     sw.show(this);
16343                 }else{
16344                     sw.realign(l, t, w, h);
16345                 }
16346                 if(sh){
16347                     if(doShow){
16348                        sh.show();
16349                     }
16350                     // fit the shim behind the shadow, so it is shimmed too
16351                     var a = sw.adjusts, s = sh.dom.style;
16352                     s.left = (Math.min(l, l+a.l))+"px";
16353                     s.top = (Math.min(t, t+a.t))+"px";
16354                     s.width = (w+a.w)+"px";
16355                     s.height = (h+a.h)+"px";
16356                 }
16357             }else if(sh){
16358                 if(doShow){
16359                    sh.show();
16360                 }
16361                 sh.setSize(w, h);
16362                 sh.setLeftTop(l, t);
16363             }
16364             
16365         }
16366     },
16367
16368     // private
16369     destroy : function(){
16370         this.hideShim();
16371         if(this.shadow){
16372             this.shadow.hide();
16373         }
16374         this.removeAllListeners();
16375         var pn = this.dom.parentNode;
16376         if(pn){
16377             pn.removeChild(this.dom);
16378         }
16379         Roo.Element.uncache(this.id);
16380     },
16381
16382     remove : function(){
16383         this.destroy();
16384     },
16385
16386     // private
16387     beginUpdate : function(){
16388         this.updating = true;
16389     },
16390
16391     // private
16392     endUpdate : function(){
16393         this.updating = false;
16394         this.sync(true);
16395     },
16396
16397     // private
16398     hideUnders : function(negOffset){
16399         if(this.shadow){
16400             this.shadow.hide();
16401         }
16402         this.hideShim();
16403     },
16404
16405     // private
16406     constrainXY : function(){
16407         if(this.constrain){
16408             var vw = Roo.lib.Dom.getViewWidth(),
16409                 vh = Roo.lib.Dom.getViewHeight();
16410             var s = Roo.get(document).getScroll();
16411
16412             var xy = this.getXY();
16413             var x = xy[0], y = xy[1];   
16414             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16415             // only move it if it needs it
16416             var moved = false;
16417             // first validate right/bottom
16418             if((x + w) > vw+s.left){
16419                 x = vw - w - this.shadowOffset;
16420                 moved = true;
16421             }
16422             if((y + h) > vh+s.top){
16423                 y = vh - h - this.shadowOffset;
16424                 moved = true;
16425             }
16426             // then make sure top/left isn't negative
16427             if(x < s.left){
16428                 x = s.left;
16429                 moved = true;
16430             }
16431             if(y < s.top){
16432                 y = s.top;
16433                 moved = true;
16434             }
16435             if(moved){
16436                 if(this.avoidY){
16437                     var ay = this.avoidY;
16438                     if(y <= ay && (y+h) >= ay){
16439                         y = ay-h-5;   
16440                     }
16441                 }
16442                 xy = [x, y];
16443                 this.storeXY(xy);
16444                 supr.setXY.call(this, xy);
16445                 this.sync();
16446             }
16447         }
16448     },
16449
16450     isVisible : function(){
16451         return this.visible;    
16452     },
16453
16454     // private
16455     showAction : function(){
16456         this.visible = true; // track visibility to prevent getStyle calls
16457         if(this.useDisplay === true){
16458             this.setDisplayed("");
16459         }else if(this.lastXY){
16460             supr.setXY.call(this, this.lastXY);
16461         }else if(this.lastLT){
16462             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16463         }
16464     },
16465
16466     // private
16467     hideAction : function(){
16468         this.visible = false;
16469         if(this.useDisplay === true){
16470             this.setDisplayed(false);
16471         }else{
16472             this.setLeftTop(-10000,-10000);
16473         }
16474     },
16475
16476     // overridden Element method
16477     setVisible : function(v, a, d, c, e){
16478         if(v){
16479             this.showAction();
16480         }
16481         if(a && v){
16482             var cb = function(){
16483                 this.sync(true);
16484                 if(c){
16485                     c();
16486                 }
16487             }.createDelegate(this);
16488             supr.setVisible.call(this, true, true, d, cb, e);
16489         }else{
16490             if(!v){
16491                 this.hideUnders(true);
16492             }
16493             var cb = c;
16494             if(a){
16495                 cb = function(){
16496                     this.hideAction();
16497                     if(c){
16498                         c();
16499                     }
16500                 }.createDelegate(this);
16501             }
16502             supr.setVisible.call(this, v, a, d, cb, e);
16503             if(v){
16504                 this.sync(true);
16505             }else if(!a){
16506                 this.hideAction();
16507             }
16508         }
16509     },
16510
16511     storeXY : function(xy){
16512         delete this.lastLT;
16513         this.lastXY = xy;
16514     },
16515
16516     storeLeftTop : function(left, top){
16517         delete this.lastXY;
16518         this.lastLT = [left, top];
16519     },
16520
16521     // private
16522     beforeFx : function(){
16523         this.beforeAction();
16524         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16525     },
16526
16527     // private
16528     afterFx : function(){
16529         Roo.Layer.superclass.afterFx.apply(this, arguments);
16530         this.sync(this.isVisible());
16531     },
16532
16533     // private
16534     beforeAction : function(){
16535         if(!this.updating && this.shadow){
16536             this.shadow.hide();
16537         }
16538     },
16539
16540     // overridden Element method
16541     setLeft : function(left){
16542         this.storeLeftTop(left, this.getTop(true));
16543         supr.setLeft.apply(this, arguments);
16544         this.sync();
16545     },
16546
16547     setTop : function(top){
16548         this.storeLeftTop(this.getLeft(true), top);
16549         supr.setTop.apply(this, arguments);
16550         this.sync();
16551     },
16552
16553     setLeftTop : function(left, top){
16554         this.storeLeftTop(left, top);
16555         supr.setLeftTop.apply(this, arguments);
16556         this.sync();
16557     },
16558
16559     setXY : function(xy, a, d, c, e){
16560         this.fixDisplay();
16561         this.beforeAction();
16562         this.storeXY(xy);
16563         var cb = this.createCB(c);
16564         supr.setXY.call(this, xy, a, d, cb, e);
16565         if(!a){
16566             cb();
16567         }
16568     },
16569
16570     // private
16571     createCB : function(c){
16572         var el = this;
16573         return function(){
16574             el.constrainXY();
16575             el.sync(true);
16576             if(c){
16577                 c();
16578             }
16579         };
16580     },
16581
16582     // overridden Element method
16583     setX : function(x, a, d, c, e){
16584         this.setXY([x, this.getY()], a, d, c, e);
16585     },
16586
16587     // overridden Element method
16588     setY : function(y, a, d, c, e){
16589         this.setXY([this.getX(), y], a, d, c, e);
16590     },
16591
16592     // overridden Element method
16593     setSize : function(w, h, a, d, c, e){
16594         this.beforeAction();
16595         var cb = this.createCB(c);
16596         supr.setSize.call(this, w, h, a, d, cb, e);
16597         if(!a){
16598             cb();
16599         }
16600     },
16601
16602     // overridden Element method
16603     setWidth : function(w, a, d, c, e){
16604         this.beforeAction();
16605         var cb = this.createCB(c);
16606         supr.setWidth.call(this, w, a, d, cb, e);
16607         if(!a){
16608             cb();
16609         }
16610     },
16611
16612     // overridden Element method
16613     setHeight : function(h, a, d, c, e){
16614         this.beforeAction();
16615         var cb = this.createCB(c);
16616         supr.setHeight.call(this, h, a, d, cb, e);
16617         if(!a){
16618             cb();
16619         }
16620     },
16621
16622     // overridden Element method
16623     setBounds : function(x, y, w, h, a, d, c, e){
16624         this.beforeAction();
16625         var cb = this.createCB(c);
16626         if(!a){
16627             this.storeXY([x, y]);
16628             supr.setXY.call(this, [x, y]);
16629             supr.setSize.call(this, w, h, a, d, cb, e);
16630             cb();
16631         }else{
16632             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16633         }
16634         return this;
16635     },
16636     
16637     /**
16638      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16639      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16640      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16641      * @param {Number} zindex The new z-index to set
16642      * @return {this} The Layer
16643      */
16644     setZIndex : function(zindex){
16645         this.zindex = zindex;
16646         this.setStyle("z-index", zindex + 2);
16647         if(this.shadow){
16648             this.shadow.setZIndex(zindex + 1);
16649         }
16650         if(this.shim){
16651             this.shim.setStyle("z-index", zindex);
16652         }
16653     }
16654 });
16655 })();/*
16656  * Original code for Roojs - LGPL
16657  * <script type="text/javascript">
16658  */
16659  
16660 /**
16661  * @class Roo.XComponent
16662  * A delayed Element creator...
16663  * Or a way to group chunks of interface together.
16664  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16665  *  used in conjunction with XComponent.build() it will create an instance of each element,
16666  *  then call addxtype() to build the User interface.
16667  * 
16668  * Mypart.xyx = new Roo.XComponent({
16669
16670     parent : 'Mypart.xyz', // empty == document.element.!!
16671     order : '001',
16672     name : 'xxxx'
16673     region : 'xxxx'
16674     disabled : function() {} 
16675      
16676     tree : function() { // return an tree of xtype declared components
16677         var MODULE = this;
16678         return 
16679         {
16680             xtype : 'NestedLayoutPanel',
16681             // technicall
16682         }
16683      ]
16684  *})
16685  *
16686  *
16687  * It can be used to build a big heiracy, with parent etc.
16688  * or you can just use this to render a single compoent to a dom element
16689  * MYPART.render(Roo.Element | String(id) | dom_element )
16690  *
16691  *
16692  * Usage patterns.
16693  *
16694  * Classic Roo
16695  *
16696  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16697  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16698  *
16699  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16700  *
16701  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16702  * - if mulitple topModules exist, the last one is defined as the top module.
16703  *
16704  * Embeded Roo
16705  * 
16706  * When the top level or multiple modules are to embedded into a existing HTML page,
16707  * the parent element can container '#id' of the element where the module will be drawn.
16708  *
16709  * Bootstrap Roo
16710  *
16711  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16712  * it relies more on a include mechanism, where sub modules are included into an outer page.
16713  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16714  * 
16715  * Bootstrap Roo Included elements
16716  *
16717  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16718  * hence confusing the component builder as it thinks there are multiple top level elements. 
16719  *
16720  * String Over-ride & Translations
16721  *
16722  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16723  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16724  * are needed. @see Roo.XComponent.overlayString  
16725  * 
16726  * 
16727  * 
16728  * @extends Roo.util.Observable
16729  * @constructor
16730  * @param cfg {Object} configuration of component
16731  * 
16732  */
16733 Roo.XComponent = function(cfg) {
16734     Roo.apply(this, cfg);
16735     this.addEvents({ 
16736         /**
16737              * @event built
16738              * Fires when this the componnt is built
16739              * @param {Roo.XComponent} c the component
16740              */
16741         'built' : true
16742         
16743     });
16744     this.region = this.region || 'center'; // default..
16745     Roo.XComponent.register(this);
16746     this.modules = false;
16747     this.el = false; // where the layout goes..
16748     
16749     
16750 }
16751 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16752     /**
16753      * @property el
16754      * The created element (with Roo.factory())
16755      * @type {Roo.Layout}
16756      */
16757     el  : false,
16758     
16759     /**
16760      * @property el
16761      * for BC  - use el in new code
16762      * @type {Roo.Layout}
16763      */
16764     panel : false,
16765     
16766     /**
16767      * @property layout
16768      * for BC  - use el in new code
16769      * @type {Roo.Layout}
16770      */
16771     layout : false,
16772     
16773      /**
16774      * @cfg {Function|boolean} disabled
16775      * If this module is disabled by some rule, return true from the funtion
16776      */
16777     disabled : false,
16778     
16779     /**
16780      * @cfg {String} parent 
16781      * Name of parent element which it get xtype added to..
16782      */
16783     parent: false,
16784     
16785     /**
16786      * @cfg {String} order
16787      * Used to set the order in which elements are created (usefull for multiple tabs)
16788      */
16789     
16790     order : false,
16791     /**
16792      * @cfg {String} name
16793      * String to display while loading.
16794      */
16795     name : false,
16796     /**
16797      * @cfg {String} region
16798      * Region to render component to (defaults to center)
16799      */
16800     region : 'center',
16801     
16802     /**
16803      * @cfg {Array} items
16804      * A single item array - the first element is the root of the tree..
16805      * It's done this way to stay compatible with the Xtype system...
16806      */
16807     items : false,
16808     
16809     /**
16810      * @property _tree
16811      * The method that retuns the tree of parts that make up this compoennt 
16812      * @type {function}
16813      */
16814     _tree  : false,
16815     
16816      /**
16817      * render
16818      * render element to dom or tree
16819      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16820      */
16821     
16822     render : function(el)
16823     {
16824         
16825         el = el || false;
16826         var hp = this.parent ? 1 : 0;
16827         Roo.debug &&  Roo.log(this);
16828         
16829         var tree = this._tree ? this._tree() : this.tree();
16830
16831         
16832         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16833             // if parent is a '#.....' string, then let's use that..
16834             var ename = this.parent.substr(1);
16835             this.parent = false;
16836             Roo.debug && Roo.log(ename);
16837             switch (ename) {
16838                 case 'bootstrap-body':
16839                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16840                         // this is the BorderLayout standard?
16841                        this.parent = { el : true };
16842                        break;
16843                     }
16844                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16845                         // need to insert stuff...
16846                         this.parent =  {
16847                              el : new Roo.bootstrap.layout.Border({
16848                                  el : document.body, 
16849                      
16850                                  center: {
16851                                     titlebar: false,
16852                                     autoScroll:false,
16853                                     closeOnTab: true,
16854                                     tabPosition: 'top',
16855                                       //resizeTabs: true,
16856                                     alwaysShowTabs: true,
16857                                     hideTabs: false
16858                                      //minTabWidth: 140
16859                                  }
16860                              })
16861                         
16862                          };
16863                          break;
16864                     }
16865                          
16866                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16867                         this.parent = { el :  new  Roo.bootstrap.Body() };
16868                         Roo.debug && Roo.log("setting el to doc body");
16869                          
16870                     } else {
16871                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16872                     }
16873                     break;
16874                 case 'bootstrap':
16875                     this.parent = { el : true};
16876                     // fall through
16877                 default:
16878                     el = Roo.get(ename);
16879                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16880                         this.parent = { el : true};
16881                     }
16882                     
16883                     break;
16884             }
16885                 
16886             
16887             if (!el && !this.parent) {
16888                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16889                 return;
16890             }
16891         }
16892         
16893         Roo.debug && Roo.log("EL:");
16894         Roo.debug && Roo.log(el);
16895         Roo.debug && Roo.log("this.parent.el:");
16896         Roo.debug && Roo.log(this.parent.el);
16897         
16898
16899         // altertive root elements ??? - we need a better way to indicate these.
16900         var is_alt = Roo.XComponent.is_alt ||
16901                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16902                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16903                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16904         
16905         
16906         
16907         if (!this.parent && is_alt) {
16908             //el = Roo.get(document.body);
16909             this.parent = { el : true };
16910         }
16911             
16912             
16913         
16914         if (!this.parent) {
16915             
16916             Roo.debug && Roo.log("no parent - creating one");
16917             
16918             el = el ? Roo.get(el) : false;      
16919             
16920             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16921                 
16922                 this.parent =  {
16923                     el : new Roo.bootstrap.layout.Border({
16924                         el: el || document.body,
16925                     
16926                         center: {
16927                             titlebar: false,
16928                             autoScroll:false,
16929                             closeOnTab: true,
16930                             tabPosition: 'top',
16931                              //resizeTabs: true,
16932                             alwaysShowTabs: false,
16933                             hideTabs: true,
16934                             minTabWidth: 140,
16935                             overflow: 'visible'
16936                          }
16937                      })
16938                 };
16939             } else {
16940             
16941                 // it's a top level one..
16942                 this.parent =  {
16943                     el : new Roo.BorderLayout(el || document.body, {
16944                         center: {
16945                             titlebar: false,
16946                             autoScroll:false,
16947                             closeOnTab: true,
16948                             tabPosition: 'top',
16949                              //resizeTabs: true,
16950                             alwaysShowTabs: el && hp? false :  true,
16951                             hideTabs: el || !hp ? true :  false,
16952                             minTabWidth: 140
16953                          }
16954                     })
16955                 };
16956             }
16957         }
16958         
16959         if (!this.parent.el) {
16960                 // probably an old style ctor, which has been disabled.
16961                 return;
16962
16963         }
16964                 // The 'tree' method is  '_tree now' 
16965             
16966         tree.region = tree.region || this.region;
16967         var is_body = false;
16968         if (this.parent.el === true) {
16969             // bootstrap... - body..
16970             if (el) {
16971                 tree.el = el;
16972             }
16973             this.parent.el = Roo.factory(tree);
16974             is_body = true;
16975         }
16976         
16977         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16978         this.fireEvent('built', this);
16979         
16980         this.panel = this.el;
16981         this.layout = this.panel.layout;
16982         this.parentLayout = this.parent.layout  || false;  
16983          
16984     }
16985     
16986 });
16987
16988 Roo.apply(Roo.XComponent, {
16989     /**
16990      * @property  hideProgress
16991      * true to disable the building progress bar.. usefull on single page renders.
16992      * @type Boolean
16993      */
16994     hideProgress : false,
16995     /**
16996      * @property  buildCompleted
16997      * True when the builder has completed building the interface.
16998      * @type Boolean
16999      */
17000     buildCompleted : false,
17001      
17002     /**
17003      * @property  topModule
17004      * the upper most module - uses document.element as it's constructor.
17005      * @type Object
17006      */
17007      
17008     topModule  : false,
17009       
17010     /**
17011      * @property  modules
17012      * array of modules to be created by registration system.
17013      * @type {Array} of Roo.XComponent
17014      */
17015     
17016     modules : [],
17017     /**
17018      * @property  elmodules
17019      * array of modules to be created by which use #ID 
17020      * @type {Array} of Roo.XComponent
17021      */
17022      
17023     elmodules : [],
17024
17025      /**
17026      * @property  is_alt
17027      * Is an alternative Root - normally used by bootstrap or other systems,
17028      *    where the top element in the tree can wrap 'body' 
17029      * @type {boolean}  (default false)
17030      */
17031      
17032     is_alt : false,
17033     /**
17034      * @property  build_from_html
17035      * Build elements from html - used by bootstrap HTML stuff 
17036      *    - this is cleared after build is completed
17037      * @type {boolean}    (default false)
17038      */
17039      
17040     build_from_html : false,
17041     /**
17042      * Register components to be built later.
17043      *
17044      * This solves the following issues
17045      * - Building is not done on page load, but after an authentication process has occured.
17046      * - Interface elements are registered on page load
17047      * - Parent Interface elements may not be loaded before child, so this handles that..
17048      * 
17049      *
17050      * example:
17051      * 
17052      * MyApp.register({
17053           order : '000001',
17054           module : 'Pman.Tab.projectMgr',
17055           region : 'center',
17056           parent : 'Pman.layout',
17057           disabled : false,  // or use a function..
17058         })
17059      
17060      * * @param {Object} details about module
17061      */
17062     register : function(obj) {
17063                 
17064         Roo.XComponent.event.fireEvent('register', obj);
17065         switch(typeof(obj.disabled) ) {
17066                 
17067             case 'undefined':
17068                 break;
17069             
17070             case 'function':
17071                 if ( obj.disabled() ) {
17072                         return;
17073                 }
17074                 break;
17075             
17076             default:
17077                 if (obj.disabled || obj.region == '#disabled') {
17078                         return;
17079                 }
17080                 break;
17081         }
17082                 
17083         this.modules.push(obj);
17084          
17085     },
17086     /**
17087      * convert a string to an object..
17088      * eg. 'AAA.BBB' -> finds AAA.BBB
17089
17090      */
17091     
17092     toObject : function(str)
17093     {
17094         if (!str || typeof(str) == 'object') {
17095             return str;
17096         }
17097         if (str.substring(0,1) == '#') {
17098             return str;
17099         }
17100
17101         var ar = str.split('.');
17102         var rt, o;
17103         rt = ar.shift();
17104             /** eval:var:o */
17105         try {
17106             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17107         } catch (e) {
17108             throw "Module not found : " + str;
17109         }
17110         
17111         if (o === false) {
17112             throw "Module not found : " + str;
17113         }
17114         Roo.each(ar, function(e) {
17115             if (typeof(o[e]) == 'undefined') {
17116                 throw "Module not found : " + str;
17117             }
17118             o = o[e];
17119         });
17120         
17121         return o;
17122         
17123     },
17124     
17125     
17126     /**
17127      * move modules into their correct place in the tree..
17128      * 
17129      */
17130     preBuild : function ()
17131     {
17132         var _t = this;
17133         Roo.each(this.modules , function (obj)
17134         {
17135             Roo.XComponent.event.fireEvent('beforebuild', obj);
17136             
17137             var opar = obj.parent;
17138             try { 
17139                 obj.parent = this.toObject(opar);
17140             } catch(e) {
17141                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17142                 return;
17143             }
17144             
17145             if (!obj.parent) {
17146                 Roo.debug && Roo.log("GOT top level module");
17147                 Roo.debug && Roo.log(obj);
17148                 obj.modules = new Roo.util.MixedCollection(false, 
17149                     function(o) { return o.order + '' }
17150                 );
17151                 this.topModule = obj;
17152                 return;
17153             }
17154                         // parent is a string (usually a dom element name..)
17155             if (typeof(obj.parent) == 'string') {
17156                 this.elmodules.push(obj);
17157                 return;
17158             }
17159             if (obj.parent.constructor != Roo.XComponent) {
17160                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17161             }
17162             if (!obj.parent.modules) {
17163                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17164                     function(o) { return o.order + '' }
17165                 );
17166             }
17167             if (obj.parent.disabled) {
17168                 obj.disabled = true;
17169             }
17170             obj.parent.modules.add(obj);
17171         }, this);
17172     },
17173     
17174      /**
17175      * make a list of modules to build.
17176      * @return {Array} list of modules. 
17177      */ 
17178     
17179     buildOrder : function()
17180     {
17181         var _this = this;
17182         var cmp = function(a,b) {   
17183             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17184         };
17185         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17186             throw "No top level modules to build";
17187         }
17188         
17189         // make a flat list in order of modules to build.
17190         var mods = this.topModule ? [ this.topModule ] : [];
17191                 
17192         
17193         // elmodules (is a list of DOM based modules )
17194         Roo.each(this.elmodules, function(e) {
17195             mods.push(e);
17196             if (!this.topModule &&
17197                 typeof(e.parent) == 'string' &&
17198                 e.parent.substring(0,1) == '#' &&
17199                 Roo.get(e.parent.substr(1))
17200                ) {
17201                 
17202                 _this.topModule = e;
17203             }
17204             
17205         });
17206
17207         
17208         // add modules to their parents..
17209         var addMod = function(m) {
17210             Roo.debug && Roo.log("build Order: add: " + m.name);
17211                 
17212             mods.push(m);
17213             if (m.modules && !m.disabled) {
17214                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17215                 m.modules.keySort('ASC',  cmp );
17216                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17217     
17218                 m.modules.each(addMod);
17219             } else {
17220                 Roo.debug && Roo.log("build Order: no child modules");
17221             }
17222             // not sure if this is used any more..
17223             if (m.finalize) {
17224                 m.finalize.name = m.name + " (clean up) ";
17225                 mods.push(m.finalize);
17226             }
17227             
17228         }
17229         if (this.topModule && this.topModule.modules) { 
17230             this.topModule.modules.keySort('ASC',  cmp );
17231             this.topModule.modules.each(addMod);
17232         } 
17233         return mods;
17234     },
17235     
17236      /**
17237      * Build the registered modules.
17238      * @param {Object} parent element.
17239      * @param {Function} optional method to call after module has been added.
17240      * 
17241      */ 
17242    
17243     build : function(opts) 
17244     {
17245         
17246         if (typeof(opts) != 'undefined') {
17247             Roo.apply(this,opts);
17248         }
17249         
17250         this.preBuild();
17251         var mods = this.buildOrder();
17252       
17253         //this.allmods = mods;
17254         //Roo.debug && Roo.log(mods);
17255         //return;
17256         if (!mods.length) { // should not happen
17257             throw "NO modules!!!";
17258         }
17259         
17260         
17261         var msg = "Building Interface...";
17262         // flash it up as modal - so we store the mask!?
17263         if (!this.hideProgress && Roo.MessageBox) {
17264             Roo.MessageBox.show({ title: 'loading' });
17265             Roo.MessageBox.show({
17266                title: "Please wait...",
17267                msg: msg,
17268                width:450,
17269                progress:true,
17270                buttons : false,
17271                closable:false,
17272                modal: false
17273               
17274             });
17275         }
17276         var total = mods.length;
17277         
17278         var _this = this;
17279         var progressRun = function() {
17280             if (!mods.length) {
17281                 Roo.debug && Roo.log('hide?');
17282                 if (!this.hideProgress && Roo.MessageBox) {
17283                     Roo.MessageBox.hide();
17284                 }
17285                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17286                 
17287                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17288                 
17289                 // THE END...
17290                 return false;   
17291             }
17292             
17293             var m = mods.shift();
17294             
17295             
17296             Roo.debug && Roo.log(m);
17297             // not sure if this is supported any more.. - modules that are are just function
17298             if (typeof(m) == 'function') { 
17299                 m.call(this);
17300                 return progressRun.defer(10, _this);
17301             } 
17302             
17303             
17304             msg = "Building Interface " + (total  - mods.length) + 
17305                     " of " + total + 
17306                     (m.name ? (' - ' + m.name) : '');
17307                         Roo.debug && Roo.log(msg);
17308             if (!_this.hideProgress &&  Roo.MessageBox) { 
17309                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17310             }
17311             
17312          
17313             // is the module disabled?
17314             var disabled = (typeof(m.disabled) == 'function') ?
17315                 m.disabled.call(m.module.disabled) : m.disabled;    
17316             
17317             
17318             if (disabled) {
17319                 return progressRun(); // we do not update the display!
17320             }
17321             
17322             // now build 
17323             
17324                         
17325                         
17326             m.render();
17327             // it's 10 on top level, and 1 on others??? why...
17328             return progressRun.defer(10, _this);
17329              
17330         }
17331         progressRun.defer(1, _this);
17332      
17333         
17334         
17335     },
17336     /**
17337      * Overlay a set of modified strings onto a component
17338      * This is dependant on our builder exporting the strings and 'named strings' elements.
17339      * 
17340      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17341      * @param {Object} associative array of 'named' string and it's new value.
17342      * 
17343      */
17344         overlayStrings : function( component, strings )
17345     {
17346         if (typeof(component['_named_strings']) == 'undefined') {
17347             throw "ERROR: component does not have _named_strings";
17348         }
17349         for ( var k in strings ) {
17350             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17351             if (md !== false) {
17352                 component['_strings'][md] = strings[k];
17353             } else {
17354                 Roo.log('could not find named string: ' + k + ' in');
17355                 Roo.log(component);
17356             }
17357             
17358         }
17359         
17360     },
17361     
17362         
17363         /**
17364          * Event Object.
17365          *
17366          *
17367          */
17368         event: false, 
17369     /**
17370          * wrapper for event.on - aliased later..  
17371          * Typically use to register a event handler for register:
17372          *
17373          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17374          *
17375          */
17376     on : false
17377    
17378     
17379     
17380 });
17381
17382 Roo.XComponent.event = new Roo.util.Observable({
17383                 events : { 
17384                         /**
17385                          * @event register
17386                          * Fires when an Component is registered,
17387                          * set the disable property on the Component to stop registration.
17388                          * @param {Roo.XComponent} c the component being registerd.
17389                          * 
17390                          */
17391                         'register' : true,
17392             /**
17393                          * @event beforebuild
17394                          * Fires before each Component is built
17395                          * can be used to apply permissions.
17396                          * @param {Roo.XComponent} c the component being registerd.
17397                          * 
17398                          */
17399                         'beforebuild' : true,
17400                         /**
17401                          * @event buildcomplete
17402                          * Fires on the top level element when all elements have been built
17403                          * @param {Roo.XComponent} the top level component.
17404                          */
17405                         'buildcomplete' : true
17406                         
17407                 }
17408 });
17409
17410 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17411  //
17412  /**
17413  * marked - a markdown parser
17414  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17415  * https://github.com/chjj/marked
17416  */
17417
17418
17419 /**
17420  *
17421  * Roo.Markdown - is a very crude wrapper around marked..
17422  *
17423  * usage:
17424  * 
17425  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17426  * 
17427  * Note: move the sample code to the bottom of this
17428  * file before uncommenting it.
17429  *
17430  */
17431
17432 Roo.Markdown = {};
17433 Roo.Markdown.toHtml = function(text) {
17434     
17435     var c = new Roo.Markdown.marked.setOptions({
17436             renderer: new Roo.Markdown.marked.Renderer(),
17437             gfm: true,
17438             tables: true,
17439             breaks: false,
17440             pedantic: false,
17441             sanitize: false,
17442             smartLists: true,
17443             smartypants: false
17444           });
17445     // A FEW HACKS!!?
17446     
17447     text = text.replace(/\\\n/g,' ');
17448     return Roo.Markdown.marked(text);
17449 };
17450 //
17451 // converter
17452 //
17453 // Wraps all "globals" so that the only thing
17454 // exposed is makeHtml().
17455 //
17456 (function() {
17457     
17458      /**
17459          * eval:var:escape
17460          * eval:var:unescape
17461          * eval:var:replace
17462          */
17463       
17464     /**
17465      * Helpers
17466      */
17467     
17468     var escape = function (html, encode) {
17469       return html
17470         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17471         .replace(/</g, '&lt;')
17472         .replace(/>/g, '&gt;')
17473         .replace(/"/g, '&quot;')
17474         .replace(/'/g, '&#39;');
17475     }
17476     
17477     var unescape = function (html) {
17478         // explicitly match decimal, hex, and named HTML entities 
17479       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17480         n = n.toLowerCase();
17481         if (n === 'colon') { return ':'; }
17482         if (n.charAt(0) === '#') {
17483           return n.charAt(1) === 'x'
17484             ? String.fromCharCode(parseInt(n.substring(2), 16))
17485             : String.fromCharCode(+n.substring(1));
17486         }
17487         return '';
17488       });
17489     }
17490     
17491     var replace = function (regex, opt) {
17492       regex = regex.source;
17493       opt = opt || '';
17494       return function self(name, val) {
17495         if (!name) { return new RegExp(regex, opt); }
17496         val = val.source || val;
17497         val = val.replace(/(^|[^\[])\^/g, '$1');
17498         regex = regex.replace(name, val);
17499         return self;
17500       };
17501     }
17502
17503
17504          /**
17505          * eval:var:noop
17506     */
17507     var noop = function () {}
17508     noop.exec = noop;
17509     
17510          /**
17511          * eval:var:merge
17512     */
17513     var merge = function (obj) {
17514       var i = 1
17515         , target
17516         , key;
17517     
17518       for (; i < arguments.length; i++) {
17519         target = arguments[i];
17520         for (key in target) {
17521           if (Object.prototype.hasOwnProperty.call(target, key)) {
17522             obj[key] = target[key];
17523           }
17524         }
17525       }
17526     
17527       return obj;
17528     }
17529     
17530     
17531     /**
17532      * Block-Level Grammar
17533      */
17534     
17535     
17536     
17537     
17538     var block = {
17539       newline: /^\n+/,
17540       code: /^( {4}[^\n]+\n*)+/,
17541       fences: noop,
17542       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17543       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17544       nptable: noop,
17545       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17546       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17547       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17548       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17549       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17550       table: noop,
17551       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17552       text: /^[^\n]+/
17553     };
17554     
17555     block.bullet = /(?:[*+-]|\d+\.)/;
17556     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17557     block.item = replace(block.item, 'gm')
17558       (/bull/g, block.bullet)
17559       ();
17560     
17561     block.list = replace(block.list)
17562       (/bull/g, block.bullet)
17563       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17564       ('def', '\\n+(?=' + block.def.source + ')')
17565       ();
17566     
17567     block.blockquote = replace(block.blockquote)
17568       ('def', block.def)
17569       ();
17570     
17571     block._tag = '(?!(?:'
17572       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17573       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17574       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17575     
17576     block.html = replace(block.html)
17577       ('comment', /<!--[\s\S]*?-->/)
17578       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17579       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17580       (/tag/g, block._tag)
17581       ();
17582     
17583     block.paragraph = replace(block.paragraph)
17584       ('hr', block.hr)
17585       ('heading', block.heading)
17586       ('lheading', block.lheading)
17587       ('blockquote', block.blockquote)
17588       ('tag', '<' + block._tag)
17589       ('def', block.def)
17590       ();
17591     
17592     /**
17593      * Normal Block Grammar
17594      */
17595     
17596     block.normal = merge({}, block);
17597     
17598     /**
17599      * GFM Block Grammar
17600      */
17601     
17602     block.gfm = merge({}, block.normal, {
17603       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17604       paragraph: /^/,
17605       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17606     });
17607     
17608     block.gfm.paragraph = replace(block.paragraph)
17609       ('(?!', '(?!'
17610         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17611         + block.list.source.replace('\\1', '\\3') + '|')
17612       ();
17613     
17614     /**
17615      * GFM + Tables Block Grammar
17616      */
17617     
17618     block.tables = merge({}, block.gfm, {
17619       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17620       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17621     });
17622     
17623     /**
17624      * Block Lexer
17625      */
17626     
17627     var Lexer = function (options) {
17628       this.tokens = [];
17629       this.tokens.links = {};
17630       this.options = options || marked.defaults;
17631       this.rules = block.normal;
17632     
17633       if (this.options.gfm) {
17634         if (this.options.tables) {
17635           this.rules = block.tables;
17636         } else {
17637           this.rules = block.gfm;
17638         }
17639       }
17640     }
17641     
17642     /**
17643      * Expose Block Rules
17644      */
17645     
17646     Lexer.rules = block;
17647     
17648     /**
17649      * Static Lex Method
17650      */
17651     
17652     Lexer.lex = function(src, options) {
17653       var lexer = new Lexer(options);
17654       return lexer.lex(src);
17655     };
17656     
17657     /**
17658      * Preprocessing
17659      */
17660     
17661     Lexer.prototype.lex = function(src) {
17662       src = src
17663         .replace(/\r\n|\r/g, '\n')
17664         .replace(/\t/g, '    ')
17665         .replace(/\u00a0/g, ' ')
17666         .replace(/\u2424/g, '\n');
17667     
17668       return this.token(src, true);
17669     };
17670     
17671     /**
17672      * Lexing
17673      */
17674     
17675     Lexer.prototype.token = function(src, top, bq) {
17676       var src = src.replace(/^ +$/gm, '')
17677         , next
17678         , loose
17679         , cap
17680         , bull
17681         , b
17682         , item
17683         , space
17684         , i
17685         , l;
17686     
17687       while (src) {
17688         // newline
17689         if (cap = this.rules.newline.exec(src)) {
17690           src = src.substring(cap[0].length);
17691           if (cap[0].length > 1) {
17692             this.tokens.push({
17693               type: 'space'
17694             });
17695           }
17696         }
17697     
17698         // code
17699         if (cap = this.rules.code.exec(src)) {
17700           src = src.substring(cap[0].length);
17701           cap = cap[0].replace(/^ {4}/gm, '');
17702           this.tokens.push({
17703             type: 'code',
17704             text: !this.options.pedantic
17705               ? cap.replace(/\n+$/, '')
17706               : cap
17707           });
17708           continue;
17709         }
17710     
17711         // fences (gfm)
17712         if (cap = this.rules.fences.exec(src)) {
17713           src = src.substring(cap[0].length);
17714           this.tokens.push({
17715             type: 'code',
17716             lang: cap[2],
17717             text: cap[3] || ''
17718           });
17719           continue;
17720         }
17721     
17722         // heading
17723         if (cap = this.rules.heading.exec(src)) {
17724           src = src.substring(cap[0].length);
17725           this.tokens.push({
17726             type: 'heading',
17727             depth: cap[1].length,
17728             text: cap[2]
17729           });
17730           continue;
17731         }
17732     
17733         // table no leading pipe (gfm)
17734         if (top && (cap = this.rules.nptable.exec(src))) {
17735           src = src.substring(cap[0].length);
17736     
17737           item = {
17738             type: 'table',
17739             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17740             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17741             cells: cap[3].replace(/\n$/, '').split('\n')
17742           };
17743     
17744           for (i = 0; i < item.align.length; i++) {
17745             if (/^ *-+: *$/.test(item.align[i])) {
17746               item.align[i] = 'right';
17747             } else if (/^ *:-+: *$/.test(item.align[i])) {
17748               item.align[i] = 'center';
17749             } else if (/^ *:-+ *$/.test(item.align[i])) {
17750               item.align[i] = 'left';
17751             } else {
17752               item.align[i] = null;
17753             }
17754           }
17755     
17756           for (i = 0; i < item.cells.length; i++) {
17757             item.cells[i] = item.cells[i].split(/ *\| */);
17758           }
17759     
17760           this.tokens.push(item);
17761     
17762           continue;
17763         }
17764     
17765         // lheading
17766         if (cap = this.rules.lheading.exec(src)) {
17767           src = src.substring(cap[0].length);
17768           this.tokens.push({
17769             type: 'heading',
17770             depth: cap[2] === '=' ? 1 : 2,
17771             text: cap[1]
17772           });
17773           continue;
17774         }
17775     
17776         // hr
17777         if (cap = this.rules.hr.exec(src)) {
17778           src = src.substring(cap[0].length);
17779           this.tokens.push({
17780             type: 'hr'
17781           });
17782           continue;
17783         }
17784     
17785         // blockquote
17786         if (cap = this.rules.blockquote.exec(src)) {
17787           src = src.substring(cap[0].length);
17788     
17789           this.tokens.push({
17790             type: 'blockquote_start'
17791           });
17792     
17793           cap = cap[0].replace(/^ *> ?/gm, '');
17794     
17795           // Pass `top` to keep the current
17796           // "toplevel" state. This is exactly
17797           // how markdown.pl works.
17798           this.token(cap, top, true);
17799     
17800           this.tokens.push({
17801             type: 'blockquote_end'
17802           });
17803     
17804           continue;
17805         }
17806     
17807         // list
17808         if (cap = this.rules.list.exec(src)) {
17809           src = src.substring(cap[0].length);
17810           bull = cap[2];
17811     
17812           this.tokens.push({
17813             type: 'list_start',
17814             ordered: bull.length > 1
17815           });
17816     
17817           // Get each top-level item.
17818           cap = cap[0].match(this.rules.item);
17819     
17820           next = false;
17821           l = cap.length;
17822           i = 0;
17823     
17824           for (; i < l; i++) {
17825             item = cap[i];
17826     
17827             // Remove the list item's bullet
17828             // so it is seen as the next token.
17829             space = item.length;
17830             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17831     
17832             // Outdent whatever the
17833             // list item contains. Hacky.
17834             if (~item.indexOf('\n ')) {
17835               space -= item.length;
17836               item = !this.options.pedantic
17837                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17838                 : item.replace(/^ {1,4}/gm, '');
17839             }
17840     
17841             // Determine whether the next list item belongs here.
17842             // Backpedal if it does not belong in this list.
17843             if (this.options.smartLists && i !== l - 1) {
17844               b = block.bullet.exec(cap[i + 1])[0];
17845               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17846                 src = cap.slice(i + 1).join('\n') + src;
17847                 i = l - 1;
17848               }
17849             }
17850     
17851             // Determine whether item is loose or not.
17852             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17853             // for discount behavior.
17854             loose = next || /\n\n(?!\s*$)/.test(item);
17855             if (i !== l - 1) {
17856               next = item.charAt(item.length - 1) === '\n';
17857               if (!loose) { loose = next; }
17858             }
17859     
17860             this.tokens.push({
17861               type: loose
17862                 ? 'loose_item_start'
17863                 : 'list_item_start'
17864             });
17865     
17866             // Recurse.
17867             this.token(item, false, bq);
17868     
17869             this.tokens.push({
17870               type: 'list_item_end'
17871             });
17872           }
17873     
17874           this.tokens.push({
17875             type: 'list_end'
17876           });
17877     
17878           continue;
17879         }
17880     
17881         // html
17882         if (cap = this.rules.html.exec(src)) {
17883           src = src.substring(cap[0].length);
17884           this.tokens.push({
17885             type: this.options.sanitize
17886               ? 'paragraph'
17887               : 'html',
17888             pre: !this.options.sanitizer
17889               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17890             text: cap[0]
17891           });
17892           continue;
17893         }
17894     
17895         // def
17896         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17897           src = src.substring(cap[0].length);
17898           this.tokens.links[cap[1].toLowerCase()] = {
17899             href: cap[2],
17900             title: cap[3]
17901           };
17902           continue;
17903         }
17904     
17905         // table (gfm)
17906         if (top && (cap = this.rules.table.exec(src))) {
17907           src = src.substring(cap[0].length);
17908     
17909           item = {
17910             type: 'table',
17911             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17912             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17913             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17914           };
17915     
17916           for (i = 0; i < item.align.length; i++) {
17917             if (/^ *-+: *$/.test(item.align[i])) {
17918               item.align[i] = 'right';
17919             } else if (/^ *:-+: *$/.test(item.align[i])) {
17920               item.align[i] = 'center';
17921             } else if (/^ *:-+ *$/.test(item.align[i])) {
17922               item.align[i] = 'left';
17923             } else {
17924               item.align[i] = null;
17925             }
17926           }
17927     
17928           for (i = 0; i < item.cells.length; i++) {
17929             item.cells[i] = item.cells[i]
17930               .replace(/^ *\| *| *\| *$/g, '')
17931               .split(/ *\| */);
17932           }
17933     
17934           this.tokens.push(item);
17935     
17936           continue;
17937         }
17938     
17939         // top-level paragraph
17940         if (top && (cap = this.rules.paragraph.exec(src))) {
17941           src = src.substring(cap[0].length);
17942           this.tokens.push({
17943             type: 'paragraph',
17944             text: cap[1].charAt(cap[1].length - 1) === '\n'
17945               ? cap[1].slice(0, -1)
17946               : cap[1]
17947           });
17948           continue;
17949         }
17950     
17951         // text
17952         if (cap = this.rules.text.exec(src)) {
17953           // Top-level should never reach here.
17954           src = src.substring(cap[0].length);
17955           this.tokens.push({
17956             type: 'text',
17957             text: cap[0]
17958           });
17959           continue;
17960         }
17961     
17962         if (src) {
17963           throw new
17964             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17965         }
17966       }
17967     
17968       return this.tokens;
17969     };
17970     
17971     /**
17972      * Inline-Level Grammar
17973      */
17974     
17975     var inline = {
17976       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17977       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17978       url: noop,
17979       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17980       link: /^!?\[(inside)\]\(href\)/,
17981       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17982       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17983       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17984       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17985       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17986       br: /^ {2,}\n(?!\s*$)/,
17987       del: noop,
17988       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17989     };
17990     
17991     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17992     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17993     
17994     inline.link = replace(inline.link)
17995       ('inside', inline._inside)
17996       ('href', inline._href)
17997       ();
17998     
17999     inline.reflink = replace(inline.reflink)
18000       ('inside', inline._inside)
18001       ();
18002     
18003     /**
18004      * Normal Inline Grammar
18005      */
18006     
18007     inline.normal = merge({}, inline);
18008     
18009     /**
18010      * Pedantic Inline Grammar
18011      */
18012     
18013     inline.pedantic = merge({}, inline.normal, {
18014       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
18015       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
18016     });
18017     
18018     /**
18019      * GFM Inline Grammar
18020      */
18021     
18022     inline.gfm = merge({}, inline.normal, {
18023       escape: replace(inline.escape)('])', '~|])')(),
18024       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
18025       del: /^~~(?=\S)([\s\S]*?\S)~~/,
18026       text: replace(inline.text)
18027         (']|', '~]|')
18028         ('|', '|https?://|')
18029         ()
18030     });
18031     
18032     /**
18033      * GFM + Line Breaks Inline Grammar
18034      */
18035     
18036     inline.breaks = merge({}, inline.gfm, {
18037       br: replace(inline.br)('{2,}', '*')(),
18038       text: replace(inline.gfm.text)('{2,}', '*')()
18039     });
18040     
18041     /**
18042      * Inline Lexer & Compiler
18043      */
18044     
18045     var InlineLexer  = function (links, options) {
18046       this.options = options || marked.defaults;
18047       this.links = links;
18048       this.rules = inline.normal;
18049       this.renderer = this.options.renderer || new Renderer;
18050       this.renderer.options = this.options;
18051     
18052       if (!this.links) {
18053         throw new
18054           Error('Tokens array requires a `links` property.');
18055       }
18056     
18057       if (this.options.gfm) {
18058         if (this.options.breaks) {
18059           this.rules = inline.breaks;
18060         } else {
18061           this.rules = inline.gfm;
18062         }
18063       } else if (this.options.pedantic) {
18064         this.rules = inline.pedantic;
18065       }
18066     }
18067     
18068     /**
18069      * Expose Inline Rules
18070      */
18071     
18072     InlineLexer.rules = inline;
18073     
18074     /**
18075      * Static Lexing/Compiling Method
18076      */
18077     
18078     InlineLexer.output = function(src, links, options) {
18079       var inline = new InlineLexer(links, options);
18080       return inline.output(src);
18081     };
18082     
18083     /**
18084      * Lexing/Compiling
18085      */
18086     
18087     InlineLexer.prototype.output = function(src) {
18088       var out = ''
18089         , link
18090         , text
18091         , href
18092         , cap;
18093     
18094       while (src) {
18095         // escape
18096         if (cap = this.rules.escape.exec(src)) {
18097           src = src.substring(cap[0].length);
18098           out += cap[1];
18099           continue;
18100         }
18101     
18102         // autolink
18103         if (cap = this.rules.autolink.exec(src)) {
18104           src = src.substring(cap[0].length);
18105           if (cap[2] === '@') {
18106             text = cap[1].charAt(6) === ':'
18107               ? this.mangle(cap[1].substring(7))
18108               : this.mangle(cap[1]);
18109             href = this.mangle('mailto:') + text;
18110           } else {
18111             text = escape(cap[1]);
18112             href = text;
18113           }
18114           out += this.renderer.link(href, null, text);
18115           continue;
18116         }
18117     
18118         // url (gfm)
18119         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18120           src = src.substring(cap[0].length);
18121           text = escape(cap[1]);
18122           href = text;
18123           out += this.renderer.link(href, null, text);
18124           continue;
18125         }
18126     
18127         // tag
18128         if (cap = this.rules.tag.exec(src)) {
18129           if (!this.inLink && /^<a /i.test(cap[0])) {
18130             this.inLink = true;
18131           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18132             this.inLink = false;
18133           }
18134           src = src.substring(cap[0].length);
18135           out += this.options.sanitize
18136             ? this.options.sanitizer
18137               ? this.options.sanitizer(cap[0])
18138               : escape(cap[0])
18139             : cap[0];
18140           continue;
18141         }
18142     
18143         // link
18144         if (cap = this.rules.link.exec(src)) {
18145           src = src.substring(cap[0].length);
18146           this.inLink = true;
18147           out += this.outputLink(cap, {
18148             href: cap[2],
18149             title: cap[3]
18150           });
18151           this.inLink = false;
18152           continue;
18153         }
18154     
18155         // reflink, nolink
18156         if ((cap = this.rules.reflink.exec(src))
18157             || (cap = this.rules.nolink.exec(src))) {
18158           src = src.substring(cap[0].length);
18159           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18160           link = this.links[link.toLowerCase()];
18161           if (!link || !link.href) {
18162             out += cap[0].charAt(0);
18163             src = cap[0].substring(1) + src;
18164             continue;
18165           }
18166           this.inLink = true;
18167           out += this.outputLink(cap, link);
18168           this.inLink = false;
18169           continue;
18170         }
18171     
18172         // strong
18173         if (cap = this.rules.strong.exec(src)) {
18174           src = src.substring(cap[0].length);
18175           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18176           continue;
18177         }
18178     
18179         // em
18180         if (cap = this.rules.em.exec(src)) {
18181           src = src.substring(cap[0].length);
18182           out += this.renderer.em(this.output(cap[2] || cap[1]));
18183           continue;
18184         }
18185     
18186         // code
18187         if (cap = this.rules.code.exec(src)) {
18188           src = src.substring(cap[0].length);
18189           out += this.renderer.codespan(escape(cap[2], true));
18190           continue;
18191         }
18192     
18193         // br
18194         if (cap = this.rules.br.exec(src)) {
18195           src = src.substring(cap[0].length);
18196           out += this.renderer.br();
18197           continue;
18198         }
18199     
18200         // del (gfm)
18201         if (cap = this.rules.del.exec(src)) {
18202           src = src.substring(cap[0].length);
18203           out += this.renderer.del(this.output(cap[1]));
18204           continue;
18205         }
18206     
18207         // text
18208         if (cap = this.rules.text.exec(src)) {
18209           src = src.substring(cap[0].length);
18210           out += this.renderer.text(escape(this.smartypants(cap[0])));
18211           continue;
18212         }
18213     
18214         if (src) {
18215           throw new
18216             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18217         }
18218       }
18219     
18220       return out;
18221     };
18222     
18223     /**
18224      * Compile Link
18225      */
18226     
18227     InlineLexer.prototype.outputLink = function(cap, link) {
18228       var href = escape(link.href)
18229         , title = link.title ? escape(link.title) : null;
18230     
18231       return cap[0].charAt(0) !== '!'
18232         ? this.renderer.link(href, title, this.output(cap[1]))
18233         : this.renderer.image(href, title, escape(cap[1]));
18234     };
18235     
18236     /**
18237      * Smartypants Transformations
18238      */
18239     
18240     InlineLexer.prototype.smartypants = function(text) {
18241       if (!this.options.smartypants)  { return text; }
18242       return text
18243         // em-dashes
18244         .replace(/---/g, '\u2014')
18245         // en-dashes
18246         .replace(/--/g, '\u2013')
18247         // opening singles
18248         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18249         // closing singles & apostrophes
18250         .replace(/'/g, '\u2019')
18251         // opening doubles
18252         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18253         // closing doubles
18254         .replace(/"/g, '\u201d')
18255         // ellipses
18256         .replace(/\.{3}/g, '\u2026');
18257     };
18258     
18259     /**
18260      * Mangle Links
18261      */
18262     
18263     InlineLexer.prototype.mangle = function(text) {
18264       if (!this.options.mangle) { return text; }
18265       var out = ''
18266         , l = text.length
18267         , i = 0
18268         , ch;
18269     
18270       for (; i < l; i++) {
18271         ch = text.charCodeAt(i);
18272         if (Math.random() > 0.5) {
18273           ch = 'x' + ch.toString(16);
18274         }
18275         out += '&#' + ch + ';';
18276       }
18277     
18278       return out;
18279     };
18280     
18281     /**
18282      * Renderer
18283      */
18284     
18285      /**
18286          * eval:var:Renderer
18287     */
18288     
18289     var Renderer   = function (options) {
18290       this.options = options || {};
18291     }
18292     
18293     Renderer.prototype.code = function(code, lang, escaped) {
18294       if (this.options.highlight) {
18295         var out = this.options.highlight(code, lang);
18296         if (out != null && out !== code) {
18297           escaped = true;
18298           code = out;
18299         }
18300       } else {
18301             // hack!!! - it's already escapeD?
18302             escaped = true;
18303       }
18304     
18305       if (!lang) {
18306         return '<pre><code>'
18307           + (escaped ? code : escape(code, true))
18308           + '\n</code></pre>';
18309       }
18310     
18311       return '<pre><code class="'
18312         + this.options.langPrefix
18313         + escape(lang, true)
18314         + '">'
18315         + (escaped ? code : escape(code, true))
18316         + '\n</code></pre>\n';
18317     };
18318     
18319     Renderer.prototype.blockquote = function(quote) {
18320       return '<blockquote>\n' + quote + '</blockquote>\n';
18321     };
18322     
18323     Renderer.prototype.html = function(html) {
18324       return html;
18325     };
18326     
18327     Renderer.prototype.heading = function(text, level, raw) {
18328       return '<h'
18329         + level
18330         + ' id="'
18331         + this.options.headerPrefix
18332         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18333         + '">'
18334         + text
18335         + '</h'
18336         + level
18337         + '>\n';
18338     };
18339     
18340     Renderer.prototype.hr = function() {
18341       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18342     };
18343     
18344     Renderer.prototype.list = function(body, ordered) {
18345       var type = ordered ? 'ol' : 'ul';
18346       return '<' + type + '>\n' + body + '</' + type + '>\n';
18347     };
18348     
18349     Renderer.prototype.listitem = function(text) {
18350       return '<li>' + text + '</li>\n';
18351     };
18352     
18353     Renderer.prototype.paragraph = function(text) {
18354       return '<p>' + text + '</p>\n';
18355     };
18356     
18357     Renderer.prototype.table = function(header, body) {
18358       return '<table class="table table-striped">\n'
18359         + '<thead>\n'
18360         + header
18361         + '</thead>\n'
18362         + '<tbody>\n'
18363         + body
18364         + '</tbody>\n'
18365         + '</table>\n';
18366     };
18367     
18368     Renderer.prototype.tablerow = function(content) {
18369       return '<tr>\n' + content + '</tr>\n';
18370     };
18371     
18372     Renderer.prototype.tablecell = function(content, flags) {
18373       var type = flags.header ? 'th' : 'td';
18374       var tag = flags.align
18375         ? '<' + type + ' style="text-align:' + flags.align + '">'
18376         : '<' + type + '>';
18377       return tag + content + '</' + type + '>\n';
18378     };
18379     
18380     // span level renderer
18381     Renderer.prototype.strong = function(text) {
18382       return '<strong>' + text + '</strong>';
18383     };
18384     
18385     Renderer.prototype.em = function(text) {
18386       return '<em>' + text + '</em>';
18387     };
18388     
18389     Renderer.prototype.codespan = function(text) {
18390       return '<code>' + text + '</code>';
18391     };
18392     
18393     Renderer.prototype.br = function() {
18394       return this.options.xhtml ? '<br/>' : '<br>';
18395     };
18396     
18397     Renderer.prototype.del = function(text) {
18398       return '<del>' + text + '</del>';
18399     };
18400     
18401     Renderer.prototype.link = function(href, title, text) {
18402       if (this.options.sanitize) {
18403         try {
18404           var prot = decodeURIComponent(unescape(href))
18405             .replace(/[^\w:]/g, '')
18406             .toLowerCase();
18407         } catch (e) {
18408           return '';
18409         }
18410         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18411           return '';
18412         }
18413       }
18414       var out = '<a href="' + href + '"';
18415       if (title) {
18416         out += ' title="' + title + '"';
18417       }
18418       out += '>' + text + '</a>';
18419       return out;
18420     };
18421     
18422     Renderer.prototype.image = function(href, title, text) {
18423       var out = '<img src="' + href + '" alt="' + text + '"';
18424       if (title) {
18425         out += ' title="' + title + '"';
18426       }
18427       out += this.options.xhtml ? '/>' : '>';
18428       return out;
18429     };
18430     
18431     Renderer.prototype.text = function(text) {
18432       return text;
18433     };
18434     
18435     /**
18436      * Parsing & Compiling
18437      */
18438          /**
18439          * eval:var:Parser
18440     */
18441     
18442     var Parser= function (options) {
18443       this.tokens = [];
18444       this.token = null;
18445       this.options = options || marked.defaults;
18446       this.options.renderer = this.options.renderer || new Renderer;
18447       this.renderer = this.options.renderer;
18448       this.renderer.options = this.options;
18449     }
18450     
18451     /**
18452      * Static Parse Method
18453      */
18454     
18455     Parser.parse = function(src, options, renderer) {
18456       var parser = new Parser(options, renderer);
18457       return parser.parse(src);
18458     };
18459     
18460     /**
18461      * Parse Loop
18462      */
18463     
18464     Parser.prototype.parse = function(src) {
18465       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18466       this.tokens = src.reverse();
18467     
18468       var out = '';
18469       while (this.next()) {
18470         out += this.tok();
18471       }
18472     
18473       return out;
18474     };
18475     
18476     /**
18477      * Next Token
18478      */
18479     
18480     Parser.prototype.next = function() {
18481       return this.token = this.tokens.pop();
18482     };
18483     
18484     /**
18485      * Preview Next Token
18486      */
18487     
18488     Parser.prototype.peek = function() {
18489       return this.tokens[this.tokens.length - 1] || 0;
18490     };
18491     
18492     /**
18493      * Parse Text Tokens
18494      */
18495     
18496     Parser.prototype.parseText = function() {
18497       var body = this.token.text;
18498     
18499       while (this.peek().type === 'text') {
18500         body += '\n' + this.next().text;
18501       }
18502     
18503       return this.inline.output(body);
18504     };
18505     
18506     /**
18507      * Parse Current Token
18508      */
18509     
18510     Parser.prototype.tok = function() {
18511       switch (this.token.type) {
18512         case 'space': {
18513           return '';
18514         }
18515         case 'hr': {
18516           return this.renderer.hr();
18517         }
18518         case 'heading': {
18519           return this.renderer.heading(
18520             this.inline.output(this.token.text),
18521             this.token.depth,
18522             this.token.text);
18523         }
18524         case 'code': {
18525           return this.renderer.code(this.token.text,
18526             this.token.lang,
18527             this.token.escaped);
18528         }
18529         case 'table': {
18530           var header = ''
18531             , body = ''
18532             , i
18533             , row
18534             , cell
18535             , flags
18536             , j;
18537     
18538           // header
18539           cell = '';
18540           for (i = 0; i < this.token.header.length; i++) {
18541             flags = { header: true, align: this.token.align[i] };
18542             cell += this.renderer.tablecell(
18543               this.inline.output(this.token.header[i]),
18544               { header: true, align: this.token.align[i] }
18545             );
18546           }
18547           header += this.renderer.tablerow(cell);
18548     
18549           for (i = 0; i < this.token.cells.length; i++) {
18550             row = this.token.cells[i];
18551     
18552             cell = '';
18553             for (j = 0; j < row.length; j++) {
18554               cell += this.renderer.tablecell(
18555                 this.inline.output(row[j]),
18556                 { header: false, align: this.token.align[j] }
18557               );
18558             }
18559     
18560             body += this.renderer.tablerow(cell);
18561           }
18562           return this.renderer.table(header, body);
18563         }
18564         case 'blockquote_start': {
18565           var body = '';
18566     
18567           while (this.next().type !== 'blockquote_end') {
18568             body += this.tok();
18569           }
18570     
18571           return this.renderer.blockquote(body);
18572         }
18573         case 'list_start': {
18574           var body = ''
18575             , ordered = this.token.ordered;
18576     
18577           while (this.next().type !== 'list_end') {
18578             body += this.tok();
18579           }
18580     
18581           return this.renderer.list(body, ordered);
18582         }
18583         case 'list_item_start': {
18584           var body = '';
18585     
18586           while (this.next().type !== 'list_item_end') {
18587             body += this.token.type === 'text'
18588               ? this.parseText()
18589               : this.tok();
18590           }
18591     
18592           return this.renderer.listitem(body);
18593         }
18594         case 'loose_item_start': {
18595           var body = '';
18596     
18597           while (this.next().type !== 'list_item_end') {
18598             body += this.tok();
18599           }
18600     
18601           return this.renderer.listitem(body);
18602         }
18603         case 'html': {
18604           var html = !this.token.pre && !this.options.pedantic
18605             ? this.inline.output(this.token.text)
18606             : this.token.text;
18607           return this.renderer.html(html);
18608         }
18609         case 'paragraph': {
18610           return this.renderer.paragraph(this.inline.output(this.token.text));
18611         }
18612         case 'text': {
18613           return this.renderer.paragraph(this.parseText());
18614         }
18615       }
18616     };
18617   
18618     
18619     /**
18620      * Marked
18621      */
18622          /**
18623          * eval:var:marked
18624     */
18625     var marked = function (src, opt, callback) {
18626       if (callback || typeof opt === 'function') {
18627         if (!callback) {
18628           callback = opt;
18629           opt = null;
18630         }
18631     
18632         opt = merge({}, marked.defaults, opt || {});
18633     
18634         var highlight = opt.highlight
18635           , tokens
18636           , pending
18637           , i = 0;
18638     
18639         try {
18640           tokens = Lexer.lex(src, opt)
18641         } catch (e) {
18642           return callback(e);
18643         }
18644     
18645         pending = tokens.length;
18646          /**
18647          * eval:var:done
18648     */
18649         var done = function(err) {
18650           if (err) {
18651             opt.highlight = highlight;
18652             return callback(err);
18653           }
18654     
18655           var out;
18656     
18657           try {
18658             out = Parser.parse(tokens, opt);
18659           } catch (e) {
18660             err = e;
18661           }
18662     
18663           opt.highlight = highlight;
18664     
18665           return err
18666             ? callback(err)
18667             : callback(null, out);
18668         };
18669     
18670         if (!highlight || highlight.length < 3) {
18671           return done();
18672         }
18673     
18674         delete opt.highlight;
18675     
18676         if (!pending) { return done(); }
18677     
18678         for (; i < tokens.length; i++) {
18679           (function(token) {
18680             if (token.type !== 'code') {
18681               return --pending || done();
18682             }
18683             return highlight(token.text, token.lang, function(err, code) {
18684               if (err) { return done(err); }
18685               if (code == null || code === token.text) {
18686                 return --pending || done();
18687               }
18688               token.text = code;
18689               token.escaped = true;
18690               --pending || done();
18691             });
18692           })(tokens[i]);
18693         }
18694     
18695         return;
18696       }
18697       try {
18698         if (opt) { opt = merge({}, marked.defaults, opt); }
18699         return Parser.parse(Lexer.lex(src, opt), opt);
18700       } catch (e) {
18701         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18702         if ((opt || marked.defaults).silent) {
18703           return '<p>An error occured:</p><pre>'
18704             + escape(e.message + '', true)
18705             + '</pre>';
18706         }
18707         throw e;
18708       }
18709     }
18710     
18711     /**
18712      * Options
18713      */
18714     
18715     marked.options =
18716     marked.setOptions = function(opt) {
18717       merge(marked.defaults, opt);
18718       return marked;
18719     };
18720     
18721     marked.defaults = {
18722       gfm: true,
18723       tables: true,
18724       breaks: false,
18725       pedantic: false,
18726       sanitize: false,
18727       sanitizer: null,
18728       mangle: true,
18729       smartLists: false,
18730       silent: false,
18731       highlight: null,
18732       langPrefix: 'lang-',
18733       smartypants: false,
18734       headerPrefix: '',
18735       renderer: new Renderer,
18736       xhtml: false
18737     };
18738     
18739     /**
18740      * Expose
18741      */
18742     
18743     marked.Parser = Parser;
18744     marked.parser = Parser.parse;
18745     
18746     marked.Renderer = Renderer;
18747     
18748     marked.Lexer = Lexer;
18749     marked.lexer = Lexer.lex;
18750     
18751     marked.InlineLexer = InlineLexer;
18752     marked.inlineLexer = InlineLexer.output;
18753     
18754     marked.parse = marked;
18755     
18756     Roo.Markdown.marked = marked;
18757
18758 })();/*
18759  * Based on:
18760  * Ext JS Library 1.1.1
18761  * Copyright(c) 2006-2007, Ext JS, LLC.
18762  *
18763  * Originally Released Under LGPL - original licence link has changed is not relivant.
18764  *
18765  * Fork - LGPL
18766  * <script type="text/javascript">
18767  */
18768
18769
18770
18771 /*
18772  * These classes are derivatives of the similarly named classes in the YUI Library.
18773  * The original license:
18774  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18775  * Code licensed under the BSD License:
18776  * http://developer.yahoo.net/yui/license.txt
18777  */
18778
18779 (function() {
18780
18781 var Event=Roo.EventManager;
18782 var Dom=Roo.lib.Dom;
18783
18784 /**
18785  * @class Roo.dd.DragDrop
18786  * @extends Roo.util.Observable
18787  * Defines the interface and base operation of items that that can be
18788  * dragged or can be drop targets.  It was designed to be extended, overriding
18789  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18790  * Up to three html elements can be associated with a DragDrop instance:
18791  * <ul>
18792  * <li>linked element: the element that is passed into the constructor.
18793  * This is the element which defines the boundaries for interaction with
18794  * other DragDrop objects.</li>
18795  * <li>handle element(s): The drag operation only occurs if the element that
18796  * was clicked matches a handle element.  By default this is the linked
18797  * element, but there are times that you will want only a portion of the
18798  * linked element to initiate the drag operation, and the setHandleElId()
18799  * method provides a way to define this.</li>
18800  * <li>drag element: this represents the element that would be moved along
18801  * with the cursor during a drag operation.  By default, this is the linked
18802  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18803  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18804  * </li>
18805  * </ul>
18806  * This class should not be instantiated until the onload event to ensure that
18807  * the associated elements are available.
18808  * The following would define a DragDrop obj that would interact with any
18809  * other DragDrop obj in the "group1" group:
18810  * <pre>
18811  *  dd = new Roo.dd.DragDrop("div1", "group1");
18812  * </pre>
18813  * Since none of the event handlers have been implemented, nothing would
18814  * actually happen if you were to run the code above.  Normally you would
18815  * override this class or one of the default implementations, but you can
18816  * also override the methods you want on an instance of the class...
18817  * <pre>
18818  *  dd.onDragDrop = function(e, id) {
18819  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18820  *  }
18821  * </pre>
18822  * @constructor
18823  * @param {String} id of the element that is linked to this instance
18824  * @param {String} sGroup the group of related DragDrop objects
18825  * @param {object} config an object containing configurable attributes
18826  *                Valid properties for DragDrop:
18827  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18828  */
18829 Roo.dd.DragDrop = function(id, sGroup, config) {
18830     if (id) {
18831         this.init(id, sGroup, config);
18832     }
18833     
18834 };
18835
18836 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18837
18838     /**
18839      * The id of the element associated with this object.  This is what we
18840      * refer to as the "linked element" because the size and position of
18841      * this element is used to determine when the drag and drop objects have
18842      * interacted.
18843      * @property id
18844      * @type String
18845      */
18846     id: null,
18847
18848     /**
18849      * Configuration attributes passed into the constructor
18850      * @property config
18851      * @type object
18852      */
18853     config: null,
18854
18855     /**
18856      * The id of the element that will be dragged.  By default this is same
18857      * as the linked element , but could be changed to another element. Ex:
18858      * Roo.dd.DDProxy
18859      * @property dragElId
18860      * @type String
18861      * @private
18862      */
18863     dragElId: null,
18864
18865     /**
18866      * the id of the element that initiates the drag operation.  By default
18867      * this is the linked element, but could be changed to be a child of this
18868      * element.  This lets us do things like only starting the drag when the
18869      * header element within the linked html element is clicked.
18870      * @property handleElId
18871      * @type String
18872      * @private
18873      */
18874     handleElId: null,
18875
18876     /**
18877      * An associative array of HTML tags that will be ignored if clicked.
18878      * @property invalidHandleTypes
18879      * @type {string: string}
18880      */
18881     invalidHandleTypes: null,
18882
18883     /**
18884      * An associative array of ids for elements that will be ignored if clicked
18885      * @property invalidHandleIds
18886      * @type {string: string}
18887      */
18888     invalidHandleIds: null,
18889
18890     /**
18891      * An indexted array of css class names for elements that will be ignored
18892      * if clicked.
18893      * @property invalidHandleClasses
18894      * @type string[]
18895      */
18896     invalidHandleClasses: null,
18897
18898     /**
18899      * The linked element's absolute X position at the time the drag was
18900      * started
18901      * @property startPageX
18902      * @type int
18903      * @private
18904      */
18905     startPageX: 0,
18906
18907     /**
18908      * The linked element's absolute X position at the time the drag was
18909      * started
18910      * @property startPageY
18911      * @type int
18912      * @private
18913      */
18914     startPageY: 0,
18915
18916     /**
18917      * The group defines a logical collection of DragDrop objects that are
18918      * related.  Instances only get events when interacting with other
18919      * DragDrop object in the same group.  This lets us define multiple
18920      * groups using a single DragDrop subclass if we want.
18921      * @property groups
18922      * @type {string: string}
18923      */
18924     groups: null,
18925
18926     /**
18927      * Individual drag/drop instances can be locked.  This will prevent
18928      * onmousedown start drag.
18929      * @property locked
18930      * @type boolean
18931      * @private
18932      */
18933     locked: false,
18934
18935     /**
18936      * Lock this instance
18937      * @method lock
18938      */
18939     lock: function() { this.locked = true; },
18940
18941     /**
18942      * Unlock this instace
18943      * @method unlock
18944      */
18945     unlock: function() { this.locked = false; },
18946
18947     /**
18948      * By default, all insances can be a drop target.  This can be disabled by
18949      * setting isTarget to false.
18950      * @method isTarget
18951      * @type boolean
18952      */
18953     isTarget: true,
18954
18955     /**
18956      * The padding configured for this drag and drop object for calculating
18957      * the drop zone intersection with this object.
18958      * @method padding
18959      * @type int[]
18960      */
18961     padding: null,
18962
18963     /**
18964      * Cached reference to the linked element
18965      * @property _domRef
18966      * @private
18967      */
18968     _domRef: null,
18969
18970     /**
18971      * Internal typeof flag
18972      * @property __ygDragDrop
18973      * @private
18974      */
18975     __ygDragDrop: true,
18976
18977     /**
18978      * Set to true when horizontal contraints are applied
18979      * @property constrainX
18980      * @type boolean
18981      * @private
18982      */
18983     constrainX: false,
18984
18985     /**
18986      * Set to true when vertical contraints are applied
18987      * @property constrainY
18988      * @type boolean
18989      * @private
18990      */
18991     constrainY: false,
18992
18993     /**
18994      * The left constraint
18995      * @property minX
18996      * @type int
18997      * @private
18998      */
18999     minX: 0,
19000
19001     /**
19002      * The right constraint
19003      * @property maxX
19004      * @type int
19005      * @private
19006      */
19007     maxX: 0,
19008
19009     /**
19010      * The up constraint
19011      * @property minY
19012      * @type int
19013      * @type int
19014      * @private
19015      */
19016     minY: 0,
19017
19018     /**
19019      * The down constraint
19020      * @property maxY
19021      * @type int
19022      * @private
19023      */
19024     maxY: 0,
19025
19026     /**
19027      * Maintain offsets when we resetconstraints.  Set to true when you want
19028      * the position of the element relative to its parent to stay the same
19029      * when the page changes
19030      *
19031      * @property maintainOffset
19032      * @type boolean
19033      */
19034     maintainOffset: false,
19035
19036     /**
19037      * Array of pixel locations the element will snap to if we specified a
19038      * horizontal graduation/interval.  This array is generated automatically
19039      * when you define a tick interval.
19040      * @property xTicks
19041      * @type int[]
19042      */
19043     xTicks: null,
19044
19045     /**
19046      * Array of pixel locations the element will snap to if we specified a
19047      * vertical graduation/interval.  This array is generated automatically
19048      * when you define a tick interval.
19049      * @property yTicks
19050      * @type int[]
19051      */
19052     yTicks: null,
19053
19054     /**
19055      * By default the drag and drop instance will only respond to the primary
19056      * button click (left button for a right-handed mouse).  Set to true to
19057      * allow drag and drop to start with any mouse click that is propogated
19058      * by the browser
19059      * @property primaryButtonOnly
19060      * @type boolean
19061      */
19062     primaryButtonOnly: true,
19063
19064     /**
19065      * The availabe property is false until the linked dom element is accessible.
19066      * @property available
19067      * @type boolean
19068      */
19069     available: false,
19070
19071     /**
19072      * By default, drags can only be initiated if the mousedown occurs in the
19073      * region the linked element is.  This is done in part to work around a
19074      * bug in some browsers that mis-report the mousedown if the previous
19075      * mouseup happened outside of the window.  This property is set to true
19076      * if outer handles are defined.
19077      *
19078      * @property hasOuterHandles
19079      * @type boolean
19080      * @default false
19081      */
19082     hasOuterHandles: false,
19083
19084     /**
19085      * Code that executes immediately before the startDrag event
19086      * @method b4StartDrag
19087      * @private
19088      */
19089     b4StartDrag: function(x, y) { },
19090
19091     /**
19092      * Abstract method called after a drag/drop object is clicked
19093      * and the drag or mousedown time thresholds have beeen met.
19094      * @method startDrag
19095      * @param {int} X click location
19096      * @param {int} Y click location
19097      */
19098     startDrag: function(x, y) { /* override this */ },
19099
19100     /**
19101      * Code that executes immediately before the onDrag event
19102      * @method b4Drag
19103      * @private
19104      */
19105     b4Drag: function(e) { },
19106
19107     /**
19108      * Abstract method called during the onMouseMove event while dragging an
19109      * object.
19110      * @method onDrag
19111      * @param {Event} e the mousemove event
19112      */
19113     onDrag: function(e) { /* override this */ },
19114
19115     /**
19116      * Abstract method called when this element fist begins hovering over
19117      * another DragDrop obj
19118      * @method onDragEnter
19119      * @param {Event} e the mousemove event
19120      * @param {String|DragDrop[]} id In POINT mode, the element
19121      * id this is hovering over.  In INTERSECT mode, an array of one or more
19122      * dragdrop items being hovered over.
19123      */
19124     onDragEnter: function(e, id) { /* override this */ },
19125
19126     /**
19127      * Code that executes immediately before the onDragOver event
19128      * @method b4DragOver
19129      * @private
19130      */
19131     b4DragOver: function(e) { },
19132
19133     /**
19134      * Abstract method called when this element is hovering over another
19135      * DragDrop obj
19136      * @method onDragOver
19137      * @param {Event} e the mousemove event
19138      * @param {String|DragDrop[]} id In POINT mode, the element
19139      * id this is hovering over.  In INTERSECT mode, an array of dd items
19140      * being hovered over.
19141      */
19142     onDragOver: function(e, id) { /* override this */ },
19143
19144     /**
19145      * Code that executes immediately before the onDragOut event
19146      * @method b4DragOut
19147      * @private
19148      */
19149     b4DragOut: function(e) { },
19150
19151     /**
19152      * Abstract method called when we are no longer hovering over an element
19153      * @method onDragOut
19154      * @param {Event} e the mousemove event
19155      * @param {String|DragDrop[]} id In POINT mode, the element
19156      * id this was hovering over.  In INTERSECT mode, an array of dd items
19157      * that the mouse is no longer over.
19158      */
19159     onDragOut: function(e, id) { /* override this */ },
19160
19161     /**
19162      * Code that executes immediately before the onDragDrop event
19163      * @method b4DragDrop
19164      * @private
19165      */
19166     b4DragDrop: function(e) { },
19167
19168     /**
19169      * Abstract method called when this item is dropped on another DragDrop
19170      * obj
19171      * @method onDragDrop
19172      * @param {Event} e the mouseup event
19173      * @param {String|DragDrop[]} id In POINT mode, the element
19174      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19175      * was dropped on.
19176      */
19177     onDragDrop: function(e, id) { /* override this */ },
19178
19179     /**
19180      * Abstract method called when this item is dropped on an area with no
19181      * drop target
19182      * @method onInvalidDrop
19183      * @param {Event} e the mouseup event
19184      */
19185     onInvalidDrop: function(e) { /* override this */ },
19186
19187     /**
19188      * Code that executes immediately before the endDrag event
19189      * @method b4EndDrag
19190      * @private
19191      */
19192     b4EndDrag: function(e) { },
19193
19194     /**
19195      * Fired when we are done dragging the object
19196      * @method endDrag
19197      * @param {Event} e the mouseup event
19198      */
19199     endDrag: function(e) { /* override this */ },
19200
19201     /**
19202      * Code executed immediately before the onMouseDown event
19203      * @method b4MouseDown
19204      * @param {Event} e the mousedown event
19205      * @private
19206      */
19207     b4MouseDown: function(e) {  },
19208
19209     /**
19210      * Event handler that fires when a drag/drop obj gets a mousedown
19211      * @method onMouseDown
19212      * @param {Event} e the mousedown event
19213      */
19214     onMouseDown: function(e) { /* override this */ },
19215
19216     /**
19217      * Event handler that fires when a drag/drop obj gets a mouseup
19218      * @method onMouseUp
19219      * @param {Event} e the mouseup event
19220      */
19221     onMouseUp: function(e) { /* override this */ },
19222
19223     /**
19224      * Override the onAvailable method to do what is needed after the initial
19225      * position was determined.
19226      * @method onAvailable
19227      */
19228     onAvailable: function () {
19229     },
19230
19231     /*
19232      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19233      * @type Object
19234      */
19235     defaultPadding : {left:0, right:0, top:0, bottom:0},
19236
19237     /*
19238      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19239  *
19240  * Usage:
19241  <pre><code>
19242  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19243                 { dragElId: "existingProxyDiv" });
19244  dd.startDrag = function(){
19245      this.constrainTo("parent-id");
19246  };
19247  </code></pre>
19248  * Or you can initalize it using the {@link Roo.Element} object:
19249  <pre><code>
19250  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19251      startDrag : function(){
19252          this.constrainTo("parent-id");
19253      }
19254  });
19255  </code></pre>
19256      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19257      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19258      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19259      * an object containing the sides to pad. For example: {right:10, bottom:10}
19260      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19261      */
19262     constrainTo : function(constrainTo, pad, inContent){
19263         if(typeof pad == "number"){
19264             pad = {left: pad, right:pad, top:pad, bottom:pad};
19265         }
19266         pad = pad || this.defaultPadding;
19267         var b = Roo.get(this.getEl()).getBox();
19268         var ce = Roo.get(constrainTo);
19269         var s = ce.getScroll();
19270         var c, cd = ce.dom;
19271         if(cd == document.body){
19272             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19273         }else{
19274             xy = ce.getXY();
19275             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19276         }
19277
19278
19279         var topSpace = b.y - c.y;
19280         var leftSpace = b.x - c.x;
19281
19282         this.resetConstraints();
19283         this.setXConstraint(leftSpace - (pad.left||0), // left
19284                 c.width - leftSpace - b.width - (pad.right||0) //right
19285         );
19286         this.setYConstraint(topSpace - (pad.top||0), //top
19287                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19288         );
19289     },
19290
19291     /**
19292      * Returns a reference to the linked element
19293      * @method getEl
19294      * @return {HTMLElement} the html element
19295      */
19296     getEl: function() {
19297         if (!this._domRef) {
19298             this._domRef = Roo.getDom(this.id);
19299         }
19300
19301         return this._domRef;
19302     },
19303
19304     /**
19305      * Returns a reference to the actual element to drag.  By default this is
19306      * the same as the html element, but it can be assigned to another
19307      * element. An example of this can be found in Roo.dd.DDProxy
19308      * @method getDragEl
19309      * @return {HTMLElement} the html element
19310      */
19311     getDragEl: function() {
19312         return Roo.getDom(this.dragElId);
19313     },
19314
19315     /**
19316      * Sets up the DragDrop object.  Must be called in the constructor of any
19317      * Roo.dd.DragDrop subclass
19318      * @method init
19319      * @param id the id of the linked element
19320      * @param {String} sGroup the group of related items
19321      * @param {object} config configuration attributes
19322      */
19323     init: function(id, sGroup, config) {
19324         this.initTarget(id, sGroup, config);
19325         if (!Roo.isTouch) {
19326             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19327         }
19328         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19329         // Event.on(this.id, "selectstart", Event.preventDefault);
19330     },
19331
19332     /**
19333      * Initializes Targeting functionality only... the object does not
19334      * get a mousedown handler.
19335      * @method initTarget
19336      * @param id the id of the linked element
19337      * @param {String} sGroup the group of related items
19338      * @param {object} config configuration attributes
19339      */
19340     initTarget: function(id, sGroup, config) {
19341
19342         // configuration attributes
19343         this.config = config || {};
19344
19345         // create a local reference to the drag and drop manager
19346         this.DDM = Roo.dd.DDM;
19347         // initialize the groups array
19348         this.groups = {};
19349
19350         // assume that we have an element reference instead of an id if the
19351         // parameter is not a string
19352         if (typeof id !== "string") {
19353             id = Roo.id(id);
19354         }
19355
19356         // set the id
19357         this.id = id;
19358
19359         // add to an interaction group
19360         this.addToGroup((sGroup) ? sGroup : "default");
19361
19362         // We don't want to register this as the handle with the manager
19363         // so we just set the id rather than calling the setter.
19364         this.handleElId = id;
19365
19366         // the linked element is the element that gets dragged by default
19367         this.setDragElId(id);
19368
19369         // by default, clicked anchors will not start drag operations.
19370         this.invalidHandleTypes = { A: "A" };
19371         this.invalidHandleIds = {};
19372         this.invalidHandleClasses = [];
19373
19374         this.applyConfig();
19375
19376         this.handleOnAvailable();
19377     },
19378
19379     /**
19380      * Applies the configuration parameters that were passed into the constructor.
19381      * This is supposed to happen at each level through the inheritance chain.  So
19382      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19383      * DragDrop in order to get all of the parameters that are available in
19384      * each object.
19385      * @method applyConfig
19386      */
19387     applyConfig: function() {
19388
19389         // configurable properties:
19390         //    padding, isTarget, maintainOffset, primaryButtonOnly
19391         this.padding           = this.config.padding || [0, 0, 0, 0];
19392         this.isTarget          = (this.config.isTarget !== false);
19393         this.maintainOffset    = (this.config.maintainOffset);
19394         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19395
19396     },
19397
19398     /**
19399      * Executed when the linked element is available
19400      * @method handleOnAvailable
19401      * @private
19402      */
19403     handleOnAvailable: function() {
19404         this.available = true;
19405         this.resetConstraints();
19406         this.onAvailable();
19407     },
19408
19409      /**
19410      * Configures the padding for the target zone in px.  Effectively expands
19411      * (or reduces) the virtual object size for targeting calculations.
19412      * Supports css-style shorthand; if only one parameter is passed, all sides
19413      * will have that padding, and if only two are passed, the top and bottom
19414      * will have the first param, the left and right the second.
19415      * @method setPadding
19416      * @param {int} iTop    Top pad
19417      * @param {int} iRight  Right pad
19418      * @param {int} iBot    Bot pad
19419      * @param {int} iLeft   Left pad
19420      */
19421     setPadding: function(iTop, iRight, iBot, iLeft) {
19422         // this.padding = [iLeft, iRight, iTop, iBot];
19423         if (!iRight && 0 !== iRight) {
19424             this.padding = [iTop, iTop, iTop, iTop];
19425         } else if (!iBot && 0 !== iBot) {
19426             this.padding = [iTop, iRight, iTop, iRight];
19427         } else {
19428             this.padding = [iTop, iRight, iBot, iLeft];
19429         }
19430     },
19431
19432     /**
19433      * Stores the initial placement of the linked element.
19434      * @method setInitialPosition
19435      * @param {int} diffX   the X offset, default 0
19436      * @param {int} diffY   the Y offset, default 0
19437      */
19438     setInitPosition: function(diffX, diffY) {
19439         var el = this.getEl();
19440
19441         if (!this.DDM.verifyEl(el)) {
19442             return;
19443         }
19444
19445         var dx = diffX || 0;
19446         var dy = diffY || 0;
19447
19448         var p = Dom.getXY( el );
19449
19450         this.initPageX = p[0] - dx;
19451         this.initPageY = p[1] - dy;
19452
19453         this.lastPageX = p[0];
19454         this.lastPageY = p[1];
19455
19456
19457         this.setStartPosition(p);
19458     },
19459
19460     /**
19461      * Sets the start position of the element.  This is set when the obj
19462      * is initialized, the reset when a drag is started.
19463      * @method setStartPosition
19464      * @param pos current position (from previous lookup)
19465      * @private
19466      */
19467     setStartPosition: function(pos) {
19468         var p = pos || Dom.getXY( this.getEl() );
19469         this.deltaSetXY = null;
19470
19471         this.startPageX = p[0];
19472         this.startPageY = p[1];
19473     },
19474
19475     /**
19476      * Add this instance to a group of related drag/drop objects.  All
19477      * instances belong to at least one group, and can belong to as many
19478      * groups as needed.
19479      * @method addToGroup
19480      * @param sGroup {string} the name of the group
19481      */
19482     addToGroup: function(sGroup) {
19483         this.groups[sGroup] = true;
19484         this.DDM.regDragDrop(this, sGroup);
19485     },
19486
19487     /**
19488      * Remove's this instance from the supplied interaction group
19489      * @method removeFromGroup
19490      * @param {string}  sGroup  The group to drop
19491      */
19492     removeFromGroup: function(sGroup) {
19493         if (this.groups[sGroup]) {
19494             delete this.groups[sGroup];
19495         }
19496
19497         this.DDM.removeDDFromGroup(this, sGroup);
19498     },
19499
19500     /**
19501      * Allows you to specify that an element other than the linked element
19502      * will be moved with the cursor during a drag
19503      * @method setDragElId
19504      * @param id {string} the id of the element that will be used to initiate the drag
19505      */
19506     setDragElId: function(id) {
19507         this.dragElId = id;
19508     },
19509
19510     /**
19511      * Allows you to specify a child of the linked element that should be
19512      * used to initiate the drag operation.  An example of this would be if
19513      * you have a content div with text and links.  Clicking anywhere in the
19514      * content area would normally start the drag operation.  Use this method
19515      * to specify that an element inside of the content div is the element
19516      * that starts the drag operation.
19517      * @method setHandleElId
19518      * @param id {string} the id of the element that will be used to
19519      * initiate the drag.
19520      */
19521     setHandleElId: function(id) {
19522         if (typeof id !== "string") {
19523             id = Roo.id(id);
19524         }
19525         this.handleElId = id;
19526         this.DDM.regHandle(this.id, id);
19527     },
19528
19529     /**
19530      * Allows you to set an element outside of the linked element as a drag
19531      * handle
19532      * @method setOuterHandleElId
19533      * @param id the id of the element that will be used to initiate the drag
19534      */
19535     setOuterHandleElId: function(id) {
19536         if (typeof id !== "string") {
19537             id = Roo.id(id);
19538         }
19539         Event.on(id, "mousedown",
19540                 this.handleMouseDown, this);
19541         this.setHandleElId(id);
19542
19543         this.hasOuterHandles = true;
19544     },
19545
19546     /**
19547      * Remove all drag and drop hooks for this element
19548      * @method unreg
19549      */
19550     unreg: function() {
19551         Event.un(this.id, "mousedown",
19552                 this.handleMouseDown);
19553         Event.un(this.id, "touchstart",
19554                 this.handleMouseDown);
19555         this._domRef = null;
19556         this.DDM._remove(this);
19557     },
19558
19559     destroy : function(){
19560         this.unreg();
19561     },
19562
19563     /**
19564      * Returns true if this instance is locked, or the drag drop mgr is locked
19565      * (meaning that all drag/drop is disabled on the page.)
19566      * @method isLocked
19567      * @return {boolean} true if this obj or all drag/drop is locked, else
19568      * false
19569      */
19570     isLocked: function() {
19571         return (this.DDM.isLocked() || this.locked);
19572     },
19573
19574     /**
19575      * Fired when this object is clicked
19576      * @method handleMouseDown
19577      * @param {Event} e
19578      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19579      * @private
19580      */
19581     handleMouseDown: function(e, oDD){
19582      
19583         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19584             //Roo.log('not touch/ button !=0');
19585             return;
19586         }
19587         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19588             return; // double touch..
19589         }
19590         
19591
19592         if (this.isLocked()) {
19593             //Roo.log('locked');
19594             return;
19595         }
19596
19597         this.DDM.refreshCache(this.groups);
19598 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19599         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19600         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19601             //Roo.log('no outer handes or not over target');
19602                 // do nothing.
19603         } else {
19604 //            Roo.log('check validator');
19605             if (this.clickValidator(e)) {
19606 //                Roo.log('validate success');
19607                 // set the initial element position
19608                 this.setStartPosition();
19609
19610
19611                 this.b4MouseDown(e);
19612                 this.onMouseDown(e);
19613
19614                 this.DDM.handleMouseDown(e, this);
19615
19616                 this.DDM.stopEvent(e);
19617             } else {
19618
19619
19620             }
19621         }
19622     },
19623
19624     clickValidator: function(e) {
19625         var target = e.getTarget();
19626         return ( this.isValidHandleChild(target) &&
19627                     (this.id == this.handleElId ||
19628                         this.DDM.handleWasClicked(target, this.id)) );
19629     },
19630
19631     /**
19632      * Allows you to specify a tag name that should not start a drag operation
19633      * when clicked.  This is designed to facilitate embedding links within a
19634      * drag handle that do something other than start the drag.
19635      * @method addInvalidHandleType
19636      * @param {string} tagName the type of element to exclude
19637      */
19638     addInvalidHandleType: function(tagName) {
19639         var type = tagName.toUpperCase();
19640         this.invalidHandleTypes[type] = type;
19641     },
19642
19643     /**
19644      * Lets you to specify an element id for a child of a drag handle
19645      * that should not initiate a drag
19646      * @method addInvalidHandleId
19647      * @param {string} id the element id of the element you wish to ignore
19648      */
19649     addInvalidHandleId: function(id) {
19650         if (typeof id !== "string") {
19651             id = Roo.id(id);
19652         }
19653         this.invalidHandleIds[id] = id;
19654     },
19655
19656     /**
19657      * Lets you specify a css class of elements that will not initiate a drag
19658      * @method addInvalidHandleClass
19659      * @param {string} cssClass the class of the elements you wish to ignore
19660      */
19661     addInvalidHandleClass: function(cssClass) {
19662         this.invalidHandleClasses.push(cssClass);
19663     },
19664
19665     /**
19666      * Unsets an excluded tag name set by addInvalidHandleType
19667      * @method removeInvalidHandleType
19668      * @param {string} tagName the type of element to unexclude
19669      */
19670     removeInvalidHandleType: function(tagName) {
19671         var type = tagName.toUpperCase();
19672         // this.invalidHandleTypes[type] = null;
19673         delete this.invalidHandleTypes[type];
19674     },
19675
19676     /**
19677      * Unsets an invalid handle id
19678      * @method removeInvalidHandleId
19679      * @param {string} id the id of the element to re-enable
19680      */
19681     removeInvalidHandleId: function(id) {
19682         if (typeof id !== "string") {
19683             id = Roo.id(id);
19684         }
19685         delete this.invalidHandleIds[id];
19686     },
19687
19688     /**
19689      * Unsets an invalid css class
19690      * @method removeInvalidHandleClass
19691      * @param {string} cssClass the class of the element(s) you wish to
19692      * re-enable
19693      */
19694     removeInvalidHandleClass: function(cssClass) {
19695         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19696             if (this.invalidHandleClasses[i] == cssClass) {
19697                 delete this.invalidHandleClasses[i];
19698             }
19699         }
19700     },
19701
19702     /**
19703      * Checks the tag exclusion list to see if this click should be ignored
19704      * @method isValidHandleChild
19705      * @param {HTMLElement} node the HTMLElement to evaluate
19706      * @return {boolean} true if this is a valid tag type, false if not
19707      */
19708     isValidHandleChild: function(node) {
19709
19710         var valid = true;
19711         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19712         var nodeName;
19713         try {
19714             nodeName = node.nodeName.toUpperCase();
19715         } catch(e) {
19716             nodeName = node.nodeName;
19717         }
19718         valid = valid && !this.invalidHandleTypes[nodeName];
19719         valid = valid && !this.invalidHandleIds[node.id];
19720
19721         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19722             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19723         }
19724
19725
19726         return valid;
19727
19728     },
19729
19730     /**
19731      * Create the array of horizontal tick marks if an interval was specified
19732      * in setXConstraint().
19733      * @method setXTicks
19734      * @private
19735      */
19736     setXTicks: function(iStartX, iTickSize) {
19737         this.xTicks = [];
19738         this.xTickSize = iTickSize;
19739
19740         var tickMap = {};
19741
19742         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19743             if (!tickMap[i]) {
19744                 this.xTicks[this.xTicks.length] = i;
19745                 tickMap[i] = true;
19746             }
19747         }
19748
19749         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19750             if (!tickMap[i]) {
19751                 this.xTicks[this.xTicks.length] = i;
19752                 tickMap[i] = true;
19753             }
19754         }
19755
19756         this.xTicks.sort(this.DDM.numericSort) ;
19757     },
19758
19759     /**
19760      * Create the array of vertical tick marks if an interval was specified in
19761      * setYConstraint().
19762      * @method setYTicks
19763      * @private
19764      */
19765     setYTicks: function(iStartY, iTickSize) {
19766         this.yTicks = [];
19767         this.yTickSize = iTickSize;
19768
19769         var tickMap = {};
19770
19771         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19772             if (!tickMap[i]) {
19773                 this.yTicks[this.yTicks.length] = i;
19774                 tickMap[i] = true;
19775             }
19776         }
19777
19778         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19779             if (!tickMap[i]) {
19780                 this.yTicks[this.yTicks.length] = i;
19781                 tickMap[i] = true;
19782             }
19783         }
19784
19785         this.yTicks.sort(this.DDM.numericSort) ;
19786     },
19787
19788     /**
19789      * By default, the element can be dragged any place on the screen.  Use
19790      * this method to limit the horizontal travel of the element.  Pass in
19791      * 0,0 for the parameters if you want to lock the drag to the y axis.
19792      * @method setXConstraint
19793      * @param {int} iLeft the number of pixels the element can move to the left
19794      * @param {int} iRight the number of pixels the element can move to the
19795      * right
19796      * @param {int} iTickSize optional parameter for specifying that the
19797      * element
19798      * should move iTickSize pixels at a time.
19799      */
19800     setXConstraint: function(iLeft, iRight, iTickSize) {
19801         this.leftConstraint = iLeft;
19802         this.rightConstraint = iRight;
19803
19804         this.minX = this.initPageX - iLeft;
19805         this.maxX = this.initPageX + iRight;
19806         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19807
19808         this.constrainX = true;
19809     },
19810
19811     /**
19812      * Clears any constraints applied to this instance.  Also clears ticks
19813      * since they can't exist independent of a constraint at this time.
19814      * @method clearConstraints
19815      */
19816     clearConstraints: function() {
19817         this.constrainX = false;
19818         this.constrainY = false;
19819         this.clearTicks();
19820     },
19821
19822     /**
19823      * Clears any tick interval defined for this instance
19824      * @method clearTicks
19825      */
19826     clearTicks: function() {
19827         this.xTicks = null;
19828         this.yTicks = null;
19829         this.xTickSize = 0;
19830         this.yTickSize = 0;
19831     },
19832
19833     /**
19834      * By default, the element can be dragged any place on the screen.  Set
19835      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19836      * parameters if you want to lock the drag to the x axis.
19837      * @method setYConstraint
19838      * @param {int} iUp the number of pixels the element can move up
19839      * @param {int} iDown the number of pixels the element can move down
19840      * @param {int} iTickSize optional parameter for specifying that the
19841      * element should move iTickSize pixels at a time.
19842      */
19843     setYConstraint: function(iUp, iDown, iTickSize) {
19844         this.topConstraint = iUp;
19845         this.bottomConstraint = iDown;
19846
19847         this.minY = this.initPageY - iUp;
19848         this.maxY = this.initPageY + iDown;
19849         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19850
19851         this.constrainY = true;
19852
19853     },
19854
19855     /**
19856      * resetConstraints must be called if you manually reposition a dd element.
19857      * @method resetConstraints
19858      * @param {boolean} maintainOffset
19859      */
19860     resetConstraints: function() {
19861
19862
19863         // Maintain offsets if necessary
19864         if (this.initPageX || this.initPageX === 0) {
19865             // figure out how much this thing has moved
19866             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19867             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19868
19869             this.setInitPosition(dx, dy);
19870
19871         // This is the first time we have detected the element's position
19872         } else {
19873             this.setInitPosition();
19874         }
19875
19876         if (this.constrainX) {
19877             this.setXConstraint( this.leftConstraint,
19878                                  this.rightConstraint,
19879                                  this.xTickSize        );
19880         }
19881
19882         if (this.constrainY) {
19883             this.setYConstraint( this.topConstraint,
19884                                  this.bottomConstraint,
19885                                  this.yTickSize         );
19886         }
19887     },
19888
19889     /**
19890      * Normally the drag element is moved pixel by pixel, but we can specify
19891      * that it move a number of pixels at a time.  This method resolves the
19892      * location when we have it set up like this.
19893      * @method getTick
19894      * @param {int} val where we want to place the object
19895      * @param {int[]} tickArray sorted array of valid points
19896      * @return {int} the closest tick
19897      * @private
19898      */
19899     getTick: function(val, tickArray) {
19900
19901         if (!tickArray) {
19902             // If tick interval is not defined, it is effectively 1 pixel,
19903             // so we return the value passed to us.
19904             return val;
19905         } else if (tickArray[0] >= val) {
19906             // The value is lower than the first tick, so we return the first
19907             // tick.
19908             return tickArray[0];
19909         } else {
19910             for (var i=0, len=tickArray.length; i<len; ++i) {
19911                 var next = i + 1;
19912                 if (tickArray[next] && tickArray[next] >= val) {
19913                     var diff1 = val - tickArray[i];
19914                     var diff2 = tickArray[next] - val;
19915                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19916                 }
19917             }
19918
19919             // The value is larger than the last tick, so we return the last
19920             // tick.
19921             return tickArray[tickArray.length - 1];
19922         }
19923     },
19924
19925     /**
19926      * toString method
19927      * @method toString
19928      * @return {string} string representation of the dd obj
19929      */
19930     toString: function() {
19931         return ("DragDrop " + this.id);
19932     }
19933
19934 });
19935
19936 })();
19937 /*
19938  * Based on:
19939  * Ext JS Library 1.1.1
19940  * Copyright(c) 2006-2007, Ext JS, LLC.
19941  *
19942  * Originally Released Under LGPL - original licence link has changed is not relivant.
19943  *
19944  * Fork - LGPL
19945  * <script type="text/javascript">
19946  */
19947
19948
19949 /**
19950  * The drag and drop utility provides a framework for building drag and drop
19951  * applications.  In addition to enabling drag and drop for specific elements,
19952  * the drag and drop elements are tracked by the manager class, and the
19953  * interactions between the various elements are tracked during the drag and
19954  * the implementing code is notified about these important moments.
19955  */
19956
19957 // Only load the library once.  Rewriting the manager class would orphan
19958 // existing drag and drop instances.
19959 if (!Roo.dd.DragDropMgr) {
19960
19961 /**
19962  * @class Roo.dd.DragDropMgr
19963  * DragDropMgr is a singleton that tracks the element interaction for
19964  * all DragDrop items in the window.  Generally, you will not call
19965  * this class directly, but it does have helper methods that could
19966  * be useful in your DragDrop implementations.
19967  * @singleton
19968  */
19969 Roo.dd.DragDropMgr = function() {
19970
19971     var Event = Roo.EventManager;
19972
19973     return {
19974
19975         /**
19976          * Two dimensional Array of registered DragDrop objects.  The first
19977          * dimension is the DragDrop item group, the second the DragDrop
19978          * object.
19979          * @property ids
19980          * @type {string: string}
19981          * @private
19982          * @static
19983          */
19984         ids: {},
19985
19986         /**
19987          * Array of element ids defined as drag handles.  Used to determine
19988          * if the element that generated the mousedown event is actually the
19989          * handle and not the html element itself.
19990          * @property handleIds
19991          * @type {string: string}
19992          * @private
19993          * @static
19994          */
19995         handleIds: {},
19996
19997         /**
19998          * the DragDrop object that is currently being dragged
19999          * @property dragCurrent
20000          * @type DragDrop
20001          * @private
20002          * @static
20003          **/
20004         dragCurrent: null,
20005
20006         /**
20007          * the DragDrop object(s) that are being hovered over
20008          * @property dragOvers
20009          * @type Array
20010          * @private
20011          * @static
20012          */
20013         dragOvers: {},
20014
20015         /**
20016          * the X distance between the cursor and the object being dragged
20017          * @property deltaX
20018          * @type int
20019          * @private
20020          * @static
20021          */
20022         deltaX: 0,
20023
20024         /**
20025          * the Y distance between the cursor and the object being dragged
20026          * @property deltaY
20027          * @type int
20028          * @private
20029          * @static
20030          */
20031         deltaY: 0,
20032
20033         /**
20034          * Flag to determine if we should prevent the default behavior of the
20035          * events we define. By default this is true, but this can be set to
20036          * false if you need the default behavior (not recommended)
20037          * @property preventDefault
20038          * @type boolean
20039          * @static
20040          */
20041         preventDefault: true,
20042
20043         /**
20044          * Flag to determine if we should stop the propagation of the events
20045          * we generate. This is true by default but you may want to set it to
20046          * false if the html element contains other features that require the
20047          * mouse click.
20048          * @property stopPropagation
20049          * @type boolean
20050          * @static
20051          */
20052         stopPropagation: true,
20053
20054         /**
20055          * Internal flag that is set to true when drag and drop has been
20056          * intialized
20057          * @property initialized
20058          * @private
20059          * @static
20060          */
20061         initalized: false,
20062
20063         /**
20064          * All drag and drop can be disabled.
20065          * @property locked
20066          * @private
20067          * @static
20068          */
20069         locked: false,
20070
20071         /**
20072          * Called the first time an element is registered.
20073          * @method init
20074          * @private
20075          * @static
20076          */
20077         init: function() {
20078             this.initialized = true;
20079         },
20080
20081         /**
20082          * In point mode, drag and drop interaction is defined by the
20083          * location of the cursor during the drag/drop
20084          * @property POINT
20085          * @type int
20086          * @static
20087          */
20088         POINT: 0,
20089
20090         /**
20091          * In intersect mode, drag and drop interactio nis defined by the
20092          * overlap of two or more drag and drop objects.
20093          * @property INTERSECT
20094          * @type int
20095          * @static
20096          */
20097         INTERSECT: 1,
20098
20099         /**
20100          * The current drag and drop mode.  Default: POINT
20101          * @property mode
20102          * @type int
20103          * @static
20104          */
20105         mode: 0,
20106
20107         /**
20108          * Runs method on all drag and drop objects
20109          * @method _execOnAll
20110          * @private
20111          * @static
20112          */
20113         _execOnAll: function(sMethod, args) {
20114             for (var i in this.ids) {
20115                 for (var j in this.ids[i]) {
20116                     var oDD = this.ids[i][j];
20117                     if (! this.isTypeOfDD(oDD)) {
20118                         continue;
20119                     }
20120                     oDD[sMethod].apply(oDD, args);
20121                 }
20122             }
20123         },
20124
20125         /**
20126          * Drag and drop initialization.  Sets up the global event handlers
20127          * @method _onLoad
20128          * @private
20129          * @static
20130          */
20131         _onLoad: function() {
20132
20133             this.init();
20134
20135             if (!Roo.isTouch) {
20136                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20137                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20138             }
20139             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20140             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20141             
20142             Event.on(window,   "unload",    this._onUnload, this, true);
20143             Event.on(window,   "resize",    this._onResize, this, true);
20144             // Event.on(window,   "mouseout",    this._test);
20145
20146         },
20147
20148         /**
20149          * Reset constraints on all drag and drop objs
20150          * @method _onResize
20151          * @private
20152          * @static
20153          */
20154         _onResize: function(e) {
20155             this._execOnAll("resetConstraints", []);
20156         },
20157
20158         /**
20159          * Lock all drag and drop functionality
20160          * @method lock
20161          * @static
20162          */
20163         lock: function() { this.locked = true; },
20164
20165         /**
20166          * Unlock all drag and drop functionality
20167          * @method unlock
20168          * @static
20169          */
20170         unlock: function() { this.locked = false; },
20171
20172         /**
20173          * Is drag and drop locked?
20174          * @method isLocked
20175          * @return {boolean} True if drag and drop is locked, false otherwise.
20176          * @static
20177          */
20178         isLocked: function() { return this.locked; },
20179
20180         /**
20181          * Location cache that is set for all drag drop objects when a drag is
20182          * initiated, cleared when the drag is finished.
20183          * @property locationCache
20184          * @private
20185          * @static
20186          */
20187         locationCache: {},
20188
20189         /**
20190          * Set useCache to false if you want to force object the lookup of each
20191          * drag and drop linked element constantly during a drag.
20192          * @property useCache
20193          * @type boolean
20194          * @static
20195          */
20196         useCache: true,
20197
20198         /**
20199          * The number of pixels that the mouse needs to move after the
20200          * mousedown before the drag is initiated.  Default=3;
20201          * @property clickPixelThresh
20202          * @type int
20203          * @static
20204          */
20205         clickPixelThresh: 3,
20206
20207         /**
20208          * The number of milliseconds after the mousedown event to initiate the
20209          * drag if we don't get a mouseup event. Default=1000
20210          * @property clickTimeThresh
20211          * @type int
20212          * @static
20213          */
20214         clickTimeThresh: 350,
20215
20216         /**
20217          * Flag that indicates that either the drag pixel threshold or the
20218          * mousdown time threshold has been met
20219          * @property dragThreshMet
20220          * @type boolean
20221          * @private
20222          * @static
20223          */
20224         dragThreshMet: false,
20225
20226         /**
20227          * Timeout used for the click time threshold
20228          * @property clickTimeout
20229          * @type Object
20230          * @private
20231          * @static
20232          */
20233         clickTimeout: null,
20234
20235         /**
20236          * The X position of the mousedown event stored for later use when a
20237          * drag threshold is met.
20238          * @property startX
20239          * @type int
20240          * @private
20241          * @static
20242          */
20243         startX: 0,
20244
20245         /**
20246          * The Y position of the mousedown event stored for later use when a
20247          * drag threshold is met.
20248          * @property startY
20249          * @type int
20250          * @private
20251          * @static
20252          */
20253         startY: 0,
20254
20255         /**
20256          * Each DragDrop instance must be registered with the DragDropMgr.
20257          * This is executed in DragDrop.init()
20258          * @method regDragDrop
20259          * @param {DragDrop} oDD the DragDrop object to register
20260          * @param {String} sGroup the name of the group this element belongs to
20261          * @static
20262          */
20263         regDragDrop: function(oDD, sGroup) {
20264             if (!this.initialized) { this.init(); }
20265
20266             if (!this.ids[sGroup]) {
20267                 this.ids[sGroup] = {};
20268             }
20269             this.ids[sGroup][oDD.id] = oDD;
20270         },
20271
20272         /**
20273          * Removes the supplied dd instance from the supplied group. Executed
20274          * by DragDrop.removeFromGroup, so don't call this function directly.
20275          * @method removeDDFromGroup
20276          * @private
20277          * @static
20278          */
20279         removeDDFromGroup: function(oDD, sGroup) {
20280             if (!this.ids[sGroup]) {
20281                 this.ids[sGroup] = {};
20282             }
20283
20284             var obj = this.ids[sGroup];
20285             if (obj && obj[oDD.id]) {
20286                 delete obj[oDD.id];
20287             }
20288         },
20289
20290         /**
20291          * Unregisters a drag and drop item.  This is executed in
20292          * DragDrop.unreg, use that method instead of calling this directly.
20293          * @method _remove
20294          * @private
20295          * @static
20296          */
20297         _remove: function(oDD) {
20298             for (var g in oDD.groups) {
20299                 if (g && this.ids[g][oDD.id]) {
20300                     delete this.ids[g][oDD.id];
20301                 }
20302             }
20303             delete this.handleIds[oDD.id];
20304         },
20305
20306         /**
20307          * Each DragDrop handle element must be registered.  This is done
20308          * automatically when executing DragDrop.setHandleElId()
20309          * @method regHandle
20310          * @param {String} sDDId the DragDrop id this element is a handle for
20311          * @param {String} sHandleId the id of the element that is the drag
20312          * handle
20313          * @static
20314          */
20315         regHandle: function(sDDId, sHandleId) {
20316             if (!this.handleIds[sDDId]) {
20317                 this.handleIds[sDDId] = {};
20318             }
20319             this.handleIds[sDDId][sHandleId] = sHandleId;
20320         },
20321
20322         /**
20323          * Utility function to determine if a given element has been
20324          * registered as a drag drop item.
20325          * @method isDragDrop
20326          * @param {String} id the element id to check
20327          * @return {boolean} true if this element is a DragDrop item,
20328          * false otherwise
20329          * @static
20330          */
20331         isDragDrop: function(id) {
20332             return ( this.getDDById(id) ) ? true : false;
20333         },
20334
20335         /**
20336          * Returns the drag and drop instances that are in all groups the
20337          * passed in instance belongs to.
20338          * @method getRelated
20339          * @param {DragDrop} p_oDD the obj to get related data for
20340          * @param {boolean} bTargetsOnly if true, only return targetable objs
20341          * @return {DragDrop[]} the related instances
20342          * @static
20343          */
20344         getRelated: function(p_oDD, bTargetsOnly) {
20345             var oDDs = [];
20346             for (var i in p_oDD.groups) {
20347                 for (j in this.ids[i]) {
20348                     var dd = this.ids[i][j];
20349                     if (! this.isTypeOfDD(dd)) {
20350                         continue;
20351                     }
20352                     if (!bTargetsOnly || dd.isTarget) {
20353                         oDDs[oDDs.length] = dd;
20354                     }
20355                 }
20356             }
20357
20358             return oDDs;
20359         },
20360
20361         /**
20362          * Returns true if the specified dd target is a legal target for
20363          * the specifice drag obj
20364          * @method isLegalTarget
20365          * @param {DragDrop} the drag obj
20366          * @param {DragDrop} the target
20367          * @return {boolean} true if the target is a legal target for the
20368          * dd obj
20369          * @static
20370          */
20371         isLegalTarget: function (oDD, oTargetDD) {
20372             var targets = this.getRelated(oDD, true);
20373             for (var i=0, len=targets.length;i<len;++i) {
20374                 if (targets[i].id == oTargetDD.id) {
20375                     return true;
20376                 }
20377             }
20378
20379             return false;
20380         },
20381
20382         /**
20383          * My goal is to be able to transparently determine if an object is
20384          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20385          * returns "object", oDD.constructor.toString() always returns
20386          * "DragDrop" and not the name of the subclass.  So for now it just
20387          * evaluates a well-known variable in DragDrop.
20388          * @method isTypeOfDD
20389          * @param {Object} the object to evaluate
20390          * @return {boolean} true if typeof oDD = DragDrop
20391          * @static
20392          */
20393         isTypeOfDD: function (oDD) {
20394             return (oDD && oDD.__ygDragDrop);
20395         },
20396
20397         /**
20398          * Utility function to determine if a given element has been
20399          * registered as a drag drop handle for the given Drag Drop object.
20400          * @method isHandle
20401          * @param {String} id the element id to check
20402          * @return {boolean} true if this element is a DragDrop handle, false
20403          * otherwise
20404          * @static
20405          */
20406         isHandle: function(sDDId, sHandleId) {
20407             return ( this.handleIds[sDDId] &&
20408                             this.handleIds[sDDId][sHandleId] );
20409         },
20410
20411         /**
20412          * Returns the DragDrop instance for a given id
20413          * @method getDDById
20414          * @param {String} id the id of the DragDrop object
20415          * @return {DragDrop} the drag drop object, null if it is not found
20416          * @static
20417          */
20418         getDDById: function(id) {
20419             for (var i in this.ids) {
20420                 if (this.ids[i][id]) {
20421                     return this.ids[i][id];
20422                 }
20423             }
20424             return null;
20425         },
20426
20427         /**
20428          * Fired after a registered DragDrop object gets the mousedown event.
20429          * Sets up the events required to track the object being dragged
20430          * @method handleMouseDown
20431          * @param {Event} e the event
20432          * @param oDD the DragDrop object being dragged
20433          * @private
20434          * @static
20435          */
20436         handleMouseDown: function(e, oDD) {
20437             if(Roo.QuickTips){
20438                 Roo.QuickTips.disable();
20439             }
20440             this.currentTarget = e.getTarget();
20441
20442             this.dragCurrent = oDD;
20443
20444             var el = oDD.getEl();
20445
20446             // track start position
20447             this.startX = e.getPageX();
20448             this.startY = e.getPageY();
20449
20450             this.deltaX = this.startX - el.offsetLeft;
20451             this.deltaY = this.startY - el.offsetTop;
20452
20453             this.dragThreshMet = false;
20454
20455             this.clickTimeout = setTimeout(
20456                     function() {
20457                         var DDM = Roo.dd.DDM;
20458                         DDM.startDrag(DDM.startX, DDM.startY);
20459                     },
20460                     this.clickTimeThresh );
20461         },
20462
20463         /**
20464          * Fired when either the drag pixel threshol or the mousedown hold
20465          * time threshold has been met.
20466          * @method startDrag
20467          * @param x {int} the X position of the original mousedown
20468          * @param y {int} the Y position of the original mousedown
20469          * @static
20470          */
20471         startDrag: function(x, y) {
20472             clearTimeout(this.clickTimeout);
20473             if (this.dragCurrent) {
20474                 this.dragCurrent.b4StartDrag(x, y);
20475                 this.dragCurrent.startDrag(x, y);
20476             }
20477             this.dragThreshMet = true;
20478         },
20479
20480         /**
20481          * Internal function to handle the mouseup event.  Will be invoked
20482          * from the context of the document.
20483          * @method handleMouseUp
20484          * @param {Event} e the event
20485          * @private
20486          * @static
20487          */
20488         handleMouseUp: function(e) {
20489
20490             if(Roo.QuickTips){
20491                 Roo.QuickTips.enable();
20492             }
20493             if (! this.dragCurrent) {
20494                 return;
20495             }
20496
20497             clearTimeout(this.clickTimeout);
20498
20499             if (this.dragThreshMet) {
20500                 this.fireEvents(e, true);
20501             } else {
20502             }
20503
20504             this.stopDrag(e);
20505
20506             this.stopEvent(e);
20507         },
20508
20509         /**
20510          * Utility to stop event propagation and event default, if these
20511          * features are turned on.
20512          * @method stopEvent
20513          * @param {Event} e the event as returned by this.getEvent()
20514          * @static
20515          */
20516         stopEvent: function(e){
20517             if(this.stopPropagation) {
20518                 e.stopPropagation();
20519             }
20520
20521             if (this.preventDefault) {
20522                 e.preventDefault();
20523             }
20524         },
20525
20526         /**
20527          * Internal function to clean up event handlers after the drag
20528          * operation is complete
20529          * @method stopDrag
20530          * @param {Event} e the event
20531          * @private
20532          * @static
20533          */
20534         stopDrag: function(e) {
20535             // Fire the drag end event for the item that was dragged
20536             if (this.dragCurrent) {
20537                 if (this.dragThreshMet) {
20538                     this.dragCurrent.b4EndDrag(e);
20539                     this.dragCurrent.endDrag(e);
20540                 }
20541
20542                 this.dragCurrent.onMouseUp(e);
20543             }
20544
20545             this.dragCurrent = null;
20546             this.dragOvers = {};
20547         },
20548
20549         /**
20550          * Internal function to handle the mousemove event.  Will be invoked
20551          * from the context of the html element.
20552          *
20553          * @TODO figure out what we can do about mouse events lost when the
20554          * user drags objects beyond the window boundary.  Currently we can
20555          * detect this in internet explorer by verifying that the mouse is
20556          * down during the mousemove event.  Firefox doesn't give us the
20557          * button state on the mousemove event.
20558          * @method handleMouseMove
20559          * @param {Event} e the event
20560          * @private
20561          * @static
20562          */
20563         handleMouseMove: function(e) {
20564             if (! this.dragCurrent) {
20565                 return true;
20566             }
20567
20568             // var button = e.which || e.button;
20569
20570             // check for IE mouseup outside of page boundary
20571             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20572                 this.stopEvent(e);
20573                 return this.handleMouseUp(e);
20574             }
20575
20576             if (!this.dragThreshMet) {
20577                 var diffX = Math.abs(this.startX - e.getPageX());
20578                 var diffY = Math.abs(this.startY - e.getPageY());
20579                 if (diffX > this.clickPixelThresh ||
20580                             diffY > this.clickPixelThresh) {
20581                     this.startDrag(this.startX, this.startY);
20582                 }
20583             }
20584
20585             if (this.dragThreshMet) {
20586                 this.dragCurrent.b4Drag(e);
20587                 this.dragCurrent.onDrag(e);
20588                 if(!this.dragCurrent.moveOnly){
20589                     this.fireEvents(e, false);
20590                 }
20591             }
20592
20593             this.stopEvent(e);
20594
20595             return true;
20596         },
20597
20598         /**
20599          * Iterates over all of the DragDrop elements to find ones we are
20600          * hovering over or dropping on
20601          * @method fireEvents
20602          * @param {Event} e the event
20603          * @param {boolean} isDrop is this a drop op or a mouseover op?
20604          * @private
20605          * @static
20606          */
20607         fireEvents: function(e, isDrop) {
20608             var dc = this.dragCurrent;
20609
20610             // If the user did the mouse up outside of the window, we could
20611             // get here even though we have ended the drag.
20612             if (!dc || dc.isLocked()) {
20613                 return;
20614             }
20615
20616             var pt = e.getPoint();
20617
20618             // cache the previous dragOver array
20619             var oldOvers = [];
20620
20621             var outEvts   = [];
20622             var overEvts  = [];
20623             var dropEvts  = [];
20624             var enterEvts = [];
20625
20626             // Check to see if the object(s) we were hovering over is no longer
20627             // being hovered over so we can fire the onDragOut event
20628             for (var i in this.dragOvers) {
20629
20630                 var ddo = this.dragOvers[i];
20631
20632                 if (! this.isTypeOfDD(ddo)) {
20633                     continue;
20634                 }
20635
20636                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20637                     outEvts.push( ddo );
20638                 }
20639
20640                 oldOvers[i] = true;
20641                 delete this.dragOvers[i];
20642             }
20643
20644             for (var sGroup in dc.groups) {
20645
20646                 if ("string" != typeof sGroup) {
20647                     continue;
20648                 }
20649
20650                 for (i in this.ids[sGroup]) {
20651                     var oDD = this.ids[sGroup][i];
20652                     if (! this.isTypeOfDD(oDD)) {
20653                         continue;
20654                     }
20655
20656                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20657                         if (this.isOverTarget(pt, oDD, this.mode)) {
20658                             // look for drop interactions
20659                             if (isDrop) {
20660                                 dropEvts.push( oDD );
20661                             // look for drag enter and drag over interactions
20662                             } else {
20663
20664                                 // initial drag over: dragEnter fires
20665                                 if (!oldOvers[oDD.id]) {
20666                                     enterEvts.push( oDD );
20667                                 // subsequent drag overs: dragOver fires
20668                                 } else {
20669                                     overEvts.push( oDD );
20670                                 }
20671
20672                                 this.dragOvers[oDD.id] = oDD;
20673                             }
20674                         }
20675                     }
20676                 }
20677             }
20678
20679             if (this.mode) {
20680                 if (outEvts.length) {
20681                     dc.b4DragOut(e, outEvts);
20682                     dc.onDragOut(e, outEvts);
20683                 }
20684
20685                 if (enterEvts.length) {
20686                     dc.onDragEnter(e, enterEvts);
20687                 }
20688
20689                 if (overEvts.length) {
20690                     dc.b4DragOver(e, overEvts);
20691                     dc.onDragOver(e, overEvts);
20692                 }
20693
20694                 if (dropEvts.length) {
20695                     dc.b4DragDrop(e, dropEvts);
20696                     dc.onDragDrop(e, dropEvts);
20697                 }
20698
20699             } else {
20700                 // fire dragout events
20701                 var len = 0;
20702                 for (i=0, len=outEvts.length; i<len; ++i) {
20703                     dc.b4DragOut(e, outEvts[i].id);
20704                     dc.onDragOut(e, outEvts[i].id);
20705                 }
20706
20707                 // fire enter events
20708                 for (i=0,len=enterEvts.length; i<len; ++i) {
20709                     // dc.b4DragEnter(e, oDD.id);
20710                     dc.onDragEnter(e, enterEvts[i].id);
20711                 }
20712
20713                 // fire over events
20714                 for (i=0,len=overEvts.length; i<len; ++i) {
20715                     dc.b4DragOver(e, overEvts[i].id);
20716                     dc.onDragOver(e, overEvts[i].id);
20717                 }
20718
20719                 // fire drop events
20720                 for (i=0, len=dropEvts.length; i<len; ++i) {
20721                     dc.b4DragDrop(e, dropEvts[i].id);
20722                     dc.onDragDrop(e, dropEvts[i].id);
20723                 }
20724
20725             }
20726
20727             // notify about a drop that did not find a target
20728             if (isDrop && !dropEvts.length) {
20729                 dc.onInvalidDrop(e);
20730             }
20731
20732         },
20733
20734         /**
20735          * Helper function for getting the best match from the list of drag
20736          * and drop objects returned by the drag and drop events when we are
20737          * in INTERSECT mode.  It returns either the first object that the
20738          * cursor is over, or the object that has the greatest overlap with
20739          * the dragged element.
20740          * @method getBestMatch
20741          * @param  {DragDrop[]} dds The array of drag and drop objects
20742          * targeted
20743          * @return {DragDrop}       The best single match
20744          * @static
20745          */
20746         getBestMatch: function(dds) {
20747             var winner = null;
20748             // Return null if the input is not what we expect
20749             //if (!dds || !dds.length || dds.length == 0) {
20750                // winner = null;
20751             // If there is only one item, it wins
20752             //} else if (dds.length == 1) {
20753
20754             var len = dds.length;
20755
20756             if (len == 1) {
20757                 winner = dds[0];
20758             } else {
20759                 // Loop through the targeted items
20760                 for (var i=0; i<len; ++i) {
20761                     var dd = dds[i];
20762                     // If the cursor is over the object, it wins.  If the
20763                     // cursor is over multiple matches, the first one we come
20764                     // to wins.
20765                     if (dd.cursorIsOver) {
20766                         winner = dd;
20767                         break;
20768                     // Otherwise the object with the most overlap wins
20769                     } else {
20770                         if (!winner ||
20771                             winner.overlap.getArea() < dd.overlap.getArea()) {
20772                             winner = dd;
20773                         }
20774                     }
20775                 }
20776             }
20777
20778             return winner;
20779         },
20780
20781         /**
20782          * Refreshes the cache of the top-left and bottom-right points of the
20783          * drag and drop objects in the specified group(s).  This is in the
20784          * format that is stored in the drag and drop instance, so typical
20785          * usage is:
20786          * <code>
20787          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20788          * </code>
20789          * Alternatively:
20790          * <code>
20791          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20792          * </code>
20793          * @TODO this really should be an indexed array.  Alternatively this
20794          * method could accept both.
20795          * @method refreshCache
20796          * @param {Object} groups an associative array of groups to refresh
20797          * @static
20798          */
20799         refreshCache: function(groups) {
20800             for (var sGroup in groups) {
20801                 if ("string" != typeof sGroup) {
20802                     continue;
20803                 }
20804                 for (var i in this.ids[sGroup]) {
20805                     var oDD = this.ids[sGroup][i];
20806
20807                     if (this.isTypeOfDD(oDD)) {
20808                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20809                         var loc = this.getLocation(oDD);
20810                         if (loc) {
20811                             this.locationCache[oDD.id] = loc;
20812                         } else {
20813                             delete this.locationCache[oDD.id];
20814                             // this will unregister the drag and drop object if
20815                             // the element is not in a usable state
20816                             // oDD.unreg();
20817                         }
20818                     }
20819                 }
20820             }
20821         },
20822
20823         /**
20824          * This checks to make sure an element exists and is in the DOM.  The
20825          * main purpose is to handle cases where innerHTML is used to remove
20826          * drag and drop objects from the DOM.  IE provides an 'unspecified
20827          * error' when trying to access the offsetParent of such an element
20828          * @method verifyEl
20829          * @param {HTMLElement} el the element to check
20830          * @return {boolean} true if the element looks usable
20831          * @static
20832          */
20833         verifyEl: function(el) {
20834             if (el) {
20835                 var parent;
20836                 if(Roo.isIE){
20837                     try{
20838                         parent = el.offsetParent;
20839                     }catch(e){}
20840                 }else{
20841                     parent = el.offsetParent;
20842                 }
20843                 if (parent) {
20844                     return true;
20845                 }
20846             }
20847
20848             return false;
20849         },
20850
20851         /**
20852          * Returns a Region object containing the drag and drop element's position
20853          * and size, including the padding configured for it
20854          * @method getLocation
20855          * @param {DragDrop} oDD the drag and drop object to get the
20856          *                       location for
20857          * @return {Roo.lib.Region} a Region object representing the total area
20858          *                             the element occupies, including any padding
20859          *                             the instance is configured for.
20860          * @static
20861          */
20862         getLocation: function(oDD) {
20863             if (! this.isTypeOfDD(oDD)) {
20864                 return null;
20865             }
20866
20867             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20868
20869             try {
20870                 pos= Roo.lib.Dom.getXY(el);
20871             } catch (e) { }
20872
20873             if (!pos) {
20874                 return null;
20875             }
20876
20877             x1 = pos[0];
20878             x2 = x1 + el.offsetWidth;
20879             y1 = pos[1];
20880             y2 = y1 + el.offsetHeight;
20881
20882             t = y1 - oDD.padding[0];
20883             r = x2 + oDD.padding[1];
20884             b = y2 + oDD.padding[2];
20885             l = x1 - oDD.padding[3];
20886
20887             return new Roo.lib.Region( t, r, b, l );
20888         },
20889
20890         /**
20891          * Checks the cursor location to see if it over the target
20892          * @method isOverTarget
20893          * @param {Roo.lib.Point} pt The point to evaluate
20894          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20895          * @return {boolean} true if the mouse is over the target
20896          * @private
20897          * @static
20898          */
20899         isOverTarget: function(pt, oTarget, intersect) {
20900             // use cache if available
20901             var loc = this.locationCache[oTarget.id];
20902             if (!loc || !this.useCache) {
20903                 loc = this.getLocation(oTarget);
20904                 this.locationCache[oTarget.id] = loc;
20905
20906             }
20907
20908             if (!loc) {
20909                 return false;
20910             }
20911
20912             oTarget.cursorIsOver = loc.contains( pt );
20913
20914             // DragDrop is using this as a sanity check for the initial mousedown
20915             // in this case we are done.  In POINT mode, if the drag obj has no
20916             // contraints, we are also done. Otherwise we need to evaluate the
20917             // location of the target as related to the actual location of the
20918             // dragged element.
20919             var dc = this.dragCurrent;
20920             if (!dc || !dc.getTargetCoord ||
20921                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20922                 return oTarget.cursorIsOver;
20923             }
20924
20925             oTarget.overlap = null;
20926
20927             // Get the current location of the drag element, this is the
20928             // location of the mouse event less the delta that represents
20929             // where the original mousedown happened on the element.  We
20930             // need to consider constraints and ticks as well.
20931             var pos = dc.getTargetCoord(pt.x, pt.y);
20932
20933             var el = dc.getDragEl();
20934             var curRegion = new Roo.lib.Region( pos.y,
20935                                                    pos.x + el.offsetWidth,
20936                                                    pos.y + el.offsetHeight,
20937                                                    pos.x );
20938
20939             var overlap = curRegion.intersect(loc);
20940
20941             if (overlap) {
20942                 oTarget.overlap = overlap;
20943                 return (intersect) ? true : oTarget.cursorIsOver;
20944             } else {
20945                 return false;
20946             }
20947         },
20948
20949         /**
20950          * unload event handler
20951          * @method _onUnload
20952          * @private
20953          * @static
20954          */
20955         _onUnload: function(e, me) {
20956             Roo.dd.DragDropMgr.unregAll();
20957         },
20958
20959         /**
20960          * Cleans up the drag and drop events and objects.
20961          * @method unregAll
20962          * @private
20963          * @static
20964          */
20965         unregAll: function() {
20966
20967             if (this.dragCurrent) {
20968                 this.stopDrag();
20969                 this.dragCurrent = null;
20970             }
20971
20972             this._execOnAll("unreg", []);
20973
20974             for (i in this.elementCache) {
20975                 delete this.elementCache[i];
20976             }
20977
20978             this.elementCache = {};
20979             this.ids = {};
20980         },
20981
20982         /**
20983          * A cache of DOM elements
20984          * @property elementCache
20985          * @private
20986          * @static
20987          */
20988         elementCache: {},
20989
20990         /**
20991          * Get the wrapper for the DOM element specified
20992          * @method getElWrapper
20993          * @param {String} id the id of the element to get
20994          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20995          * @private
20996          * @deprecated This wrapper isn't that useful
20997          * @static
20998          */
20999         getElWrapper: function(id) {
21000             var oWrapper = this.elementCache[id];
21001             if (!oWrapper || !oWrapper.el) {
21002                 oWrapper = this.elementCache[id] =
21003                     new this.ElementWrapper(Roo.getDom(id));
21004             }
21005             return oWrapper;
21006         },
21007
21008         /**
21009          * Returns the actual DOM element
21010          * @method getElement
21011          * @param {String} id the id of the elment to get
21012          * @return {Object} The element
21013          * @deprecated use Roo.getDom instead
21014          * @static
21015          */
21016         getElement: function(id) {
21017             return Roo.getDom(id);
21018         },
21019
21020         /**
21021          * Returns the style property for the DOM element (i.e.,
21022          * document.getElById(id).style)
21023          * @method getCss
21024          * @param {String} id the id of the elment to get
21025          * @return {Object} The style property of the element
21026          * @deprecated use Roo.getDom instead
21027          * @static
21028          */
21029         getCss: function(id) {
21030             var el = Roo.getDom(id);
21031             return (el) ? el.style : null;
21032         },
21033
21034         /**
21035          * Inner class for cached elements
21036          * @class DragDropMgr.ElementWrapper
21037          * @for DragDropMgr
21038          * @private
21039          * @deprecated
21040          */
21041         ElementWrapper: function(el) {
21042                 /**
21043                  * The element
21044                  * @property el
21045                  */
21046                 this.el = el || null;
21047                 /**
21048                  * The element id
21049                  * @property id
21050                  */
21051                 this.id = this.el && el.id;
21052                 /**
21053                  * A reference to the style property
21054                  * @property css
21055                  */
21056                 this.css = this.el && el.style;
21057             },
21058
21059         /**
21060          * Returns the X position of an html element
21061          * @method getPosX
21062          * @param el the element for which to get the position
21063          * @return {int} the X coordinate
21064          * @for DragDropMgr
21065          * @deprecated use Roo.lib.Dom.getX instead
21066          * @static
21067          */
21068         getPosX: function(el) {
21069             return Roo.lib.Dom.getX(el);
21070         },
21071
21072         /**
21073          * Returns the Y position of an html element
21074          * @method getPosY
21075          * @param el the element for which to get the position
21076          * @return {int} the Y coordinate
21077          * @deprecated use Roo.lib.Dom.getY instead
21078          * @static
21079          */
21080         getPosY: function(el) {
21081             return Roo.lib.Dom.getY(el);
21082         },
21083
21084         /**
21085          * Swap two nodes.  In IE, we use the native method, for others we
21086          * emulate the IE behavior
21087          * @method swapNode
21088          * @param n1 the first node to swap
21089          * @param n2 the other node to swap
21090          * @static
21091          */
21092         swapNode: function(n1, n2) {
21093             if (n1.swapNode) {
21094                 n1.swapNode(n2);
21095             } else {
21096                 var p = n2.parentNode;
21097                 var s = n2.nextSibling;
21098
21099                 if (s == n1) {
21100                     p.insertBefore(n1, n2);
21101                 } else if (n2 == n1.nextSibling) {
21102                     p.insertBefore(n2, n1);
21103                 } else {
21104                     n1.parentNode.replaceChild(n2, n1);
21105                     p.insertBefore(n1, s);
21106                 }
21107             }
21108         },
21109
21110         /**
21111          * Returns the current scroll position
21112          * @method getScroll
21113          * @private
21114          * @static
21115          */
21116         getScroll: function () {
21117             var t, l, dde=document.documentElement, db=document.body;
21118             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21119                 t = dde.scrollTop;
21120                 l = dde.scrollLeft;
21121             } else if (db) {
21122                 t = db.scrollTop;
21123                 l = db.scrollLeft;
21124             } else {
21125
21126             }
21127             return { top: t, left: l };
21128         },
21129
21130         /**
21131          * Returns the specified element style property
21132          * @method getStyle
21133          * @param {HTMLElement} el          the element
21134          * @param {string}      styleProp   the style property
21135          * @return {string} The value of the style property
21136          * @deprecated use Roo.lib.Dom.getStyle
21137          * @static
21138          */
21139         getStyle: function(el, styleProp) {
21140             return Roo.fly(el).getStyle(styleProp);
21141         },
21142
21143         /**
21144          * Gets the scrollTop
21145          * @method getScrollTop
21146          * @return {int} the document's scrollTop
21147          * @static
21148          */
21149         getScrollTop: function () { return this.getScroll().top; },
21150
21151         /**
21152          * Gets the scrollLeft
21153          * @method getScrollLeft
21154          * @return {int} the document's scrollTop
21155          * @static
21156          */
21157         getScrollLeft: function () { return this.getScroll().left; },
21158
21159         /**
21160          * Sets the x/y position of an element to the location of the
21161          * target element.
21162          * @method moveToEl
21163          * @param {HTMLElement} moveEl      The element to move
21164          * @param {HTMLElement} targetEl    The position reference element
21165          * @static
21166          */
21167         moveToEl: function (moveEl, targetEl) {
21168             var aCoord = Roo.lib.Dom.getXY(targetEl);
21169             Roo.lib.Dom.setXY(moveEl, aCoord);
21170         },
21171
21172         /**
21173          * Numeric array sort function
21174          * @method numericSort
21175          * @static
21176          */
21177         numericSort: function(a, b) { return (a - b); },
21178
21179         /**
21180          * Internal counter
21181          * @property _timeoutCount
21182          * @private
21183          * @static
21184          */
21185         _timeoutCount: 0,
21186
21187         /**
21188          * Trying to make the load order less important.  Without this we get
21189          * an error if this file is loaded before the Event Utility.
21190          * @method _addListeners
21191          * @private
21192          * @static
21193          */
21194         _addListeners: function() {
21195             var DDM = Roo.dd.DDM;
21196             if ( Roo.lib.Event && document ) {
21197                 DDM._onLoad();
21198             } else {
21199                 if (DDM._timeoutCount > 2000) {
21200                 } else {
21201                     setTimeout(DDM._addListeners, 10);
21202                     if (document && document.body) {
21203                         DDM._timeoutCount += 1;
21204                     }
21205                 }
21206             }
21207         },
21208
21209         /**
21210          * Recursively searches the immediate parent and all child nodes for
21211          * the handle element in order to determine wheter or not it was
21212          * clicked.
21213          * @method handleWasClicked
21214          * @param node the html element to inspect
21215          * @static
21216          */
21217         handleWasClicked: function(node, id) {
21218             if (this.isHandle(id, node.id)) {
21219                 return true;
21220             } else {
21221                 // check to see if this is a text node child of the one we want
21222                 var p = node.parentNode;
21223
21224                 while (p) {
21225                     if (this.isHandle(id, p.id)) {
21226                         return true;
21227                     } else {
21228                         p = p.parentNode;
21229                     }
21230                 }
21231             }
21232
21233             return false;
21234         }
21235
21236     };
21237
21238 }();
21239
21240 // shorter alias, save a few bytes
21241 Roo.dd.DDM = Roo.dd.DragDropMgr;
21242 Roo.dd.DDM._addListeners();
21243
21244 }/*
21245  * Based on:
21246  * Ext JS Library 1.1.1
21247  * Copyright(c) 2006-2007, Ext JS, LLC.
21248  *
21249  * Originally Released Under LGPL - original licence link has changed is not relivant.
21250  *
21251  * Fork - LGPL
21252  * <script type="text/javascript">
21253  */
21254
21255 /**
21256  * @class Roo.dd.DD
21257  * A DragDrop implementation where the linked element follows the
21258  * mouse cursor during a drag.
21259  * @extends Roo.dd.DragDrop
21260  * @constructor
21261  * @param {String} id the id of the linked element
21262  * @param {String} sGroup the group of related DragDrop items
21263  * @param {object} config an object containing configurable attributes
21264  *                Valid properties for DD:
21265  *                    scroll
21266  */
21267 Roo.dd.DD = function(id, sGroup, config) {
21268     if (id) {
21269         this.init(id, sGroup, config);
21270     }
21271 };
21272
21273 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21274
21275     /**
21276      * When set to true, the utility automatically tries to scroll the browser
21277      * window wehn a drag and drop element is dragged near the viewport boundary.
21278      * Defaults to true.
21279      * @property scroll
21280      * @type boolean
21281      */
21282     scroll: true,
21283
21284     /**
21285      * Sets the pointer offset to the distance between the linked element's top
21286      * left corner and the location the element was clicked
21287      * @method autoOffset
21288      * @param {int} iPageX the X coordinate of the click
21289      * @param {int} iPageY the Y coordinate of the click
21290      */
21291     autoOffset: function(iPageX, iPageY) {
21292         var x = iPageX - this.startPageX;
21293         var y = iPageY - this.startPageY;
21294         this.setDelta(x, y);
21295     },
21296
21297     /**
21298      * Sets the pointer offset.  You can call this directly to force the
21299      * offset to be in a particular location (e.g., pass in 0,0 to set it
21300      * to the center of the object)
21301      * @method setDelta
21302      * @param {int} iDeltaX the distance from the left
21303      * @param {int} iDeltaY the distance from the top
21304      */
21305     setDelta: function(iDeltaX, iDeltaY) {
21306         this.deltaX = iDeltaX;
21307         this.deltaY = iDeltaY;
21308     },
21309
21310     /**
21311      * Sets the drag element to the location of the mousedown or click event,
21312      * maintaining the cursor location relative to the location on the element
21313      * that was clicked.  Override this if you want to place the element in a
21314      * location other than where the cursor is.
21315      * @method setDragElPos
21316      * @param {int} iPageX the X coordinate of the mousedown or drag event
21317      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21318      */
21319     setDragElPos: function(iPageX, iPageY) {
21320         // the first time we do this, we are going to check to make sure
21321         // the element has css positioning
21322
21323         var el = this.getDragEl();
21324         this.alignElWithMouse(el, iPageX, iPageY);
21325     },
21326
21327     /**
21328      * Sets the element to the location of the mousedown or click event,
21329      * maintaining the cursor location relative to the location on the element
21330      * that was clicked.  Override this if you want to place the element in a
21331      * location other than where the cursor is.
21332      * @method alignElWithMouse
21333      * @param {HTMLElement} el the element to move
21334      * @param {int} iPageX the X coordinate of the mousedown or drag event
21335      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21336      */
21337     alignElWithMouse: function(el, iPageX, iPageY) {
21338         var oCoord = this.getTargetCoord(iPageX, iPageY);
21339         var fly = el.dom ? el : Roo.fly(el);
21340         if (!this.deltaSetXY) {
21341             var aCoord = [oCoord.x, oCoord.y];
21342             fly.setXY(aCoord);
21343             var newLeft = fly.getLeft(true);
21344             var newTop  = fly.getTop(true);
21345             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21346         } else {
21347             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21348         }
21349
21350         this.cachePosition(oCoord.x, oCoord.y);
21351         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21352         return oCoord;
21353     },
21354
21355     /**
21356      * Saves the most recent position so that we can reset the constraints and
21357      * tick marks on-demand.  We need to know this so that we can calculate the
21358      * number of pixels the element is offset from its original position.
21359      * @method cachePosition
21360      * @param iPageX the current x position (optional, this just makes it so we
21361      * don't have to look it up again)
21362      * @param iPageY the current y position (optional, this just makes it so we
21363      * don't have to look it up again)
21364      */
21365     cachePosition: function(iPageX, iPageY) {
21366         if (iPageX) {
21367             this.lastPageX = iPageX;
21368             this.lastPageY = iPageY;
21369         } else {
21370             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21371             this.lastPageX = aCoord[0];
21372             this.lastPageY = aCoord[1];
21373         }
21374     },
21375
21376     /**
21377      * Auto-scroll the window if the dragged object has been moved beyond the
21378      * visible window boundary.
21379      * @method autoScroll
21380      * @param {int} x the drag element's x position
21381      * @param {int} y the drag element's y position
21382      * @param {int} h the height of the drag element
21383      * @param {int} w the width of the drag element
21384      * @private
21385      */
21386     autoScroll: function(x, y, h, w) {
21387
21388         if (this.scroll) {
21389             // The client height
21390             var clientH = Roo.lib.Dom.getViewWidth();
21391
21392             // The client width
21393             var clientW = Roo.lib.Dom.getViewHeight();
21394
21395             // The amt scrolled down
21396             var st = this.DDM.getScrollTop();
21397
21398             // The amt scrolled right
21399             var sl = this.DDM.getScrollLeft();
21400
21401             // Location of the bottom of the element
21402             var bot = h + y;
21403
21404             // Location of the right of the element
21405             var right = w + x;
21406
21407             // The distance from the cursor to the bottom of the visible area,
21408             // adjusted so that we don't scroll if the cursor is beyond the
21409             // element drag constraints
21410             var toBot = (clientH + st - y - this.deltaY);
21411
21412             // The distance from the cursor to the right of the visible area
21413             var toRight = (clientW + sl - x - this.deltaX);
21414
21415
21416             // How close to the edge the cursor must be before we scroll
21417             // var thresh = (document.all) ? 100 : 40;
21418             var thresh = 40;
21419
21420             // How many pixels to scroll per autoscroll op.  This helps to reduce
21421             // clunky scrolling. IE is more sensitive about this ... it needs this
21422             // value to be higher.
21423             var scrAmt = (document.all) ? 80 : 30;
21424
21425             // Scroll down if we are near the bottom of the visible page and the
21426             // obj extends below the crease
21427             if ( bot > clientH && toBot < thresh ) {
21428                 window.scrollTo(sl, st + scrAmt);
21429             }
21430
21431             // Scroll up if the window is scrolled down and the top of the object
21432             // goes above the top border
21433             if ( y < st && st > 0 && y - st < thresh ) {
21434                 window.scrollTo(sl, st - scrAmt);
21435             }
21436
21437             // Scroll right if the obj is beyond the right border and the cursor is
21438             // near the border.
21439             if ( right > clientW && toRight < thresh ) {
21440                 window.scrollTo(sl + scrAmt, st);
21441             }
21442
21443             // Scroll left if the window has been scrolled to the right and the obj
21444             // extends past the left border
21445             if ( x < sl && sl > 0 && x - sl < thresh ) {
21446                 window.scrollTo(sl - scrAmt, st);
21447             }
21448         }
21449     },
21450
21451     /**
21452      * Finds the location the element should be placed if we want to move
21453      * it to where the mouse location less the click offset would place us.
21454      * @method getTargetCoord
21455      * @param {int} iPageX the X coordinate of the click
21456      * @param {int} iPageY the Y coordinate of the click
21457      * @return an object that contains the coordinates (Object.x and Object.y)
21458      * @private
21459      */
21460     getTargetCoord: function(iPageX, iPageY) {
21461
21462
21463         var x = iPageX - this.deltaX;
21464         var y = iPageY - this.deltaY;
21465
21466         if (this.constrainX) {
21467             if (x < this.minX) { x = this.minX; }
21468             if (x > this.maxX) { x = this.maxX; }
21469         }
21470
21471         if (this.constrainY) {
21472             if (y < this.minY) { y = this.minY; }
21473             if (y > this.maxY) { y = this.maxY; }
21474         }
21475
21476         x = this.getTick(x, this.xTicks);
21477         y = this.getTick(y, this.yTicks);
21478
21479
21480         return {x:x, y:y};
21481     },
21482
21483     /*
21484      * Sets up config options specific to this class. Overrides
21485      * Roo.dd.DragDrop, but all versions of this method through the
21486      * inheritance chain are called
21487      */
21488     applyConfig: function() {
21489         Roo.dd.DD.superclass.applyConfig.call(this);
21490         this.scroll = (this.config.scroll !== false);
21491     },
21492
21493     /*
21494      * Event that fires prior to the onMouseDown event.  Overrides
21495      * Roo.dd.DragDrop.
21496      */
21497     b4MouseDown: function(e) {
21498         // this.resetConstraints();
21499         this.autoOffset(e.getPageX(),
21500                             e.getPageY());
21501     },
21502
21503     /*
21504      * Event that fires prior to the onDrag event.  Overrides
21505      * Roo.dd.DragDrop.
21506      */
21507     b4Drag: function(e) {
21508         this.setDragElPos(e.getPageX(),
21509                             e.getPageY());
21510     },
21511
21512     toString: function() {
21513         return ("DD " + this.id);
21514     }
21515
21516     //////////////////////////////////////////////////////////////////////////
21517     // Debugging ygDragDrop events that can be overridden
21518     //////////////////////////////////////////////////////////////////////////
21519     /*
21520     startDrag: function(x, y) {
21521     },
21522
21523     onDrag: function(e) {
21524     },
21525
21526     onDragEnter: function(e, id) {
21527     },
21528
21529     onDragOver: function(e, id) {
21530     },
21531
21532     onDragOut: function(e, id) {
21533     },
21534
21535     onDragDrop: function(e, id) {
21536     },
21537
21538     endDrag: function(e) {
21539     }
21540
21541     */
21542
21543 });/*
21544  * Based on:
21545  * Ext JS Library 1.1.1
21546  * Copyright(c) 2006-2007, Ext JS, LLC.
21547  *
21548  * Originally Released Under LGPL - original licence link has changed is not relivant.
21549  *
21550  * Fork - LGPL
21551  * <script type="text/javascript">
21552  */
21553
21554 /**
21555  * @class Roo.dd.DDProxy
21556  * A DragDrop implementation that inserts an empty, bordered div into
21557  * the document that follows the cursor during drag operations.  At the time of
21558  * the click, the frame div is resized to the dimensions of the linked html
21559  * element, and moved to the exact location of the linked element.
21560  *
21561  * References to the "frame" element refer to the single proxy element that
21562  * was created to be dragged in place of all DDProxy elements on the
21563  * page.
21564  *
21565  * @extends Roo.dd.DD
21566  * @constructor
21567  * @param {String} id the id of the linked html element
21568  * @param {String} sGroup the group of related DragDrop objects
21569  * @param {object} config an object containing configurable attributes
21570  *                Valid properties for DDProxy in addition to those in DragDrop:
21571  *                   resizeFrame, centerFrame, dragElId
21572  */
21573 Roo.dd.DDProxy = function(id, sGroup, config) {
21574     if (id) {
21575         this.init(id, sGroup, config);
21576         this.initFrame();
21577     }
21578 };
21579
21580 /**
21581  * The default drag frame div id
21582  * @property Roo.dd.DDProxy.dragElId
21583  * @type String
21584  * @static
21585  */
21586 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21587
21588 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21589
21590     /**
21591      * By default we resize the drag frame to be the same size as the element
21592      * we want to drag (this is to get the frame effect).  We can turn it off
21593      * if we want a different behavior.
21594      * @property resizeFrame
21595      * @type boolean
21596      */
21597     resizeFrame: true,
21598
21599     /**
21600      * By default the frame is positioned exactly where the drag element is, so
21601      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21602      * you do not have constraints on the obj is to have the drag frame centered
21603      * around the cursor.  Set centerFrame to true for this effect.
21604      * @property centerFrame
21605      * @type boolean
21606      */
21607     centerFrame: false,
21608
21609     /**
21610      * Creates the proxy element if it does not yet exist
21611      * @method createFrame
21612      */
21613     createFrame: function() {
21614         var self = this;
21615         var body = document.body;
21616
21617         if (!body || !body.firstChild) {
21618             setTimeout( function() { self.createFrame(); }, 50 );
21619             return;
21620         }
21621
21622         var div = this.getDragEl();
21623
21624         if (!div) {
21625             div    = document.createElement("div");
21626             div.id = this.dragElId;
21627             var s  = div.style;
21628
21629             s.position   = "absolute";
21630             s.visibility = "hidden";
21631             s.cursor     = "move";
21632             s.border     = "2px solid #aaa";
21633             s.zIndex     = 999;
21634
21635             // appendChild can blow up IE if invoked prior to the window load event
21636             // while rendering a table.  It is possible there are other scenarios
21637             // that would cause this to happen as well.
21638             body.insertBefore(div, body.firstChild);
21639         }
21640     },
21641
21642     /**
21643      * Initialization for the drag frame element.  Must be called in the
21644      * constructor of all subclasses
21645      * @method initFrame
21646      */
21647     initFrame: function() {
21648         this.createFrame();
21649     },
21650
21651     applyConfig: function() {
21652         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21653
21654         this.resizeFrame = (this.config.resizeFrame !== false);
21655         this.centerFrame = (this.config.centerFrame);
21656         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21657     },
21658
21659     /**
21660      * Resizes the drag frame to the dimensions of the clicked object, positions
21661      * it over the object, and finally displays it
21662      * @method showFrame
21663      * @param {int} iPageX X click position
21664      * @param {int} iPageY Y click position
21665      * @private
21666      */
21667     showFrame: function(iPageX, iPageY) {
21668         var el = this.getEl();
21669         var dragEl = this.getDragEl();
21670         var s = dragEl.style;
21671
21672         this._resizeProxy();
21673
21674         if (this.centerFrame) {
21675             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21676                            Math.round(parseInt(s.height, 10)/2) );
21677         }
21678
21679         this.setDragElPos(iPageX, iPageY);
21680
21681         Roo.fly(dragEl).show();
21682     },
21683
21684     /**
21685      * The proxy is automatically resized to the dimensions of the linked
21686      * element when a drag is initiated, unless resizeFrame is set to false
21687      * @method _resizeProxy
21688      * @private
21689      */
21690     _resizeProxy: function() {
21691         if (this.resizeFrame) {
21692             var el = this.getEl();
21693             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21694         }
21695     },
21696
21697     // overrides Roo.dd.DragDrop
21698     b4MouseDown: function(e) {
21699         var x = e.getPageX();
21700         var y = e.getPageY();
21701         this.autoOffset(x, y);
21702         this.setDragElPos(x, y);
21703     },
21704
21705     // overrides Roo.dd.DragDrop
21706     b4StartDrag: function(x, y) {
21707         // show the drag frame
21708         this.showFrame(x, y);
21709     },
21710
21711     // overrides Roo.dd.DragDrop
21712     b4EndDrag: function(e) {
21713         Roo.fly(this.getDragEl()).hide();
21714     },
21715
21716     // overrides Roo.dd.DragDrop
21717     // By default we try to move the element to the last location of the frame.
21718     // This is so that the default behavior mirrors that of Roo.dd.DD.
21719     endDrag: function(e) {
21720
21721         var lel = this.getEl();
21722         var del = this.getDragEl();
21723
21724         // Show the drag frame briefly so we can get its position
21725         del.style.visibility = "";
21726
21727         this.beforeMove();
21728         // Hide the linked element before the move to get around a Safari
21729         // rendering bug.
21730         lel.style.visibility = "hidden";
21731         Roo.dd.DDM.moveToEl(lel, del);
21732         del.style.visibility = "hidden";
21733         lel.style.visibility = "";
21734
21735         this.afterDrag();
21736     },
21737
21738     beforeMove : function(){
21739
21740     },
21741
21742     afterDrag : function(){
21743
21744     },
21745
21746     toString: function() {
21747         return ("DDProxy " + this.id);
21748     }
21749
21750 });
21751 /*
21752  * Based on:
21753  * Ext JS Library 1.1.1
21754  * Copyright(c) 2006-2007, Ext JS, LLC.
21755  *
21756  * Originally Released Under LGPL - original licence link has changed is not relivant.
21757  *
21758  * Fork - LGPL
21759  * <script type="text/javascript">
21760  */
21761
21762  /**
21763  * @class Roo.dd.DDTarget
21764  * A DragDrop implementation that does not move, but can be a drop
21765  * target.  You would get the same result by simply omitting implementation
21766  * for the event callbacks, but this way we reduce the processing cost of the
21767  * event listener and the callbacks.
21768  * @extends Roo.dd.DragDrop
21769  * @constructor
21770  * @param {String} id the id of the element that is a drop target
21771  * @param {String} sGroup the group of related DragDrop objects
21772  * @param {object} config an object containing configurable attributes
21773  *                 Valid properties for DDTarget in addition to those in
21774  *                 DragDrop:
21775  *                    none
21776  */
21777 Roo.dd.DDTarget = function(id, sGroup, config) {
21778     if (id) {
21779         this.initTarget(id, sGroup, config);
21780     }
21781     if (config && (config.listeners || config.events)) { 
21782         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21783             listeners : config.listeners || {}, 
21784             events : config.events || {} 
21785         });    
21786     }
21787 };
21788
21789 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21790 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21791     toString: function() {
21792         return ("DDTarget " + this.id);
21793     }
21794 });
21795 /*
21796  * Based on:
21797  * Ext JS Library 1.1.1
21798  * Copyright(c) 2006-2007, Ext JS, LLC.
21799  *
21800  * Originally Released Under LGPL - original licence link has changed is not relivant.
21801  *
21802  * Fork - LGPL
21803  * <script type="text/javascript">
21804  */
21805  
21806
21807 /**
21808  * @class Roo.dd.ScrollManager
21809  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21810  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21811  * @singleton
21812  */
21813 Roo.dd.ScrollManager = function(){
21814     var ddm = Roo.dd.DragDropMgr;
21815     var els = {};
21816     var dragEl = null;
21817     var proc = {};
21818     
21819     
21820     
21821     var onStop = function(e){
21822         dragEl = null;
21823         clearProc();
21824     };
21825     
21826     var triggerRefresh = function(){
21827         if(ddm.dragCurrent){
21828              ddm.refreshCache(ddm.dragCurrent.groups);
21829         }
21830     };
21831     
21832     var doScroll = function(){
21833         if(ddm.dragCurrent){
21834             var dds = Roo.dd.ScrollManager;
21835             if(!dds.animate){
21836                 if(proc.el.scroll(proc.dir, dds.increment)){
21837                     triggerRefresh();
21838                 }
21839             }else{
21840                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21841             }
21842         }
21843     };
21844     
21845     var clearProc = function(){
21846         if(proc.id){
21847             clearInterval(proc.id);
21848         }
21849         proc.id = 0;
21850         proc.el = null;
21851         proc.dir = "";
21852     };
21853     
21854     var startProc = function(el, dir){
21855          Roo.log('scroll startproc');
21856         clearProc();
21857         proc.el = el;
21858         proc.dir = dir;
21859         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21860     };
21861     
21862     var onFire = function(e, isDrop){
21863        
21864         if(isDrop || !ddm.dragCurrent){ return; }
21865         var dds = Roo.dd.ScrollManager;
21866         if(!dragEl || dragEl != ddm.dragCurrent){
21867             dragEl = ddm.dragCurrent;
21868             // refresh regions on drag start
21869             dds.refreshCache();
21870         }
21871         
21872         var xy = Roo.lib.Event.getXY(e);
21873         var pt = new Roo.lib.Point(xy[0], xy[1]);
21874         for(var id in els){
21875             var el = els[id], r = el._region;
21876             if(r && r.contains(pt) && el.isScrollable()){
21877                 if(r.bottom - pt.y <= dds.thresh){
21878                     if(proc.el != el){
21879                         startProc(el, "down");
21880                     }
21881                     return;
21882                 }else if(r.right - pt.x <= dds.thresh){
21883                     if(proc.el != el){
21884                         startProc(el, "left");
21885                     }
21886                     return;
21887                 }else if(pt.y - r.top <= dds.thresh){
21888                     if(proc.el != el){
21889                         startProc(el, "up");
21890                     }
21891                     return;
21892                 }else if(pt.x - r.left <= dds.thresh){
21893                     if(proc.el != el){
21894                         startProc(el, "right");
21895                     }
21896                     return;
21897                 }
21898             }
21899         }
21900         clearProc();
21901     };
21902     
21903     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21904     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21905     
21906     return {
21907         /**
21908          * Registers new overflow element(s) to auto scroll
21909          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21910          */
21911         register : function(el){
21912             if(el instanceof Array){
21913                 for(var i = 0, len = el.length; i < len; i++) {
21914                         this.register(el[i]);
21915                 }
21916             }else{
21917                 el = Roo.get(el);
21918                 els[el.id] = el;
21919             }
21920             Roo.dd.ScrollManager.els = els;
21921         },
21922         
21923         /**
21924          * Unregisters overflow element(s) so they are no longer scrolled
21925          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21926          */
21927         unregister : function(el){
21928             if(el instanceof Array){
21929                 for(var i = 0, len = el.length; i < len; i++) {
21930                         this.unregister(el[i]);
21931                 }
21932             }else{
21933                 el = Roo.get(el);
21934                 delete els[el.id];
21935             }
21936         },
21937         
21938         /**
21939          * The number of pixels from the edge of a container the pointer needs to be to 
21940          * trigger scrolling (defaults to 25)
21941          * @type Number
21942          */
21943         thresh : 25,
21944         
21945         /**
21946          * The number of pixels to scroll in each scroll increment (defaults to 50)
21947          * @type Number
21948          */
21949         increment : 100,
21950         
21951         /**
21952          * The frequency of scrolls in milliseconds (defaults to 500)
21953          * @type Number
21954          */
21955         frequency : 500,
21956         
21957         /**
21958          * True to animate the scroll (defaults to true)
21959          * @type Boolean
21960          */
21961         animate: true,
21962         
21963         /**
21964          * The animation duration in seconds - 
21965          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21966          * @type Number
21967          */
21968         animDuration: .4,
21969         
21970         /**
21971          * Manually trigger a cache refresh.
21972          */
21973         refreshCache : function(){
21974             for(var id in els){
21975                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21976                     els[id]._region = els[id].getRegion();
21977                 }
21978             }
21979         }
21980     };
21981 }();/*
21982  * Based on:
21983  * Ext JS Library 1.1.1
21984  * Copyright(c) 2006-2007, Ext JS, LLC.
21985  *
21986  * Originally Released Under LGPL - original licence link has changed is not relivant.
21987  *
21988  * Fork - LGPL
21989  * <script type="text/javascript">
21990  */
21991  
21992
21993 /**
21994  * @class Roo.dd.Registry
21995  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21996  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21997  * @singleton
21998  */
21999 Roo.dd.Registry = function(){
22000     var elements = {}; 
22001     var handles = {}; 
22002     var autoIdSeed = 0;
22003
22004     var getId = function(el, autogen){
22005         if(typeof el == "string"){
22006             return el;
22007         }
22008         var id = el.id;
22009         if(!id && autogen !== false){
22010             id = "roodd-" + (++autoIdSeed);
22011             el.id = id;
22012         }
22013         return id;
22014     };
22015     
22016     return {
22017     /**
22018      * Register a drag drop element
22019      * @param {String|HTMLElement} element The id or DOM node to register
22020      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
22021      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
22022      * knows how to interpret, plus there are some specific properties known to the Registry that should be
22023      * populated in the data object (if applicable):
22024      * <pre>
22025 Value      Description<br />
22026 ---------  ------------------------------------------<br />
22027 handles    Array of DOM nodes that trigger dragging<br />
22028            for the element being registered<br />
22029 isHandle   True if the element passed in triggers<br />
22030            dragging itself, else false
22031 </pre>
22032      */
22033         register : function(el, data){
22034             data = data || {};
22035             if(typeof el == "string"){
22036                 el = document.getElementById(el);
22037             }
22038             data.ddel = el;
22039             elements[getId(el)] = data;
22040             if(data.isHandle !== false){
22041                 handles[data.ddel.id] = data;
22042             }
22043             if(data.handles){
22044                 var hs = data.handles;
22045                 for(var i = 0, len = hs.length; i < len; i++){
22046                         handles[getId(hs[i])] = data;
22047                 }
22048             }
22049         },
22050
22051     /**
22052      * Unregister a drag drop element
22053      * @param {String|HTMLElement}  element The id or DOM node to unregister
22054      */
22055         unregister : function(el){
22056             var id = getId(el, false);
22057             var data = elements[id];
22058             if(data){
22059                 delete elements[id];
22060                 if(data.handles){
22061                     var hs = data.handles;
22062                     for(var i = 0, len = hs.length; i < len; i++){
22063                         delete handles[getId(hs[i], false)];
22064                     }
22065                 }
22066             }
22067         },
22068
22069     /**
22070      * Returns the handle registered for a DOM Node by id
22071      * @param {String|HTMLElement} id The DOM node or id to look up
22072      * @return {Object} handle The custom handle data
22073      */
22074         getHandle : function(id){
22075             if(typeof id != "string"){ // must be element?
22076                 id = id.id;
22077             }
22078             return handles[id];
22079         },
22080
22081     /**
22082      * Returns the handle that is registered for the DOM node that is the target of the event
22083      * @param {Event} e The event
22084      * @return {Object} handle The custom handle data
22085      */
22086         getHandleFromEvent : function(e){
22087             var t = Roo.lib.Event.getTarget(e);
22088             return t ? handles[t.id] : null;
22089         },
22090
22091     /**
22092      * Returns a custom data object that is registered for a DOM node by id
22093      * @param {String|HTMLElement} id The DOM node or id to look up
22094      * @return {Object} data The custom data
22095      */
22096         getTarget : function(id){
22097             if(typeof id != "string"){ // must be element?
22098                 id = id.id;
22099             }
22100             return elements[id];
22101         },
22102
22103     /**
22104      * Returns a custom data object that is registered for the DOM node that is the target of the event
22105      * @param {Event} e The event
22106      * @return {Object} data The custom data
22107      */
22108         getTargetFromEvent : function(e){
22109             var t = Roo.lib.Event.getTarget(e);
22110             return t ? elements[t.id] || handles[t.id] : null;
22111         }
22112     };
22113 }();/*
22114  * Based on:
22115  * Ext JS Library 1.1.1
22116  * Copyright(c) 2006-2007, Ext JS, LLC.
22117  *
22118  * Originally Released Under LGPL - original licence link has changed is not relivant.
22119  *
22120  * Fork - LGPL
22121  * <script type="text/javascript">
22122  */
22123  
22124
22125 /**
22126  * @class Roo.dd.StatusProxy
22127  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22128  * default drag proxy used by all Roo.dd components.
22129  * @constructor
22130  * @param {Object} config
22131  */
22132 Roo.dd.StatusProxy = function(config){
22133     Roo.apply(this, config);
22134     this.id = this.id || Roo.id();
22135     this.el = new Roo.Layer({
22136         dh: {
22137             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22138                 {tag: "div", cls: "x-dd-drop-icon"},
22139                 {tag: "div", cls: "x-dd-drag-ghost"}
22140             ]
22141         }, 
22142         shadow: !config || config.shadow !== false
22143     });
22144     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22145     this.dropStatus = this.dropNotAllowed;
22146 };
22147
22148 Roo.dd.StatusProxy.prototype = {
22149     /**
22150      * @cfg {String} dropAllowed
22151      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22152      */
22153     dropAllowed : "x-dd-drop-ok",
22154     /**
22155      * @cfg {String} dropNotAllowed
22156      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22157      */
22158     dropNotAllowed : "x-dd-drop-nodrop",
22159
22160     /**
22161      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22162      * over the current target element.
22163      * @param {String} cssClass The css class for the new drop status indicator image
22164      */
22165     setStatus : function(cssClass){
22166         cssClass = cssClass || this.dropNotAllowed;
22167         if(this.dropStatus != cssClass){
22168             this.el.replaceClass(this.dropStatus, cssClass);
22169             this.dropStatus = cssClass;
22170         }
22171     },
22172
22173     /**
22174      * Resets the status indicator to the default dropNotAllowed value
22175      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22176      */
22177     reset : function(clearGhost){
22178         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22179         this.dropStatus = this.dropNotAllowed;
22180         if(clearGhost){
22181             this.ghost.update("");
22182         }
22183     },
22184
22185     /**
22186      * Updates the contents of the ghost element
22187      * @param {String} html The html that will replace the current innerHTML of the ghost element
22188      */
22189     update : function(html){
22190         if(typeof html == "string"){
22191             this.ghost.update(html);
22192         }else{
22193             this.ghost.update("");
22194             html.style.margin = "0";
22195             this.ghost.dom.appendChild(html);
22196         }
22197         // ensure float = none set?? cant remember why though.
22198         var el = this.ghost.dom.firstChild;
22199                 if(el){
22200                         Roo.fly(el).setStyle('float', 'none');
22201                 }
22202     },
22203     
22204     /**
22205      * Returns the underlying proxy {@link Roo.Layer}
22206      * @return {Roo.Layer} el
22207     */
22208     getEl : function(){
22209         return this.el;
22210     },
22211
22212     /**
22213      * Returns the ghost element
22214      * @return {Roo.Element} el
22215      */
22216     getGhost : function(){
22217         return this.ghost;
22218     },
22219
22220     /**
22221      * Hides the proxy
22222      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22223      */
22224     hide : function(clear){
22225         this.el.hide();
22226         if(clear){
22227             this.reset(true);
22228         }
22229     },
22230
22231     /**
22232      * Stops the repair animation if it's currently running
22233      */
22234     stop : function(){
22235         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22236             this.anim.stop();
22237         }
22238     },
22239
22240     /**
22241      * Displays this proxy
22242      */
22243     show : function(){
22244         this.el.show();
22245     },
22246
22247     /**
22248      * Force the Layer to sync its shadow and shim positions to the element
22249      */
22250     sync : function(){
22251         this.el.sync();
22252     },
22253
22254     /**
22255      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22256      * invalid drop operation by the item being dragged.
22257      * @param {Array} xy The XY position of the element ([x, y])
22258      * @param {Function} callback The function to call after the repair is complete
22259      * @param {Object} scope The scope in which to execute the callback
22260      */
22261     repair : function(xy, callback, scope){
22262         this.callback = callback;
22263         this.scope = scope;
22264         if(xy && this.animRepair !== false){
22265             this.el.addClass("x-dd-drag-repair");
22266             this.el.hideUnders(true);
22267             this.anim = this.el.shift({
22268                 duration: this.repairDuration || .5,
22269                 easing: 'easeOut',
22270                 xy: xy,
22271                 stopFx: true,
22272                 callback: this.afterRepair,
22273                 scope: this
22274             });
22275         }else{
22276             this.afterRepair();
22277         }
22278     },
22279
22280     // private
22281     afterRepair : function(){
22282         this.hide(true);
22283         if(typeof this.callback == "function"){
22284             this.callback.call(this.scope || this);
22285         }
22286         this.callback = null;
22287         this.scope = null;
22288     }
22289 };/*
22290  * Based on:
22291  * Ext JS Library 1.1.1
22292  * Copyright(c) 2006-2007, Ext JS, LLC.
22293  *
22294  * Originally Released Under LGPL - original licence link has changed is not relivant.
22295  *
22296  * Fork - LGPL
22297  * <script type="text/javascript">
22298  */
22299
22300 /**
22301  * @class Roo.dd.DragSource
22302  * @extends Roo.dd.DDProxy
22303  * A simple class that provides the basic implementation needed to make any element draggable.
22304  * @constructor
22305  * @param {String/HTMLElement/Element} el The container element
22306  * @param {Object} config
22307  */
22308 Roo.dd.DragSource = function(el, config){
22309     this.el = Roo.get(el);
22310     this.dragData = {};
22311     
22312     Roo.apply(this, config);
22313     
22314     if(!this.proxy){
22315         this.proxy = new Roo.dd.StatusProxy();
22316     }
22317
22318     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22319           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22320     
22321     this.dragging = false;
22322 };
22323
22324 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22325     /**
22326      * @cfg {String} dropAllowed
22327      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22328      */
22329     dropAllowed : "x-dd-drop-ok",
22330     /**
22331      * @cfg {String} dropNotAllowed
22332      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22333      */
22334     dropNotAllowed : "x-dd-drop-nodrop",
22335
22336     /**
22337      * Returns the data object associated with this drag source
22338      * @return {Object} data An object containing arbitrary data
22339      */
22340     getDragData : function(e){
22341         return this.dragData;
22342     },
22343
22344     // private
22345     onDragEnter : function(e, id){
22346         var target = Roo.dd.DragDropMgr.getDDById(id);
22347         this.cachedTarget = target;
22348         if(this.beforeDragEnter(target, e, id) !== false){
22349             if(target.isNotifyTarget){
22350                 var status = target.notifyEnter(this, e, this.dragData);
22351                 this.proxy.setStatus(status);
22352             }else{
22353                 this.proxy.setStatus(this.dropAllowed);
22354             }
22355             
22356             if(this.afterDragEnter){
22357                 /**
22358                  * An empty function by default, but provided so that you can perform a custom action
22359                  * when the dragged item enters the drop target by providing an implementation.
22360                  * @param {Roo.dd.DragDrop} target The drop target
22361                  * @param {Event} e The event object
22362                  * @param {String} id The id of the dragged element
22363                  * @method afterDragEnter
22364                  */
22365                 this.afterDragEnter(target, e, id);
22366             }
22367         }
22368     },
22369
22370     /**
22371      * An empty function by default, but provided so that you can perform a custom action
22372      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22373      * @param {Roo.dd.DragDrop} target The drop target
22374      * @param {Event} e The event object
22375      * @param {String} id The id of the dragged element
22376      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22377      */
22378     beforeDragEnter : function(target, e, id){
22379         return true;
22380     },
22381
22382     // private
22383     alignElWithMouse: function() {
22384         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22385         this.proxy.sync();
22386     },
22387
22388     // private
22389     onDragOver : function(e, id){
22390         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22391         if(this.beforeDragOver(target, e, id) !== false){
22392             if(target.isNotifyTarget){
22393                 var status = target.notifyOver(this, e, this.dragData);
22394                 this.proxy.setStatus(status);
22395             }
22396
22397             if(this.afterDragOver){
22398                 /**
22399                  * An empty function by default, but provided so that you can perform a custom action
22400                  * while the dragged item is over the drop target by providing an implementation.
22401                  * @param {Roo.dd.DragDrop} target The drop target
22402                  * @param {Event} e The event object
22403                  * @param {String} id The id of the dragged element
22404                  * @method afterDragOver
22405                  */
22406                 this.afterDragOver(target, e, id);
22407             }
22408         }
22409     },
22410
22411     /**
22412      * An empty function by default, but provided so that you can perform a custom action
22413      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22414      * @param {Roo.dd.DragDrop} target The drop target
22415      * @param {Event} e The event object
22416      * @param {String} id The id of the dragged element
22417      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22418      */
22419     beforeDragOver : function(target, e, id){
22420         return true;
22421     },
22422
22423     // private
22424     onDragOut : function(e, id){
22425         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22426         if(this.beforeDragOut(target, e, id) !== false){
22427             if(target.isNotifyTarget){
22428                 target.notifyOut(this, e, this.dragData);
22429             }
22430             this.proxy.reset();
22431             if(this.afterDragOut){
22432                 /**
22433                  * An empty function by default, but provided so that you can perform a custom action
22434                  * after the dragged item is dragged out of the target without dropping.
22435                  * @param {Roo.dd.DragDrop} target The drop target
22436                  * @param {Event} e The event object
22437                  * @param {String} id The id of the dragged element
22438                  * @method afterDragOut
22439                  */
22440                 this.afterDragOut(target, e, id);
22441             }
22442         }
22443         this.cachedTarget = null;
22444     },
22445
22446     /**
22447      * An empty function by default, but provided so that you can perform a custom action before the dragged
22448      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22449      * @param {Roo.dd.DragDrop} target The drop target
22450      * @param {Event} e The event object
22451      * @param {String} id The id of the dragged element
22452      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22453      */
22454     beforeDragOut : function(target, e, id){
22455         return true;
22456     },
22457     
22458     // private
22459     onDragDrop : function(e, id){
22460         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22461         if(this.beforeDragDrop(target, e, id) !== false){
22462             if(target.isNotifyTarget){
22463                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22464                     this.onValidDrop(target, e, id);
22465                 }else{
22466                     this.onInvalidDrop(target, e, id);
22467                 }
22468             }else{
22469                 this.onValidDrop(target, e, id);
22470             }
22471             
22472             if(this.afterDragDrop){
22473                 /**
22474                  * An empty function by default, but provided so that you can perform a custom action
22475                  * after a valid drag drop has occurred by providing an implementation.
22476                  * @param {Roo.dd.DragDrop} target The drop target
22477                  * @param {Event} e The event object
22478                  * @param {String} id The id of the dropped element
22479                  * @method afterDragDrop
22480                  */
22481                 this.afterDragDrop(target, e, id);
22482             }
22483         }
22484         delete this.cachedTarget;
22485     },
22486
22487     /**
22488      * An empty function by default, but provided so that you can perform a custom action before the dragged
22489      * item is dropped onto the target and optionally cancel the onDragDrop.
22490      * @param {Roo.dd.DragDrop} target The drop target
22491      * @param {Event} e The event object
22492      * @param {String} id The id of the dragged element
22493      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22494      */
22495     beforeDragDrop : function(target, e, id){
22496         return true;
22497     },
22498
22499     // private
22500     onValidDrop : function(target, e, id){
22501         this.hideProxy();
22502         if(this.afterValidDrop){
22503             /**
22504              * An empty function by default, but provided so that you can perform a custom action
22505              * after a valid drop has occurred by providing an implementation.
22506              * @param {Object} target The target DD 
22507              * @param {Event} e The event object
22508              * @param {String} id The id of the dropped element
22509              * @method afterInvalidDrop
22510              */
22511             this.afterValidDrop(target, e, id);
22512         }
22513     },
22514
22515     // private
22516     getRepairXY : function(e, data){
22517         return this.el.getXY();  
22518     },
22519
22520     // private
22521     onInvalidDrop : function(target, e, id){
22522         this.beforeInvalidDrop(target, e, id);
22523         if(this.cachedTarget){
22524             if(this.cachedTarget.isNotifyTarget){
22525                 this.cachedTarget.notifyOut(this, e, this.dragData);
22526             }
22527             this.cacheTarget = null;
22528         }
22529         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22530
22531         if(this.afterInvalidDrop){
22532             /**
22533              * An empty function by default, but provided so that you can perform a custom action
22534              * after an invalid drop has occurred by providing an implementation.
22535              * @param {Event} e The event object
22536              * @param {String} id The id of the dropped element
22537              * @method afterInvalidDrop
22538              */
22539             this.afterInvalidDrop(e, id);
22540         }
22541     },
22542
22543     // private
22544     afterRepair : function(){
22545         if(Roo.enableFx){
22546             this.el.highlight(this.hlColor || "c3daf9");
22547         }
22548         this.dragging = false;
22549     },
22550
22551     /**
22552      * An empty function by default, but provided so that you can perform a custom action after an invalid
22553      * drop has occurred.
22554      * @param {Roo.dd.DragDrop} target The drop target
22555      * @param {Event} e The event object
22556      * @param {String} id The id of the dragged element
22557      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22558      */
22559     beforeInvalidDrop : function(target, e, id){
22560         return true;
22561     },
22562
22563     // private
22564     handleMouseDown : function(e){
22565         if(this.dragging) {
22566             return;
22567         }
22568         var data = this.getDragData(e);
22569         if(data && this.onBeforeDrag(data, e) !== false){
22570             this.dragData = data;
22571             this.proxy.stop();
22572             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22573         } 
22574     },
22575
22576     /**
22577      * An empty function by default, but provided so that you can perform a custom action before the initial
22578      * drag event begins and optionally cancel it.
22579      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22580      * @param {Event} e The event object
22581      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22582      */
22583     onBeforeDrag : function(data, e){
22584         return true;
22585     },
22586
22587     /**
22588      * An empty function by default, but provided so that you can perform a custom action once the initial
22589      * drag event has begun.  The drag cannot be canceled from this function.
22590      * @param {Number} x The x position of the click on the dragged object
22591      * @param {Number} y The y position of the click on the dragged object
22592      */
22593     onStartDrag : Roo.emptyFn,
22594
22595     // private - YUI override
22596     startDrag : function(x, y){
22597         this.proxy.reset();
22598         this.dragging = true;
22599         this.proxy.update("");
22600         this.onInitDrag(x, y);
22601         this.proxy.show();
22602     },
22603
22604     // private
22605     onInitDrag : function(x, y){
22606         var clone = this.el.dom.cloneNode(true);
22607         clone.id = Roo.id(); // prevent duplicate ids
22608         this.proxy.update(clone);
22609         this.onStartDrag(x, y);
22610         return true;
22611     },
22612
22613     /**
22614      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22615      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22616      */
22617     getProxy : function(){
22618         return this.proxy;  
22619     },
22620
22621     /**
22622      * Hides the drag source's {@link Roo.dd.StatusProxy}
22623      */
22624     hideProxy : function(){
22625         this.proxy.hide();  
22626         this.proxy.reset(true);
22627         this.dragging = false;
22628     },
22629
22630     // private
22631     triggerCacheRefresh : function(){
22632         Roo.dd.DDM.refreshCache(this.groups);
22633     },
22634
22635     // private - override to prevent hiding
22636     b4EndDrag: function(e) {
22637     },
22638
22639     // private - override to prevent moving
22640     endDrag : function(e){
22641         this.onEndDrag(this.dragData, e);
22642     },
22643
22644     // private
22645     onEndDrag : function(data, e){
22646     },
22647     
22648     // private - pin to cursor
22649     autoOffset : function(x, y) {
22650         this.setDelta(-12, -20);
22651     }    
22652 });/*
22653  * Based on:
22654  * Ext JS Library 1.1.1
22655  * Copyright(c) 2006-2007, Ext JS, LLC.
22656  *
22657  * Originally Released Under LGPL - original licence link has changed is not relivant.
22658  *
22659  * Fork - LGPL
22660  * <script type="text/javascript">
22661  */
22662
22663
22664 /**
22665  * @class Roo.dd.DropTarget
22666  * @extends Roo.dd.DDTarget
22667  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22668  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22669  * @constructor
22670  * @param {String/HTMLElement/Element} el The container element
22671  * @param {Object} config
22672  */
22673 Roo.dd.DropTarget = function(el, config){
22674     this.el = Roo.get(el);
22675     
22676     var listeners = false; ;
22677     if (config && config.listeners) {
22678         listeners= config.listeners;
22679         delete config.listeners;
22680     }
22681     Roo.apply(this, config);
22682     
22683     if(this.containerScroll){
22684         Roo.dd.ScrollManager.register(this.el);
22685     }
22686     this.addEvents( {
22687          /**
22688          * @scope Roo.dd.DropTarget
22689          */
22690          
22691          /**
22692          * @event enter
22693          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22694          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22695          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22696          * 
22697          * IMPORTANT : it should set  this.valid to true|false
22698          * 
22699          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22700          * @param {Event} e The event
22701          * @param {Object} data An object containing arbitrary data supplied by the drag source
22702          */
22703         "enter" : true,
22704         
22705          /**
22706          * @event over
22707          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22708          * This method will be called on every mouse movement while the drag source is over the drop target.
22709          * This default implementation simply returns the dropAllowed config value.
22710          * 
22711          * IMPORTANT : it should set  this.valid to true|false
22712          * 
22713          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22714          * @param {Event} e The event
22715          * @param {Object} data An object containing arbitrary data supplied by the drag source
22716          
22717          */
22718         "over" : true,
22719         /**
22720          * @event out
22721          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22722          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22723          * overClass (if any) from the drop element.
22724          * 
22725          * 
22726          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22727          * @param {Event} e The event
22728          * @param {Object} data An object containing arbitrary data supplied by the drag source
22729          */
22730          "out" : true,
22731          
22732         /**
22733          * @event drop
22734          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22735          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22736          * implementation that does something to process the drop event and returns true so that the drag source's
22737          * repair action does not run.
22738          * 
22739          * IMPORTANT : it should set this.success
22740          * 
22741          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22742          * @param {Event} e The event
22743          * @param {Object} data An object containing arbitrary data supplied by the drag source
22744         */
22745          "drop" : true
22746     });
22747             
22748      
22749     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22750         this.el.dom, 
22751         this.ddGroup || this.group,
22752         {
22753             isTarget: true,
22754             listeners : listeners || {} 
22755            
22756         
22757         }
22758     );
22759
22760 };
22761
22762 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22763     /**
22764      * @cfg {String} overClass
22765      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22766      */
22767      /**
22768      * @cfg {String} ddGroup
22769      * The drag drop group to handle drop events for
22770      */
22771      
22772     /**
22773      * @cfg {String} dropAllowed
22774      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22775      */
22776     dropAllowed : "x-dd-drop-ok",
22777     /**
22778      * @cfg {String} dropNotAllowed
22779      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22780      */
22781     dropNotAllowed : "x-dd-drop-nodrop",
22782     /**
22783      * @cfg {boolean} success
22784      * set this after drop listener.. 
22785      */
22786     success : false,
22787     /**
22788      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22789      * if the drop point is valid for over/enter..
22790      */
22791     valid : false,
22792     // private
22793     isTarget : true,
22794
22795     // private
22796     isNotifyTarget : true,
22797     
22798     /**
22799      * @hide
22800      */
22801     notifyEnter : function(dd, e, data)
22802     {
22803         this.valid = true;
22804         this.fireEvent('enter', dd, e, data);
22805         if(this.overClass){
22806             this.el.addClass(this.overClass);
22807         }
22808         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22809             this.valid ? this.dropAllowed : this.dropNotAllowed
22810         );
22811     },
22812
22813     /**
22814      * @hide
22815      */
22816     notifyOver : function(dd, e, data)
22817     {
22818         this.valid = true;
22819         this.fireEvent('over', dd, e, data);
22820         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22821             this.valid ? this.dropAllowed : this.dropNotAllowed
22822         );
22823     },
22824
22825     /**
22826      * @hide
22827      */
22828     notifyOut : function(dd, e, data)
22829     {
22830         this.fireEvent('out', dd, e, data);
22831         if(this.overClass){
22832             this.el.removeClass(this.overClass);
22833         }
22834     },
22835
22836     /**
22837      * @hide
22838      */
22839     notifyDrop : function(dd, e, data)
22840     {
22841         this.success = false;
22842         this.fireEvent('drop', dd, e, data);
22843         return this.success;
22844     }
22845 });/*
22846  * Based on:
22847  * Ext JS Library 1.1.1
22848  * Copyright(c) 2006-2007, Ext JS, LLC.
22849  *
22850  * Originally Released Under LGPL - original licence link has changed is not relivant.
22851  *
22852  * Fork - LGPL
22853  * <script type="text/javascript">
22854  */
22855
22856
22857 /**
22858  * @class Roo.dd.DragZone
22859  * @extends Roo.dd.DragSource
22860  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22861  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22862  * @constructor
22863  * @param {String/HTMLElement/Element} el The container element
22864  * @param {Object} config
22865  */
22866 Roo.dd.DragZone = function(el, config){
22867     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22868     if(this.containerScroll){
22869         Roo.dd.ScrollManager.register(this.el);
22870     }
22871 };
22872
22873 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22874     /**
22875      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22876      * for auto scrolling during drag operations.
22877      */
22878     /**
22879      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22880      * method after a failed drop (defaults to "c3daf9" - light blue)
22881      */
22882
22883     /**
22884      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22885      * for a valid target to drag based on the mouse down. Override this method
22886      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22887      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22888      * @param {EventObject} e The mouse down event
22889      * @return {Object} The dragData
22890      */
22891     getDragData : function(e){
22892         return Roo.dd.Registry.getHandleFromEvent(e);
22893     },
22894     
22895     /**
22896      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22897      * this.dragData.ddel
22898      * @param {Number} x The x position of the click on the dragged object
22899      * @param {Number} y The y position of the click on the dragged object
22900      * @return {Boolean} true to continue the drag, false to cancel
22901      */
22902     onInitDrag : function(x, y){
22903         this.proxy.update(this.dragData.ddel.cloneNode(true));
22904         this.onStartDrag(x, y);
22905         return true;
22906     },
22907     
22908     /**
22909      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22910      */
22911     afterRepair : function(){
22912         if(Roo.enableFx){
22913             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22914         }
22915         this.dragging = false;
22916     },
22917
22918     /**
22919      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22920      * the XY of this.dragData.ddel
22921      * @param {EventObject} e The mouse up event
22922      * @return {Array} The xy location (e.g. [100, 200])
22923      */
22924     getRepairXY : function(e){
22925         return Roo.Element.fly(this.dragData.ddel).getXY();  
22926     }
22927 });/*
22928  * Based on:
22929  * Ext JS Library 1.1.1
22930  * Copyright(c) 2006-2007, Ext JS, LLC.
22931  *
22932  * Originally Released Under LGPL - original licence link has changed is not relivant.
22933  *
22934  * Fork - LGPL
22935  * <script type="text/javascript">
22936  */
22937 /**
22938  * @class Roo.dd.DropZone
22939  * @extends Roo.dd.DropTarget
22940  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22941  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22942  * @constructor
22943  * @param {String/HTMLElement/Element} el The container element
22944  * @param {Object} config
22945  */
22946 Roo.dd.DropZone = function(el, config){
22947     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22948 };
22949
22950 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22951     /**
22952      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22953      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22954      * provide your own custom lookup.
22955      * @param {Event} e The event
22956      * @return {Object} data The custom data
22957      */
22958     getTargetFromEvent : function(e){
22959         return Roo.dd.Registry.getTargetFromEvent(e);
22960     },
22961
22962     /**
22963      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22964      * that it has registered.  This method has no default implementation and should be overridden to provide
22965      * node-specific processing if necessary.
22966      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22967      * {@link #getTargetFromEvent} for this node)
22968      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22969      * @param {Event} e The event
22970      * @param {Object} data An object containing arbitrary data supplied by the drag source
22971      */
22972     onNodeEnter : function(n, dd, e, data){
22973         
22974     },
22975
22976     /**
22977      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22978      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22979      * overridden to provide the proper feedback.
22980      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22981      * {@link #getTargetFromEvent} for this node)
22982      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22983      * @param {Event} e The event
22984      * @param {Object} data An object containing arbitrary data supplied by the drag source
22985      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22986      * underlying {@link Roo.dd.StatusProxy} can be updated
22987      */
22988     onNodeOver : function(n, dd, e, data){
22989         return this.dropAllowed;
22990     },
22991
22992     /**
22993      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22994      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22995      * node-specific processing if necessary.
22996      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22997      * {@link #getTargetFromEvent} for this node)
22998      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22999      * @param {Event} e The event
23000      * @param {Object} data An object containing arbitrary data supplied by the drag source
23001      */
23002     onNodeOut : function(n, dd, e, data){
23003         
23004     },
23005
23006     /**
23007      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
23008      * the drop node.  The default implementation returns false, so it should be overridden to provide the
23009      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
23010      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23011      * {@link #getTargetFromEvent} for this node)
23012      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23013      * @param {Event} e The event
23014      * @param {Object} data An object containing arbitrary data supplied by the drag source
23015      * @return {Boolean} True if the drop was valid, else false
23016      */
23017     onNodeDrop : function(n, dd, e, data){
23018         return false;
23019     },
23020
23021     /**
23022      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
23023      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
23024      * it should be overridden to provide the proper feedback if necessary.
23025      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23026      * @param {Event} e The event
23027      * @param {Object} data An object containing arbitrary data supplied by the drag source
23028      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23029      * underlying {@link Roo.dd.StatusProxy} can be updated
23030      */
23031     onContainerOver : function(dd, e, data){
23032         return this.dropNotAllowed;
23033     },
23034
23035     /**
23036      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
23037      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
23038      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
23039      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
23040      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23041      * @param {Event} e The event
23042      * @param {Object} data An object containing arbitrary data supplied by the drag source
23043      * @return {Boolean} True if the drop was valid, else false
23044      */
23045     onContainerDrop : function(dd, e, data){
23046         return false;
23047     },
23048
23049     /**
23050      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
23051      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
23052      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
23053      * you should override this method and provide a custom implementation.
23054      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23055      * @param {Event} e The event
23056      * @param {Object} data An object containing arbitrary data supplied by the drag source
23057      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23058      * underlying {@link Roo.dd.StatusProxy} can be updated
23059      */
23060     notifyEnter : function(dd, e, data){
23061         return this.dropNotAllowed;
23062     },
23063
23064     /**
23065      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23066      * This method will be called on every mouse movement while the drag source is over the drop zone.
23067      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23068      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23069      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23070      * registered node, it will call {@link #onContainerOver}.
23071      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23072      * @param {Event} e The event
23073      * @param {Object} data An object containing arbitrary data supplied by the drag source
23074      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23075      * underlying {@link Roo.dd.StatusProxy} can be updated
23076      */
23077     notifyOver : function(dd, e, data){
23078         var n = this.getTargetFromEvent(e);
23079         if(!n){ // not over valid drop target
23080             if(this.lastOverNode){
23081                 this.onNodeOut(this.lastOverNode, dd, e, data);
23082                 this.lastOverNode = null;
23083             }
23084             return this.onContainerOver(dd, e, data);
23085         }
23086         if(this.lastOverNode != n){
23087             if(this.lastOverNode){
23088                 this.onNodeOut(this.lastOverNode, dd, e, data);
23089             }
23090             this.onNodeEnter(n, dd, e, data);
23091             this.lastOverNode = n;
23092         }
23093         return this.onNodeOver(n, dd, e, data);
23094     },
23095
23096     /**
23097      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23098      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23099      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23100      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23101      * @param {Event} e The event
23102      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23103      */
23104     notifyOut : function(dd, e, data){
23105         if(this.lastOverNode){
23106             this.onNodeOut(this.lastOverNode, dd, e, data);
23107             this.lastOverNode = null;
23108         }
23109     },
23110
23111     /**
23112      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23113      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23114      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23115      * otherwise it will call {@link #onContainerDrop}.
23116      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23117      * @param {Event} e The event
23118      * @param {Object} data An object containing arbitrary data supplied by the drag source
23119      * @return {Boolean} True if the drop was valid, else false
23120      */
23121     notifyDrop : function(dd, e, data){
23122         if(this.lastOverNode){
23123             this.onNodeOut(this.lastOverNode, dd, e, data);
23124             this.lastOverNode = null;
23125         }
23126         var n = this.getTargetFromEvent(e);
23127         return n ?
23128             this.onNodeDrop(n, dd, e, data) :
23129             this.onContainerDrop(dd, e, data);
23130     },
23131
23132     // private
23133     triggerCacheRefresh : function(){
23134         Roo.dd.DDM.refreshCache(this.groups);
23135     }  
23136 });