e6d45977a1b66fddd5b16bbff26af86019624255
[roojs1] / docs / symbols / Roo.Element.json
1 {
2   "name" : "Roo.Element",
3   "augments" : [
4   ],
5   "desc" : "Represents an Element in the DOM.<br><br>\nUsage:<br>\n<pre><code>\nvar el = Roo.get(\"my-div\");\n\n// or with getEl\nvar el = getEl(\"my-div\");\n\n// or with a DOM element\nvar el = Roo.get(myDivElement);\n</code></pre>\nUsing Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object\neach call instead of constructing a new one.<br><br>\n<b>Animations</b><br />\nMany of the functions for manipulating an element have an optional \"animate\" parameter. The animate parameter\nshould either be a boolean (true) or an object literal with animation options. The animation options are:\n<pre>\nOption    Default   Description\n--------- --------  ---------------------------------------------\nduration  .35       The duration of the animation in seconds\neasing    easeOut   The YUI easing method\ncallback  none      A function to execute when the anim completes\nscope     this      The scope (this) of the callback function\n</pre>\nAlso, the Anim object being used for the animation will be set on your options object as \"anim\", which allows you to stop or\nmanipulate the animation. Here's an example:\n<pre><code>\nvar el = Roo.get(\"my-div\");\n\n// no animation\nel.setWidth(100);\n\n// default animation\nel.setWidth(100, true);\n\n// animation with some options set\nel.setWidth(100, {\n    duration: 1,\n    callback: this.foo,\n    scope: this\n});\n\n// using the \"anim\" property to get the Anim object\nvar opt = {\n    duration: 1,\n    callback: this.foo,\n    scope: this\n};\nel.setWidth(100, opt);\n...\nif(opt.anim.isAnimated()){\n    opt.anim.stop();\n}\n</code></pre>\n<b> Composite (Collections of) Elements</b><br />\nFor working with collections of Elements, see <a href=\"Roo.CompositeElement.html\">Roo.CompositeElement</a>",
6   "isSingleton" : false,
7   "isStatic" : false,
8   "isBuiltin" : false,
9   "memberOf" : "Element",
10   "example" : "",
11   "deprecated" : "",
12   "since" : "",
13   "see" : "",
14   "params" : [
15     {
16       "name" : "element",
17       "type" : "String/HTMLElement",
18       "desc" : "",
19       "isOptional" : false
20     },
21     {
22       "name" : "forceNew",
23       "type" : "Boolean",
24       "desc" : "(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).",
25       "isOptional" : false
26     }
27   ],
28   "returns" : [
29   ],
30   "config" : [
31   ],
32   "methods" : [
33     {
34       "name" : "getCenterXY",
35       "desc" : "Calculates the x, y to center this element on the screen",
36       "isStatic" : false,
37       "isConstructor" : false,
38       "isPrivate" : false,
39       "memberOf" : "Roo.Element",
40       "example" : "",
41       "deprecated" : "",
42       "since" : "",
43       "see" : "",
44       "params" : [
45       ],
46       "returns" : [
47         {
48           "name" : "",
49           "type" : "Array",
50           "desc" : "The x, y values [x, y]"
51         }
52       ]
53     },
54     {
55       "name" : "getScroll",
56       "desc" : "Returns the current scroll position of the element.",
57       "isStatic" : false,
58       "isConstructor" : false,
59       "isPrivate" : false,
60       "memberOf" : "Roo.Element",
61       "example" : "",
62       "deprecated" : "",
63       "since" : "",
64       "see" : "",
65       "params" : [
66       ],
67       "returns" : [
68         {
69           "name" : "",
70           "type" : "Object",
71           "desc" : "An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}"
72         }
73       ]
74     },
75     {
76       "name" : "createShim",
77       "desc" : "Creates an iframe shim for this element to keep selects and other windowed objects from\nshowing through.",
78       "isStatic" : false,
79       "isConstructor" : false,
80       "isPrivate" : false,
81       "memberOf" : "Roo.Element",
82       "example" : "",
83       "deprecated" : "",
84       "since" : "",
85       "see" : "",
86       "params" : [
87       ],
88       "returns" : [
89         {
90           "name" : "",
91           "type" : "Roo.Element",
92           "desc" : "The new shim element"
93         }
94       ]
95     },
96     {
97       "name" : "scrollTo",
98       "desc" : "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().",
99       "isStatic" : false,
100       "isConstructor" : false,
101       "isPrivate" : false,
102       "memberOf" : "Roo.Element",
103       "example" : "",
104       "deprecated" : "",
105       "since" : "",
106       "see" : "",
107       "params" : [
108         {
109           "name" : "side",
110           "type" : "String",
111           "desc" : "Either \"left\" for scrollLeft values or \"top\" for scrollTop values.",
112           "isOptional" : false
113         },
114         {
115           "name" : "value",
116           "type" : "Number",
117           "desc" : "The new scroll value",
118           "isOptional" : false
119         },
120         {
121           "name" : "animate",
122           "type" : "Boolean/Object",
123           "desc" : "(optional) true for the default animation or a standard Element animation config object",
124           "isOptional" : false
125         }
126       ],
127       "returns" : [
128         {
129           "name" : "",
130           "type" : "Element",
131           "desc" : "this"
132         }
133       ]
134     },
135     {
136       "name" : "removeAllListeners",
137       "desc" : "Removes all previous added listeners from this element",
138       "isStatic" : false,
139       "isConstructor" : false,
140       "isPrivate" : false,
141       "memberOf" : "Roo.Element",
142       "example" : "",
143       "deprecated" : "",
144       "since" : "",
145       "see" : "",
146       "params" : [
147       ],
148       "returns" : [
149         {
150           "name" : "",
151           "type" : "Roo.Element",
152           "desc" : "this"
153         }
154       ]
155     },
156     {
157       "name" : "setStyle",
158       "desc" : "Wrapper for setting style properties, also takes single object parameter of multiple styles.",
159       "isStatic" : false,
160       "isConstructor" : false,
161       "isPrivate" : false,
162       "memberOf" : "Roo.Element",
163       "example" : "",
164       "deprecated" : "",
165       "since" : "",
166       "see" : "",
167       "params" : [
168         {
169           "name" : "property",
170           "type" : "String/Object",
171           "desc" : "The style property to be set, or an object of multiple styles.",
172           "isOptional" : false
173         },
174         {
175           "name" : "value",
176           "type" : "String",
177           "desc" : "(optional) The value to apply to the given property, or null if an object was passed.",
178           "isOptional" : false
179         }
180       ],
181       "returns" : [
182         {
183           "name" : "",
184           "type" : "Roo.Element",
185           "desc" : "this"
186         }
187       ]
188     },
189     {
190       "name" : "on",
191       "desc" : "Appends an event handler (Shorthand for addListener)",
192       "isStatic" : false,
193       "isConstructor" : false,
194       "isPrivate" : false,
195       "memberOf" : "Roo.Element",
196       "example" : "",
197       "deprecated" : "",
198       "since" : "",
199       "see" : "",
200       "params" : [
201         {
202           "name" : "eventName",
203           "type" : "String",
204           "desc" : "The type of event to append",
205           "isOptional" : false
206         },
207         {
208           "name" : "fn",
209           "type" : "Function",
210           "desc" : "The method the event invokes",
211           "isOptional" : false
212         },
213         {
214           "name" : "scope",
215           "type" : "Object",
216           "desc" : "(optional) The scope (this object) of the fn",
217           "isOptional" : false
218         },
219         {
220           "name" : "options",
221           "type" : "Object",
222           "desc" : "(optional)An object with standard {@link Roo.EventManager#addListener} options",
223           "isOptional" : false
224         }
225       ],
226       "returns" : [
227       ]
228     },
229     {
230       "name" : "addClassOnClick",
231       "desc" : "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)",
232       "isStatic" : false,
233       "isConstructor" : false,
234       "isPrivate" : false,
235       "memberOf" : "Roo.Element",
236       "example" : "",
237       "deprecated" : "",
238       "since" : "",
239       "see" : "",
240       "params" : [
241         {
242           "name" : "className",
243           "type" : "String",
244           "desc" : "",
245           "isOptional" : false
246         }
247       ],
248       "returns" : [
249         {
250           "name" : "",
251           "type" : "Roo.Element",
252           "desc" : "this"
253         }
254       ]
255     },
256     {
257       "name" : "getBorderWidth",
258       "desc" : "Gets the width of the border(s) for the specified side(s)",
259       "isStatic" : false,
260       "isConstructor" : false,
261       "isPrivate" : false,
262       "memberOf" : "Roo.Element",
263       "example" : "",
264       "deprecated" : "",
265       "since" : "",
266       "see" : "",
267       "params" : [
268         {
269           "name" : "side",
270           "type" : "String",
271           "desc" : "Can be t, l, r, b or any combination of those to add multiple values. For example,\npassing lr would get the border (l)eft width + the border (r)ight width.",
272           "isOptional" : false
273         }
274       ],
275       "returns" : [
276         {
277           "name" : "",
278           "type" : "Number",
279           "desc" : "The width of the sides passed added together"
280         }
281       ]
282     },
283     {
284       "name" : "scroll",
285       "desc" : "Scrolls this element the specified direction. Does bounds checking to make sure the scroll is\nwithin this element's scrollable range.",
286       "isStatic" : false,
287       "isConstructor" : false,
288       "isPrivate" : false,
289       "memberOf" : "Roo.Element",
290       "example" : "",
291       "deprecated" : "",
292       "since" : "",
293       "see" : "",
294       "params" : [
295         {
296           "name" : "direction",
297           "type" : "String",
298           "desc" : "Possible values are: \"l\",\"left\" - \"r\",\"right\" - \"t\",\"top\",\"up\" - \"b\",\"bottom\",\"down\".",
299           "isOptional" : false
300         },
301         {
302           "name" : "distance",
303           "type" : "Number",
304           "desc" : "How far to scroll the element in pixels",
305           "isOptional" : false
306         },
307         {
308           "name" : "animate",
309           "type" : "Boolean/Object",
310           "desc" : "(optional) true for the default animation or a standard Element animation config object",
311           "isOptional" : false
312         }
313       ],
314       "returns" : [
315         {
316           "name" : "",
317           "type" : "Boolean",
318           "desc" : "Returns true if a scroll was triggered or false if the element\nwas scrolled as far as it could go."
319         }
320       ]
321     },
322     {
323       "name" : "addKeyMap",
324       "desc" : "Creates a KeyMap for this element",
325       "isStatic" : false,
326       "isConstructor" : false,
327       "isPrivate" : false,
328       "memberOf" : "Roo.Element",
329       "example" : "",
330       "deprecated" : "",
331       "since" : "",
332       "see" : "",
333       "params" : [
334         {
335           "name" : "config",
336           "type" : "Object",
337           "desc" : "The KeyMap config. See {@link Roo.KeyMap} for more details",
338           "isOptional" : false
339         }
340       ],
341       "returns" : [
342         {
343           "name" : "",
344           "type" : "Roo.KeyMap",
345           "desc" : "The KeyMap created"
346         }
347       ]
348     },
349     {
350       "name" : "createChild",
351       "desc" : "Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.",
352       "isStatic" : false,
353       "isConstructor" : false,
354       "isPrivate" : false,
355       "memberOf" : "Roo.Element",
356       "example" : "",
357       "deprecated" : "",
358       "since" : "",
359       "see" : "",
360       "params" : [
361         {
362           "name" : "config",
363           "type" : "Object",
364           "desc" : "DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be\nautomatically generated with the specified attributes.",
365           "isOptional" : false
366         },
367         {
368           "name" : "insertBefore",
369           "type" : "HTMLElement",
370           "desc" : "(optional) a child element of this element",
371           "isOptional" : false
372         },
373         {
374           "name" : "returnDom",
375           "type" : "Boolean",
376           "desc" : "(optional) true to return the dom node instead of creating an Element",
377           "isOptional" : false
378         }
379       ],
380       "returns" : [
381         {
382           "name" : "",
383           "type" : "Roo.Element",
384           "desc" : "The new child element"
385         }
386       ]
387     },
388     {
389       "name" : "addClass",
390       "desc" : "Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.",
391       "isStatic" : false,
392       "isConstructor" : false,
393       "isPrivate" : false,
394       "memberOf" : "Roo.Element",
395       "example" : "",
396       "deprecated" : "",
397       "since" : "",
398       "see" : "",
399       "params" : [
400         {
401           "name" : "className",
402           "type" : "String/Array",
403           "desc" : "The CSS class to add, or an array of classes",
404           "isOptional" : false
405         }
406       ],
407       "returns" : [
408         {
409           "name" : "",
410           "type" : "Roo.Element",
411           "desc" : "this"
412         }
413       ]
414     },
415     {
416       "name" : "attr",
417       "desc" : "Sets or Returns the value the dom attribute value",
418       "isStatic" : false,
419       "isConstructor" : false,
420       "isPrivate" : false,
421       "memberOf" : "Roo.Element",
422       "example" : "",
423       "deprecated" : "",
424       "since" : "",
425       "see" : "",
426       "params" : [
427         {
428           "name" : "name",
429           "type" : "String|Object",
430           "desc" : "The attribute name (or object to set multiple attributes)",
431           "isOptional" : false
432         },
433         {
434           "name" : "value",
435           "type" : "String",
436           "desc" : "(optional) The value to set the attribute to",
437           "isOptional" : false
438         }
439       ],
440       "returns" : [
441         {
442           "name" : "",
443           "type" : "String",
444           "desc" : "The attribute value"
445         }
446       ]
447     },
448     {
449       "name" : "setOpacity",
450       "desc" : "Set the opacity of the element",
451       "isStatic" : false,
452       "isConstructor" : false,
453       "isPrivate" : false,
454       "memberOf" : "Roo.Element",
455       "example" : "",
456       "deprecated" : "",
457       "since" : "",
458       "see" : "",
459       "params" : [
460         {
461           "name" : "opacity",
462           "type" : "Float",
463           "desc" : "The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc",
464           "isOptional" : false
465         },
466         {
467           "name" : "animate",
468           "type" : "Boolean/Object",
469           "desc" : "(optional) true for the default animation or a standard Element animation config object",
470           "isOptional" : false
471         }
472       ],
473       "returns" : [
474         {
475           "name" : "",
476           "type" : "Roo.Element",
477           "desc" : "this"
478         }
479       ]
480     },
481     {
482       "name" : "setSize",
483       "desc" : "Set the size of the element. If animation is true, both width an height will be animated concurrently.",
484       "isStatic" : false,
485       "isConstructor" : false,
486       "isPrivate" : false,
487       "memberOf" : "Roo.Element",
488       "example" : "",
489       "deprecated" : "",
490       "since" : "",
491       "see" : "",
492       "params" : [
493         {
494           "name" : "width",
495           "type" : "Number",
496           "desc" : "The new width",
497           "isOptional" : false
498         },
499         {
500           "name" : "height",
501           "type" : "Number",
502           "desc" : "The new height",
503           "isOptional" : false
504         },
505         {
506           "name" : "animate",
507           "type" : "Boolean/Object",
508           "desc" : "(optional) true for the default animation or a standard Element animation config object",
509           "isOptional" : false
510         }
511       ],
512       "returns" : [
513         {
514           "name" : "",
515           "type" : "Roo.Element",
516           "desc" : "this"
517         }
518       ]
519     },
520     {
521       "name" : "un",
522       "desc" : "Removes an event handler from this element (shorthand for removeListener)",
523       "isStatic" : false,
524       "isConstructor" : false,
525       "isPrivate" : false,
526       "memberOf" : "Roo.Element",
527       "example" : "",
528       "deprecated" : "",
529       "since" : "",
530       "see" : "",
531       "params" : [
532         {
533           "name" : "eventName",
534           "type" : "String",
535           "desc" : "the type of event to remove",
536           "isOptional" : false
537         },
538         {
539           "name" : "fn",
540           "type" : "Function",
541           "desc" : "the method the event invokes",
542           "isOptional" : false
543         }
544       ],
545       "returns" : [
546         {
547           "name" : "",
548           "type" : "Roo.Element",
549           "desc" : "this"
550         }
551       ]
552     },
553     {
554       "name" : "up",
555       "desc" : "Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).\nThis is a shortcut for findParentNode() that always returns an Roo.Element.",
556       "isStatic" : false,
557       "isConstructor" : false,
558       "isPrivate" : false,
559       "memberOf" : "Roo.Element",
560       "example" : "",
561       "deprecated" : "",
562       "since" : "",
563       "see" : "",
564       "params" : [
565         {
566           "name" : "selector",
567           "type" : "String",
568           "desc" : "The simple selector to test",
569           "isOptional" : false
570         },
571         {
572           "name" : "maxDepth",
573           "type" : "Number/String/HTMLElement/Element",
574           "desc" : "(optional) The max depth to\n                search as a number or element (defaults to 10 || document.body)",
575           "isOptional" : false
576         }
577       ],
578       "returns" : [
579         {
580           "name" : "",
581           "type" : "Roo.Element",
582           "desc" : "The matching DOM node (or null if no match was found)"
583         }
584       ]
585     },
586     {
587       "name" : "repaint",
588       "desc" : "Forces the browser to repaint this element",
589       "isStatic" : false,
590       "isConstructor" : false,
591       "isPrivate" : false,
592       "memberOf" : "Roo.Element",
593       "example" : "",
594       "deprecated" : "",
595       "since" : "",
596       "see" : "",
597       "params" : [
598       ],
599       "returns" : [
600         {
601           "name" : "",
602           "type" : "Roo.Element",
603           "desc" : "this"
604         }
605       ]
606     },
607     {
608       "name" : "translatePoints",
609       "desc" : "Translates the passed page coordinates into left/top css values for this element",
610       "isStatic" : false,
611       "isConstructor" : false,
612       "isPrivate" : false,
613       "memberOf" : "Roo.Element",
614       "example" : "",
615       "deprecated" : "",
616       "since" : "",
617       "see" : "",
618       "params" : [
619         {
620           "name" : "x",
621           "type" : "Number/Array",
622           "desc" : "The page x or an array containing [x, y]",
623           "isOptional" : false
624         },
625         {
626           "name" : "y",
627           "type" : "Number",
628           "desc" : "The page y",
629           "isOptional" : false
630         }
631       ],
632       "returns" : [
633         {
634           "name" : "",
635           "type" : "Object",
636           "desc" : "An object with left and top properties. e.g. {left: (value), top: (value)}"
637         }
638       ]
639     },
640     {
641       "name" : "createProxy",
642       "desc" : "Creates a proxy element of this element",
643       "isStatic" : false,
644       "isConstructor" : false,
645       "isPrivate" : false,
646       "memberOf" : "Roo.Element",
647       "example" : "",
648       "deprecated" : "",
649       "since" : "",
650       "see" : "",
651       "params" : [
652         {
653           "name" : "config",
654           "type" : "String/Object",
655           "desc" : "The class name of the proxy element or a DomHelper config object",
656           "isOptional" : false
657         },
658         {
659           "name" : "renderTo",
660           "type" : "String/HTMLElement",
661           "desc" : "(optional) The element or element id to render the proxy to (defaults to document.body)",
662           "isOptional" : false
663         },
664         {
665           "name" : "matchBox",
666           "type" : "Boolean",
667           "desc" : "(optional) True to align and size the proxy to this element now (defaults to false)",
668           "isOptional" : false
669         }
670       ],
671       "returns" : [
672         {
673           "name" : "",
674           "type" : "Roo.Element",
675           "desc" : "The new proxy element"
676         }
677       ]
678     },
679     {
680       "name" : "down",
681       "desc" : "Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).",
682       "isStatic" : false,
683       "isConstructor" : false,
684       "isPrivate" : false,
685       "memberOf" : "Roo.Element",
686       "example" : "",
687       "deprecated" : "",
688       "since" : "",
689       "see" : "",
690       "params" : [
691         {
692           "name" : "selector",
693           "type" : "String",
694           "desc" : "The CSS selector",
695           "isOptional" : false
696         },
697         {
698           "name" : "returnDom",
699           "type" : "Boolean",
700           "desc" : "(optional) True to return the DOM node instead of Roo.Element (defaults to false)",
701           "isOptional" : false
702         }
703       ],
704       "returns" : [
705         {
706           "name" : "",
707           "type" : "HTMLElement/Roo.Element",
708           "desc" : "The child Roo.Element (or DOM node if returnDom = true)"
709         }
710       ]
711     },
712     {
713       "name" : "getBox",
714       "desc" : "Return a box {x, y, width, height} that can be used to set another elements\nsize/location to match this element.",
715       "isStatic" : false,
716       "isConstructor" : false,
717       "isPrivate" : false,
718       "memberOf" : "Roo.Element",
719       "example" : "",
720       "deprecated" : "",
721       "since" : "",
722       "see" : "",
723       "params" : [
724         {
725           "name" : "contentBox",
726           "type" : "Boolean",
727           "desc" : "(optional) If true a box for the content of the element is returned.",
728           "isOptional" : false
729         },
730         {
731           "name" : "local",
732           "type" : "Boolean",
733           "desc" : "(optional) If true the element's left and top are returned instead of page x/y.",
734           "isOptional" : false
735         }
736       ],
737       "returns" : [
738         {
739           "name" : "",
740           "type" : "Object",
741           "desc" : "box An object in the format {x, y, width, height}"
742         }
743       ]
744     },
745     {
746       "name" : "toggle",
747       "desc" : "Toggles the element's visibility or display, depending on visibility mode.",
748       "isStatic" : false,
749       "isConstructor" : false,
750       "isPrivate" : false,
751       "memberOf" : "Roo.Element",
752       "example" : "",
753       "deprecated" : "",
754       "since" : "",
755       "see" : "",
756       "params" : [
757         {
758           "name" : "animate",
759           "type" : "Boolean/Object",
760           "desc" : "(optional) True for the default animation, or a standard Element animation config object",
761           "isOptional" : false
762         }
763       ],
764       "returns" : [
765         {
766           "name" : "",
767           "type" : "Roo.Element",
768           "desc" : "this"
769         }
770       ]
771     },
772     {
773       "name" : "setBounds",
774       "desc" : "Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.",
775       "isStatic" : false,
776       "isConstructor" : false,
777       "isPrivate" : false,
778       "memberOf" : "Roo.Element",
779       "example" : "",
780       "deprecated" : "",
781       "since" : "",
782       "see" : "",
783       "params" : [
784         {
785           "name" : "x",
786           "type" : "Number",
787           "desc" : "X value for new position (coordinates are page-based)",
788           "isOptional" : false
789         },
790         {
791           "name" : "y",
792           "type" : "Number",
793           "desc" : "Y value for new position (coordinates are page-based)",
794           "isOptional" : false
795         },
796         {
797           "name" : "width",
798           "type" : "Number",
799           "desc" : "The new width",
800           "isOptional" : false
801         },
802         {
803           "name" : "height",
804           "type" : "Number",
805           "desc" : "The new height",
806           "isOptional" : false
807         },
808         {
809           "name" : "animate",
810           "type" : "Boolean/Object",
811           "desc" : "(optional) true for the default animation or a standard Element animation config object",
812           "isOptional" : false
813         }
814       ],
815       "returns" : [
816         {
817           "name" : "",
818           "type" : "Roo.Element",
819           "desc" : "this"
820         }
821       ]
822     },
823     {
824       "name" : "getX",
825       "desc" : "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).",
826       "isStatic" : false,
827       "isConstructor" : false,
828       "isPrivate" : false,
829       "memberOf" : "Roo.Element",
830       "example" : "",
831       "deprecated" : "",
832       "since" : "",
833       "see" : "",
834       "params" : [
835       ],
836       "returns" : [
837         {
838           "name" : "",
839           "type" : "Number",
840           "desc" : "The X position of the element"
841         }
842       ]
843     },
844     {
845       "name" : "getY",
846       "desc" : "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).",
847       "isStatic" : false,
848       "isConstructor" : false,
849       "isPrivate" : false,
850       "memberOf" : "Roo.Element",
851       "example" : "",
852       "deprecated" : "",
853       "since" : "",
854       "see" : "",
855       "params" : [
856       ],
857       "returns" : [
858         {
859           "name" : "",
860           "type" : "Number",
861           "desc" : "The Y position of the element"
862         }
863       ]
864     },
865     {
866       "name" : "focus",
867       "desc" : "Tries to focus the element. Any exceptions are caught and ignored.",
868       "isStatic" : false,
869       "isConstructor" : false,
870       "isPrivate" : false,
871       "memberOf" : "Roo.Element",
872       "example" : "",
873       "deprecated" : "",
874       "since" : "",
875       "see" : "",
876       "params" : [
877       ],
878       "returns" : [
879         {
880           "name" : "",
881           "type" : "Roo.Element",
882           "desc" : "this"
883         }
884       ]
885     },
886     {
887       "name" : "get",
888       "desc" : "Static method to retrieve Element objects. Uses simple caching to consistently return the same object.\nAutomatically fixes if an object was recreated with the same id via AJAX or DOM.",
889       "isStatic" : true,
890       "isConstructor" : false,
891       "isPrivate" : false,
892       "memberOf" : "Roo.Element",
893       "example" : "",
894       "deprecated" : "",
895       "since" : "",
896       "see" : "",
897       "params" : [
898         {
899           "name" : "el",
900           "type" : "String/HTMLElement/Element",
901           "desc" : "The id of the node, a DOM Node or an existing Element.",
902           "isOptional" : false
903         }
904       ],
905       "returns" : [
906         {
907           "name" : "",
908           "type" : "Element",
909           "desc" : "The Element object"
910         }
911       ]
912     },
913     {
914       "name" : "autoHeight",
915       "desc" : "Measures the element's content height and updates height to match. Note: this function uses setTimeout so\nthe new height may not be available immediately.",
916       "isStatic" : false,
917       "isConstructor" : false,
918       "isPrivate" : false,
919       "memberOf" : "Roo.Element",
920       "example" : "",
921       "deprecated" : "",
922       "since" : "",
923       "see" : "",
924       "params" : [
925         {
926           "name" : "animate",
927           "type" : "Boolean",
928           "desc" : "(optional) Animate the transition (defaults to false)",
929           "isOptional" : false
930         },
931         {
932           "name" : "duration",
933           "type" : "Float",
934           "desc" : "(optional) Length of the animation in seconds (defaults to .35)",
935           "isOptional" : false
936         },
937         {
938           "name" : "onComplete",
939           "type" : "Function",
940           "desc" : "(optional) Function to call when animation completes",
941           "isOptional" : false
942         },
943         {
944           "name" : "easing",
945           "type" : "String",
946           "desc" : "(optional) Easing method to use (defaults to easeOut)",
947           "isOptional" : false
948         }
949       ],
950       "returns" : [
951         {
952           "name" : "",
953           "type" : "Roo.Element",
954           "desc" : "this"
955         }
956       ]
957     },
958     {
959       "name" : "scrollIntoView",
960       "desc" : "Scrolls this element into view within the passed container.",
961       "isStatic" : false,
962       "isConstructor" : false,
963       "isPrivate" : false,
964       "memberOf" : "Roo.Element",
965       "example" : "",
966       "deprecated" : "",
967       "since" : "",
968       "see" : "",
969       "params" : [
970         {
971           "name" : "container",
972           "type" : "String/HTMLElement/Element",
973           "desc" : "(optional) The container element to scroll (defaults to document.body)",
974           "isOptional" : false
975         },
976         {
977           "name" : "hscroll",
978           "type" : "Boolean",
979           "desc" : "(optional) False to disable horizontal scroll (defaults to true)",
980           "isOptional" : false
981         }
982       ],
983       "returns" : [
984         {
985           "name" : "",
986           "type" : "Roo.Element",
987           "desc" : "this"
988         }
989       ]
990     },
991     {
992       "name" : "getAlignToXY",
993       "desc" : "Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the\nsupported position values.",
994       "isStatic" : false,
995       "isConstructor" : false,
996       "isPrivate" : false,
997       "memberOf" : "Roo.Element",
998       "example" : "",
999       "deprecated" : "",
1000       "since" : "",
1001       "see" : "",
1002       "params" : [
1003         {
1004           "name" : "element",
1005           "type" : "String/HTMLElement/Roo.Element",
1006           "desc" : "The element to align to.",
1007           "isOptional" : false
1008         },
1009         {
1010           "name" : "position",
1011           "type" : "String",
1012           "desc" : "The position to align to.",
1013           "isOptional" : false
1014         },
1015         {
1016           "name" : "offsets",
1017           "type" : "Array",
1018           "desc" : "(optional) Offset the positioning by [x, y]",
1019           "isOptional" : false
1020         }
1021       ],
1022       "returns" : [
1023         {
1024           "name" : "",
1025           "type" : "Array",
1026           "desc" : "[x, y]"
1027         }
1028       ]
1029     },
1030     {
1031       "name" : "clearOpacity",
1032       "desc" : "Clears any opacity settings from this element. Required in some cases for IE.",
1033       "isStatic" : false,
1034       "isConstructor" : false,
1035       "isPrivate" : false,
1036       "memberOf" : "Roo.Element",
1037       "example" : "",
1038       "deprecated" : "",
1039       "since" : "",
1040       "see" : "",
1041       "params" : [
1042       ],
1043       "returns" : [
1044         {
1045           "name" : "",
1046           "type" : "Roo.Element",
1047           "desc" : "this"
1048         }
1049       ]
1050     },
1051     {
1052       "name" : "setPositioning",
1053       "desc" : "Set positioning with an object returned by getPositioning().",
1054       "isStatic" : false,
1055       "isConstructor" : false,
1056       "isPrivate" : false,
1057       "memberOf" : "Roo.Element",
1058       "example" : "",
1059       "deprecated" : "",
1060       "since" : "",
1061       "see" : "",
1062       "params" : [
1063         {
1064           "name" : "posCfg",
1065           "type" : "Object",
1066           "desc" : "",
1067           "isOptional" : false
1068         }
1069       ],
1070       "returns" : [
1071         {
1072           "name" : "",
1073           "type" : "Roo.Element",
1074           "desc" : "this"
1075         }
1076       ]
1077     },
1078     {
1079       "name" : "getMargins",
1080       "desc" : "Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,\nthen it returns the calculated width of the sides (see getPadding)",
1081       "isStatic" : false,
1082       "isConstructor" : false,
1083       "isPrivate" : false,
1084       "memberOf" : "Roo.Element",
1085       "example" : "",
1086       "deprecated" : "",
1087       "since" : "",
1088       "see" : "",
1089       "params" : [
1090         {
1091           "name" : "sides",
1092           "type" : "String",
1093           "desc" : "(optional) Any combination of l, r, t, b to get the sum of those sides",
1094           "isOptional" : false
1095         }
1096       ],
1097       "returns" : [
1098         {
1099           "name" : "",
1100           "type" : "Object/Number",
1101           "desc" : ""
1102         }
1103       ]
1104     },
1105     {
1106       "name" : "setRegion",
1107       "desc" : "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.",
1108       "isStatic" : false,
1109       "isConstructor" : false,
1110       "isPrivate" : false,
1111       "memberOf" : "Roo.Element",
1112       "example" : "",
1113       "deprecated" : "",
1114       "since" : "",
1115       "see" : "",
1116       "params" : [
1117         {
1118           "name" : "region",
1119           "type" : "Roo.lib.Region",
1120           "desc" : "The region to fill",
1121           "isOptional" : false
1122         },
1123         {
1124           "name" : "animate",
1125           "type" : "Boolean/Object",
1126           "desc" : "(optional) true for the default animation or a standard Element animation config object",
1127           "isOptional" : false
1128         }
1129       ],
1130       "returns" : [
1131         {
1132           "name" : "",
1133           "type" : "Roo.Element",
1134           "desc" : "this"
1135         }
1136       ]
1137     },
1138     {
1139       "name" : "getAttributeNS",
1140       "desc" : "Returns the value of a namespaced attribute from the element's underlying DOM node.",
1141       "isStatic" : false,
1142       "isConstructor" : false,
1143       "isPrivate" : false,
1144       "memberOf" : "Roo.Element",
1145       "example" : "",
1146       "deprecated" : "",
1147       "since" : "",
1148       "see" : "",
1149       "params" : [
1150         {
1151           "name" : "namespace",
1152           "type" : "String",
1153           "desc" : "The namespace in which to look for the attribute",
1154           "isOptional" : false
1155         },
1156         {
1157           "name" : "name",
1158           "type" : "String",
1159           "desc" : "The attribute name",
1160           "isOptional" : false
1161         }
1162       ],
1163       "returns" : [
1164         {
1165           "name" : "",
1166           "type" : "String",
1167           "desc" : "The attribute value"
1168         }
1169       ]
1170     },
1171     {
1172       "name" : "setLeft",
1173       "desc" : "Sets the element's left position directly using CSS style (instead of {@link #setX}).",
1174       "isStatic" : false,
1175       "isConstructor" : false,
1176       "isPrivate" : false,
1177       "memberOf" : "Roo.Element",
1178       "example" : "",
1179       "deprecated" : "",
1180       "since" : "",
1181       "see" : "",
1182       "params" : [
1183         {
1184           "name" : "left",
1185           "type" : "String",
1186           "desc" : "The left CSS property value",
1187           "isOptional" : false
1188         }
1189       ],
1190       "returns" : [
1191         {
1192           "name" : "",
1193           "type" : "Roo.Element",
1194           "desc" : "this"
1195         }
1196       ]
1197     },
1198     {
1199       "name" : "load",
1200       "desc" : "Direct access to the UpdateManager update() method (takes the same parameters).",
1201       "isStatic" : false,
1202       "isConstructor" : false,
1203       "isPrivate" : false,
1204       "memberOf" : "Roo.Element",
1205       "example" : "",
1206       "deprecated" : "",
1207       "since" : "",
1208       "see" : "",
1209       "params" : [
1210         {
1211           "name" : "url",
1212           "type" : "String/Function",
1213           "desc" : "The url for this request or a function to call to get the url",
1214           "isOptional" : false
1215         },
1216         {
1217           "name" : "params",
1218           "type" : "String/Object",
1219           "desc" : "(optional) The parameters to pass as either a url encoded string \"param1=1&amp;param2=2\" or an object {param1: 1, param2: 2}",
1220           "isOptional" : false
1221         },
1222         {
1223           "name" : "callback",
1224           "type" : "Function",
1225           "desc" : "(optional) Callback when transaction is complete - called with signature (oElement, bSuccess)",
1226           "isOptional" : false
1227         },
1228         {
1229           "name" : "discardUrl",
1230           "type" : "Boolean",
1231           "desc" : "(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.",
1232           "isOptional" : false
1233         }
1234       ],
1235       "returns" : [
1236         {
1237           "name" : "",
1238           "type" : "Roo.Element",
1239           "desc" : "this"
1240         }
1241       ]
1242     },
1243     {
1244       "name" : "replaceClass",
1245       "desc" : "Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.",
1246       "isStatic" : false,
1247       "isConstructor" : false,
1248       "isPrivate" : false,
1249       "memberOf" : "Roo.Element",
1250       "example" : "",
1251       "deprecated" : "",
1252       "since" : "",
1253       "see" : "",
1254       "params" : [
1255         {
1256           "name" : "oldClassName",
1257           "type" : "String",
1258           "desc" : "The CSS class to replace",
1259           "isOptional" : false
1260         },
1261         {
1262           "name" : "newClassName",
1263           "type" : "String",
1264           "desc" : "The replacement CSS class",
1265           "isOptional" : false
1266         }
1267       ],
1268       "returns" : [
1269         {
1270           "name" : "",
1271           "type" : "Roo.Element",
1272           "desc" : "this"
1273         }
1274       ]
1275     },
1276     {
1277       "name" : "initDDTarget",
1278       "desc" : "Initializes a {@link Roo.dd.DDTarget} object for this element.",
1279       "isStatic" : false,
1280       "isConstructor" : false,
1281       "isPrivate" : false,
1282       "memberOf" : "Roo.Element",
1283       "example" : "",
1284       "deprecated" : "",
1285       "since" : "",
1286       "see" : "",
1287       "params" : [
1288         {
1289           "name" : "group",
1290           "type" : "String",
1291           "desc" : "The group the DDTarget object is member of",
1292           "isOptional" : false
1293         },
1294         {
1295           "name" : "config",
1296           "type" : "Object",
1297           "desc" : "The DDTarget config object",
1298           "isOptional" : false
1299         },
1300         {
1301           "name" : "overrides",
1302           "type" : "Object",
1303           "desc" : "An object containing methods to override/implement on the DDTarget object",
1304           "isOptional" : false
1305         }
1306       ],
1307       "returns" : [
1308         {
1309           "name" : "",
1310           "type" : "Roo.dd.DDTarget",
1311           "desc" : "The DDTarget object"
1312         }
1313       ]
1314     },
1315     {
1316       "name" : "setHeight",
1317       "desc" : "Set the height of the element",
1318       "isStatic" : false,
1319       "isConstructor" : false,
1320       "isPrivate" : false,
1321       "memberOf" : "Roo.Element",
1322       "example" : "",
1323       "deprecated" : "",
1324       "since" : "",
1325       "see" : "",
1326       "params" : [
1327         {
1328           "name" : "height",
1329           "type" : "Number",
1330           "desc" : "The new height",
1331           "isOptional" : false
1332         },
1333         {
1334           "name" : "animate",
1335           "type" : "Boolean/Object",
1336           "desc" : "(optional) true for the default animation or a standard Element animation config object",
1337           "isOptional" : false
1338         }
1339       ],
1340       "returns" : [
1341         {
1342           "name" : "",
1343           "type" : "Roo.Element",
1344           "desc" : "this"
1345         }
1346       ]
1347     },
1348     {
1349       "name" : "clean",
1350       "desc" : "Removes worthless text nodes",
1351       "isStatic" : false,
1352       "isConstructor" : false,
1353       "isPrivate" : false,
1354       "memberOf" : "Roo.Element",
1355       "example" : "",
1356       "deprecated" : "",
1357       "since" : "",
1358       "see" : "",
1359       "params" : [
1360         {
1361           "name" : "forceReclean",
1362           "type" : "Boolean",
1363           "desc" : "(optional) By default the element\nkeeps track if it has been cleaned already so\nyou can call this over and over. However, if you update the element and\nneed to force a reclean, you can pass true.",
1364           "isOptional" : false
1365         }
1366       ],
1367       "returns" : [
1368       ]
1369     },
1370     {
1371       "name" : "getPositioning",
1372       "desc" : "Gets an object with all CSS positioning properties. Useful along with setPostioning to get\nsnapshot before performing an update and then restoring the element.",
1373       "isStatic" : false,
1374       "isConstructor" : false,
1375       "isPrivate" : false,
1376       "memberOf" : "Roo.Element",
1377       "example" : "",
1378       "deprecated" : "",
1379       "since" : "",
1380       "see" : "",
1381       "params" : [
1382       ],
1383       "returns" : [
1384         {
1385           "name" : "",
1386           "type" : "Object",
1387           "desc" : ""
1388         }
1389       ]
1390     },
1391     {
1392       "name" : "update",
1393       "desc" : "Update the innerHTML of this element, optionally searching for and processing scripts",
1394       "isStatic" : false,
1395       "isConstructor" : false,
1396       "isPrivate" : false,
1397       "memberOf" : "Roo.Element",
1398       "example" : "",
1399       "deprecated" : "",
1400       "since" : "",
1401       "see" : "",
1402       "params" : [
1403         {
1404           "name" : "html",
1405           "type" : "String",
1406           "desc" : "The new HTML",
1407           "isOptional" : false
1408         },
1409         {
1410           "name" : "loadScripts",
1411           "type" : "Boolean",
1412           "desc" : "(optional) true to look for and process scripts",
1413           "isOptional" : false
1414         },
1415         {
1416           "name" : "callback",
1417           "type" : "Function",
1418           "desc" : "For async script loading you can be noticed when the update completes",
1419           "isOptional" : false
1420         }
1421       ],
1422       "returns" : [
1423         {
1424           "name" : "",
1425           "type" : "Roo.Element",
1426           "desc" : "this"
1427         }
1428       ]
1429     },
1430     {
1431       "name" : "contains",
1432       "desc" : "Returns true if this element is an ancestor of the passed element",
1433       "isStatic" : false,
1434       "isConstructor" : false,
1435       "isPrivate" : false,
1436       "memberOf" : "Roo.Element",
1437       "example" : "",
1438       "deprecated" : "",
1439       "since" : "",
1440       "see" : "",
1441       "params" : [
1442         {
1443           "name" : "el",
1444           "type" : "HTMLElement/String",
1445           "desc" : "The element to check",
1446           "isOptional" : false
1447         }
1448       ],
1449       "returns" : [
1450         {
1451           "name" : "",
1452           "type" : "Boolean",
1453           "desc" : "True if this element is an ancestor of el, else false"
1454         }
1455       ]
1456     },
1457     {
1458       "name" : "appendChild",
1459       "desc" : "Appends the passed element(s) to this element",
1460       "isStatic" : false,
1461       "isConstructor" : false,
1462       "isPrivate" : false,
1463       "memberOf" : "Roo.Element",
1464       "example" : "",
1465       "deprecated" : "",
1466       "since" : "",
1467       "see" : "",
1468       "params" : [
1469         {
1470           "name" : "el",
1471           "type" : "String/HTMLElement/Array/Element/CompositeElement",
1472           "desc" : "",
1473           "isOptional" : false
1474         }
1475       ],
1476       "returns" : [
1477         {
1478           "name" : "",
1479           "type" : "Roo.Element",
1480           "desc" : "this"
1481         }
1482       ]
1483     },
1484     {
1485       "name" : "getValue",
1486       "desc" : "Returns the value of the \"value\" attribute",
1487       "isStatic" : false,
1488       "isConstructor" : false,
1489       "isPrivate" : false,
1490       "memberOf" : "Roo.Element",
1491       "example" : "",
1492       "deprecated" : "",
1493       "since" : "",
1494       "see" : "",
1495       "params" : [
1496         {
1497           "name" : "asNumber",
1498           "type" : "Boolean",
1499           "desc" : "true to parse the value as a number",
1500           "isOptional" : false
1501         }
1502       ],
1503       "returns" : [
1504         {
1505           "name" : "",
1506           "type" : "String/Number",
1507           "desc" : ""
1508         }
1509       ]
1510     },
1511     {
1512       "name" : "getRegion",
1513       "desc" : "Returns the region of the given element.\nThe element must be part of the DOM tree to have a region (display:none or elements not appended return false).",
1514       "isStatic" : false,
1515       "isConstructor" : false,
1516       "isPrivate" : false,
1517       "memberOf" : "Roo.Element",
1518       "example" : "",
1519       "deprecated" : "",
1520       "since" : "",
1521       "see" : "",
1522       "params" : [
1523       ],
1524       "returns" : [
1525         {
1526           "name" : "",
1527           "type" : "Region",
1528           "desc" : "A Roo.lib.Region containing \"top, left, bottom, right\" member data."
1529         }
1530       ]
1531     },
1532     {
1533       "name" : "anchorTo",
1534       "desc" : "Anchors an element to another element and realigns it when the window is resized.",
1535       "isStatic" : false,
1536       "isConstructor" : false,
1537       "isPrivate" : false,
1538       "memberOf" : "Roo.Element",
1539       "example" : "",
1540       "deprecated" : "",
1541       "since" : "",
1542       "see" : "",
1543       "params" : [
1544         {
1545           "name" : "element",
1546           "type" : "String/HTMLElement/Roo.Element",
1547           "desc" : "The element to align to.",
1548           "isOptional" : false
1549         },
1550         {
1551           "name" : "position",
1552           "type" : "String",
1553           "desc" : "The position to align to.",
1554           "isOptional" : false
1555         },
1556         {
1557           "name" : "offsets",
1558           "type" : "Array",
1559           "desc" : "(optional) Offset the positioning by [x, y]",
1560           "isOptional" : false
1561         },
1562         {
1563           "name" : "animate",
1564           "type" : "Boolean/Object",
1565           "desc" : "(optional) True for the default animation or a standard Element animation config object",
1566           "isOptional" : false
1567         },
1568         {
1569           "name" : "monitorScroll",
1570           "type" : "Boolean/Number",
1571           "desc" : "(optional) True to monitor body scroll and reposition. If this parameter\nis a number, it is used as the buffer delay (defaults to 50ms).",
1572           "isOptional" : false
1573         },
1574         {
1575           "name" : "callback",
1576           "type" : "Function",
1577           "desc" : "The function to call after the animation finishes",
1578           "isOptional" : false
1579         }
1580       ],
1581       "returns" : [
1582         {
1583           "name" : "",
1584           "type" : "Roo.Element",
1585           "desc" : "this"
1586         }
1587       ]
1588     },
1589     {
1590       "name" : "removeClass",
1591       "desc" : "Removes one or more CSS classes from the element.",
1592       "isStatic" : false,
1593       "isConstructor" : false,
1594       "isPrivate" : false,
1595       "memberOf" : "Roo.Element",
1596       "example" : "",
1597       "deprecated" : "",
1598       "since" : "",
1599       "see" : "",
1600       "params" : [
1601         {
1602           "name" : "className",
1603           "type" : "String/Array",
1604           "desc" : "The CSS class to remove, or an array of classes",
1605           "isOptional" : false
1606         }
1607       ],
1608       "returns" : [
1609         {
1610           "name" : "",
1611           "type" : "Roo.Element",
1612           "desc" : "this"
1613         }
1614       ]
1615     },
1616     {
1617       "name" : "radioClass",
1618       "desc" : "Adds one or more CSS classes to this element and removes the same class(es) from all siblings.",
1619       "isStatic" : false,
1620       "isConstructor" : false,
1621       "isPrivate" : false,
1622       "memberOf" : "Roo.Element",
1623       "example" : "",
1624       "deprecated" : "",
1625       "since" : "",
1626       "see" : "",
1627       "params" : [
1628         {
1629           "name" : "className",
1630           "type" : "String/Array",
1631           "desc" : "The CSS class to add, or an array of classes",
1632           "isOptional" : false
1633         }
1634       ],
1635       "returns" : [
1636         {
1637           "name" : "",
1638           "type" : "Roo.Element",
1639           "desc" : "this"
1640         }
1641       ]
1642     },
1643     {
1644       "name" : "getWidth",
1645       "desc" : "Returns the offset width of the element",
1646       "isStatic" : false,
1647       "isConstructor" : false,
1648       "isPrivate" : false,
1649       "memberOf" : "Roo.Element",
1650       "example" : "",
1651       "deprecated" : "",
1652       "since" : "",
1653       "see" : "",
1654       "params" : [
1655         {
1656           "name" : "contentWidth",
1657           "type" : "Boolean",
1658           "desc" : "(optional) true to get the width minus borders and padding",
1659           "isOptional" : false
1660         }
1661       ],
1662       "returns" : [
1663         {
1664           "name" : "",
1665           "type" : "Number",
1666           "desc" : "The element's width"
1667         }
1668       ]
1669     },
1670     {
1671       "name" : "insertBefore",
1672       "desc" : "Inserts this element before the passed element in the DOM",
1673       "isStatic" : false,
1674       "isConstructor" : false,
1675       "isPrivate" : false,
1676       "memberOf" : "Roo.Element",
1677       "example" : "",
1678       "deprecated" : "",
1679       "since" : "",
1680       "see" : "",
1681       "params" : [
1682         {
1683           "name" : "el",
1684           "type" : "String/HTMLElement/Element",
1685           "desc" : "The element to insert before",
1686           "isOptional" : false
1687         }
1688       ],
1689       "returns" : [
1690         {
1691           "name" : "",
1692           "type" : "Roo.Element",
1693           "desc" : "this"
1694         }
1695       ]
1696     },
1697     {
1698       "name" : "getHeight",
1699       "desc" : "Returns the offset height of the element",
1700       "isStatic" : false,
1701       "isConstructor" : false,
1702       "isPrivate" : false,
1703       "memberOf" : "Roo.Element",
1704       "example" : "",
1705       "deprecated" : "",
1706       "since" : "",
1707       "see" : "",
1708       "params" : [
1709         {
1710           "name" : "contentHeight",
1711           "type" : "Boolean",
1712           "desc" : "(optional) true to get the height minus borders and padding",
1713           "isOptional" : false
1714         }
1715       ],
1716       "returns" : [
1717         {
1718           "name" : "",
1719           "type" : "Number",
1720           "desc" : "The element's height"
1721         }
1722       ]
1723     },
1724     {
1725       "name" : "setTop",
1726       "desc" : "Sets the element's top position directly using CSS style (instead of {@link #setY}).",
1727       "isStatic" : false,
1728       "isConstructor" : false,
1729       "isPrivate" : false,
1730       "memberOf" : "Roo.Element",
1731       "example" : "",
1732       "deprecated" : "",
1733       "since" : "",
1734       "see" : "",
1735       "params" : [
1736         {
1737           "name" : "top",
1738           "type" : "String",
1739           "desc" : "The top CSS property value",
1740           "isOptional" : false
1741         }
1742       ],
1743       "returns" : [
1744         {
1745           "name" : "",
1746           "type" : "Roo.Element",
1747           "desc" : "this"
1748         }
1749       ]
1750     },
1751     {
1752       "name" : "toggleClass",
1753       "desc" : "Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).",
1754       "isStatic" : false,
1755       "isConstructor" : false,
1756       "isPrivate" : false,
1757       "memberOf" : "Roo.Element",
1758       "example" : "",
1759       "deprecated" : "",
1760       "since" : "",
1761       "see" : "",
1762       "params" : [
1763         {
1764           "name" : "className",
1765           "type" : "String",
1766           "desc" : "The CSS class to toggle",
1767           "isOptional" : false
1768         }
1769       ],
1770       "returns" : [
1771         {
1772           "name" : "",
1773           "type" : "Roo.Element",
1774           "desc" : "this"
1775         }
1776       ]
1777     },
1778     {
1779       "name" : "wrap",
1780       "desc" : "Creates and wraps this element with another element",
1781       "isStatic" : false,
1782       "isConstructor" : false,
1783       "isPrivate" : false,
1784       "memberOf" : "Roo.Element",
1785       "example" : "",
1786       "deprecated" : "",
1787       "since" : "",
1788       "see" : "",
1789       "params" : [
1790         {
1791           "name" : "config",
1792           "type" : "Object",
1793           "desc" : "(optional) DomHelper element config object for the wrapper element or null for an empty div",
1794           "isOptional" : false
1795         },
1796         {
1797           "name" : "returnDom",
1798           "type" : "Boolean",
1799           "desc" : "(optional) True to return the raw DOM element instead of Roo.Element",
1800           "isOptional" : false
1801         }
1802       ],
1803       "returns" : [
1804         {
1805           "name" : "",
1806           "type" : "HTMLElement/Element",
1807           "desc" : "The newly created wrapper element"
1808         }
1809       ]
1810     },
1811     {
1812       "name" : "setVisible",
1813       "desc" : "Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use\nthe display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.",
1814       "isStatic" : false,
1815       "isConstructor" : false,
1816       "isPrivate" : false,
1817       "memberOf" : "Roo.Element",
1818       "example" : "",
1819       "deprecated" : "",
1820       "since" : "",
1821       "see" : "",
1822       "params" : [
1823         {
1824           "name" : "visible",
1825           "type" : "Boolean",
1826           "desc" : "Whether the element is visible",
1827           "isOptional" : false
1828         },
1829         {
1830           "name" : "animate",
1831           "type" : "Boolean/Object",
1832           "desc" : "(optional) True for the default animation, or a standard Element animation config object",
1833           "isOptional" : false
1834         }
1835       ],
1836       "returns" : [
1837         {
1838           "name" : "",
1839           "type" : "Roo.Element",
1840           "desc" : "this"
1841         }
1842       ]
1843     },
1844     {
1845       "name" : "addListener",
1846       "desc" : "Appends an event handler",
1847       "isStatic" : false,
1848       "isConstructor" : false,
1849       "isPrivate" : false,
1850       "memberOf" : "Roo.Element",
1851       "example" : "",
1852       "deprecated" : "",
1853       "since" : "",
1854       "see" : "",
1855       "params" : [
1856         {
1857           "name" : "eventName",
1858           "type" : "String",
1859           "desc" : "The type of event to append",
1860           "isOptional" : false
1861         },
1862         {
1863           "name" : "fn",
1864           "type" : "Function",
1865           "desc" : "The method the event invokes",
1866           "isOptional" : false
1867         },
1868         {
1869           "name" : "scope",
1870           "type" : "Object",
1871           "desc" : "(optional) The scope (this object) of the fn",
1872           "isOptional" : false
1873         },
1874         {
1875           "name" : "options",
1876           "type" : "Object",
1877           "desc" : "(optional)An object with standard {@link Roo.EventManager#addListener} options",
1878           "isOptional" : false
1879         }
1880       ],
1881       "returns" : [
1882       ]
1883     },
1884     {
1885       "name" : "setWidth",
1886       "desc" : "Set the width of the element",
1887       "isStatic" : false,
1888       "isConstructor" : false,
1889       "isPrivate" : false,
1890       "memberOf" : "Roo.Element",
1891       "example" : "",
1892       "deprecated" : "",
1893       "since" : "",
1894       "see" : "",
1895       "params" : [
1896         {
1897           "name" : "width",
1898           "type" : "Number",
1899           "desc" : "The new width",
1900           "isOptional" : false
1901         },
1902         {
1903           "name" : "animate",
1904           "type" : "Boolean/Object",
1905           "desc" : "(optional) true for the default animation or a standard Element animation config object",
1906           "isOptional" : false
1907         }
1908       ],
1909       "returns" : [
1910         {
1911           "name" : "",
1912           "type" : "Roo.Element",
1913           "desc" : "this"
1914         }
1915       ]
1916     },
1917     {
1918       "name" : "center",
1919       "desc" : "Centers the Element in either the viewport, or another Element.",
1920       "isStatic" : false,
1921       "isConstructor" : false,
1922       "isPrivate" : false,
1923       "memberOf" : "Roo.Element",
1924       "example" : "",
1925       "deprecated" : "",
1926       "since" : "",
1927       "see" : "",
1928       "params" : [
1929         {
1930           "name" : "centerIn",
1931           "type" : "String/HTMLElement/Roo.Element",
1932           "desc" : "(optional) The element in which to center the element.",
1933           "isOptional" : false
1934         }
1935       ],
1936       "returns" : [
1937       ]
1938     },
1939     {
1940       "name" : "isVisible",
1941       "desc" : "Checks whether the element is currently visible using both visibility and display properties.",
1942       "isStatic" : false,
1943       "isConstructor" : false,
1944       "isPrivate" : false,
1945       "memberOf" : "Roo.Element",
1946       "example" : "",
1947       "deprecated" : "",
1948       "since" : "",
1949       "see" : "",
1950       "params" : [
1951         {
1952           "name" : "deep",
1953           "type" : "Boolean",
1954           "desc" : "(optional) True to walk the dom and see if parent elements are hidden (defaults to false)",
1955           "isOptional" : false
1956         }
1957       ],
1958       "returns" : [
1959         {
1960           "name" : "",
1961           "type" : "Boolean",
1962           "desc" : "True if the element is currently visible, else false"
1963         }
1964       ]
1965     },
1966     {
1967       "name" : "findParent",
1968       "desc" : "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)",
1969       "isStatic" : false,
1970       "isConstructor" : false,
1971       "isPrivate" : false,
1972       "memberOf" : "Roo.Element",
1973       "example" : "",
1974       "deprecated" : "",
1975       "since" : "",
1976       "see" : "",
1977       "params" : [
1978         {
1979           "name" : "selector",
1980           "type" : "String",
1981           "desc" : "The simple selector to test",
1982           "isOptional" : false
1983         },
1984         {
1985           "name" : "maxDepth",
1986           "type" : "Number/String/HTMLElement/Element",
1987           "desc" : "(optional) The max depth to\n                search as a number or element (defaults to 10 || document.body)",
1988           "isOptional" : false
1989         },
1990         {
1991           "name" : "returnEl",
1992           "type" : "Boolean",
1993           "desc" : "(optional) True to return a Roo.Element object instead of DOM node",
1994           "isOptional" : false
1995         }
1996       ],
1997       "returns" : [
1998         {
1999           "name" : "",
2000           "type" : "HTMLElement",
2001           "desc" : "The matching DOM node (or null if no match was found)"
2002         }
2003       ]
2004     },
2005     {
2006       "name" : "addKeyListener",
2007       "desc" : "Convenience method for constructing a KeyMap",
2008       "isStatic" : false,
2009       "isConstructor" : false,
2010       "isPrivate" : false,
2011       "memberOf" : "Roo.Element",
2012       "example" : "",
2013       "deprecated" : "",
2014       "since" : "",
2015       "see" : "",
2016       "params" : [
2017         {
2018           "name" : "key",
2019           "type" : "Number/Array/Object/String",
2020           "desc" : "Either a string with the keys to listen for, the numeric key code, array of key codes or an object with the following options:\n                                 {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}",
2021           "isOptional" : false
2022         },
2023         {
2024           "name" : "fn",
2025           "type" : "Function",
2026           "desc" : "The function to call",
2027           "isOptional" : false
2028         },
2029         {
2030           "name" : "scope",
2031           "type" : "Object",
2032           "desc" : "(optional) The scope of the function",
2033           "isOptional" : false
2034         }
2035       ],
2036       "returns" : [
2037         {
2038           "name" : "",
2039           "type" : "Roo.KeyMap",
2040           "desc" : "The KeyMap created"
2041         }
2042       ]
2043     },
2044     {
2045       "name" : "swallowEvent",
2046       "desc" : "Stops the specified event from bubbling and optionally prevents the default action",
2047       "isStatic" : false,
2048       "isConstructor" : false,
2049       "isPrivate" : false,
2050       "memberOf" : "Roo.Element",
2051       "example" : "",
2052       "deprecated" : "",
2053       "since" : "",
2054       "see" : "",
2055       "params" : [
2056         {
2057           "name" : "eventName",
2058           "type" : "String",
2059           "desc" : "",
2060           "isOptional" : false
2061         },
2062         {
2063           "name" : "preventDefault",
2064           "type" : "Boolean",
2065           "desc" : "(optional) true to prevent the default action too",
2066           "isOptional" : false
2067         }
2068       ],
2069       "returns" : [
2070         {
2071           "name" : "",
2072           "type" : "Roo.Element",
2073           "desc" : "this"
2074         }
2075       ]
2076     },
2077     {
2078       "name" : "getStyles",
2079       "desc" : "Returns an object with properties matching the styles requested.\nFor example, el.getStyles('color', 'font-size', 'width') might return\n{'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.",
2080       "isStatic" : false,
2081       "isConstructor" : false,
2082       "isPrivate" : false,
2083       "memberOf" : "Roo.Element",
2084       "example" : "",
2085       "deprecated" : "",
2086       "since" : "",
2087       "see" : "",
2088       "params" : [
2089         {
2090           "name" : "style1",
2091           "type" : "String",
2092           "desc" : "A style name",
2093           "isOptional" : false
2094         },
2095         {
2096           "name" : "style2",
2097           "type" : "String",
2098           "desc" : "A style name",
2099           "isOptional" : false
2100         }
2101       ],
2102       "returns" : [
2103         {
2104           "name" : "",
2105           "type" : "Object",
2106           "desc" : "The style object"
2107         }
2108       ]
2109     },
2110     {
2111       "name" : "getSize",
2112       "desc" : "Returns the size of the element.",
2113       "isStatic" : false,
2114       "isConstructor" : false,
2115       "isPrivate" : false,
2116       "memberOf" : "Roo.Element",
2117       "example" : "",
2118       "deprecated" : "",
2119       "since" : "",
2120       "see" : "",
2121       "params" : [
2122         {
2123           "name" : "contentSize",
2124           "type" : "Boolean",
2125           "desc" : "(optional) true to get the width/size minus borders and padding",
2126           "isOptional" : false
2127         }
2128       ],
2129       "returns" : [
2130         {
2131           "name" : "",
2132           "type" : "Object",
2133           "desc" : "An object containing the element's size {width: (element width), height: (element height)}"
2134         }
2135       ]
2136     },
2137     {
2138       "name" : "endMeasure",
2139       "desc" : "Restores displays to before beginMeasure was called",
2140       "isStatic" : false,
2141       "isConstructor" : false,
2142       "isPrivate" : false,
2143       "memberOf" : "Roo.Element",
2144       "example" : "",
2145       "deprecated" : "",
2146       "since" : "",
2147       "see" : "",
2148       "params" : [
2149       ],
2150       "returns" : [
2151         {
2152           "name" : "",
2153           "type" : "Roo.Element",
2154           "desc" : "this"
2155         }
2156       ]
2157     },
2158     {
2159       "name" : "getViewSize",
2160       "desc" : "Returns the width and height of the viewport.",
2161       "isStatic" : false,
2162       "isConstructor" : false,
2163       "isPrivate" : false,
2164       "memberOf" : "Roo.Element",
2165       "example" : "",
2166       "deprecated" : "",
2167       "since" : "",
2168       "see" : "",
2169       "params" : [
2170       ],
2171       "returns" : [
2172         {
2173           "name" : "",
2174           "type" : "Object",
2175           "desc" : "An object containing the viewport's size {width: (viewport width), height: (viewport height)}"
2176         }
2177       ]
2178     },
2179     {
2180       "name" : "addClassOnFocus",
2181       "desc" : "Sets up event handlers to add and remove a css class when this element has the focus",
2182       "isStatic" : false,
2183       "isConstructor" : false,
2184       "isPrivate" : false,
2185       "memberOf" : "Roo.Element",
2186       "example" : "",
2187       "deprecated" : "",
2188       "since" : "",
2189       "see" : "",
2190       "params" : [
2191         {
2192           "name" : "className",
2193           "type" : "String",
2194           "desc" : "",
2195           "isOptional" : false
2196         }
2197       ],
2198       "returns" : [
2199         {
2200           "name" : "",
2201           "type" : "Roo.Element",
2202           "desc" : "this"
2203         }
2204       ]
2205     },
2206     {
2207       "name" : "alignTo",
2208       "desc" : "Aligns this element with another element relative to the specified anchor points. If the other element is the\ndocument it aligns it to the viewport.\nThe position parameter is optional, and can be specified in any one of the following formats:\n<ul>\n  <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner (\"tl-bl\").</li>\n  <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.\n      The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been\n      deprecated in favor of the newer two anchor syntax below</i>.</li>\n  <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\n      element's anchor point, and the second value is used as the target's anchor point.</li>\n</ul>\nIn addition to the anchor points, the position parameter also supports the \"?\" character.  If \"?\" is passed at the end of\nthe position string, the element will attempt to align as specified, but the position will be adjusted to constrain to\nthe viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than\nthat specified in order to enforce the viewport constraints.\nFollowing are all of the supported anchor positions:\n    <pre>\n    Value  Description\n    -----  -----------------------------\n    tl     The top left corner (default)\n    t      The center of the top edge\n    tr     The top right corner\n    l      The center of the left edge\n    c      In the center of the element\n    r      The center of the right edge\n    bl     The bottom left corner\n    b      The center of the bottom edge\n    br     The bottom right corner\n    </pre>\n    Example Usage:\n    <pre><code>\n    // align el to other-el using the default positioning (\"tl-bl\", non-constrained)\n    el.alignTo(\"other-el\");\n\n    // align the top left corner of el with the top right corner of other-el (constrained to viewport)\n    el.alignTo(\"other-el\", \"tr?\");\n\n    // align the bottom right corner of el with the center left edge of other-el\n    el.alignTo(\"other-el\", \"br-l?\");\n\n    // align the center of el with the bottom left corner of other-el and\n    // adjust the x position by -6 pixels (and the y position by 0)\n    el.alignTo(\"other-el\", \"c-bl\", [-6, 0]);\n    </code></pre>",
2209       "isStatic" : false,
2210       "isConstructor" : false,
2211       "isPrivate" : false,
2212       "memberOf" : "Roo.Element",
2213       "example" : "",
2214       "deprecated" : "",
2215       "since" : "",
2216       "see" : "",
2217       "params" : [
2218         {
2219           "name" : "element",
2220           "type" : "String/HTMLElement/Roo.Element",
2221           "desc" : "The element to align to.",
2222           "isOptional" : false
2223         },
2224         {
2225           "name" : "position",
2226           "type" : "String",
2227           "desc" : "The position to align to.",
2228           "isOptional" : false
2229         },
2230         {
2231           "name" : "offsets",
2232           "type" : "Array",
2233           "desc" : "(optional) Offset the positioning by [x, y]",
2234           "isOptional" : false
2235         },
2236         {
2237           "name" : "animate",
2238           "type" : "Boolean/Object",
2239           "desc" : "(optional) true for the default animation or a standard Element animation config object",
2240           "isOptional" : false
2241         }
2242       ],
2243       "returns" : [
2244         {
2245           "name" : "",
2246           "type" : "Roo.Element",
2247           "desc" : "this"
2248         }
2249       ]
2250     },
2251     {
2252       "name" : "insertAfter",
2253       "desc" : "Inserts this element after the passed element in the DOM",
2254       "isStatic" : false,
2255       "isConstructor" : false,
2256       "isPrivate" : false,
2257       "memberOf" : "Roo.Element",
2258       "example" : "",
2259       "deprecated" : "",
2260       "since" : "",
2261       "see" : "",
2262       "params" : [
2263         {
2264           "name" : "el",
2265           "type" : "String/HTMLElement/Element",
2266           "desc" : "The element to insert after",
2267           "isOptional" : false
2268         }
2269       ],
2270       "returns" : [
2271         {
2272           "name" : "",
2273           "type" : "Roo.Element",
2274           "desc" : "this"
2275         }
2276       ]
2277     },
2278     {
2279       "name" : "hide",
2280       "desc" : "Hide this element - Uses display mode to determine whether to use \"display\" or \"visibility\". See {@link #setVisible}.",
2281       "isStatic" : false,
2282       "isConstructor" : false,
2283       "isPrivate" : false,
2284       "memberOf" : "Roo.Element",
2285       "example" : "",
2286       "deprecated" : "",
2287       "since" : "",
2288       "see" : "",
2289       "params" : [
2290         {
2291           "name" : "animate",
2292           "type" : "Boolean/Object",
2293           "desc" : "(optional) true for the default animation or a standard Element animation config object",
2294           "isOptional" : false
2295         }
2296       ],
2297       "returns" : [
2298         {
2299           "name" : "",
2300           "type" : "Roo.Element",
2301           "desc" : "this"
2302         }
2303       ]
2304     },
2305     {
2306       "name" : "setBottom",
2307       "desc" : "Sets the element's CSS bottom style.",
2308       "isStatic" : false,
2309       "isConstructor" : false,
2310       "isPrivate" : false,
2311       "memberOf" : "Roo.Element",
2312       "example" : "",
2313       "deprecated" : "",
2314       "since" : "",
2315       "see" : "",
2316       "params" : [
2317         {
2318           "name" : "bottom",
2319           "type" : "String",
2320           "desc" : "The bottom CSS property value",
2321           "isOptional" : false
2322         }
2323       ],
2324       "returns" : [
2325         {
2326           "name" : "",
2327           "type" : "Roo.Element",
2328           "desc" : "this"
2329         }
2330       ]
2331     },
2332     {
2333       "name" : "clearPositioning",
2334       "desc" : "Clear positioning back to the default when the document was loaded",
2335       "isStatic" : false,
2336       "isConstructor" : false,
2337       "isPrivate" : false,
2338       "memberOf" : "Roo.Element",
2339       "example" : "",
2340       "deprecated" : "",
2341       "since" : "",
2342       "see" : "",
2343       "params" : [
2344         {
2345           "name" : "value",
2346           "type" : "String",
2347           "desc" : "(optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.",
2348           "isOptional" : false
2349         }
2350       ],
2351       "returns" : [
2352         {
2353           "name" : "",
2354           "type" : "Roo.Element",
2355           "desc" : "this"
2356         }
2357       ]
2358     },
2359     {
2360       "name" : "isDisplayed",
2361       "desc" : "Returns true if display is not \"none\"",
2362       "isStatic" : false,
2363       "isConstructor" : false,
2364       "isPrivate" : false,
2365       "memberOf" : "Roo.Element",
2366       "example" : "",
2367       "deprecated" : "",
2368       "since" : "",
2369       "see" : "",
2370       "params" : [
2371       ],
2372       "returns" : [
2373         {
2374           "name" : "",
2375           "type" : "Boolean",
2376           "desc" : ""
2377         }
2378       ]
2379     },
2380     {
2381       "name" : "show",
2382       "desc" : "Show this element - Uses display mode to determine whether to use \"display\" or \"visibility\". See {@link #setVisible}.",
2383       "isStatic" : false,
2384       "isConstructor" : false,
2385       "isPrivate" : false,
2386       "memberOf" : "Roo.Element",
2387       "example" : "",
2388       "deprecated" : "",
2389       "since" : "",
2390       "see" : "",
2391       "params" : [
2392         {
2393           "name" : "animate",
2394           "type" : "Boolean/Object",
2395           "desc" : "(optional) true for the default animation or a standard Element animation config object",
2396           "isOptional" : false
2397         }
2398       ],
2399       "returns" : [
2400         {
2401           "name" : "",
2402           "type" : "Roo.Element",
2403           "desc" : "this"
2404         }
2405       ]
2406     },
2407     {
2408       "name" : "setLeftTop",
2409       "desc" : "Quick set left and top adding default units",
2410       "isStatic" : false,
2411       "isConstructor" : false,
2412       "isPrivate" : false,
2413       "memberOf" : "Roo.Element",
2414       "example" : "",
2415       "deprecated" : "",
2416       "since" : "",
2417       "see" : "",
2418       "params" : [
2419         {
2420           "name" : "left",
2421           "type" : "String",
2422           "desc" : "The left CSS property value",
2423           "isOptional" : false
2424         },
2425         {
2426           "name" : "top",
2427           "type" : "String",
2428           "desc" : "The top CSS property value",
2429           "isOptional" : false
2430         }
2431       ],
2432       "returns" : [
2433         {
2434           "name" : "",
2435           "type" : "Roo.Element",
2436           "desc" : "this"
2437         }
2438       ]
2439     },
2440     {
2441       "name" : "child",
2442       "desc" : "Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).",
2443       "isStatic" : false,
2444       "isConstructor" : false,
2445       "isPrivate" : false,
2446       "memberOf" : "Roo.Element",
2447       "example" : "",
2448       "deprecated" : "",
2449       "since" : "",
2450       "see" : "",
2451       "params" : [
2452         {
2453           "name" : "selector",
2454           "type" : "String",
2455           "desc" : "The CSS selector",
2456           "isOptional" : false
2457         },
2458         {
2459           "name" : "returnDom",
2460           "type" : "Boolean",
2461           "desc" : "(optional) True to return the DOM node instead of Roo.Element (defaults to false)",
2462           "isOptional" : false
2463         }
2464       ],
2465       "returns" : [
2466         {
2467           "name" : "",
2468           "type" : "HTMLElement/Roo.Element",
2469           "desc" : "The child Roo.Element (or DOM node if returnDom = true)"
2470         }
2471       ]
2472     },
2473     {
2474       "name" : "unmask",
2475       "desc" : "Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise\nit is cached for reuse.",
2476       "isStatic" : false,
2477       "isConstructor" : false,
2478       "isPrivate" : false,
2479       "memberOf" : "Roo.Element",
2480       "example" : "",
2481       "deprecated" : "",
2482       "since" : "",
2483       "see" : "",
2484       "params" : [
2485       ],
2486       "returns" : [
2487       ]
2488     },
2489     {
2490       "name" : "moveTo",
2491       "desc" : "Sets the position of the element in page coordinates, regardless of how the element is positioned.\nThe element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).",
2492       "isStatic" : false,
2493       "isConstructor" : false,
2494       "isPrivate" : false,
2495       "memberOf" : "Roo.Element",
2496       "example" : "",
2497       "deprecated" : "",
2498       "since" : "",
2499       "see" : "",
2500       "params" : [
2501         {
2502           "name" : "x",
2503           "type" : "Number",
2504           "desc" : "X value for new position (coordinates are page-based)",
2505           "isOptional" : false
2506         },
2507         {
2508           "name" : "y",
2509           "type" : "Number",
2510           "desc" : "Y value for new position (coordinates are page-based)",
2511           "isOptional" : false
2512         },
2513         {
2514           "name" : "animate",
2515           "type" : "Boolean/Object",
2516           "desc" : "(optional) True for the default animation, or a standard Element animation config object",
2517           "isOptional" : false
2518         }
2519       ],
2520       "returns" : [
2521         {
2522           "name" : "",
2523           "type" : "Roo.Element",
2524           "desc" : "this"
2525         }
2526       ]
2527     },
2528     {
2529       "name" : "addClassOnOver",
2530       "desc" : "Sets up event handlers to add and remove a css class when the mouse is over this element",
2531       "isStatic" : false,
2532       "isConstructor" : false,
2533       "isPrivate" : false,
2534       "memberOf" : "Roo.Element",
2535       "example" : "",
2536       "deprecated" : "",
2537       "since" : "",
2538       "see" : "",
2539       "params" : [
2540         {
2541           "name" : "className",
2542           "type" : "String",
2543           "desc" : "",
2544           "isOptional" : false
2545         },
2546         {
2547           "name" : "preventFlicker",
2548           "type" : "Boolean",
2549           "desc" : "(optional) If set to true, it prevents flickering by filtering\nmouseout events for children elements",
2550           "isOptional" : false
2551         }
2552       ],
2553       "returns" : [
2554         {
2555           "name" : "",
2556           "type" : "Roo.Element",
2557           "desc" : "this"
2558         }
2559       ]
2560     },
2561     {
2562       "name" : "getLeft",
2563       "desc" : "Gets the left X coordinate",
2564       "isStatic" : false,
2565       "isConstructor" : false,
2566       "isPrivate" : false,
2567       "memberOf" : "Roo.Element",
2568       "example" : "",
2569       "deprecated" : "",
2570       "since" : "",
2571       "see" : "",
2572       "params" : [
2573         {
2574           "name" : "local",
2575           "type" : "Boolean",
2576           "desc" : "True to get the local css position instead of page coordinate",
2577           "isOptional" : false
2578         }
2579       ],
2580       "returns" : [
2581         {
2582           "name" : "",
2583           "type" : "Number",
2584           "desc" : ""
2585         }
2586       ]
2587     },
2588     {
2589       "name" : "isScrollable",
2590       "desc" : "Returns true if this element is scrollable.",
2591       "isStatic" : false,
2592       "isConstructor" : false,
2593       "isPrivate" : false,
2594       "memberOf" : "Roo.Element",
2595       "example" : "",
2596       "deprecated" : "",
2597       "since" : "",
2598       "see" : "",
2599       "params" : [
2600       ],
2601       "returns" : [
2602         {
2603           "name" : "",
2604           "type" : "Boolean",
2605           "desc" : ""
2606         }
2607       ]
2608     },
2609     {
2610       "name" : "boxWrap",
2611       "desc" : "Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a\ngradient background, rounded corners and a 4-way shadow.",
2612       "isStatic" : false,
2613       "isConstructor" : false,
2614       "isPrivate" : false,
2615       "memberOf" : "Roo.Element",
2616       "example" : "",
2617       "deprecated" : "",
2618       "since" : "",
2619       "see" : "",
2620       "params" : [
2621         {
2622           "name" : "class",
2623           "type" : "String",
2624           "desc" : "(optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').\nNote that there are a number of CSS rules that are dependent on this name to make the overall effect work,\nso if you supply an alternate base class, make sure you also supply all of the necessary rules.",
2625           "isOptional" : false
2626         }
2627       ],
2628       "returns" : [
2629         {
2630           "name" : "",
2631           "type" : "Roo.Element",
2632           "desc" : "this"
2633         }
2634       ]
2635     },
2636     {
2637       "name" : "replace",
2638       "desc" : "Replaces the passed element with this element",
2639       "isStatic" : false,
2640       "isConstructor" : false,
2641       "isPrivate" : false,
2642       "memberOf" : "Roo.Element",
2643       "example" : "",
2644       "deprecated" : "",
2645       "since" : "",
2646       "see" : "",
2647       "params" : [
2648         {
2649           "name" : "el",
2650           "type" : "String/HTMLElement/Element",
2651           "desc" : "The element to replace",
2652           "isOptional" : false
2653         }
2654       ],
2655       "returns" : [
2656         {
2657           "name" : "",
2658           "type" : "Roo.Element",
2659           "desc" : "this"
2660         }
2661       ]
2662     },
2663     {
2664       "name" : "select",
2665       "desc" : "Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).",
2666       "isStatic" : false,
2667       "isConstructor" : false,
2668       "isPrivate" : false,
2669       "memberOf" : "Roo.Element",
2670       "example" : "",
2671       "deprecated" : "",
2672       "since" : "",
2673       "see" : "",
2674       "params" : [
2675         {
2676           "name" : "selector",
2677           "type" : "String",
2678           "desc" : "The CSS selector",
2679           "isOptional" : false
2680         },
2681         {
2682           "name" : "unique",
2683           "type" : "Boolean",
2684           "desc" : "(optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)",
2685           "isOptional" : false
2686         }
2687       ],
2688       "returns" : [
2689         {
2690           "name" : "",
2691           "type" : "CompositeElement/CompositeElementLite",
2692           "desc" : "The composite element"
2693         }
2694       ]
2695     },
2696     {
2697       "name" : "isMasked",
2698       "desc" : "Returns true if this element is masked",
2699       "isStatic" : false,
2700       "isConstructor" : false,
2701       "isPrivate" : false,
2702       "memberOf" : "Roo.Element",
2703       "example" : "",
2704       "deprecated" : "",
2705       "since" : "",
2706       "see" : "",
2707       "params" : [
2708       ],
2709       "returns" : [
2710         {
2711           "name" : "",
2712           "type" : "Boolean",
2713           "desc" : ""
2714         }
2715       ]
2716     },
2717     {
2718       "name" : "getUpdateManager",
2719       "desc" : "Gets this element's UpdateManager",
2720       "isStatic" : false,
2721       "isConstructor" : false,
2722       "isPrivate" : false,
2723       "memberOf" : "Roo.Element",
2724       "example" : "",
2725       "deprecated" : "",
2726       "since" : "",
2727       "see" : "",
2728       "params" : [
2729       ],
2730       "returns" : [
2731         {
2732           "name" : "",
2733           "type" : "Roo.UpdateManager",
2734           "desc" : "The UpdateManager"
2735         }
2736       ]
2737     },
2738     {
2739       "name" : "insertHtml",
2740       "desc" : "Inserts an html fragment into this element",
2741       "isStatic" : false,
2742       "isConstructor" : false,
2743       "isPrivate" : false,
2744       "memberOf" : "Roo.Element",
2745       "example" : "",
2746       "deprecated" : "",
2747       "since" : "",
2748       "see" : "",
2749       "params" : [
2750         {
2751           "name" : "where",
2752           "type" : "String",
2753           "desc" : "Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.",
2754           "isOptional" : false
2755         },
2756         {
2757           "name" : "html",
2758           "type" : "String",
2759           "desc" : "The HTML fragment",
2760           "isOptional" : false
2761         },
2762         {
2763           "name" : "returnEl",
2764           "type" : "Boolean",
2765           "desc" : "True to return an Roo.Element",
2766           "isOptional" : false
2767         }
2768       ],
2769       "returns" : [
2770         {
2771           "name" : "",
2772           "type" : "HTMLElement/Roo.Element",
2773           "desc" : "The inserted node (or nearest related if more than 1 inserted)"
2774         }
2775       ]
2776     },
2777     {
2778       "name" : "mask",
2779       "desc" : "Puts a mask over this element to disable user interaction. Requires core.css.\nThis method can only be applied to elements which accept child nodes.",
2780       "isStatic" : false,
2781       "isConstructor" : false,
2782       "isPrivate" : false,
2783       "memberOf" : "Roo.Element",
2784       "example" : "",
2785       "deprecated" : "",
2786       "since" : "",
2787       "see" : "",
2788       "params" : [
2789         {
2790           "name" : "msg",
2791           "type" : "String",
2792           "desc" : "(optional) A message to display in the mask",
2793           "isOptional" : false
2794         },
2795         {
2796           "name" : "msgCls",
2797           "type" : "String",
2798           "desc" : "(optional) A css class to apply to the msg element",
2799           "isOptional" : false
2800         }
2801       ],
2802       "returns" : [
2803         {
2804           "name" : "",
2805           "type" : "Element",
2806           "desc" : "The mask  element"
2807         }
2808       ]
2809     },
2810     {
2811       "name" : "getTop",
2812       "desc" : "Gets the top Y coordinate",
2813       "isStatic" : false,
2814       "isConstructor" : false,
2815       "isPrivate" : false,
2816       "memberOf" : "Roo.Element",
2817       "example" : "",
2818       "deprecated" : "",
2819       "since" : "",
2820       "see" : "",
2821       "params" : [
2822         {
2823           "name" : "local",
2824           "type" : "Boolean",
2825           "desc" : "True to get the local css position instead of page coordinate",
2826           "isOptional" : false
2827         }
2828       ],
2829       "returns" : [
2830         {
2831           "name" : "",
2832           "type" : "Number",
2833           "desc" : ""
2834         }
2835       ]
2836     },
2837     {
2838       "name" : "getBottom",
2839       "desc" : "Gets the bottom Y coordinate of the element (element Y position + element height)",
2840       "isStatic" : false,
2841       "isConstructor" : false,
2842       "isPrivate" : false,
2843       "memberOf" : "Roo.Element",
2844       "example" : "",
2845       "deprecated" : "",
2846       "since" : "",
2847       "see" : "",
2848       "params" : [
2849         {
2850           "name" : "local",
2851           "type" : "Boolean",
2852           "desc" : "True to get the local css position instead of page coordinate",
2853           "isOptional" : false
2854         }
2855       ],
2856       "returns" : [
2857         {
2858           "name" : "",
2859           "type" : "Number",
2860           "desc" : ""
2861         }
2862       ]
2863     },
2864     {
2865       "name" : "getRight",
2866       "desc" : "Gets the right X coordinate of the element (element X position + element width)",
2867       "isStatic" : false,
2868       "isConstructor" : false,
2869       "isPrivate" : false,
2870       "memberOf" : "Roo.Element",
2871       "example" : "",
2872       "deprecated" : "",
2873       "since" : "",
2874       "see" : "",
2875       "params" : [
2876         {
2877           "name" : "local",
2878           "type" : "Boolean",
2879           "desc" : "True to get the local css position instead of page coordinate",
2880           "isOptional" : false
2881         }
2882       ],
2883       "returns" : [
2884         {
2885           "name" : "",
2886           "type" : "Number",
2887           "desc" : ""
2888         }
2889       ]
2890     },
2891     {
2892       "name" : "beginMeasure",
2893       "desc" : "Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.",
2894       "isStatic" : false,
2895       "isConstructor" : false,
2896       "isPrivate" : false,
2897       "memberOf" : "Roo.Element",
2898       "example" : "",
2899       "deprecated" : "",
2900       "since" : "",
2901       "see" : "",
2902       "params" : [
2903       ],
2904       "returns" : [
2905         {
2906           "name" : "",
2907           "type" : "Roo.Element",
2908           "desc" : "this"
2909         }
2910       ]
2911     },
2912     {
2913       "name" : "appendTo",
2914       "desc" : "Appends this element to the passed element",
2915       "isStatic" : false,
2916       "isConstructor" : false,
2917       "isPrivate" : false,
2918       "memberOf" : "Roo.Element",
2919       "example" : "",
2920       "deprecated" : "",
2921       "since" : "",
2922       "see" : "",
2923       "params" : [
2924         {
2925           "name" : "el",
2926           "type" : "String/HTMLElement/Element",
2927           "desc" : "The new parent element",
2928           "isOptional" : false
2929         }
2930       ],
2931       "returns" : [
2932         {
2933           "name" : "",
2934           "type" : "Roo.Element",
2935           "desc" : "this"
2936         }
2937       ]
2938     },
2939     {
2940       "name" : "fly",
2941       "desc" : "Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -\nthe dom node can be overwritten by other code.",
2942       "isStatic" : true,
2943       "isConstructor" : false,
2944       "isPrivate" : false,
2945       "memberOf" : "Roo.Element",
2946       "example" : "",
2947       "deprecated" : "",
2948       "since" : "",
2949       "see" : "",
2950       "params" : [
2951         {
2952           "name" : "el",
2953           "type" : "String/HTMLElement",
2954           "desc" : "The dom node or id",
2955           "isOptional" : false
2956         },
2957         {
2958           "name" : "named",
2959           "type" : "String",
2960           "desc" : "(optional) Allows for creation of named reusable flyweights to\n                                 prevent conflicts (e.g. internally Roo uses \"_internal\")",
2961           "isOptional" : false
2962         }
2963       ],
2964       "returns" : [
2965         {
2966           "name" : "",
2967           "type" : "Element",
2968           "desc" : "The shared Element object"
2969         }
2970       ]
2971     },
2972     {
2973       "name" : "hasClass",
2974       "desc" : "Checks if the specified CSS class exists on this element's DOM node.",
2975       "isStatic" : false,
2976       "isConstructor" : false,
2977       "isPrivate" : false,
2978       "memberOf" : "Roo.Element",
2979       "example" : "",
2980       "deprecated" : "",
2981       "since" : "",
2982       "see" : "",
2983       "params" : [
2984         {
2985           "name" : "className",
2986           "type" : "String",
2987           "desc" : "The CSS class to check for",
2988           "isOptional" : false
2989         }
2990       ],
2991       "returns" : [
2992         {
2993           "name" : "",
2994           "type" : "Boolean",
2995           "desc" : "True if the class exists, else false"
2996         }
2997       ]
2998     },
2999     {
3000       "name" : "findScrollableParent",
3001       "desc" : "Looks at  the scrollable parent element",
3002       "isStatic" : false,
3003       "isConstructor" : false,
3004       "isPrivate" : false,
3005       "memberOf" : "Roo.Element",
3006       "example" : "",
3007       "deprecated" : "",
3008       "since" : "",
3009       "see" : "",
3010       "params" : [
3011       ],
3012       "returns" : [
3013       ]
3014     },
3015     {
3016       "name" : "fitToParent",
3017       "desc" : "Sizes this element to its parent element's dimensions performing\nneccessary box adjustments.",
3018       "isStatic" : false,
3019       "isConstructor" : false,
3020       "isPrivate" : false,
3021       "memberOf" : "Roo.Element",
3022       "example" : "",
3023       "deprecated" : "",
3024       "since" : "",
3025       "see" : "",
3026       "params" : [
3027         {
3028           "name" : "monitorResize",
3029           "type" : "Boolean",
3030           "desc" : "(optional) If true maintains the fit when the browser window is resized.",
3031           "isOptional" : false
3032         },
3033         {
3034           "name" : "targetParent",
3035           "type" : "String/HTMLElment/Element",
3036           "desc" : "(optional) The target parent, default to the parentNode.",
3037           "isOptional" : false
3038         }
3039       ],
3040       "returns" : [
3041         {
3042           "name" : "",
3043           "type" : "Roo.Element",
3044           "desc" : "this"
3045         }
3046       ]
3047     },
3048     {
3049       "name" : "setXY",
3050       "desc" : "Sets the position of the element in page coordinates, regardless of how the element is positioned.\nThe element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).",
3051       "isStatic" : false,
3052       "isConstructor" : false,
3053       "isPrivate" : false,
3054       "memberOf" : "Roo.Element",
3055       "example" : "",
3056       "deprecated" : "",
3057       "since" : "",
3058       "see" : "",
3059       "params" : [
3060         {
3061           "name" : "pos",
3062           "type" : "Array",
3063           "desc" : "Contains X & Y [x, y] values for new position (coordinates are page-based)",
3064           "isOptional" : false
3065         },
3066         {
3067           "name" : "animate",
3068           "type" : "Boolean/Object",
3069           "desc" : "(optional) True for the default animation, or a standard Element animation config object",
3070           "isOptional" : false
3071         }
3072       ],
3073       "returns" : [
3074         {
3075           "name" : "",
3076           "type" : "Roo.Element",
3077           "desc" : "this"
3078         }
3079       ]
3080     },
3081     {
3082       "name" : "getXY",
3083       "desc" : "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).",
3084       "isStatic" : false,
3085       "isConstructor" : false,
3086       "isPrivate" : false,
3087       "memberOf" : "Roo.Element",
3088       "example" : "",
3089       "deprecated" : "",
3090       "since" : "",
3091       "see" : "",
3092       "params" : [
3093       ],
3094       "returns" : [
3095         {
3096           "name" : "",
3097           "type" : "Array",
3098           "desc" : "The XY position of the element"
3099         }
3100       ]
3101     },
3102     {
3103       "name" : "unselectable",
3104       "desc" : "Disables text selection for this element (normalized across browsers)",
3105       "isStatic" : false,
3106       "isConstructor" : false,
3107       "isPrivate" : false,
3108       "memberOf" : "Roo.Element",
3109       "example" : "",
3110       "deprecated" : "",
3111       "since" : "",
3112       "see" : "",
3113       "params" : [
3114       ],
3115       "returns" : [
3116         {
3117           "name" : "",
3118           "type" : "Roo.Element",
3119           "desc" : "this"
3120         }
3121       ]
3122     },
3123     {
3124       "name" : "blur",
3125       "desc" : "Tries to blur the element. Any exceptions are caught and ignored.",
3126       "isStatic" : false,
3127       "isConstructor" : false,
3128       "isPrivate" : false,
3129       "memberOf" : "Roo.Element",
3130       "example" : "",
3131       "deprecated" : "",
3132       "since" : "",
3133       "see" : "",
3134       "params" : [
3135       ],
3136       "returns" : [
3137         {
3138           "name" : "",
3139           "type" : "Roo.Element",
3140           "desc" : "this"
3141         }
3142       ]
3143     },
3144     {
3145       "name" : "setRight",
3146       "desc" : "Sets the element's CSS right style.",
3147       "isStatic" : false,
3148       "isConstructor" : false,
3149       "isPrivate" : false,
3150       "memberOf" : "Roo.Element",
3151       "example" : "",
3152       "deprecated" : "",
3153       "since" : "",
3154       "see" : "",
3155       "params" : [
3156         {
3157           "name" : "right",
3158           "type" : "String",
3159           "desc" : "The right CSS property value",
3160           "isOptional" : false
3161         }
3162       ],
3163       "returns" : [
3164         {
3165           "name" : "",
3166           "type" : "Roo.Element",
3167           "desc" : "this"
3168         }
3169       ]
3170     },
3171     {
3172       "name" : "findParentNode",
3173       "desc" : "Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)",
3174       "isStatic" : false,
3175       "isConstructor" : false,
3176       "isPrivate" : false,
3177       "memberOf" : "Roo.Element",
3178       "example" : "",
3179       "deprecated" : "",
3180       "since" : "",
3181       "see" : "",
3182       "params" : [
3183         {
3184           "name" : "selector",
3185           "type" : "String",
3186           "desc" : "The simple selector to test",
3187           "isOptional" : false
3188         },
3189         {
3190           "name" : "maxDepth",
3191           "type" : "Number/String/HTMLElement/Element",
3192           "desc" : "(optional) The max depth to\n                search as a number or element (defaults to 10 || document.body)",
3193           "isOptional" : false
3194         },
3195         {
3196           "name" : "returnEl",
3197           "type" : "Boolean",
3198           "desc" : "(optional) True to return a Roo.Element object instead of DOM node",
3199           "isOptional" : false
3200         }
3201       ],
3202       "returns" : [
3203         {
3204           "name" : "",
3205           "type" : "HTMLElement",
3206           "desc" : "The matching DOM node (or null if no match was found)"
3207         }
3208       ]
3209     },
3210     {
3211       "name" : "position",
3212       "desc" : "Initializes positioning on this element. If a desired position is not passed, it will make the\nthe element positioned relative IF it is not already positioned.",
3213       "isStatic" : false,
3214       "isConstructor" : false,
3215       "isPrivate" : false,
3216       "memberOf" : "Roo.Element",
3217       "example" : "",
3218       "deprecated" : "",
3219       "since" : "",
3220       "see" : "",
3221       "params" : [
3222         {
3223           "name" : "pos",
3224           "type" : "String",
3225           "desc" : "(optional) Positioning to use \"relative\", \"absolute\" or \"fixed\"",
3226           "isOptional" : false
3227         },
3228         {
3229           "name" : "zIndex",
3230           "type" : "Number",
3231           "desc" : "(optional) The zIndex to apply",
3232           "isOptional" : false
3233         },
3234         {
3235           "name" : "x",
3236           "type" : "Number",
3237           "desc" : "(optional) Set the page X position",
3238           "isOptional" : false
3239         },
3240         {
3241           "name" : "y",
3242           "type" : "Number",
3243           "desc" : "(optional) Set the page Y position",
3244           "isOptional" : false
3245         }
3246       ],
3247       "returns" : [
3248       ]
3249     },
3250     {
3251       "name" : "getFrameWidth",
3252       "desc" : "Returns the sum width of the padding and borders for the passed \"sides\". See getBorderWidth()\n         for more information about the sides.",
3253       "isStatic" : false,
3254       "isConstructor" : false,
3255       "isPrivate" : false,
3256       "memberOf" : "Roo.Element",
3257       "example" : "",
3258       "deprecated" : "",
3259       "since" : "",
3260       "see" : "",
3261       "params" : [
3262         {
3263           "name" : "sides",
3264           "type" : "String",
3265           "desc" : "",
3266           "isOptional" : false
3267         }
3268       ],
3269       "returns" : [
3270         {
3271           "name" : "",
3272           "type" : "Number",
3273           "desc" : ""
3274         }
3275       ]
3276     },
3277     {
3278       "name" : "setLocation",
3279       "desc" : "Sets the position of the element in page coordinates, regardless of how the element is positioned.\nThe element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).",
3280       "isStatic" : false,
3281       "isConstructor" : false,
3282       "isPrivate" : false,
3283       "memberOf" : "Roo.Element",
3284       "example" : "",
3285       "deprecated" : "",
3286       "since" : "",
3287       "see" : "",
3288       "params" : [
3289         {
3290           "name" : "x",
3291           "type" : "Number",
3292           "desc" : "X value for new position (coordinates are page-based)",
3293           "isOptional" : false
3294         },
3295         {
3296           "name" : "y",
3297           "type" : "Number",
3298           "desc" : "Y value for new position (coordinates are page-based)",
3299           "isOptional" : false
3300         },
3301         {
3302           "name" : "animate",
3303           "type" : "Boolean/Object",
3304           "desc" : "(optional) True for the default animation, or a standard Element animation config object",
3305           "isOptional" : false
3306         }
3307       ],
3308       "returns" : [
3309         {
3310           "name" : "",
3311           "type" : "Roo.Element",
3312           "desc" : "this"
3313         }
3314       ]
3315     },
3316     {
3317       "name" : "unclip",
3318       "desc" : "Return clipping (overflow) to original clipping before clip() was called",
3319       "isStatic" : false,
3320       "isConstructor" : false,
3321       "isPrivate" : false,
3322       "memberOf" : "Roo.Element",
3323       "example" : "",
3324       "deprecated" : "",
3325       "since" : "",
3326       "see" : "",
3327       "params" : [
3328       ],
3329       "returns" : [
3330         {
3331           "name" : "",
3332           "type" : "Roo.Element",
3333           "desc" : "this"
3334         }
3335       ]
3336     },
3337     {
3338       "name" : "set",
3339       "desc" : "Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)",
3340       "isStatic" : false,
3341       "isConstructor" : false,
3342       "isPrivate" : false,
3343       "memberOf" : "Roo.Element",
3344       "example" : "",
3345       "deprecated" : "",
3346       "since" : "",
3347       "see" : "",
3348       "params" : [
3349         {
3350           "name" : "o",
3351           "type" : "Object",
3352           "desc" : "The object with the attributes",
3353           "isOptional" : false
3354         },
3355         {
3356           "name" : "useSet",
3357           "type" : "Boolean",
3358           "desc" : "(optional) false to override the default setAttribute to use expandos.",
3359           "isOptional" : false
3360         }
3361       ],
3362       "returns" : [
3363         {
3364           "name" : "",
3365           "type" : "Roo.Element",
3366           "desc" : "this"
3367         }
3368       ]
3369     },
3370     {
3371       "name" : "setDisplayed",
3372       "desc" : "Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.",
3373       "isStatic" : false,
3374       "isConstructor" : false,
3375       "isPrivate" : false,
3376       "memberOf" : "Roo.Element",
3377       "example" : "",
3378       "deprecated" : "",
3379       "since" : "",
3380       "see" : "",
3381       "params" : [
3382         {
3383           "name" : "value",
3384           "type" : "Boolean",
3385           "desc" : "Boolean value to display the element using its default display, or a string to set the display directly",
3386           "isOptional" : false
3387         }
3388       ],
3389       "returns" : [
3390         {
3391           "name" : "",
3392           "type" : "Roo.Element",
3393           "desc" : "this"
3394         }
3395       ]
3396     },
3397     {
3398       "name" : "insertFirst",
3399       "desc" : "Inserts (or creates) an element (or DomHelper config) as the first child of the this element",
3400       "isStatic" : false,
3401       "isConstructor" : false,
3402       "isPrivate" : false,
3403       "memberOf" : "Roo.Element",
3404       "example" : "",
3405       "deprecated" : "",
3406       "since" : "",
3407       "see" : "",
3408       "params" : [
3409         {
3410           "name" : "el",
3411           "type" : "String/HTMLElement/Element/Object",
3412           "desc" : "The id or element to insert or a DomHelper config to create and insert",
3413           "isOptional" : false
3414         }
3415       ],
3416       "returns" : [
3417         {
3418           "name" : "",
3419           "type" : "Roo.Element",
3420           "desc" : "The new child"
3421         }
3422       ]
3423     },
3424     {
3425       "name" : "animate",
3426       "desc" : "Perform animation on this element.",
3427       "isStatic" : false,
3428       "isConstructor" : false,
3429       "isPrivate" : false,
3430       "memberOf" : "Roo.Element",
3431       "example" : "",
3432       "deprecated" : "",
3433       "since" : "",
3434       "see" : "",
3435       "params" : [
3436         {
3437           "name" : "args",
3438           "type" : "Object",
3439           "desc" : "The YUI animation control args",
3440           "isOptional" : false
3441         },
3442         {
3443           "name" : "duration",
3444           "type" : "Float",
3445           "desc" : "(optional) How long the animation lasts in seconds (defaults to .35)",
3446           "isOptional" : false
3447         },
3448         {
3449           "name" : "onComplete",
3450           "type" : "Function",
3451           "desc" : "(optional) Function to call when animation completes",
3452           "isOptional" : false
3453         },
3454         {
3455           "name" : "easing",
3456           "type" : "String",
3457           "desc" : "(optional) Easing method to use (defaults to 'easeOut')",
3458           "isOptional" : false
3459         },
3460         {
3461           "name" : "animType",
3462           "type" : "String",
3463           "desc" : "(optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'",
3464           "isOptional" : false
3465         }
3466       ],
3467       "returns" : [
3468         {
3469           "name" : "",
3470           "type" : "Roo.Element",
3471           "desc" : "this"
3472         }
3473       ]
3474     },
3475     {
3476       "name" : "enableDisplayMode",
3477       "desc" : "Convenience method for setVisibilityMode(Element.DISPLAY)",
3478       "isStatic" : false,
3479       "isConstructor" : false,
3480       "isPrivate" : false,
3481       "memberOf" : "Roo.Element",
3482       "example" : "",
3483       "deprecated" : "",
3484       "since" : "",
3485       "see" : "",
3486       "params" : [
3487         {
3488           "name" : "display",
3489           "type" : "String",
3490           "desc" : "(optional) What to set display to when visible",
3491           "isOptional" : false
3492         }
3493       ],
3494       "returns" : [
3495         {
3496           "name" : "",
3497           "type" : "Roo.Element",
3498           "desc" : "this"
3499         }
3500       ]
3501     },
3502     {
3503       "name" : "getComputedWidth",
3504       "desc" : "Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders\nwhen needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements\nif a width has not been set using CSS.",
3505       "isStatic" : false,
3506       "isConstructor" : false,
3507       "isPrivate" : false,
3508       "memberOf" : "Roo.Element",
3509       "example" : "",
3510       "deprecated" : "",
3511       "since" : "",
3512       "see" : "",
3513       "params" : [
3514       ],
3515       "returns" : [
3516         {
3517           "name" : "",
3518           "type" : "Number",
3519           "desc" : ""
3520         }
3521       ]
3522     },
3523     {
3524       "name" : "clip",
3525       "desc" : "Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove",
3526       "isStatic" : false,
3527       "isConstructor" : false,
3528       "isPrivate" : false,
3529       "memberOf" : "Roo.Element",
3530       "example" : "",
3531       "deprecated" : "",
3532       "since" : "",
3533       "see" : "",
3534       "params" : [
3535       ],
3536       "returns" : [
3537         {
3538           "name" : "",
3539           "type" : "Roo.Element",
3540           "desc" : "this"
3541         }
3542       ]
3543     },
3544     {
3545       "name" : "setVisibilityMode",
3546       "desc" : "Sets the element's visibility mode. When setVisible() is called it\nwill use this to determine whether to set the visibility or the display property.",
3547       "isStatic" : false,
3548       "isConstructor" : false,
3549       "isPrivate" : false,
3550       "memberOf" : "Roo.Element",
3551       "example" : "",
3552       "deprecated" : "",
3553       "since" : "",
3554       "see" : "",
3555       "params" : [
3556         {
3557           "name" : "visMode",
3558           "type" : "",
3559           "desc" : "Element.VISIBILITY or Element.DISPLAY",
3560           "isOptional" : false
3561         }
3562       ],
3563       "returns" : [
3564         {
3565           "name" : "",
3566           "type" : "Roo.Element",
3567           "desc" : "this"
3568         }
3569       ]
3570     },
3571     {
3572       "name" : "getColor",
3573       "desc" : "Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values\nare convert to standard 6 digit hex color.",
3574       "isStatic" : false,
3575       "isConstructor" : false,
3576       "isPrivate" : false,
3577       "memberOf" : "Roo.Element",
3578       "example" : "",
3579       "deprecated" : "",
3580       "since" : "",
3581       "see" : "",
3582       "params" : [
3583         {
3584           "name" : "attr",
3585           "type" : "String",
3586           "desc" : "The css attribute",
3587           "isOptional" : false
3588         },
3589         {
3590           "name" : "defaultValue",
3591           "type" : "String",
3592           "desc" : "The default value to use when a valid color isn't found",
3593           "isOptional" : false
3594         },
3595         {
3596           "name" : "prefix",
3597           "type" : "String",
3598           "desc" : "(optional) defaults to #. Use an empty string when working with\nYUI color anims.",
3599           "isOptional" : false
3600         }
3601       ],
3602       "returns" : [
3603       ]
3604     },
3605     {
3606       "name" : "insertSibling",
3607       "desc" : "Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element",
3608       "isStatic" : false,
3609       "isConstructor" : false,
3610       "isPrivate" : false,
3611       "memberOf" : "Roo.Element",
3612       "example" : "",
3613       "deprecated" : "",
3614       "since" : "",
3615       "see" : "",
3616       "params" : [
3617         {
3618           "name" : "el",
3619           "type" : "String/HTMLElement/Element/Object",
3620           "desc" : "The id or element to insert or a DomHelper config to create and insert",
3621           "isOptional" : false
3622         },
3623         {
3624           "name" : "where",
3625           "type" : "String",
3626           "desc" : "(optional) 'before' or 'after' defaults to before",
3627           "isOptional" : false
3628         },
3629         {
3630           "name" : "returnDom",
3631           "type" : "Boolean",
3632           "desc" : "(optional) True to return the raw DOM element instead of Roo.Element",
3633           "isOptional" : false
3634         }
3635       ],
3636       "returns" : [
3637         {
3638           "name" : "",
3639           "type" : "Roo.Element",
3640           "desc" : "the inserted Element"
3641         }
3642       ]
3643     },
3644     {
3645       "name" : "removeListener",
3646       "desc" : "Removes an event handler from this element",
3647       "isStatic" : false,
3648       "isConstructor" : false,
3649       "isPrivate" : false,
3650       "memberOf" : "Roo.Element",
3651       "example" : "",
3652       "deprecated" : "",
3653       "since" : "",
3654       "see" : "",
3655       "params" : [
3656         {
3657           "name" : "eventName",
3658           "type" : "String",
3659           "desc" : "the type of event to remove",
3660           "isOptional" : false
3661         },
3662         {
3663           "name" : "fn",
3664           "type" : "Function",
3665           "desc" : "the method the event invokes",
3666           "isOptional" : false
3667         }
3668       ],
3669       "returns" : [
3670         {
3671           "name" : "",
3672           "type" : "Roo.Element",
3673           "desc" : "this"
3674         }
3675       ]
3676     },
3677     {
3678       "name" : "applyStyles",
3679       "desc" : "More flexible version of {@link #setStyle} for setting style properties.",
3680       "isStatic" : false,
3681       "isConstructor" : false,
3682       "isPrivate" : false,
3683       "memberOf" : "Roo.Element",
3684       "example" : "",
3685       "deprecated" : "",
3686       "since" : "",
3687       "see" : "",
3688       "params" : [
3689         {
3690           "name" : "styles",
3691           "type" : "String/Object/Function",
3692           "desc" : "A style specification string, e.g. \"width:100px\", or object in the form {width:\"100px\"}, or\na function which returns such a specification.",
3693           "isOptional" : false
3694         }
3695       ],
3696       "returns" : [
3697         {
3698           "name" : "",
3699           "type" : "Roo.Element",
3700           "desc" : "this"
3701         }
3702       ]
3703     },
3704     {
3705       "name" : "getPrevSibling",
3706       "desc" : "Gets the previous sibling, skipping text nodes",
3707       "isStatic" : false,
3708       "isConstructor" : false,
3709       "isPrivate" : false,
3710       "memberOf" : "Roo.Element",
3711       "example" : "",
3712       "deprecated" : "",
3713       "since" : "",
3714       "see" : "",
3715       "params" : [
3716       ],
3717       "returns" : [
3718         {
3719           "name" : "",
3720           "type" : "HTMLElement",
3721           "desc" : "The previous sibling or null"
3722         }
3723       ]
3724     },
3725     {
3726       "name" : "setBox",
3727       "desc" : "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.",
3728       "isStatic" : false,
3729       "isConstructor" : false,
3730       "isPrivate" : false,
3731       "memberOf" : "Roo.Element",
3732       "example" : "",
3733       "deprecated" : "",
3734       "since" : "",
3735       "see" : "",
3736       "params" : [
3737         {
3738           "name" : "box",
3739           "type" : "Object",
3740           "desc" : "The box to fill {x, y, width, height}",
3741           "isOptional" : false
3742         },
3743         {
3744           "name" : "adjust",
3745           "type" : "Boolean",
3746           "desc" : "(optional) Whether to adjust for box-model issues automatically",
3747           "isOptional" : false
3748         },
3749         {
3750           "name" : "animate",
3751           "type" : "Boolean/Object",
3752           "desc" : "(optional) true for the default animation or a standard Element animation config object",
3753           "isOptional" : false
3754         }
3755       ],
3756       "returns" : [
3757         {
3758           "name" : "",
3759           "type" : "Roo.Element",
3760           "desc" : "this"
3761         }
3762       ]
3763     },
3764     {
3765       "name" : "initDDProxy",
3766       "desc" : "Initializes a {@link Roo.dd.DDProxy} object for this element.",
3767       "isStatic" : false,
3768       "isConstructor" : false,
3769       "isPrivate" : false,
3770       "memberOf" : "Roo.Element",
3771       "example" : "",
3772       "deprecated" : "",
3773       "since" : "",
3774       "see" : "",
3775       "params" : [
3776         {
3777           "name" : "group",
3778           "type" : "String",
3779           "desc" : "The group the DDProxy object is member of",
3780           "isOptional" : false
3781         },
3782         {
3783           "name" : "config",
3784           "type" : "Object",
3785           "desc" : "The DDProxy config object",
3786           "isOptional" : false
3787         },
3788         {
3789           "name" : "overrides",
3790           "type" : "Object",
3791           "desc" : "An object containing methods to override/implement on the DDProxy object",
3792           "isOptional" : false
3793         }
3794       ],
3795       "returns" : [
3796         {
3797           "name" : "",
3798           "type" : "Roo.dd.DDProxy",
3799           "desc" : "The DDProxy object"
3800         }
3801       ]
3802     },
3803     {
3804       "name" : "setX",
3805       "desc" : "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).",
3806       "isStatic" : false,
3807       "isConstructor" : false,
3808       "isPrivate" : false,
3809       "memberOf" : "Roo.Element",
3810       "example" : "",
3811       "deprecated" : "",
3812       "since" : "",
3813       "see" : "",
3814       "params" : [
3815         {
3816           "name" : "The",
3817           "type" : "Number",
3818           "desc" : "X position of the element",
3819           "isOptional" : false
3820         },
3821         {
3822           "name" : "animate",
3823           "type" : "Boolean/Object",
3824           "desc" : "(optional) True for the default animation, or a standard Element animation config object",
3825           "isOptional" : false
3826         }
3827       ],
3828       "returns" : [
3829         {
3830           "name" : "",
3831           "type" : "Roo.Element",
3832           "desc" : "this"
3833         }
3834       ]
3835     },
3836     {
3837       "name" : "setY",
3838       "desc" : "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).",
3839       "isStatic" : false,
3840       "isConstructor" : false,
3841       "isPrivate" : false,
3842       "memberOf" : "Roo.Element",
3843       "example" : "",
3844       "deprecated" : "",
3845       "since" : "",
3846       "see" : "",
3847       "params" : [
3848         {
3849           "name" : "The",
3850           "type" : "Number",
3851           "desc" : "Y position of the element",
3852           "isOptional" : false
3853         },
3854         {
3855           "name" : "animate",
3856           "type" : "Boolean/Object",
3857           "desc" : "(optional) True for the default animation, or a standard Element animation config object",
3858           "isOptional" : false
3859         }
3860       ],
3861       "returns" : [
3862         {
3863           "name" : "",
3864           "type" : "Roo.Element",
3865           "desc" : "this"
3866         }
3867       ]
3868     },
3869     {
3870       "name" : "query",
3871       "desc" : "Selects child nodes based on the passed CSS selector (the selector should not contain an id).",
3872       "isStatic" : false,
3873       "isConstructor" : false,
3874       "isPrivate" : false,
3875       "memberOf" : "Roo.Element",
3876       "example" : "",
3877       "deprecated" : "",
3878       "since" : "",
3879       "see" : "",
3880       "params" : [
3881         {
3882           "name" : "selector",
3883           "type" : "String",
3884           "desc" : "The CSS selector",
3885           "isOptional" : false
3886         }
3887       ],
3888       "returns" : [
3889         {
3890           "name" : "",
3891           "type" : "Array",
3892           "desc" : "An array of the matched nodes"
3893         }
3894       ]
3895     },
3896     {
3897       "name" : "getAnchorXY",
3898       "desc" : "Gets the x,y coordinates specified by the anchor position on the element.",
3899       "isStatic" : false,
3900       "isConstructor" : false,
3901       "isPrivate" : false,
3902       "memberOf" : "Roo.Element",
3903       "example" : "",
3904       "deprecated" : "",
3905       "since" : "",
3906       "see" : "",
3907       "params" : [
3908         {
3909           "name" : "anchor",
3910           "type" : "String",
3911           "desc" : "(optional) The specified anchor position (defaults to \"c\").  See {@link #alignTo} for details on supported anchor positions.",
3912           "isOptional" : false
3913         },
3914         {
3915           "name" : "size",
3916           "type" : "Object",
3917           "desc" : "(optional) An object containing the size to use for calculating anchor position\n                      {width: (target width), height: (target height)} (defaults to the element's current size)",
3918           "isOptional" : false
3919         },
3920         {
3921           "name" : "local",
3922           "type" : "Boolean",
3923           "desc" : "(optional) True to get the local (element top/left-relative) anchor position instead of page coordinates",
3924           "isOptional" : false
3925         }
3926       ],
3927       "returns" : [
3928         {
3929           "name" : "",
3930           "type" : "Array",
3931           "desc" : "[x, y] An array containing the element's x and y coordinates"
3932         }
3933       ]
3934     },
3935     {
3936       "name" : "initDD",
3937       "desc" : "Initializes a {@link Roo.dd.DD} drag drop object for this element.",
3938       "isStatic" : false,
3939       "isConstructor" : false,
3940       "isPrivate" : false,
3941       "memberOf" : "Roo.Element",
3942       "example" : "",
3943       "deprecated" : "",
3944       "since" : "",
3945       "see" : "",
3946       "params" : [
3947         {
3948           "name" : "group",
3949           "type" : "String",
3950           "desc" : "The group the DD object is member of",
3951           "isOptional" : false
3952         },
3953         {
3954           "name" : "config",
3955           "type" : "Object",
3956           "desc" : "The DD config object",
3957           "isOptional" : false
3958         },
3959         {
3960           "name" : "overrides",
3961           "type" : "Object",
3962           "desc" : "An object containing methods to override/implement on the DD object",
3963           "isOptional" : false
3964         }
3965       ],
3966       "returns" : [
3967         {
3968           "name" : "",
3969           "type" : "Roo.dd.DD",
3970           "desc" : "The DD object"
3971         }
3972       ]
3973     },
3974     {
3975       "name" : "getComputedHeight",
3976       "desc" : "Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders\nwhen needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements\nif a height has not been set using CSS.",
3977       "isStatic" : false,
3978       "isConstructor" : false,
3979       "isPrivate" : false,
3980       "memberOf" : "Roo.Element",
3981       "example" : "",
3982       "deprecated" : "",
3983       "since" : "",
3984       "see" : "",
3985       "params" : [
3986       ],
3987       "returns" : [
3988         {
3989           "name" : "",
3990           "type" : "Number",
3991           "desc" : ""
3992         }
3993       ]
3994     },
3995     {
3996       "name" : "is",
3997       "desc" : "Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)",
3998       "isStatic" : false,
3999       "isConstructor" : false,
4000       "isPrivate" : false,
4001       "memberOf" : "Roo.Element",
4002       "example" : "",
4003       "deprecated" : "",
4004       "since" : "",
4005       "see" : "",
4006       "params" : [
4007         {
4008           "name" : "selector",
4009           "type" : "String",
4010           "desc" : "The simple selector to test",
4011           "isOptional" : false
4012         }
4013       ],
4014       "returns" : [
4015         {
4016           "name" : "",
4017           "type" : "Boolean",
4018           "desc" : "True if this element matches the selector, else false"
4019         }
4020       ]
4021     },
4022     {
4023       "name" : "move",
4024       "desc" : "Move this element relative to its current position.",
4025       "isStatic" : false,
4026       "isConstructor" : false,
4027       "isPrivate" : false,
4028       "memberOf" : "Roo.Element",
4029       "example" : "",
4030       "deprecated" : "",
4031       "since" : "",
4032       "see" : "",
4033       "params" : [
4034         {
4035           "name" : "direction",
4036           "type" : "String",
4037           "desc" : "Possible values are: \"l\",\"left\" - \"r\",\"right\" - \"t\",\"top\",\"up\" - \"b\",\"bottom\",\"down\".",
4038           "isOptional" : false
4039         },
4040         {
4041           "name" : "distance",
4042           "type" : "Number",
4043           "desc" : "How far to move the element in pixels",
4044           "isOptional" : false
4045         },
4046         {
4047           "name" : "animate",
4048           "type" : "Boolean/Object",
4049           "desc" : "(optional) true for the default animation or a standard Element animation config object",
4050           "isOptional" : false
4051         }
4052       ],
4053       "returns" : [
4054         {
4055           "name" : "",
4056           "type" : "Roo.Element",
4057           "desc" : "this"
4058         }
4059       ]
4060     },
4061     {
4062       "name" : "remove",
4063       "desc" : "Removes this element from the DOM and deletes it from the cache",
4064       "isStatic" : false,
4065       "isConstructor" : false,
4066       "isPrivate" : false,
4067       "memberOf" : "Roo.Element",
4068       "example" : "",
4069       "deprecated" : "",
4070       "since" : "",
4071       "see" : "",
4072       "params" : [
4073       ],
4074       "returns" : [
4075       ]
4076     },
4077     {
4078       "name" : "getNextSibling",
4079       "desc" : "Gets the next sibling, skipping text nodes",
4080       "isStatic" : false,
4081       "isConstructor" : false,
4082       "isPrivate" : false,
4083       "memberOf" : "Roo.Element",
4084       "example" : "",
4085       "deprecated" : "",
4086       "since" : "",
4087       "see" : "",
4088       "params" : [
4089       ],
4090       "returns" : [
4091         {
4092           "name" : "",
4093           "type" : "HTMLElement",
4094           "desc" : "The next sibling or null"
4095         }
4096       ]
4097     },
4098     {
4099       "name" : "getStyle",
4100       "desc" : "Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.",
4101       "isStatic" : false,
4102       "isConstructor" : false,
4103       "isPrivate" : false,
4104       "memberOf" : "Roo.Element",
4105       "example" : "",
4106       "deprecated" : "",
4107       "since" : "",
4108       "see" : "",
4109       "params" : [
4110         {
4111           "name" : "property",
4112           "type" : "String",
4113           "desc" : "The style property whose value is returned.",
4114           "isOptional" : false
4115         }
4116       ],
4117       "returns" : [
4118         {
4119           "name" : "",
4120           "type" : "String",
4121           "desc" : "The current value of the style property for this element."
4122         }
4123       ]
4124     },
4125     {
4126       "name" : "isBorderBox",
4127       "desc" : "Tests various css rules/browsers to determine if this element uses a border box",
4128       "isStatic" : false,
4129       "isConstructor" : false,
4130       "isPrivate" : false,
4131       "memberOf" : "Roo.Element",
4132       "example" : "",
4133       "deprecated" : "",
4134       "since" : "",
4135       "see" : "",
4136       "params" : [
4137       ],
4138       "returns" : [
4139         {
4140           "name" : "",
4141           "type" : "Boolean",
4142           "desc" : ""
4143         }
4144       ]
4145     },
4146     {
4147       "name" : "getPadding",
4148       "desc" : "Gets the width of the padding(s) for the specified side(s)",
4149       "isStatic" : false,
4150       "isConstructor" : false,
4151       "isPrivate" : false,
4152       "memberOf" : "Roo.Element",
4153       "example" : "",
4154       "deprecated" : "",
4155       "since" : "",
4156       "see" : "",
4157       "params" : [
4158         {
4159           "name" : "side",
4160           "type" : "String",
4161           "desc" : "Can be t, l, r, b or any combination of those to add multiple values. For example,\npassing lr would get the padding (l)eft + the padding (r)ight.",
4162           "isOptional" : false
4163         }
4164       ],
4165       "returns" : [
4166         {
4167           "name" : "",
4168           "type" : "Number",
4169           "desc" : "The padding of the sides passed added together"
4170         }
4171       ]
4172     }
4173   ],
4174   "events" : [
4175   ]
4176 }