Roo/Element.js
[roojs1] / Roo / Element.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 // was in Composite Element!??!?!
14  
15 (function(){
16     var D = Roo.lib.Dom;
17     var E = Roo.lib.Event;
18     var A = Roo.lib.Anim;
19
20     // local style camelizing for speed
21     var propCache = {};
22     var camelRe = /(-[a-z])/gi;
23     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
24     var view = document.defaultView;
25
26 /**
27  * @class Roo.Element
28  * Represents an Element in the DOM.<br><br>
29  * Usage:<br>
30 <pre><code>
31 var el = Roo.get("my-div");
32
33 // or with getEl
34 var el = getEl("my-div");
35
36 // or with a DOM element
37 var el = Roo.get(myDivElement);
38 </code></pre>
39  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
40  * each call instead of constructing a new one.<br><br>
41  * <b>Animations</b><br />
42  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
43  * should either be a boolean (true) or an object literal with animation options. The animation options are:
44 <pre>
45 Option    Default   Description
46 --------- --------  ---------------------------------------------
47 duration  .35       The duration of the animation in seconds
48 easing    easeOut   The YUI easing method
49 callback  none      A function to execute when the anim completes
50 scope     this      The scope (this) of the callback function
51 </pre>
52 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
53 * manipulate the animation. Here's an example:
54 <pre><code>
55 var el = Roo.get("my-div");
56
57 // no animation
58 el.setWidth(100);
59
60 // default animation
61 el.setWidth(100, true);
62
63 // animation with some options set
64 el.setWidth(100, {
65     duration: 1,
66     callback: this.foo,
67     scope: this
68 });
69
70 // using the "anim" property to get the Anim object
71 var opt = {
72     duration: 1,
73     callback: this.foo,
74     scope: this
75 };
76 el.setWidth(100, opt);
77 ...
78 if(opt.anim.isAnimated()){
79     opt.anim.stop();
80 }
81 </code></pre>
82 * <b> Composite (Collections of) Elements</b><br />
83  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
84  * @constructor Create a new Element directly.
85  * @param {String/HTMLElement} element
86  * @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).
87  */
88     Roo.Element = function(element, forceNew){
89         var dom = typeof element == "string" ?
90                 document.getElementById(element) : element;
91         if(!dom){ // invalid id/element
92             return null;
93         }
94         var id = dom.id;
95         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
96             return Roo.Element.cache[id];
97         }
98
99         /**
100          * The DOM element
101          * @type HTMLElement
102          */
103         this.dom = dom;
104
105         /**
106          * The DOM element ID
107          * @type String
108          */
109         this.id = id || Roo.id(dom);
110     };
111
112     var El = Roo.Element;
113
114     El.prototype = {
115         /**
116          * The element's default display mode  (defaults to "")
117          * @type String
118          */
119         originalDisplay : "",
120
121         visibilityMode : 1,
122         /**
123          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
124          * @type String
125          */
126         defaultUnit : "px",
127         
128         /**
129          * Sets the element's visibility mode. When setVisible() is called it
130          * will use this to determine whether to set the visibility or the display property.
131          * @param visMode Element.VISIBILITY or Element.DISPLAY
132          * @return {Roo.Element} this
133          */
134         setVisibilityMode : function(visMode){
135             this.visibilityMode = visMode;
136             return this;
137         },
138         /**
139          * Convenience method for setVisibilityMode(Element.DISPLAY)
140          * @param {String} display (optional) What to set display to when visible
141          * @return {Roo.Element} this
142          */
143         enableDisplayMode : function(display){
144             this.setVisibilityMode(El.DISPLAY);
145             if(typeof display != "undefined") { this.originalDisplay = display; }
146             return this;
147         },
148
149         /**
150          * 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)
151          * @param {String} selector The simple selector to test
152          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
153                 search as a number or element (defaults to 10 || document.body)
154          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
155          * @return {HTMLElement} The matching DOM node (or null if no match was found)
156          */
157         findParent : function(simpleSelector, maxDepth, returnEl){
158             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
159             maxDepth = maxDepth || 50;
160             if(typeof maxDepth != "number"){
161                 stopEl = Roo.getDom(maxDepth);
162                 maxDepth = 10;
163             }
164             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
165                 if(dq.is(p, simpleSelector)){
166                     return returnEl ? Roo.get(p) : p;
167                 }
168                 depth++;
169                 p = p.parentNode;
170             }
171             return null;
172         },
173
174
175         /**
176          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
177          * @param {String} selector The simple selector to test
178          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
179                 search as a number or element (defaults to 10 || document.body)
180          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
181          * @return {HTMLElement} The matching DOM node (or null if no match was found)
182          */
183         findParentNode : function(simpleSelector, maxDepth, returnEl){
184             var p = Roo.fly(this.dom.parentNode, '_internal');
185             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
186         },
187         
188         /**
189          * Looks at  the scrollable parent element
190          */
191         findScrollableParent : function()
192         {
193             var overflowRegex = /(auto|scroll)/;
194             
195             if(this.getStyle('position') === 'fixed'){
196                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
197             }
198             
199             var excludeStaticParent = this.getStyle('position') === "absolute";
200             
201             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
202                 
203                 if (excludeStaticParent && parent.getStyle('position') === "static") {
204                     continue;
205                 }
206                 
207                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
208                     return parent;
209                 }
210                 
211                 if(parent.dom.nodeName.toLowerCase() == 'body'){
212                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
213                 }
214             }
215             
216             if(Roo.isAndroid){
217                 alert('Is Android');
218                 return Roo.get(document.documentElement);
219             }
220             
221             if(!Roo.isAndroid){
222                 alert('not android');
223             }
224             
225             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
226         },
227
228         /**
229          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
230          * This is a shortcut for findParentNode() that always returns an Roo.Element.
231          * @param {String} selector The simple selector to test
232          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
233                 search as a number or element (defaults to 10 || document.body)
234          * @return {Roo.Element} The matching DOM node (or null if no match was found)
235          */
236         up : function(simpleSelector, maxDepth){
237             return this.findParentNode(simpleSelector, maxDepth, true);
238         },
239
240
241
242         /**
243          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
244          * @param {String} selector The simple selector to test
245          * @return {Boolean} True if this element matches the selector, else false
246          */
247         is : function(simpleSelector){
248             return Roo.DomQuery.is(this.dom, simpleSelector);
249         },
250
251         /**
252          * Perform animation on this element.
253          * @param {Object} args The YUI animation control args
254          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
255          * @param {Function} onComplete (optional) Function to call when animation completes
256          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
257          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
258          * @return {Roo.Element} this
259          */
260         animate : function(args, duration, onComplete, easing, animType){
261             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
262             return this;
263         },
264
265         /*
266          * @private Internal animation call
267          */
268         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
269             animType = animType || 'run';
270             opt = opt || {};
271             var anim = Roo.lib.Anim[animType](
272                 this.dom, args,
273                 (opt.duration || defaultDur) || .35,
274                 (opt.easing || defaultEase) || 'easeOut',
275                 function(){
276                     Roo.callback(cb, this);
277                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
278                 },
279                 this
280             );
281             opt.anim = anim;
282             return anim;
283         },
284
285         // private legacy anim prep
286         preanim : function(a, i){
287             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
288         },
289
290         /**
291          * Removes worthless text nodes
292          * @param {Boolean} forceReclean (optional) By default the element
293          * keeps track if it has been cleaned already so
294          * you can call this over and over. However, if you update the element and
295          * need to force a reclean, you can pass true.
296          */
297         clean : function(forceReclean){
298             if(this.isCleaned && forceReclean !== true){
299                 return this;
300             }
301             var ns = /\S/;
302             var d = this.dom, n = d.firstChild, ni = -1;
303             while(n){
304                 var nx = n.nextSibling;
305                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
306                     d.removeChild(n);
307                 }else{
308                     n.nodeIndex = ++ni;
309                 }
310                 n = nx;
311             }
312             this.isCleaned = true;
313             return this;
314         },
315
316         // private
317         calcOffsetsTo : function(el){
318             el = Roo.get(el);
319             var d = el.dom;
320             var restorePos = false;
321             if(el.getStyle('position') == 'static'){
322                 el.position('relative');
323                 restorePos = true;
324             }
325             var x = 0, y =0;
326             var op = this.dom;
327             while(op && op != d && op.tagName != 'HTML'){
328                 x+= op.offsetLeft;
329                 y+= op.offsetTop;
330                 op = op.offsetParent;
331             }
332             if(restorePos){
333                 el.position('static');
334             }
335             return [x, y];
336         },
337
338         /**
339          * Scrolls this element into view within the passed container.
340          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
341          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
342          * @return {Roo.Element} this
343          */
344         scrollIntoView : function(container, hscroll){
345             var c = Roo.getDom(container) || document.body;
346             var el = this.dom;
347
348             var o = this.calcOffsetsTo(c),
349                 l = o[0],
350                 t = o[1],
351                 b = t+el.offsetHeight,
352                 r = l+el.offsetWidth;
353
354             var ch = c.clientHeight;
355             var ct = parseInt(c.scrollTop, 10);
356             var cl = parseInt(c.scrollLeft, 10);
357             var cb = ct + ch;
358             var cr = cl + c.clientWidth;
359
360             if(t < ct){
361                 c.scrollTop = t;
362             }else if(b > cb){
363                 c.scrollTop = b-ch;
364             }
365
366             if(hscroll !== false){
367                 if(l < cl){
368                     c.scrollLeft = l;
369                 }else if(r > cr){
370                     c.scrollLeft = r-c.clientWidth;
371                 }
372             }
373             return this;
374         },
375
376         // private
377         scrollChildIntoView : function(child, hscroll){
378             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
379         },
380
381         /**
382          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
383          * the new height may not be available immediately.
384          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
385          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
386          * @param {Function} onComplete (optional) Function to call when animation completes
387          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
388          * @return {Roo.Element} this
389          */
390         autoHeight : function(animate, duration, onComplete, easing){
391             var oldHeight = this.getHeight();
392             this.clip();
393             this.setHeight(1); // force clipping
394             setTimeout(function(){
395                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
396                 if(!animate){
397                     this.setHeight(height);
398                     this.unclip();
399                     if(typeof onComplete == "function"){
400                         onComplete();
401                     }
402                 }else{
403                     this.setHeight(oldHeight); // restore original height
404                     this.setHeight(height, animate, duration, function(){
405                         this.unclip();
406                         if(typeof onComplete == "function") { onComplete(); }
407                     }.createDelegate(this), easing);
408                 }
409             }.createDelegate(this), 0);
410             return this;
411         },
412
413         /**
414          * Returns true if this element is an ancestor of the passed element
415          * @param {HTMLElement/String} el The element to check
416          * @return {Boolean} True if this element is an ancestor of el, else false
417          */
418         contains : function(el){
419             if(!el){return false;}
420             return D.isAncestor(this.dom, el.dom ? el.dom : el);
421         },
422
423         /**
424          * Checks whether the element is currently visible using both visibility and display properties.
425          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
426          * @return {Boolean} True if the element is currently visible, else false
427          */
428         isVisible : function(deep) {
429             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
430             if(deep !== true || !vis){
431                 return vis;
432             }
433             var p = this.dom.parentNode;
434             while(p && p.tagName.toLowerCase() != "body"){
435                 if(!Roo.fly(p, '_isVisible').isVisible()){
436                     return false;
437                 }
438                 p = p.parentNode;
439             }
440             return true;
441         },
442
443         /**
444          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
445          * @param {String} selector The CSS selector
446          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
447          * @return {CompositeElement/CompositeElementLite} The composite element
448          */
449         select : function(selector, unique){
450             return El.select(selector, unique, this.dom);
451         },
452
453         /**
454          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
455          * @param {String} selector The CSS selector
456          * @return {Array} An array of the matched nodes
457          */
458         query : function(selector, unique){
459             return Roo.DomQuery.select(selector, this.dom);
460         },
461
462         /**
463          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
464          * @param {String} selector The CSS selector
465          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
466          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
467          */
468         child : function(selector, returnDom){
469             var n = Roo.DomQuery.selectNode(selector, this.dom);
470             return returnDom ? n : Roo.get(n);
471         },
472
473         /**
474          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
475          * @param {String} selector The CSS selector
476          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
477          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
478          */
479         down : function(selector, returnDom){
480             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
481             return returnDom ? n : Roo.get(n);
482         },
483
484         /**
485          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
486          * @param {String} group The group the DD object is member of
487          * @param {Object} config The DD config object
488          * @param {Object} overrides An object containing methods to override/implement on the DD object
489          * @return {Roo.dd.DD} The DD object
490          */
491         initDD : function(group, config, overrides){
492             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
493             return Roo.apply(dd, overrides);
494         },
495
496         /**
497          * Initializes a {@link Roo.dd.DDProxy} object for this element.
498          * @param {String} group The group the DDProxy object is member of
499          * @param {Object} config The DDProxy config object
500          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
501          * @return {Roo.dd.DDProxy} The DDProxy object
502          */
503         initDDProxy : function(group, config, overrides){
504             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
505             return Roo.apply(dd, overrides);
506         },
507
508         /**
509          * Initializes a {@link Roo.dd.DDTarget} object for this element.
510          * @param {String} group The group the DDTarget object is member of
511          * @param {Object} config The DDTarget config object
512          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
513          * @return {Roo.dd.DDTarget} The DDTarget object
514          */
515         initDDTarget : function(group, config, overrides){
516             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
517             return Roo.apply(dd, overrides);
518         },
519
520         /**
521          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
522          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
523          * @param {Boolean} visible Whether the element is visible
524          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
525          * @return {Roo.Element} this
526          */
527          setVisible : function(visible, animate){
528             if(!animate || !A){
529                 if(this.visibilityMode == El.DISPLAY){
530                     this.setDisplayed(visible);
531                 }else{
532                     this.fixDisplay();
533                     this.dom.style.visibility = visible ? "visible" : "hidden";
534                 }
535             }else{
536                 // closure for composites
537                 var dom = this.dom;
538                 var visMode = this.visibilityMode;
539                 if(visible){
540                     this.setOpacity(.01);
541                     this.setVisible(true);
542                 }
543                 this.anim({opacity: { to: (visible?1:0) }},
544                       this.preanim(arguments, 1),
545                       null, .35, 'easeIn', function(){
546                          if(!visible){
547                              if(visMode == El.DISPLAY){
548                                  dom.style.display = "none";
549                              }else{
550                                  dom.style.visibility = "hidden";
551                              }
552                              Roo.get(dom).setOpacity(1);
553                          }
554                      });
555             }
556             return this;
557         },
558
559         /**
560          * Returns true if display is not "none"
561          * @return {Boolean}
562          */
563         isDisplayed : function() {
564             return this.getStyle("display") != "none";
565         },
566
567         /**
568          * Toggles the element's visibility or display, depending on visibility mode.
569          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
570          * @return {Roo.Element} this
571          */
572         toggle : function(animate){
573             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
574             return this;
575         },
576
577         /**
578          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
579          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
580          * @return {Roo.Element} this
581          */
582         setDisplayed : function(value) {
583             if(typeof value == "boolean"){
584                value = value ? this.originalDisplay : "none";
585             }
586             this.setStyle("display", value);
587             return this;
588         },
589
590         /**
591          * Tries to focus the element. Any exceptions are caught and ignored.
592          * @return {Roo.Element} this
593          */
594         focus : function() {
595             try{
596                 this.dom.focus();
597             }catch(e){}
598             return this;
599         },
600
601         /**
602          * Tries to blur the element. Any exceptions are caught and ignored.
603          * @return {Roo.Element} this
604          */
605         blur : function() {
606             try{
607                 this.dom.blur();
608             }catch(e){}
609             return this;
610         },
611
612         /**
613          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
614          * @param {String/Array} className The CSS class to add, or an array of classes
615          * @return {Roo.Element} this
616          */
617         addClass : function(className){
618             if(className instanceof Array){
619                 for(var i = 0, len = className.length; i < len; i++) {
620                     this.addClass(className[i]);
621                 }
622             }else{
623                 if(className && !this.hasClass(className)){
624                     this.dom.className = this.dom.className + " " + className;
625                 }
626             }
627             return this;
628         },
629
630         /**
631          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
632          * @param {String/Array} className The CSS class to add, or an array of classes
633          * @return {Roo.Element} this
634          */
635         radioClass : function(className){
636             var siblings = this.dom.parentNode.childNodes;
637             for(var i = 0; i < siblings.length; i++) {
638                 var s = siblings[i];
639                 if(s.nodeType == 1){
640                     Roo.get(s).removeClass(className);
641                 }
642             }
643             this.addClass(className);
644             return this;
645         },
646
647         /**
648          * Removes one or more CSS classes from the element.
649          * @param {String/Array} className The CSS class to remove, or an array of classes
650          * @return {Roo.Element} this
651          */
652         removeClass : function(className){
653             if(!className || !this.dom.className){
654                 return this;
655             }
656             if(className instanceof Array){
657                 for(var i = 0, len = className.length; i < len; i++) {
658                     this.removeClass(className[i]);
659                 }
660             }else{
661                 if(this.hasClass(className)){
662                     var re = this.classReCache[className];
663                     if (!re) {
664                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
665                        this.classReCache[className] = re;
666                     }
667                     this.dom.className =
668                         this.dom.className.replace(re, " ");
669                 }
670             }
671             return this;
672         },
673
674         // private
675         classReCache: {},
676
677         /**
678          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
679          * @param {String} className The CSS class to toggle
680          * @return {Roo.Element} this
681          */
682         toggleClass : function(className){
683             if(this.hasClass(className)){
684                 this.removeClass(className);
685             }else{
686                 this.addClass(className);
687             }
688             return this;
689         },
690
691         /**
692          * Checks if the specified CSS class exists on this element's DOM node.
693          * @param {String} className The CSS class to check for
694          * @return {Boolean} True if the class exists, else false
695          */
696         hasClass : function(className){
697             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
698         },
699
700         /**
701          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
702          * @param {String} oldClassName The CSS class to replace
703          * @param {String} newClassName The replacement CSS class
704          * @return {Roo.Element} this
705          */
706         replaceClass : function(oldClassName, newClassName){
707             this.removeClass(oldClassName);
708             this.addClass(newClassName);
709             return this;
710         },
711
712         /**
713          * Returns an object with properties matching the styles requested.
714          * For example, el.getStyles('color', 'font-size', 'width') might return
715          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
716          * @param {String} style1 A style name
717          * @param {String} style2 A style name
718          * @param {String} etc.
719          * @return {Object} The style object
720          */
721         getStyles : function(){
722             var a = arguments, len = a.length, r = {};
723             for(var i = 0; i < len; i++){
724                 r[a[i]] = this.getStyle(a[i]);
725             }
726             return r;
727         },
728
729         /**
730          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
731          * @param {String} property The style property whose value is returned.
732          * @return {String} The current value of the style property for this element.
733          */
734         getStyle : function(){
735             return view && view.getComputedStyle ?
736                 function(prop){
737                     var el = this.dom, v, cs, camel;
738                     if(prop == 'float'){
739                         prop = "cssFloat";
740                     }
741                     if(el.style && (v = el.style[prop])){
742                         return v;
743                     }
744                     if(cs = view.getComputedStyle(el, "")){
745                         if(!(camel = propCache[prop])){
746                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
747                         }
748                         return cs[camel];
749                     }
750                     return null;
751                 } :
752                 function(prop){
753                     var el = this.dom, v, cs, camel;
754                     if(prop == 'opacity'){
755                         if(typeof el.style.filter == 'string'){
756                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
757                             if(m){
758                                 var fv = parseFloat(m[1]);
759                                 if(!isNaN(fv)){
760                                     return fv ? fv / 100 : 0;
761                                 }
762                             }
763                         }
764                         return 1;
765                     }else if(prop == 'float'){
766                         prop = "styleFloat";
767                     }
768                     if(!(camel = propCache[prop])){
769                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
770                     }
771                     if(v = el.style[camel]){
772                         return v;
773                     }
774                     if(cs = el.currentStyle){
775                         return cs[camel];
776                     }
777                     return null;
778                 };
779         }(),
780
781         /**
782          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
783          * @param {String/Object} property The style property to be set, or an object of multiple styles.
784          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
785          * @return {Roo.Element} this
786          */
787         setStyle : function(prop, value){
788             if(typeof prop == "string"){
789                 
790                 if (prop == 'float') {
791                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
792                     return this;
793                 }
794                 
795                 var camel;
796                 if(!(camel = propCache[prop])){
797                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
798                 }
799                 
800                 if(camel == 'opacity') {
801                     this.setOpacity(value);
802                 }else{
803                     this.dom.style[camel] = value;
804                 }
805             }else{
806                 for(var style in prop){
807                     if(typeof prop[style] != "function"){
808                        this.setStyle(style, prop[style]);
809                     }
810                 }
811             }
812             return this;
813         },
814
815         /**
816          * More flexible version of {@link #setStyle} for setting style properties.
817          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
818          * a function which returns such a specification.
819          * @return {Roo.Element} this
820          */
821         applyStyles : function(style){
822             Roo.DomHelper.applyStyles(this.dom, style);
823             return this;
824         },
825
826         /**
827           * 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).
828           * @return {Number} The X position of the element
829           */
830         getX : function(){
831             return D.getX(this.dom);
832         },
833
834         /**
835           * 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).
836           * @return {Number} The Y position of the element
837           */
838         getY : function(){
839             return D.getY(this.dom);
840         },
841
842         /**
843           * 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).
844           * @return {Array} The XY position of the element
845           */
846         getXY : function(){
847             return D.getXY(this.dom);
848         },
849
850         /**
851          * 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).
852          * @param {Number} The X position of the element
853          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
854          * @return {Roo.Element} this
855          */
856         setX : function(x, animate){
857             if(!animate || !A){
858                 D.setX(this.dom, x);
859             }else{
860                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
861             }
862             return this;
863         },
864
865         /**
866          * 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).
867          * @param {Number} The Y position of the element
868          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
869          * @return {Roo.Element} this
870          */
871         setY : function(y, animate){
872             if(!animate || !A){
873                 D.setY(this.dom, y);
874             }else{
875                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
876             }
877             return this;
878         },
879
880         /**
881          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
882          * @param {String} left The left CSS property value
883          * @return {Roo.Element} this
884          */
885         setLeft : function(left){
886             this.setStyle("left", this.addUnits(left));
887             return this;
888         },
889
890         /**
891          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
892          * @param {String} top The top CSS property value
893          * @return {Roo.Element} this
894          */
895         setTop : function(top){
896             this.setStyle("top", this.addUnits(top));
897             return this;
898         },
899
900         /**
901          * Sets the element's CSS right style.
902          * @param {String} right The right CSS property value
903          * @return {Roo.Element} this
904          */
905         setRight : function(right){
906             this.setStyle("right", this.addUnits(right));
907             return this;
908         },
909
910         /**
911          * Sets the element's CSS bottom style.
912          * @param {String} bottom The bottom CSS property value
913          * @return {Roo.Element} this
914          */
915         setBottom : function(bottom){
916             this.setStyle("bottom", this.addUnits(bottom));
917             return this;
918         },
919
920         /**
921          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
922          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
923          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
924          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
925          * @return {Roo.Element} this
926          */
927         setXY : function(pos, animate){
928             if(!animate || !A){
929                 D.setXY(this.dom, pos);
930             }else{
931                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
932             }
933             return this;
934         },
935
936         /**
937          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
938          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
939          * @param {Number} x X value for new position (coordinates are page-based)
940          * @param {Number} y Y value for new position (coordinates are page-based)
941          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
942          * @return {Roo.Element} this
943          */
944         setLocation : function(x, y, animate){
945             this.setXY([x, y], this.preanim(arguments, 2));
946             return this;
947         },
948
949         /**
950          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
951          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
952          * @param {Number} x X value for new position (coordinates are page-based)
953          * @param {Number} y Y value for new position (coordinates are page-based)
954          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
955          * @return {Roo.Element} this
956          */
957         moveTo : function(x, y, animate){
958             this.setXY([x, y], this.preanim(arguments, 2));
959             return this;
960         },
961
962         /**
963          * Returns the region of the given element.
964          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
965          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
966          */
967         getRegion : function(){
968             return D.getRegion(this.dom);
969         },
970
971         /**
972          * Returns the offset height of the element
973          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
974          * @return {Number} The element's height
975          */
976         getHeight : function(contentHeight){
977             var h = this.dom.offsetHeight || 0;
978             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
979         },
980
981         /**
982          * Returns the offset width of the element
983          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
984          * @return {Number} The element's width
985          */
986         getWidth : function(contentWidth){
987             var w = this.dom.offsetWidth || 0;
988             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
989         },
990
991         /**
992          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
993          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
994          * if a height has not been set using CSS.
995          * @return {Number}
996          */
997         getComputedHeight : function(){
998             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
999             if(!h){
1000                 h = parseInt(this.getStyle('height'), 10) || 0;
1001                 if(!this.isBorderBox()){
1002                     h += this.getFrameWidth('tb');
1003                 }
1004             }
1005             return h;
1006         },
1007
1008         /**
1009          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
1010          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
1011          * if a width has not been set using CSS.
1012          * @return {Number}
1013          */
1014         getComputedWidth : function(){
1015             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
1016             if(!w){
1017                 w = parseInt(this.getStyle('width'), 10) || 0;
1018                 if(!this.isBorderBox()){
1019                     w += this.getFrameWidth('lr');
1020                 }
1021             }
1022             return w;
1023         },
1024
1025         /**
1026          * Returns the size of the element.
1027          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
1028          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
1029          */
1030         getSize : function(contentSize){
1031             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
1032         },
1033
1034         /**
1035          * Returns the width and height of the viewport.
1036          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
1037          */
1038         getViewSize : function(){
1039             var d = this.dom, doc = document, aw = 0, ah = 0;
1040             if(d == doc || d == doc.body){
1041                 return {width : D.getViewWidth(), height: D.getViewHeight()};
1042             }else{
1043                 return {
1044                     width : d.clientWidth,
1045                     height: d.clientHeight
1046                 };
1047             }
1048         },
1049
1050         /**
1051          * Returns the value of the "value" attribute
1052          * @param {Boolean} asNumber true to parse the value as a number
1053          * @return {String/Number}
1054          */
1055         getValue : function(asNumber){
1056             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
1057         },
1058
1059         // private
1060         adjustWidth : function(width){
1061             if(typeof width == "number"){
1062                 if(this.autoBoxAdjust && !this.isBorderBox()){
1063                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
1064                 }
1065                 if(width < 0){
1066                     width = 0;
1067                 }
1068             }
1069             return width;
1070         },
1071
1072         // private
1073         adjustHeight : function(height){
1074             if(typeof height == "number"){
1075                if(this.autoBoxAdjust && !this.isBorderBox()){
1076                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
1077                }
1078                if(height < 0){
1079                    height = 0;
1080                }
1081             }
1082             return height;
1083         },
1084
1085         /**
1086          * Set the width of the element
1087          * @param {Number} width The new width
1088          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1089          * @return {Roo.Element} this
1090          */
1091         setWidth : function(width, animate){
1092             width = this.adjustWidth(width);
1093             if(!animate || !A){
1094                 this.dom.style.width = this.addUnits(width);
1095             }else{
1096                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
1097             }
1098             return this;
1099         },
1100
1101         /**
1102          * Set the height of the element
1103          * @param {Number} height The new height
1104          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1105          * @return {Roo.Element} this
1106          */
1107          setHeight : function(height, animate){
1108             height = this.adjustHeight(height);
1109             if(!animate || !A){
1110                 this.dom.style.height = this.addUnits(height);
1111             }else{
1112                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
1113             }
1114             return this;
1115         },
1116
1117         /**
1118          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
1119          * @param {Number} width The new width
1120          * @param {Number} height The new height
1121          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1122          * @return {Roo.Element} this
1123          */
1124          setSize : function(width, height, animate){
1125             if(typeof width == "object"){ // in case of object from getSize()
1126                 height = width.height; width = width.width;
1127             }
1128             width = this.adjustWidth(width); height = this.adjustHeight(height);
1129             if(!animate || !A){
1130                 this.dom.style.width = this.addUnits(width);
1131                 this.dom.style.height = this.addUnits(height);
1132             }else{
1133                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
1134             }
1135             return this;
1136         },
1137
1138         /**
1139          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
1140          * @param {Number} x X value for new position (coordinates are page-based)
1141          * @param {Number} y Y value for new position (coordinates are page-based)
1142          * @param {Number} width The new width
1143          * @param {Number} height The new height
1144          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1145          * @return {Roo.Element} this
1146          */
1147         setBounds : function(x, y, width, height, animate){
1148             if(!animate || !A){
1149                 this.setSize(width, height);
1150                 this.setLocation(x, y);
1151             }else{
1152                 width = this.adjustWidth(width); height = this.adjustHeight(height);
1153                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
1154                               this.preanim(arguments, 4), 'motion');
1155             }
1156             return this;
1157         },
1158
1159         /**
1160          * 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.
1161          * @param {Roo.lib.Region} region The region to fill
1162          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1163          * @return {Roo.Element} this
1164          */
1165         setRegion : function(region, animate){
1166             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
1167             return this;
1168         },
1169
1170         /**
1171          * Appends an event handler
1172          *
1173          * @param {String}   eventName     The type of event to append
1174          * @param {Function} fn        The method the event invokes
1175          * @param {Object} scope       (optional) The scope (this object) of the fn
1176          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
1177          */
1178         addListener : function(eventName, fn, scope, options){
1179             if (this.dom) {
1180                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
1181             }
1182         },
1183
1184         /**
1185          * Removes an event handler from this element
1186          * @param {String} eventName the type of event to remove
1187          * @param {Function} fn the method the event invokes
1188          * @return {Roo.Element} this
1189          */
1190         removeListener : function(eventName, fn){
1191             Roo.EventManager.removeListener(this.dom,  eventName, fn);
1192             return this;
1193         },
1194
1195         /**
1196          * Removes all previous added listeners from this element
1197          * @return {Roo.Element} this
1198          */
1199         removeAllListeners : function(){
1200             E.purgeElement(this.dom);
1201             return this;
1202         },
1203
1204         relayEvent : function(eventName, observable){
1205             this.on(eventName, function(e){
1206                 observable.fireEvent(eventName, e);
1207             });
1208         },
1209
1210         /**
1211          * Set the opacity of the element
1212          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
1213          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1214          * @return {Roo.Element} this
1215          */
1216          setOpacity : function(opacity, animate){
1217             if(!animate || !A){
1218                 var s = this.dom.style;
1219                 if(Roo.isIE){
1220                     s.zoom = 1;
1221                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
1222                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
1223                 }else{
1224                     s.opacity = opacity;
1225                 }
1226             }else{
1227                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
1228             }
1229             return this;
1230         },
1231
1232         /**
1233          * Gets the left X coordinate
1234          * @param {Boolean} local True to get the local css position instead of page coordinate
1235          * @return {Number}
1236          */
1237         getLeft : function(local){
1238             if(!local){
1239                 return this.getX();
1240             }else{
1241                 return parseInt(this.getStyle("left"), 10) || 0;
1242             }
1243         },
1244
1245         /**
1246          * Gets the right X coordinate of the element (element X position + element width)
1247          * @param {Boolean} local True to get the local css position instead of page coordinate
1248          * @return {Number}
1249          */
1250         getRight : function(local){
1251             if(!local){
1252                 return this.getX() + this.getWidth();
1253             }else{
1254                 return (this.getLeft(true) + this.getWidth()) || 0;
1255             }
1256         },
1257
1258         /**
1259          * Gets the top Y coordinate
1260          * @param {Boolean} local True to get the local css position instead of page coordinate
1261          * @return {Number}
1262          */
1263         getTop : function(local) {
1264             if(!local){
1265                 return this.getY();
1266             }else{
1267                 return parseInt(this.getStyle("top"), 10) || 0;
1268             }
1269         },
1270
1271         /**
1272          * Gets the bottom Y coordinate of the element (element Y position + element height)
1273          * @param {Boolean} local True to get the local css position instead of page coordinate
1274          * @return {Number}
1275          */
1276         getBottom : function(local){
1277             if(!local){
1278                 return this.getY() + this.getHeight();
1279             }else{
1280                 return (this.getTop(true) + this.getHeight()) || 0;
1281             }
1282         },
1283
1284         /**
1285         * Initializes positioning on this element. If a desired position is not passed, it will make the
1286         * the element positioned relative IF it is not already positioned.
1287         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
1288         * @param {Number} zIndex (optional) The zIndex to apply
1289         * @param {Number} x (optional) Set the page X position
1290         * @param {Number} y (optional) Set the page Y position
1291         */
1292         position : function(pos, zIndex, x, y){
1293             if(!pos){
1294                if(this.getStyle('position') == 'static'){
1295                    this.setStyle('position', 'relative');
1296                }
1297             }else{
1298                 this.setStyle("position", pos);
1299             }
1300             if(zIndex){
1301                 this.setStyle("z-index", zIndex);
1302             }
1303             if(x !== undefined && y !== undefined){
1304                 this.setXY([x, y]);
1305             }else if(x !== undefined){
1306                 this.setX(x);
1307             }else if(y !== undefined){
1308                 this.setY(y);
1309             }
1310         },
1311
1312         /**
1313         * Clear positioning back to the default when the document was loaded
1314         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
1315         * @return {Roo.Element} this
1316          */
1317         clearPositioning : function(value){
1318             value = value ||'';
1319             this.setStyle({
1320                 "left": value,
1321                 "right": value,
1322                 "top": value,
1323                 "bottom": value,
1324                 "z-index": "",
1325                 "position" : "static"
1326             });
1327             return this;
1328         },
1329
1330         /**
1331         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
1332         * snapshot before performing an update and then restoring the element.
1333         * @return {Object}
1334         */
1335         getPositioning : function(){
1336             var l = this.getStyle("left");
1337             var t = this.getStyle("top");
1338             return {
1339                 "position" : this.getStyle("position"),
1340                 "left" : l,
1341                 "right" : l ? "" : this.getStyle("right"),
1342                 "top" : t,
1343                 "bottom" : t ? "" : this.getStyle("bottom"),
1344                 "z-index" : this.getStyle("z-index")
1345             };
1346         },
1347
1348         /**
1349          * Gets the width of the border(s) for the specified side(s)
1350          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
1351          * passing lr would get the border (l)eft width + the border (r)ight width.
1352          * @return {Number} The width of the sides passed added together
1353          */
1354         getBorderWidth : function(side){
1355             return this.addStyles(side, El.borders);
1356         },
1357
1358         /**
1359          * Gets the width of the padding(s) for the specified side(s)
1360          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
1361          * passing lr would get the padding (l)eft + the padding (r)ight.
1362          * @return {Number} The padding of the sides passed added together
1363          */
1364         getPadding : function(side){
1365             return this.addStyles(side, El.paddings);
1366         },
1367
1368         /**
1369         * Set positioning with an object returned by getPositioning().
1370         * @param {Object} posCfg
1371         * @return {Roo.Element} this
1372          */
1373         setPositioning : function(pc){
1374             this.applyStyles(pc);
1375             if(pc.right == "auto"){
1376                 this.dom.style.right = "";
1377             }
1378             if(pc.bottom == "auto"){
1379                 this.dom.style.bottom = "";
1380             }
1381             return this;
1382         },
1383
1384         // private
1385         fixDisplay : function(){
1386             if(this.getStyle("display") == "none"){
1387                 this.setStyle("visibility", "hidden");
1388                 this.setStyle("display", this.originalDisplay); // first try reverting to default
1389                 if(this.getStyle("display") == "none"){ // if that fails, default to block
1390                     this.setStyle("display", "block");
1391                 }
1392             }
1393         },
1394
1395         /**
1396          * Quick set left and top adding default units
1397          * @param {String} left The left CSS property value
1398          * @param {String} top The top CSS property value
1399          * @return {Roo.Element} this
1400          */
1401          setLeftTop : function(left, top){
1402             this.dom.style.left = this.addUnits(left);
1403             this.dom.style.top = this.addUnits(top);
1404             return this;
1405         },
1406
1407         /**
1408          * Move this element relative to its current position.
1409          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
1410          * @param {Number} distance How far to move the element in pixels
1411          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1412          * @return {Roo.Element} this
1413          */
1414          move : function(direction, distance, animate){
1415             var xy = this.getXY();
1416             direction = direction.toLowerCase();
1417             switch(direction){
1418                 case "l":
1419                 case "left":
1420                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
1421                     break;
1422                case "r":
1423                case "right":
1424                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
1425                     break;
1426                case "t":
1427                case "top":
1428                case "up":
1429                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
1430                     break;
1431                case "b":
1432                case "bottom":
1433                case "down":
1434                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
1435                     break;
1436             }
1437             return this;
1438         },
1439
1440         /**
1441          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
1442          * @return {Roo.Element} this
1443          */
1444         clip : function(){
1445             if(!this.isClipped){
1446                this.isClipped = true;
1447                this.originalClip = {
1448                    "o": this.getStyle("overflow"),
1449                    "x": this.getStyle("overflow-x"),
1450                    "y": this.getStyle("overflow-y")
1451                };
1452                this.setStyle("overflow", "hidden");
1453                this.setStyle("overflow-x", "hidden");
1454                this.setStyle("overflow-y", "hidden");
1455             }
1456             return this;
1457         },
1458
1459         /**
1460          *  Return clipping (overflow) to original clipping before clip() was called
1461          * @return {Roo.Element} this
1462          */
1463         unclip : function(){
1464             if(this.isClipped){
1465                 this.isClipped = false;
1466                 var o = this.originalClip;
1467                 if(o.o){this.setStyle("overflow", o.o);}
1468                 if(o.x){this.setStyle("overflow-x", o.x);}
1469                 if(o.y){this.setStyle("overflow-y", o.y);}
1470             }
1471             return this;
1472         },
1473
1474
1475         /**
1476          * Gets the x,y coordinates specified by the anchor position on the element.
1477          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
1478          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
1479          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
1480          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
1481          * @return {Array} [x, y] An array containing the element's x and y coordinates
1482          */
1483         getAnchorXY : function(anchor, local, s){
1484             //Passing a different size is useful for pre-calculating anchors,
1485             //especially for anchored animations that change the el size.
1486
1487             var w, h, vp = false;
1488             if(!s){
1489                 var d = this.dom;
1490                 if(d == document.body || d == document){
1491                     vp = true;
1492                     w = D.getViewWidth(); h = D.getViewHeight();
1493                 }else{
1494                     w = this.getWidth(); h = this.getHeight();
1495                 }
1496             }else{
1497                 w = s.width;  h = s.height;
1498             }
1499             var x = 0, y = 0, r = Math.round;
1500             switch((anchor || "tl").toLowerCase()){
1501                 case "c":
1502                     x = r(w*.5);
1503                     y = r(h*.5);
1504                 break;
1505                 case "t":
1506                     x = r(w*.5);
1507                     y = 0;
1508                 break;
1509                 case "l":
1510                     x = 0;
1511                     y = r(h*.5);
1512                 break;
1513                 case "r":
1514                     x = w;
1515                     y = r(h*.5);
1516                 break;
1517                 case "b":
1518                     x = r(w*.5);
1519                     y = h;
1520                 break;
1521                 case "tl":
1522                     x = 0;
1523                     y = 0;
1524                 break;
1525                 case "bl":
1526                     x = 0;
1527                     y = h;
1528                 break;
1529                 case "br":
1530                     x = w;
1531                     y = h;
1532                 break;
1533                 case "tr":
1534                     x = w;
1535                     y = 0;
1536                 break;
1537             }
1538             if(local === true){
1539                 return [x, y];
1540             }
1541             if(vp){
1542                 var sc = this.getScroll();
1543                 return [x + sc.left, y + sc.top];
1544             }
1545             //Add the element's offset xy
1546             var o = this.getXY();
1547             return [x+o[0], y+o[1]];
1548         },
1549
1550         /**
1551          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
1552          * supported position values.
1553          * @param {String/HTMLElement/Roo.Element} element The element to align to.
1554          * @param {String} position The position to align to.
1555          * @param {Array} offsets (optional) Offset the positioning by [x, y]
1556          * @return {Array} [x, y]
1557          */
1558         getAlignToXY : function(el, p, o){
1559             el = Roo.get(el);
1560             var d = this.dom;
1561             if(!el.dom){
1562                 throw "Element.alignTo with an element that doesn't exist";
1563             }
1564             var c = false; //constrain to viewport
1565             var p1 = "", p2 = "";
1566             o = o || [0,0];
1567
1568             if(!p){
1569                 p = "tl-bl";
1570             }else if(p == "?"){
1571                 p = "tl-bl?";
1572             }else if(p.indexOf("-") == -1){
1573                 p = "tl-" + p;
1574             }
1575             p = p.toLowerCase();
1576             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
1577             if(!m){
1578                throw "Element.alignTo with an invalid alignment " + p;
1579             }
1580             p1 = m[1]; p2 = m[2]; c = !!m[3];
1581
1582             //Subtract the aligned el's internal xy from the target's offset xy
1583             //plus custom offset to get the aligned el's new offset xy
1584             var a1 = this.getAnchorXY(p1, true);
1585             var a2 = el.getAnchorXY(p2, false);
1586             var x = a2[0] - a1[0] + o[0];
1587             var y = a2[1] - a1[1] + o[1];
1588             if(c){
1589                 //constrain the aligned el to viewport if necessary
1590                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
1591                 // 5px of margin for ie
1592                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
1593
1594                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
1595                 //perpendicular to the vp border, allow the aligned el to slide on that border,
1596                 //otherwise swap the aligned el to the opposite border of the target.
1597                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
1598                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
1599                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t"));
1600                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
1601
1602                var doc = document;
1603                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
1604                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
1605
1606                if((x+w) > dw + scrollX){
1607                     x = swapX ? r.left-w : dw+scrollX-w;
1608                 }
1609                if(x < scrollX){
1610                    x = swapX ? r.right : scrollX;
1611                }
1612                if((y+h) > dh + scrollY){
1613                     y = swapY ? r.top-h : dh+scrollY-h;
1614                 }
1615                if (y < scrollY){
1616                    y = swapY ? r.bottom : scrollY;
1617                }
1618             }
1619             return [x,y];
1620         },
1621
1622         // private
1623         getConstrainToXY : function(){
1624             var os = {top:0, left:0, bottom:0, right: 0};
1625
1626             return function(el, local, offsets, proposedXY){
1627                 el = Roo.get(el);
1628                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
1629
1630                 var vw, vh, vx = 0, vy = 0;
1631                 if(el.dom == document.body || el.dom == document){
1632                     vw = Roo.lib.Dom.getViewWidth();
1633                     vh = Roo.lib.Dom.getViewHeight();
1634                 }else{
1635                     vw = el.dom.clientWidth;
1636                     vh = el.dom.clientHeight;
1637                     if(!local){
1638                         var vxy = el.getXY();
1639                         vx = vxy[0];
1640                         vy = vxy[1];
1641                     }
1642                 }
1643
1644                 var s = el.getScroll();
1645
1646                 vx += offsets.left + s.left;
1647                 vy += offsets.top + s.top;
1648
1649                 vw -= offsets.right;
1650                 vh -= offsets.bottom;
1651
1652                 var vr = vx+vw;
1653                 var vb = vy+vh;
1654
1655                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
1656                 var x = xy[0], y = xy[1];
1657                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
1658
1659                 // only move it if it needs it
1660                 var moved = false;
1661
1662                 // first validate right/bottom
1663                 if((x + w) > vr){
1664                     x = vr - w;
1665                     moved = true;
1666                 }
1667                 if((y + h) > vb){
1668                     y = vb - h;
1669                     moved = true;
1670                 }
1671                 // then make sure top/left isn't negative
1672                 if(x < vx){
1673                     x = vx;
1674                     moved = true;
1675                 }
1676                 if(y < vy){
1677                     y = vy;
1678                     moved = true;
1679                 }
1680                 return moved ? [x, y] : false;
1681             };
1682         }(),
1683
1684         // private
1685         adjustForConstraints : function(xy, parent, offsets){
1686             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
1687         },
1688
1689         /**
1690          * Aligns this element with another element relative to the specified anchor points. If the other element is the
1691          * document it aligns it to the viewport.
1692          * The position parameter is optional, and can be specified in any one of the following formats:
1693          * <ul>
1694          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
1695          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
1696          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
1697          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
1698          *   <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
1699          *       element's anchor point, and the second value is used as the target's anchor point.</li>
1700          * </ul>
1701          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
1702          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
1703          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
1704          * that specified in order to enforce the viewport constraints.
1705          * Following are all of the supported anchor positions:
1706     <pre>
1707     Value  Description
1708     -----  -----------------------------
1709     tl     The top left corner (default)
1710     t      The center of the top edge
1711     tr     The top right corner
1712     l      The center of the left edge
1713     c      In the center of the element
1714     r      The center of the right edge
1715     bl     The bottom left corner
1716     b      The center of the bottom edge
1717     br     The bottom right corner
1718     </pre>
1719     Example Usage:
1720     <pre><code>
1721     // align el to other-el using the default positioning ("tl-bl", non-constrained)
1722     el.alignTo("other-el");
1723
1724     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
1725     el.alignTo("other-el", "tr?");
1726
1727     // align the bottom right corner of el with the center left edge of other-el
1728     el.alignTo("other-el", "br-l?");
1729
1730     // align the center of el with the bottom left corner of other-el and
1731     // adjust the x position by -6 pixels (and the y position by 0)
1732     el.alignTo("other-el", "c-bl", [-6, 0]);
1733     </code></pre>
1734          * @param {String/HTMLElement/Roo.Element} element The element to align to.
1735          * @param {String} position The position to align to.
1736          * @param {Array} offsets (optional) Offset the positioning by [x, y]
1737          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1738          * @return {Roo.Element} this
1739          */
1740         alignTo : function(element, position, offsets, animate){
1741             var xy = this.getAlignToXY(element, position, offsets);
1742             this.setXY(xy, this.preanim(arguments, 3));
1743             return this;
1744         },
1745
1746         /**
1747          * Anchors an element to another element and realigns it when the window is resized.
1748          * @param {String/HTMLElement/Roo.Element} element The element to align to.
1749          * @param {String} position The position to align to.
1750          * @param {Array} offsets (optional) Offset the positioning by [x, y]
1751          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
1752          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
1753          * is a number, it is used as the buffer delay (defaults to 50ms).
1754          * @param {Function} callback The function to call after the animation finishes
1755          * @return {Roo.Element} this
1756          */
1757         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
1758             var action = function(){
1759                 this.alignTo(el, alignment, offsets, animate);
1760                 Roo.callback(callback, this);
1761             };
1762             Roo.EventManager.onWindowResize(action, this);
1763             var tm = typeof monitorScroll;
1764             if(tm != 'undefined'){
1765                 Roo.EventManager.on(window, 'scroll', action, this,
1766                     {buffer: tm == 'number' ? monitorScroll : 50});
1767             }
1768             action.call(this); // align immediately
1769             return this;
1770         },
1771         /**
1772          * Clears any opacity settings from this element. Required in some cases for IE.
1773          * @return {Roo.Element} this
1774          */
1775         clearOpacity : function(){
1776             if (window.ActiveXObject) {
1777                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
1778                     this.dom.style.filter = "";
1779                 }
1780             } else {
1781                 this.dom.style.opacity = "";
1782                 this.dom.style["-moz-opacity"] = "";
1783                 this.dom.style["-khtml-opacity"] = "";
1784             }
1785             return this;
1786         },
1787
1788         /**
1789          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
1790          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1791          * @return {Roo.Element} this
1792          */
1793         hide : function(animate){
1794             this.setVisible(false, this.preanim(arguments, 0));
1795             return this;
1796         },
1797
1798         /**
1799         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
1800         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
1801          * @return {Roo.Element} this
1802          */
1803         show : function(animate){
1804             this.setVisible(true, this.preanim(arguments, 0));
1805             return this;
1806         },
1807
1808         /**
1809          * @private Test if size has a unit, otherwise appends the default
1810          */
1811         addUnits : function(size){
1812             return Roo.Element.addUnits(size, this.defaultUnit);
1813         },
1814
1815         /**
1816          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
1817          * @return {Roo.Element} this
1818          */
1819         beginMeasure : function(){
1820             var el = this.dom;
1821             if(el.offsetWidth || el.offsetHeight){
1822                 return this; // offsets work already
1823             }
1824             var changed = [];
1825             var p = this.dom, b = document.body; // start with this element
1826             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
1827                 var pe = Roo.get(p);
1828                 if(pe.getStyle('display') == 'none'){
1829                     changed.push({el: p, visibility: pe.getStyle("visibility")});
1830                     p.style.visibility = "hidden";
1831                     p.style.display = "block";
1832                 }
1833                 p = p.parentNode;
1834             }
1835             this._measureChanged = changed;
1836             return this;
1837
1838         },
1839
1840         /**
1841          * Restores displays to before beginMeasure was called
1842          * @return {Roo.Element} this
1843          */
1844         endMeasure : function(){
1845             var changed = this._measureChanged;
1846             if(changed){
1847                 for(var i = 0, len = changed.length; i < len; i++) {
1848                     var r = changed[i];
1849                     r.el.style.visibility = r.visibility;
1850                     r.el.style.display = "none";
1851                 }
1852                 this._measureChanged = null;
1853             }
1854             return this;
1855         },
1856
1857         /**
1858         * Update the innerHTML of this element, optionally searching for and processing scripts
1859         * @param {String} html The new HTML
1860         * @param {Boolean} loadScripts (optional) true to look for and process scripts
1861         * @param {Function} callback For async script loading you can be noticed when the update completes
1862         * @return {Roo.Element} this
1863          */
1864         update : function(html, loadScripts, callback){
1865             if(typeof html == "undefined"){
1866                 html = "";
1867             }
1868             if(loadScripts !== true){
1869                 this.dom.innerHTML = html;
1870                 if(typeof callback == "function"){
1871                     callback();
1872                 }
1873                 return this;
1874             }
1875             var id = Roo.id();
1876             var dom = this.dom;
1877
1878             html += '<span id="' + id + '"></span>';
1879
1880             E.onAvailable(id, function(){
1881                 var hd = document.getElementsByTagName("head")[0];
1882                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
1883                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
1884                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
1885
1886                 var match;
1887                 while(match = re.exec(html)){
1888                     var attrs = match[1];
1889                     var srcMatch = attrs ? attrs.match(srcRe) : false;
1890                     if(srcMatch && srcMatch[2]){
1891                        var s = document.createElement("script");
1892                        s.src = srcMatch[2];
1893                        var typeMatch = attrs.match(typeRe);
1894                        if(typeMatch && typeMatch[2]){
1895                            s.type = typeMatch[2];
1896                        }
1897                        hd.appendChild(s);
1898                     }else if(match[2] && match[2].length > 0){
1899                         if(window.execScript) {
1900                            window.execScript(match[2]);
1901                         } else {
1902                             /**
1903                              * eval:var:id
1904                              * eval:var:dom
1905                              * eval:var:html
1906                              * 
1907                              */
1908                            window.eval(match[2]);
1909                         }
1910                     }
1911                 }
1912                 var el = document.getElementById(id);
1913                 if(el){el.parentNode.removeChild(el);}
1914                 if(typeof callback == "function"){
1915                     callback();
1916                 }
1917             });
1918             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
1919             return this;
1920         },
1921
1922         /**
1923          * Direct access to the UpdateManager update() method (takes the same parameters).
1924          * @param {String/Function} url The url for this request or a function to call to get the url
1925          * @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}
1926          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
1927          * @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.
1928          * @return {Roo.Element} this
1929          */
1930         load : function(){
1931             var um = this.getUpdateManager();
1932             um.update.apply(um, arguments);
1933             return this;
1934         },
1935
1936         /**
1937         * Gets this element's UpdateManager
1938         * @return {Roo.UpdateManager} The UpdateManager
1939         */
1940         getUpdateManager : function(){
1941             if(!this.updateManager){
1942                 this.updateManager = new Roo.UpdateManager(this);
1943             }
1944             return this.updateManager;
1945         },
1946
1947         /**
1948          * Disables text selection for this element (normalized across browsers)
1949          * @return {Roo.Element} this
1950          */
1951         unselectable : function(){
1952             this.dom.unselectable = "on";
1953             this.swallowEvent("selectstart", true);
1954             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
1955             this.addClass("x-unselectable");
1956             return this;
1957         },
1958
1959         /**
1960         * Calculates the x, y to center this element on the screen
1961         * @return {Array} The x, y values [x, y]
1962         */
1963         getCenterXY : function(){
1964             return this.getAlignToXY(document, 'c-c');
1965         },
1966
1967         /**
1968         * Centers the Element in either the viewport, or another Element.
1969         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
1970         */
1971         center : function(centerIn){
1972             this.alignTo(centerIn || document, 'c-c');
1973             return this;
1974         },
1975
1976         /**
1977          * Tests various css rules/browsers to determine if this element uses a border box
1978          * @return {Boolean}
1979          */
1980         isBorderBox : function(){
1981             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
1982         },
1983
1984         /**
1985          * Return a box {x, y, width, height} that can be used to set another elements
1986          * size/location to match this element.
1987          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
1988          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
1989          * @return {Object} box An object in the format {x, y, width, height}
1990          */
1991         getBox : function(contentBox, local){
1992             var xy;
1993             if(!local){
1994                 xy = this.getXY();
1995             }else{
1996                 var left = parseInt(this.getStyle("left"), 10) || 0;
1997                 var top = parseInt(this.getStyle("top"), 10) || 0;
1998                 xy = [left, top];
1999             }
2000             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
2001             if(!contentBox){
2002                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
2003             }else{
2004                 var l = this.getBorderWidth("l")+this.getPadding("l");
2005                 var r = this.getBorderWidth("r")+this.getPadding("r");
2006                 var t = this.getBorderWidth("t")+this.getPadding("t");
2007                 var b = this.getBorderWidth("b")+this.getPadding("b");
2008                 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)};
2009             }
2010             bx.right = bx.x + bx.width;
2011             bx.bottom = bx.y + bx.height;
2012             return bx;
2013         },
2014
2015         /**
2016          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
2017          for more information about the sides.
2018          * @param {String} sides
2019          * @return {Number}
2020          */
2021         getFrameWidth : function(sides, onlyContentBox){
2022             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
2023         },
2024
2025         /**
2026          * 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.
2027          * @param {Object} box The box to fill {x, y, width, height}
2028          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
2029          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
2030          * @return {Roo.Element} this
2031          */
2032         setBox : function(box, adjust, animate){
2033             var w = box.width, h = box.height;
2034             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
2035                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
2036                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
2037             }
2038             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
2039             return this;
2040         },
2041
2042         /**
2043          * Forces the browser to repaint this element
2044          * @return {Roo.Element} this
2045          */
2046          repaint : function(){
2047             var dom = this.dom;
2048             this.addClass("x-repaint");
2049             setTimeout(function(){
2050                 Roo.get(dom).removeClass("x-repaint");
2051             }, 1);
2052             return this;
2053         },
2054
2055         /**
2056          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
2057          * then it returns the calculated width of the sides (see getPadding)
2058          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
2059          * @return {Object/Number}
2060          */
2061         getMargins : function(side){
2062             if(!side){
2063                 return {
2064                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
2065                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
2066                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
2067                     right: parseInt(this.getStyle("margin-right"), 10) || 0
2068                 };
2069             }else{
2070                 return this.addStyles(side, El.margins);
2071              }
2072         },
2073
2074         // private
2075         addStyles : function(sides, styles){
2076             var val = 0, v, w;
2077             for(var i = 0, len = sides.length; i < len; i++){
2078                 v = this.getStyle(styles[sides.charAt(i)]);
2079                 if(v){
2080                      w = parseInt(v, 10);
2081                      if(w){ val += w; }
2082                 }
2083             }
2084             return val;
2085         },
2086
2087         /**
2088          * Creates a proxy element of this element
2089          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
2090          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
2091          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
2092          * @return {Roo.Element} The new proxy element
2093          */
2094         createProxy : function(config, renderTo, matchBox){
2095             if(renderTo){
2096                 renderTo = Roo.getDom(renderTo);
2097             }else{
2098                 renderTo = document.body;
2099             }
2100             config = typeof config == "object" ?
2101                 config : {tag : "div", cls: config};
2102             var proxy = Roo.DomHelper.append(renderTo, config, true);
2103             if(matchBox){
2104                proxy.setBox(this.getBox());
2105             }
2106             return proxy;
2107         },
2108
2109         /**
2110          * Puts a mask over this element to disable user interaction. Requires core.css.
2111          * This method can only be applied to elements which accept child nodes.
2112          * @param {String} msg (optional) A message to display in the mask
2113          * @param {String} msgCls (optional) A css class to apply to the msg element
2114          * @return {Element} The mask  element
2115          */
2116         mask : function(msg, msgCls)
2117         {
2118             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
2119                 this.setStyle("position", "relative");
2120             }
2121             if(!this._mask){
2122                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
2123             }
2124             this.addClass("x-masked");
2125             this._mask.setDisplayed(true);
2126             
2127             // we wander
2128             var z = 0;
2129             var dom = this.dom;
2130             while (dom && dom.style) {
2131                 if (!isNaN(parseInt(dom.style.zIndex))) {
2132                     z = Math.max(z, parseInt(dom.style.zIndex));
2133                 }
2134                 dom = dom.parentNode;
2135             }
2136             // if we are masking the body - then it hides everything..
2137             if (this.dom == document.body) {
2138                 z = 1000000;
2139                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
2140                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
2141             }
2142            
2143             if(typeof msg == 'string'){
2144                 if(!this._maskMsg){
2145                     this._maskMsg = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask-msg", cn:{tag:'div'}}, true);
2146                 }
2147                 var mm = this._maskMsg;
2148                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
2149                 if (mm.dom.firstChild) { // weird IE issue?
2150                     mm.dom.firstChild.innerHTML = msg;
2151                 }
2152                 mm.setDisplayed(true);
2153                 mm.center(this);
2154                 mm.setStyle('z-index', z + 102);
2155             }
2156             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
2157                 this._mask.setHeight(this.getHeight());
2158             }
2159             this._mask.setStyle('z-index', z + 100);
2160             
2161             return this._mask;
2162         },
2163
2164         /**
2165          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
2166          * it is cached for reuse.
2167          */
2168         unmask : function(removeEl){
2169             if(this._mask){
2170                 if(removeEl === true){
2171                     this._mask.remove();
2172                     delete this._mask;
2173                     if(this._maskMsg){
2174                         this._maskMsg.remove();
2175                         delete this._maskMsg;
2176                     }
2177                 }else{
2178                     this._mask.setDisplayed(false);
2179                     if(this._maskMsg){
2180                         this._maskMsg.setDisplayed(false);
2181                     }
2182                 }
2183             }
2184             this.removeClass("x-masked");
2185         },
2186
2187         /**
2188          * Returns true if this element is masked
2189          * @return {Boolean}
2190          */
2191         isMasked : function(){
2192             return this._mask && this._mask.isVisible();
2193         },
2194
2195         /**
2196          * Creates an iframe shim for this element to keep selects and other windowed objects from
2197          * showing through.
2198          * @return {Roo.Element} The new shim element
2199          */
2200         createShim : function(){
2201             var el = document.createElement('iframe');
2202             el.frameBorder = 'no';
2203             el.className = 'roo-shim';
2204             if(Roo.isIE && Roo.isSecure){
2205                 el.src = Roo.SSL_SECURE_URL;
2206             }
2207             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
2208             shim.autoBoxAdjust = false;
2209             return shim;
2210         },
2211
2212         /**
2213          * Removes this element from the DOM and deletes it from the cache
2214          */
2215         remove : function(){
2216             if(this.dom.parentNode){
2217                 this.dom.parentNode.removeChild(this.dom);
2218             }
2219             delete El.cache[this.dom.id];
2220         },
2221
2222         /**
2223          * Sets up event handlers to add and remove a css class when the mouse is over this element
2224          * @param {String} className
2225          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
2226          * mouseout events for children elements
2227          * @return {Roo.Element} this
2228          */
2229         addClassOnOver : function(className, preventFlicker){
2230             this.on("mouseover", function(){
2231                 Roo.fly(this, '_internal').addClass(className);
2232             }, this.dom);
2233             var removeFn = function(e){
2234                 if(preventFlicker !== true || !e.within(this, true)){
2235                     Roo.fly(this, '_internal').removeClass(className);
2236                 }
2237             };
2238             this.on("mouseout", removeFn, this.dom);
2239             return this;
2240         },
2241
2242         /**
2243          * Sets up event handlers to add and remove a css class when this element has the focus
2244          * @param {String} className
2245          * @return {Roo.Element} this
2246          */
2247         addClassOnFocus : function(className){
2248             this.on("focus", function(){
2249                 Roo.fly(this, '_internal').addClass(className);
2250             }, this.dom);
2251             this.on("blur", function(){
2252                 Roo.fly(this, '_internal').removeClass(className);
2253             }, this.dom);
2254             return this;
2255         },
2256         /**
2257          * 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)
2258          * @param {String} className
2259          * @return {Roo.Element} this
2260          */
2261         addClassOnClick : function(className){
2262             var dom = this.dom;
2263             this.on("mousedown", function(){
2264                 Roo.fly(dom, '_internal').addClass(className);
2265                 var d = Roo.get(document);
2266                 var fn = function(){
2267                     Roo.fly(dom, '_internal').removeClass(className);
2268                     d.removeListener("mouseup", fn);
2269                 };
2270                 d.on("mouseup", fn);
2271             });
2272             return this;
2273         },
2274
2275         /**
2276          * Stops the specified event from bubbling and optionally prevents the default action
2277          * @param {String} eventName
2278          * @param {Boolean} preventDefault (optional) true to prevent the default action too
2279          * @return {Roo.Element} this
2280          */
2281         swallowEvent : function(eventName, preventDefault){
2282             var fn = function(e){
2283                 e.stopPropagation();
2284                 if(preventDefault){
2285                     e.preventDefault();
2286                 }
2287             };
2288             if(eventName instanceof Array){
2289                 for(var i = 0, len = eventName.length; i < len; i++){
2290                      this.on(eventName[i], fn);
2291                 }
2292                 return this;
2293             }
2294             this.on(eventName, fn);
2295             return this;
2296         },
2297
2298         /**
2299          * @private
2300          */
2301       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
2302
2303         /**
2304          * Sizes this element to its parent element's dimensions performing
2305          * neccessary box adjustments.
2306          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
2307          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
2308          * @return {Roo.Element} this
2309          */
2310         fitToParent : function(monitorResize, targetParent) {
2311           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
2312           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
2313           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
2314             return;
2315           }
2316           var p = Roo.get(targetParent || this.dom.parentNode);
2317           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
2318           if (monitorResize === true) {
2319             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
2320             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
2321           }
2322           return this;
2323         },
2324
2325         /**
2326          * Gets the next sibling, skipping text nodes
2327          * @return {HTMLElement} The next sibling or null
2328          */
2329         getNextSibling : function(){
2330             var n = this.dom.nextSibling;
2331             while(n && n.nodeType != 1){
2332                 n = n.nextSibling;
2333             }
2334             return n;
2335         },
2336
2337         /**
2338          * Gets the previous sibling, skipping text nodes
2339          * @return {HTMLElement} The previous sibling or null
2340          */
2341         getPrevSibling : function(){
2342             var n = this.dom.previousSibling;
2343             while(n && n.nodeType != 1){
2344                 n = n.previousSibling;
2345             }
2346             return n;
2347         },
2348
2349
2350         /**
2351          * Appends the passed element(s) to this element
2352          * @param {String/HTMLElement/Array/Element/CompositeElement} el
2353          * @return {Roo.Element} this
2354          */
2355         appendChild: function(el){
2356             el = Roo.get(el);
2357             el.appendTo(this);
2358             return this;
2359         },
2360
2361         /**
2362          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
2363          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
2364          * automatically generated with the specified attributes.
2365          * @param {HTMLElement} insertBefore (optional) a child element of this element
2366          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
2367          * @return {Roo.Element} The new child element
2368          */
2369         createChild: function(config, insertBefore, returnDom){
2370             config = config || {tag:'div'};
2371             if(insertBefore){
2372                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
2373             }
2374             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
2375         },
2376
2377         /**
2378          * Appends this element to the passed element
2379          * @param {String/HTMLElement/Element} el The new parent element
2380          * @return {Roo.Element} this
2381          */
2382         appendTo: function(el){
2383             el = Roo.getDom(el);
2384             el.appendChild(this.dom);
2385             return this;
2386         },
2387
2388         /**
2389          * Inserts this element before the passed element in the DOM
2390          * @param {String/HTMLElement/Element} el The element to insert before
2391          * @return {Roo.Element} this
2392          */
2393         insertBefore: function(el){
2394             el = Roo.getDom(el);
2395             el.parentNode.insertBefore(this.dom, el);
2396             return this;
2397         },
2398
2399         /**
2400          * Inserts this element after the passed element in the DOM
2401          * @param {String/HTMLElement/Element} el The element to insert after
2402          * @return {Roo.Element} this
2403          */
2404         insertAfter: function(el){
2405             el = Roo.getDom(el);
2406             el.parentNode.insertBefore(this.dom, el.nextSibling);
2407             return this;
2408         },
2409
2410         /**
2411          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
2412          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
2413          * @return {Roo.Element} The new child
2414          */
2415         insertFirst: function(el, returnDom){
2416             el = el || {};
2417             if(typeof el == 'object' && !el.nodeType){ // dh config
2418                 return this.createChild(el, this.dom.firstChild, returnDom);
2419             }else{
2420                 el = Roo.getDom(el);
2421                 this.dom.insertBefore(el, this.dom.firstChild);
2422                 return !returnDom ? Roo.get(el) : el;
2423             }
2424         },
2425
2426         /**
2427          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
2428          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
2429          * @param {String} where (optional) 'before' or 'after' defaults to before
2430          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
2431          * @return {Roo.Element} the inserted Element
2432          */
2433         insertSibling: function(el, where, returnDom){
2434             where = where ? where.toLowerCase() : 'before';
2435             el = el || {};
2436             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
2437
2438             if(typeof el == 'object' && !el.nodeType){ // dh config
2439                 if(where == 'after' && !this.dom.nextSibling){
2440                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
2441                 }else{
2442                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
2443                 }
2444
2445             }else{
2446                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
2447                             where == 'before' ? this.dom : this.dom.nextSibling);
2448                 if(!returnDom){
2449                     rt = Roo.get(rt);
2450                 }
2451             }
2452             return rt;
2453         },
2454
2455         /**
2456          * Creates and wraps this element with another element
2457          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
2458          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
2459          * @return {HTMLElement/Element} The newly created wrapper element
2460          */
2461         wrap: function(config, returnDom){
2462             if(!config){
2463                 config = {tag: "div"};
2464             }
2465             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
2466             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
2467             return newEl;
2468         },
2469
2470         /**
2471          * Replaces the passed element with this element
2472          * @param {String/HTMLElement/Element} el The element to replace
2473          * @return {Roo.Element} this
2474          */
2475         replace: function(el){
2476             el = Roo.get(el);
2477             this.insertBefore(el);
2478             el.remove();
2479             return this;
2480         },
2481
2482         /**
2483          * Inserts an html fragment into this element
2484          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
2485          * @param {String} html The HTML fragment
2486          * @param {Boolean} returnEl True to return an Roo.Element
2487          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
2488          */
2489         insertHtml : function(where, html, returnEl){
2490             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
2491             return returnEl ? Roo.get(el) : el;
2492         },
2493
2494         /**
2495          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
2496          * @param {Object} o The object with the attributes
2497          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
2498          * @return {Roo.Element} this
2499          */
2500         set : function(o, useSet){
2501             var el = this.dom;
2502             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
2503             for(var attr in o){
2504                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
2505                 if(attr=="cls"){
2506                     el.className = o["cls"];
2507                 }else{
2508                     if(useSet) {
2509                         el.setAttribute(attr, o[attr]);
2510                     } else {
2511                         el[attr] = o[attr];
2512                     }
2513                 }
2514             }
2515             if(o.style){
2516                 Roo.DomHelper.applyStyles(el, o.style);
2517             }
2518             return this;
2519         },
2520
2521         /**
2522          * Convenience method for constructing a KeyMap
2523          * @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:
2524          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
2525          * @param {Function} fn The function to call
2526          * @param {Object} scope (optional) The scope of the function
2527          * @return {Roo.KeyMap} The KeyMap created
2528          */
2529         addKeyListener : function(key, fn, scope){
2530             var config;
2531             if(typeof key != "object" || key instanceof Array){
2532                 config = {
2533                     key: key,
2534                     fn: fn,
2535                     scope: scope
2536                 };
2537             }else{
2538                 config = {
2539                     key : key.key,
2540                     shift : key.shift,
2541                     ctrl : key.ctrl,
2542                     alt : key.alt,
2543                     fn: fn,
2544                     scope: scope
2545                 };
2546             }
2547             return new Roo.KeyMap(this, config);
2548         },
2549
2550         /**
2551          * Creates a KeyMap for this element
2552          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
2553          * @return {Roo.KeyMap} The KeyMap created
2554          */
2555         addKeyMap : function(config){
2556             return new Roo.KeyMap(this, config);
2557         },
2558
2559         /**
2560          * Returns true if this element is scrollable.
2561          * @return {Boolean}
2562          */
2563          isScrollable : function(){
2564             var dom = this.dom;
2565             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
2566         },
2567
2568         /**
2569          * 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().
2570          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
2571          * @param {Number} value The new scroll value
2572          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
2573          * @return {Element} this
2574          */
2575
2576         scrollTo : function(side, value, animate){
2577             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
2578             if(!animate || !A){
2579                 this.dom[prop] = value;
2580             }else{
2581                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
2582                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
2583             }
2584             return this;
2585         },
2586
2587         /**
2588          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
2589          * within this element's scrollable range.
2590          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
2591          * @param {Number} distance How far to scroll the element in pixels
2592          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
2593          * @return {Boolean} Returns true if a scroll was triggered or false if the element
2594          * was scrolled as far as it could go.
2595          */
2596          scroll : function(direction, distance, animate){
2597              if(!this.isScrollable()){
2598                  return;
2599              }
2600              var el = this.dom;
2601              var l = el.scrollLeft, t = el.scrollTop;
2602              var w = el.scrollWidth, h = el.scrollHeight;
2603              var cw = el.clientWidth, ch = el.clientHeight;
2604              direction = direction.toLowerCase();
2605              var scrolled = false;
2606              var a = this.preanim(arguments, 2);
2607              switch(direction){
2608                  case "l":
2609                  case "left":
2610                      if(w - l > cw){
2611                          var v = Math.min(l + distance, w-cw);
2612                          this.scrollTo("left", v, a);
2613                          scrolled = true;
2614                      }
2615                      break;
2616                 case "r":
2617                 case "right":
2618                      if(l > 0){
2619                          var v = Math.max(l - distance, 0);
2620                          this.scrollTo("left", v, a);
2621                          scrolled = true;
2622                      }
2623                      break;
2624                 case "t":
2625                 case "top":
2626                 case "up":
2627                      if(t > 0){
2628                          var v = Math.max(t - distance, 0);
2629                          this.scrollTo("top", v, a);
2630                          scrolled = true;
2631                      }
2632                      break;
2633                 case "b":
2634                 case "bottom":
2635                 case "down":
2636                      if(h - t > ch){
2637                          var v = Math.min(t + distance, h-ch);
2638                          this.scrollTo("top", v, a);
2639                          scrolled = true;
2640                      }
2641                      break;
2642              }
2643              return scrolled;
2644         },
2645
2646         /**
2647          * Translates the passed page coordinates into left/top css values for this element
2648          * @param {Number/Array} x The page x or an array containing [x, y]
2649          * @param {Number} y The page y
2650          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
2651          */
2652         translatePoints : function(x, y){
2653             if(typeof x == 'object' || x instanceof Array){
2654                 y = x[1]; x = x[0];
2655             }
2656             var p = this.getStyle('position');
2657             var o = this.getXY();
2658
2659             var l = parseInt(this.getStyle('left'), 10);
2660             var t = parseInt(this.getStyle('top'), 10);
2661
2662             if(isNaN(l)){
2663                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
2664             }
2665             if(isNaN(t)){
2666                 t = (p == "relative") ? 0 : this.dom.offsetTop;
2667             }
2668
2669             return {left: (x - o[0] + l), top: (y - o[1] + t)};
2670         },
2671
2672         /**
2673          * Returns the current scroll position of the element.
2674          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
2675          */
2676         getScroll : function(){
2677             var d = this.dom, doc = document;
2678             if(d == doc || d == doc.body){
2679                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
2680                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
2681                 return {left: l, top: t};
2682             }else{
2683                 return {left: d.scrollLeft, top: d.scrollTop};
2684             }
2685         },
2686
2687         /**
2688          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
2689          * are convert to standard 6 digit hex color.
2690          * @param {String} attr The css attribute
2691          * @param {String} defaultValue The default value to use when a valid color isn't found
2692          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
2693          * YUI color anims.
2694          */
2695         getColor : function(attr, defaultValue, prefix){
2696             var v = this.getStyle(attr);
2697             if(!v || v == "transparent" || v == "inherit") {
2698                 return defaultValue;
2699             }
2700             var color = typeof prefix == "undefined" ? "#" : prefix;
2701             if(v.substr(0, 4) == "rgb("){
2702                 var rvs = v.slice(4, v.length -1).split(",");
2703                 for(var i = 0; i < 3; i++){
2704                     var h = parseInt(rvs[i]).toString(16);
2705                     if(h < 16){
2706                         h = "0" + h;
2707                     }
2708                     color += h;
2709                 }
2710             } else {
2711                 if(v.substr(0, 1) == "#"){
2712                     if(v.length == 4) {
2713                         for(var i = 1; i < 4; i++){
2714                             var c = v.charAt(i);
2715                             color +=  c + c;
2716                         }
2717                     }else if(v.length == 7){
2718                         color += v.substr(1);
2719                     }
2720                 }
2721             }
2722             return(color.length > 5 ? color.toLowerCase() : defaultValue);
2723         },
2724
2725         /**
2726          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
2727          * gradient background, rounded corners and a 4-way shadow.
2728          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
2729          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
2730          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
2731          * @return {Roo.Element} this
2732          */
2733         boxWrap : function(cls){
2734             cls = cls || 'x-box';
2735             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
2736             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
2737             return el;
2738         },
2739
2740         /**
2741          * Returns the value of a namespaced attribute from the element's underlying DOM node.
2742          * @param {String} namespace The namespace in which to look for the attribute
2743          * @param {String} name The attribute name
2744          * @return {String} The attribute value
2745          */
2746         getAttributeNS : Roo.isIE ? function(ns, name){
2747             var d = this.dom;
2748             var type = typeof d[ns+":"+name];
2749             if(type != 'undefined' && type != 'unknown'){
2750                 return d[ns+":"+name];
2751             }
2752             return d[name];
2753         } : function(ns, name){
2754             var d = this.dom;
2755             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
2756         },
2757         
2758         
2759         /**
2760          * Sets or Returns the value the dom attribute value
2761          * @param {String|Object} name The attribute name (or object to set multiple attributes)
2762          * @param {String} value (optional) The value to set the attribute to
2763          * @return {String} The attribute value
2764          */
2765         attr : function(name){
2766             if (arguments.length > 1) {
2767                 this.dom.setAttribute(name, arguments[1]);
2768                 return arguments[1];
2769             }
2770             if (typeof(name) == 'object') {
2771                 for(var i in name) {
2772                     this.attr(i, name[i]);
2773                 }
2774                 return name;
2775             }
2776             
2777             
2778             if (!this.dom.hasAttribute(name)) {
2779                 return undefined;
2780             }
2781             return this.dom.getAttribute(name);
2782         }
2783         
2784         
2785         
2786     };
2787
2788     var ep = El.prototype;
2789
2790     /**
2791      * Appends an event handler (Shorthand for addListener)
2792      * @param {String}   eventName     The type of event to append
2793      * @param {Function} fn        The method the event invokes
2794      * @param {Object} scope       (optional) The scope (this object) of the fn
2795      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
2796      * @method
2797      */
2798     ep.on = ep.addListener;
2799         // backwards compat
2800     ep.mon = ep.addListener;
2801
2802     /**
2803      * Removes an event handler from this element (shorthand for removeListener)
2804      * @param {String} eventName the type of event to remove
2805      * @param {Function} fn the method the event invokes
2806      * @return {Roo.Element} this
2807      * @method
2808      */
2809     ep.un = ep.removeListener;
2810
2811     /**
2812      * true to automatically adjust width and height settings for box-model issues (default to true)
2813      */
2814     ep.autoBoxAdjust = true;
2815
2816     // private
2817     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
2818
2819     // private
2820     El.addUnits = function(v, defaultUnit){
2821         if(v === "" || v == "auto"){
2822             return v;
2823         }
2824         if(v === undefined){
2825             return '';
2826         }
2827         if(typeof v == "number" || !El.unitPattern.test(v)){
2828             return v + (defaultUnit || 'px');
2829         }
2830         return v;
2831     };
2832
2833     // special markup used throughout Roo when box wrapping elements
2834     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>';
2835     /**
2836      * Visibility mode constant - Use visibility to hide element
2837      * @static
2838      * @type Number
2839      */
2840     El.VISIBILITY = 1;
2841     /**
2842      * Visibility mode constant - Use display to hide element
2843      * @static
2844      * @type Number
2845      */
2846     El.DISPLAY = 2;
2847
2848     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
2849     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
2850     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
2851
2852
2853
2854     /**
2855      * @private
2856      */
2857     El.cache = {};
2858
2859     var docEl;
2860
2861     /**
2862      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
2863      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
2864      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
2865      * @return {Element} The Element object
2866      * @static
2867      */
2868     El.get = function(el){
2869         var ex, elm, id;
2870         if(!el){ return null; }
2871         if(typeof el == "string"){ // element id
2872             if(!(elm = document.getElementById(el))){
2873                 return null;
2874             }
2875             if(ex = El.cache[el]){
2876                 ex.dom = elm;
2877             }else{
2878                 ex = El.cache[el] = new El(elm);
2879             }
2880             return ex;
2881         }else if(el.tagName){ // dom element
2882             if(!(id = el.id)){
2883                 id = Roo.id(el);
2884             }
2885             if(ex = El.cache[id]){
2886                 ex.dom = el;
2887             }else{
2888                 ex = El.cache[id] = new El(el);
2889             }
2890             return ex;
2891         }else if(el instanceof El){
2892             if(el != docEl){
2893                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
2894                                                               // catch case where it hasn't been appended
2895                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
2896             }
2897             return el;
2898         }else if(el.isComposite){
2899             return el;
2900         }else if(el instanceof Array){
2901             return El.select(el);
2902         }else if(el == document){
2903             // create a bogus element object representing the document object
2904             if(!docEl){
2905                 var f = function(){};
2906                 f.prototype = El.prototype;
2907                 docEl = new f();
2908                 docEl.dom = document;
2909             }
2910             return docEl;
2911         }
2912         return null;
2913     };
2914
2915     // private
2916     El.uncache = function(el){
2917         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
2918             if(a[i]){
2919                 delete El.cache[a[i].id || a[i]];
2920             }
2921         }
2922     };
2923
2924     // private
2925     // Garbage collection - uncache elements/purge listeners on orphaned elements
2926     // so we don't hold a reference and cause the browser to retain them
2927     El.garbageCollect = function(){
2928         if(!Roo.enableGarbageCollector){
2929             clearInterval(El.collectorThread);
2930             return;
2931         }
2932         for(var eid in El.cache){
2933             var el = El.cache[eid], d = el.dom;
2934             // -------------------------------------------------------
2935             // Determining what is garbage:
2936             // -------------------------------------------------------
2937             // !d
2938             // dom node is null, definitely garbage
2939             // -------------------------------------------------------
2940             // !d.parentNode
2941             // no parentNode == direct orphan, definitely garbage
2942             // -------------------------------------------------------
2943             // !d.offsetParent && !document.getElementById(eid)
2944             // display none elements have no offsetParent so we will
2945             // also try to look it up by it's id. However, check
2946             // offsetParent first so we don't do unneeded lookups.
2947             // This enables collection of elements that are not orphans
2948             // directly, but somewhere up the line they have an orphan
2949             // parent.
2950             // -------------------------------------------------------
2951             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
2952                 delete El.cache[eid];
2953                 if(d && Roo.enableListenerCollection){
2954                     E.purgeElement(d);
2955                 }
2956             }
2957         }
2958     }
2959     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
2960
2961
2962     // dom is optional
2963     El.Flyweight = function(dom){
2964         this.dom = dom;
2965     };
2966     El.Flyweight.prototype = El.prototype;
2967
2968     El._flyweights = {};
2969     /**
2970      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
2971      * the dom node can be overwritten by other code.
2972      * @param {String/HTMLElement} el The dom node or id
2973      * @param {String} named (optional) Allows for creation of named reusable flyweights to
2974      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
2975      * @static
2976      * @return {Element} The shared Element object
2977      */
2978     El.fly = function(el, named){
2979         named = named || '_global';
2980         el = Roo.getDom(el);
2981         if(!el){
2982             return null;
2983         }
2984         if(!El._flyweights[named]){
2985             El._flyweights[named] = new El.Flyweight();
2986         }
2987         El._flyweights[named].dom = el;
2988         return El._flyweights[named];
2989     };
2990
2991     /**
2992      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
2993      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
2994      * Shorthand of {@link Roo.Element#get}
2995      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
2996      * @return {Element} The Element object
2997      * @member Roo
2998      * @method get
2999      */
3000     Roo.get = El.get;
3001     /**
3002      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
3003      * the dom node can be overwritten by other code.
3004      * Shorthand of {@link Roo.Element#fly}
3005      * @param {String/HTMLElement} el The dom node or id
3006      * @param {String} named (optional) Allows for creation of named reusable flyweights to
3007      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
3008      * @static
3009      * @return {Element} The shared Element object
3010      * @member Roo
3011      * @method fly
3012      */
3013     Roo.fly = El.fly;
3014
3015     // speedy lookup for elements never to box adjust
3016     var noBoxAdjust = Roo.isStrict ? {
3017         select:1
3018     } : {
3019         input:1, select:1, textarea:1
3020     };
3021     if(Roo.isIE || Roo.isGecko){
3022         noBoxAdjust['button'] = 1;
3023     }
3024
3025
3026     Roo.EventManager.on(window, 'unload', function(){
3027         delete El.cache;
3028         delete El._flyweights;
3029     });
3030 })();
3031
3032
3033
3034
3035 if(Roo.DomQuery){
3036     Roo.Element.selectorFunction = Roo.DomQuery.select;
3037 }
3038
3039 Roo.Element.select = function(selector, unique, root){
3040     var els;
3041     if(typeof selector == "string"){
3042         els = Roo.Element.selectorFunction(selector, root);
3043     }else if(selector.length !== undefined){
3044         els = selector;
3045     }else{
3046         throw "Invalid selector";
3047     }
3048     if(unique === true){
3049         return new Roo.CompositeElement(els);
3050     }else{
3051         return new Roo.CompositeElementLite(els);
3052     }
3053 };
3054 /**
3055  * Selects elements based on the passed CSS selector to enable working on them as 1.
3056  * @param {String/Array} selector The CSS selector or an array of elements
3057  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
3058  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
3059  * @return {CompositeElementLite/CompositeElement}
3060  * @member Roo
3061  * @method select
3062  */
3063 Roo.select = Roo.Element.select;
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077