docs/default.css
[roojs1] / docs / json / roodata.json
1 {
2  "success": true,
3  "data": {
4   "Array": {
5    "props": [],
6    "events": [],
7    "methods": [
8     {
9      "name": "indexOf",
10      "sig": "(Object o)",
11      "type": "function",
12      "desc": "Checks whether or not the specified object exists in the array."
13     },
14     {
15      "name": "map",
16      "sig": "(Function function)",
17      "type": "function",
18      "desc": "Map (JS 1.6 compatibility)"
19     },
20     {
21      "name": "remove",
22      "sig": "(Object o)",
23      "type": "function",
24      "desc": "Removes the specified object from the array.  If the object is not found nothing happens."
25     }
26    ]
27   },
28   "Date": {
29    "props": [],
30    "events": [],
31    "methods": [
32     {
33      "name": "add",
34      "sig": "(String interval, Number value)",
35      "type": "function",
36      "desc": "Provides a convenient method of performing basic date arithmetic.  This method\ndoes not modify the Date instance being called - it creates and returns\na new Date instance containing the resulting date value.\n\nExamples:\n<pre><code>\n//Basic usage:\nvar dt = new Date('10/29/2006').add(Date.DAY, 5);\ndocument.write(dt); //returns 'Fri Oct 06 2006 00:00:00'\n\n//Negative values will subtract correctly:\nvar dt2 = new Date('10/1/2006').add(Date.DAY, -5);\ndocument.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'\n\n//You can even chain several calls together in one line!\nvar dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);\ndocument.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'\n </code></pre>"
37     },
38     {
39      "name": "clearTime",
40      "sig": "(Boolean clone)",
41      "type": "function",
42      "desc": "Clears any time information from this date"
43     },
44     {
45      "name": "clone",
46      "sig": "()",
47      "type": "function",
48      "desc": "Creates and returns a new Date instance with the exact same date value as the called instance.\nDates are copied and passed by reference, so if a copied date variable is modified later, the original\nvariable will also be changed.  When the intention is to create a new variable that will not\nmodify the original instance, you should create a clone.\n\nExample of correctly cloning a date:\n<pre><code>\n//wrong way:\nvar orig = new Date('10/1/2006');\nvar copy = orig;\ncopy.setDate(5);\ndocument.write(orig);  //returns 'Thu Oct 05 2006'!\n\n//correct way:\nvar orig = new Date('10/1/2006');\nvar copy = orig.clone();\ncopy.setDate(5);\ndocument.write(orig);  //returns 'Thu Oct 01 2006'\n</code></pre>"
49     },
50     {
51      "name": "format",
52      "sig": "(String format)",
53      "type": "function",
54      "desc": "Formats a date given the supplied format string"
55     },
56     {
57      "name": "getDayOfYear",
58      "sig": "()",
59      "type": "function",
60      "desc": "Get the numeric day number of the year, adjusted for leap year."
61     },
62     {
63      "name": "getDaysInMonth",
64      "sig": "()",
65      "type": "function",
66      "desc": "Get the number of days in the current month, adjusted for leap year."
67     },
68     {
69      "name": "getElapsed",
70      "sig": "(Date date)",
71      "type": "function",
72      "desc": "Returns the number of milliseconds between this date and date"
73     },
74     {
75      "name": "getFirstDateOfMonth",
76      "sig": "()",
77      "type": "function",
78      "desc": "Get the first date of this date's month"
79     },
80     {
81      "name": "getFirstDayOfMonth",
82      "sig": "()",
83      "type": "function",
84      "desc": "Get the first day of the current month, adjusted for leap year.  The returned value\nis the numeric day index within the week (0-6) which can be used in conjunction with\nthe {@link #monthNames} array to retrieve the textual day name.\nExample:\n<pre><code>\nvar dt = new Date('1/10/2007');\ndocument.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'\n</code></pre>"
85     },
86     {
87      "name": "getGMTColonOffset",
88      "sig": "()",
89      "type": "function",
90      "desc": "Get the offset from GMT of the current date (equivalent to the format specifier 'P')."
91     },
92     {
93      "name": "getGMTOffset",
94      "sig": "()",
95      "type": "function",
96      "desc": "Get the offset from GMT of the current date (equivalent to the format specifier 'O')."
97     },
98     {
99      "name": "getLastDateOfMonth",
100      "sig": "()",
101      "type": "function",
102      "desc": "Get the last date of this date's month"
103     },
104     {
105      "name": "getLastDayOfMonth",
106      "sig": "()",
107      "type": "function",
108      "desc": "Get the last day of the current month, adjusted for leap year.  The returned value\nis the numeric day index within the week (0-6) which can be used in conjunction with\nthe {@link #monthNames} array to retrieve the textual day name.\nExample:\n<pre><code>\nvar dt = new Date('1/10/2007');\ndocument.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'\n</code></pre>"
109     },
110     {
111      "name": "getSuffix",
112      "sig": "()",
113      "type": "function",
114      "desc": "Get the English ordinal suffix of the current day (equivalent to the format specifier 'S')."
115     },
116     {
117      "name": "getTimezone",
118      "sig": "()",
119      "type": "function",
120      "desc": "Get the timezone abbreviation of the current date (equivalent to the format specifier 'T')."
121     },
122     {
123      "name": "getWeekOfYear",
124      "sig": "()",
125      "type": "function",
126      "desc": "Get the string representation of the numeric week number of the year\n(equivalent to the format specifier 'W')."
127     },
128     {
129      "name": "isLeapYear",
130      "sig": "()",
131      "type": "function",
132      "desc": "Whether or not the current date is in a leap year."
133     },
134     {
135      "name": "parseDate",
136      "sig": "(String input, String format)",
137      "type": "function",
138      "desc": "Parses the passed string using the specified format. Note that this function expects dates in normal calendar\nformat, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of\nthe date format that is not specified will default to the current date value for that part.  Time parts can also\nbe specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format\nstring or the parse operation will fail.\nExample Usage:\n<pre><code>\n//dt = Fri May 25 2007 (current date)\nvar dt = new Date();\n\n//dt = Thu May 25 2006 (today's month/day in 2006)\ndt = Date.parseDate(\"2006\", \"Y\");\n\n//dt = Sun Jan 15 2006 (all date parts specified)\ndt = Date.parseDate(\"2006-1-15\", \"Y-m-d\");\n\n//dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)\ndt = Date.parseDate(\"2006-1-15 3:20:01 PM\", \"Y-m-d h:i:s A\" );\n</code></pre>"
139     }
140    ]
141   },
142   "Function": {
143    "props": [],
144    "events": [],
145    "methods": [
146     {
147      "name": "createCallback",
148      "sig": "()",
149      "type": "function",
150      "desc": "Creates a callback that passes arguments[0], arguments[1], arguments[2], ...\nCall directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>\nWill create a function that is bound to those 2 args."
151     },
152     {
153      "name": "createDelegate",
154      "sig": "(Object obj, Array args, Boolean/Number appendArgs)",
155      "type": "function",
156      "desc": "Creates a delegate (callback) that sets the scope to obj.\nCall directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>\nWill create a function that is automatically scoped to this."
157     },
158     {
159      "name": "createInterceptor",
160      "sig": "(Function fcn, Object scope)",
161      "type": "function",
162      "desc": "Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.\nThe resulting function returns the results of the original function.\nThe passed fcn is called with the parameters of the original function."
163     },
164     {
165      "name": "createSequence",
166      "sig": "(Function fcn, Object scope)",
167      "type": "function",
168      "desc": "Create a combined function call sequence of the original function + the passed function.\nThe resulting function returns the results of the original function.\nThe passed fcn is called with the parameters of the original function"
169     },
170     {
171      "name": "defer",
172      "sig": "(Number millis, Object obj, Array args, Boolean/Number appendArgs)",
173      "type": "function",
174      "desc": "Calls this function after the number of millseconds specified."
175     }
176    ]
177   },
178   "Number": {
179    "props": [],
180    "events": [],
181    "methods": [
182     {
183      "name": "constrain",
184      "sig": "(Number min, Number max)",
185      "type": "function",
186      "desc": "Checks whether or not the current number is within a desired range.  If the number is already within the\nrange it is returned, otherwise the min or max value is returned depending on which side of the range is\nexceeded.  Note that this method returns the constrained value but does not change the current number."
187     }
188    ]
189   },
190   "Roo": {
191    "props": [],
192    "events": [],
193    "methods": [
194     {
195      "name": "addBehaviors",
196      "sig": "(Object obj)",
197      "type": "function",
198      "desc": "Applies event listeners to elements by selectors when the document is ready.\nThe event name is specified with an @ suffix.\n<pre><code>\nRoo.addBehaviors({\n   // add a listener for click on all anchors in element with id foo\n   '#foo a@click' : function(e, t){\n       // do something\n   },\n\n   // add the same listener to multiple selectors (separated by comma BEFORE the @)\n   '#foo a, #bar span.some-class@mouseover' : function(){\n       // do something\n   }\n});\n</code></pre>"
199     },
200     {
201      "name": "apply",
202      "sig": "(Object obj, Object config, Object defaults)",
203      "type": "function",
204      "desc": "Copies all the properties of config to obj."
205     },
206     {
207      "name": "applyIf",
208      "sig": "(Object obj, Object config)",
209      "type": "function",
210      "desc": "Copies all the properties of config to obj if they don't already exist."
211     },
212     {
213      "name": "decode",
214      "sig": "()",
215      "type": "function",
216      "desc": "Shorthand for {@link Roo.util.JSON#decode}"
217     },
218     {
219      "name": "each",
220      "sig": "(Array/NodeList/Mixed array, Function fn, Object scope)",
221      "type": "function",
222      "desc": "Iterates an array calling the passed function with each item, stopping if your function returns false. If the\npassed array is not really an array, your function is called once with it.\nThe supplied function is called with (Object item, Number index, Array allItems)."
223     },
224     {
225      "name": "encode",
226      "sig": "()",
227      "type": "function",
228      "desc": "Shorthand for {@link Roo.util.JSON#encode}"
229     },
230     {
231      "name": "encodeURIComponent",
232      "sig": "(String data)",
233      "type": "function",
234      "desc": "Safe version of encodeURIComponent"
235     },
236     {
237      "name": "escapeRe",
238      "sig": "(String str)",
239      "type": "function",
240      "desc": "Escapes the passed string for use in a regular expression"
241     },
242     {
243      "name": "extend",
244      "sig": "(Object subclass, Object superclass, Object overrides)",
245      "type": "function",
246      "desc": "Extends one class with another class and optionally overrides members with the passed literal. This class\nalso adds the function \"override()\" to the class that can be used to override\nmembers on an instance."
247     },
248     {
249      "name": "factory",
250      "sig": "(String classname, String namespace)",
251      "type": "function",
252      "desc": "Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:\n<pre><code>\nRoo.factory({ xns: Roo.data, xtype : 'Store', .....});\nRoo.factory(conf, Roo.data);\n</code></pre>"
253     },
254     {
255      "name": "fly",
256      "sig": "(String/HTMLElement el, String named)",
257      "type": "function",
258      "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.\nShorthand of {@link Roo.Element#fly}"
259     },
260     {
261      "name": "get",
262      "sig": "(String/HTMLElement/Element el)",
263      "type": "function",
264      "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.\nShorthand of {@link Roo.Element#get}"
265     },
266     {
267      "name": "getCmp",
268      "sig": "(String id)",
269      "type": "function",
270      "desc": "Shorthand for {@link Roo.ComponentMgr#get}"
271     },
272     {
273      "name": "getDom",
274      "sig": "(String/HTMLElement/Roo.Element el)",
275      "type": "function",
276      "desc": "Return the dom node for the passed string (id), dom node, or Roo.Element"
277     },
278     {
279      "name": "id",
280      "sig": "(String/HTMLElement/Element el, String prefix)",
281      "type": "function",
282      "desc": "Generates unique ids. If the element already has an id, it is unchanged"
283     },
284     {
285      "name": "isEmpty",
286      "sig": "(Mixed value, Boolean allowBlank)",
287      "type": "function",
288      "desc": "Returns true if the passed value is null, undefined or an empty string (optional)."
289     },
290     {
291      "name": "namespace",
292      "sig": "(String namespace1, String namespace2, String etc)",
293      "type": "function",
294      "desc": "Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:\n<pre><code>\nRoo.namespace('Company', 'Company.data');\nCompany.Widget = function() { ... }\nCompany.data.CustomStore = function(config) { ... }\n</code></pre>"
295     },
296     {
297      "name": "onReady",
298      "sig": "(Function fn, Object scope, boolean override)",
299      "type": "function",
300      "desc": "Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}."
301     },
302     {
303      "name": "override",
304      "sig": "(Object origclass, Object overrides)",
305      "type": "function",
306      "desc": "Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.\nUsage:<pre><code>\nRoo.override(MyClass, {\n    newMethod1: function(){\n        // etc.\n    },\n    newMethod2: function(foo){\n        // etc.\n    }\n});\n </code></pre>"
307     },
308     {
309      "name": "query",
310      "sig": "(String path, Node root)",
311      "type": "function",
312      "desc": "Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}"
313     },
314     {
315      "name": "select",
316      "sig": "(String/Array selector, Boolean unique, HTMLElement/String root)",
317      "type": "function",
318      "desc": "Selects elements based on the passed CSS selector to enable working on them as 1."
319     },
320     {
321      "name": "selectNode",
322      "sig": "(String selector, Node root)",
323      "type": "function",
324      "desc": "Selects a single element as a Roo Element\nThis is about as close as you can get to jQuery's $('do crazy stuff')"
325     },
326     {
327      "name": "type",
328      "sig": "(Mixed object)",
329      "type": "function",
330      "desc": "Returns the type of object that is passed in. If the object passed in is null or undefined it\nreturn false otherwise it returns one of the following values:<ul>\n<li><b>string</b>: If the object passed is a string</li>\n<li><b>number</b>: If the object passed is a number</li>\n<li><b>boolean</b>: If the object passed is a boolean value</li>\n<li><b>function</b>: If the object passed is a function reference</li>\n<li><b>object</b>: If the object passed is an object</li>\n<li><b>array</b>: If the object passed is an array</li>\n<li><b>regexp</b>: If the object passed is a regular expression</li>\n<li><b>element</b>: If the object passed is a DOM Element</li>\n<li><b>nodelist</b>: If the object passed is a DOM NodeList</li>\n<li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>\n<li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>"
331     },
332     {
333      "name": "urlDecode",
334      "sig": "(String string, Boolean overwrite)",
335      "type": "function",
336      "desc": "Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode(\"foo=1&bar=2\"); would return {foo: 1, bar: 2} or Roo.urlDecode(\"foo=1&bar=2&bar=3&bar=4\", true); would return {foo: 1, bar: [2, 3, 4]}."
337     },
338     {
339      "name": "urlEncode",
340      "sig": "(Object o)",
341      "type": "function",
342      "desc": "Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return \"foo=1&bar=2\".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value."
343     }
344    ]
345   },
346   "Roo.Ajax": {
347    "props": [
348     {
349      "name": "url",
350      "type": "String",
351      "desc": "The default URL to be used for requests to the server. (defaults to undefined)",
352      "memberOf": ""
353     },
354     {
355      "name": "extraParams",
356      "type": "Object",
357      "desc": "An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)",
358      "memberOf": ""
359     },
360     {
361      "name": "defaultHeaders",
362      "type": "Object",
363      "desc": "An object containing request headers which are added to each request made by this object. (defaults to undefined)",
364      "memberOf": ""
365     },
366     {
367      "name": "method",
368      "type": "String",
369      "desc": "(Optional)  The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)",
370      "memberOf": ""
371     },
372     {
373      "name": "timeout",
374      "type": "Number",
375      "desc": "(Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)",
376      "memberOf": ""
377     },
378     {
379      "name": "autoAbort",
380      "type": "Boolean",
381      "desc": "(Optional) Whether a new request should abort any pending requests. (defaults to false)",
382      "memberOf": ""
383     },
384     {
385      "name": "disableCaching",
386      "type": "Boolean",
387      "desc": "(Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)",
388      "memberOf": ""
389     },
390     {
391      "name": "listeners",
392      "type": "Object",
393      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
394      "memberOf": "Roo.util.Observable"
395     }
396    ],
397    "events": [
398     {
399      "name": "beforerequest",
400      "sig": "function (conn, options)\n{\n\n}",
401      "type": "function",
402      "desc": "Fires before a network request is made to retrieve a data object."
403     },
404     {
405      "name": "requestcomplete",
406      "sig": "function (conn, response, options)\n{\n\n}",
407      "type": "function",
408      "desc": "Fires if the request was successfully completed."
409     },
410     {
411      "name": "requestexception",
412      "sig": "function (conn, response, options)\n{\n\n}",
413      "type": "function",
414      "desc": "Fires if an error HTTP status was returned from the server.\nSee {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes."
415     }
416    ],
417    "methods": [
418     {
419      "name": "abort",
420      "sig": "(Number transactionId)",
421      "type": "function",
422      "desc": "Aborts any outstanding request."
423     },
424     {
425      "name": "addEvents",
426      "sig": "(Object object)",
427      "type": "function",
428      "desc": "Used to define events on this Observable"
429     },
430     {
431      "name": "addListener",
432      "sig": "(String eventName, Function handler, Object scope, Object options)",
433      "type": "function",
434      "desc": "Appends an event handler to this component"
435     },
436     {
437      "name": "capture",
438      "sig": "(Observable o, Function fn, Object scope)",
439      "type": "function",
440      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
441     },
442     {
443      "name": "fireEvent",
444      "sig": "(String eventName, Object... args)",
445      "type": "function",
446      "desc": "Fires the specified event with the passed parameters (minus the event name)."
447     },
448     {
449      "name": "hasListener",
450      "sig": "(String eventName)",
451      "type": "function",
452      "desc": "Checks to see if this object has any listeners for a specified event"
453     },
454     {
455      "name": "isLoading",
456      "sig": "(Number transactionId)",
457      "type": "function",
458      "desc": "Determine whether this object has a request outstanding."
459     },
460     {
461      "name": "on",
462      "sig": "(String eventName, Function handler, Object scope, Object options)",
463      "type": "function",
464      "desc": "Appends an event handler to this element (shorthand for addListener)"
465     },
466     {
467      "name": "purgeListeners",
468      "sig": "()",
469      "type": "function",
470      "desc": "Removes all listeners for this object"
471     },
472     {
473      "name": "releaseCapture",
474      "sig": "(Observable o)",
475      "type": "function",
476      "desc": "Removes <b>all</b> added captures from the Observable."
477     },
478     {
479      "name": "removeListener",
480      "sig": "(String eventName, Function handler, Object scope)",
481      "type": "function",
482      "desc": "Removes a listener"
483     },
484     {
485      "name": "request",
486      "sig": "(Object options)",
487      "type": "function",
488      "desc": "Sends an HTTP request to a remote server."
489     },
490     {
491      "name": "un",
492      "sig": "(String eventName, Function handler, Object scope)",
493      "type": "function",
494      "desc": "Removes a listener (shorthand for removeListener)"
495     }
496    ]
497   },
498   "Roo.BasicDialog": {
499    "props": [
500     {
501      "name": "autoCreate",
502      "type": "Boolean/DomHelper",
503      "desc": "True to auto create from scratch, or using a DomHelper Object (defaults to false)",
504      "memberOf": ""
505     },
506     {
507      "name": "title",
508      "type": "String",
509      "desc": "Default text to display in the title bar (defaults to null)",
510      "memberOf": ""
511     },
512     {
513      "name": "width",
514      "type": "Number",
515      "desc": "Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.",
516      "memberOf": ""
517     },
518     {
519      "name": "height",
520      "type": "Number",
521      "desc": "Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.",
522      "memberOf": ""
523     },
524     {
525      "name": "x",
526      "type": "Number",
527      "desc": "The default left page coordinate of the dialog (defaults to center screen)",
528      "memberOf": ""
529     },
530     {
531      "name": "y",
532      "type": "Number",
533      "desc": "The default top page coordinate of the dialog (defaults to center screen)",
534      "memberOf": ""
535     },
536     {
537      "name": "animateTarget",
538      "type": "String/Element",
539      "desc": "Id or element from which the dialog should animate while opening\n(defaults to null with no animation)",
540      "memberOf": ""
541     },
542     {
543      "name": "resizable",
544      "type": "Boolean",
545      "desc": "False to disable manual dialog resizing (defaults to true)",
546      "memberOf": ""
547     },
548     {
549      "name": "resizeHandles",
550      "type": "String",
551      "desc": "Which resize handles to display - see the {@link Roo.Resizable} handles config\nproperty for valid values (defaults to 'all')",
552      "memberOf": ""
553     },
554     {
555      "name": "minHeight",
556      "type": "Number",
557      "desc": "The minimum allowable height for a resizable dialog (defaults to 80)",
558      "memberOf": ""
559     },
560     {
561      "name": "minWidth",
562      "type": "Number",
563      "desc": "The minimum allowable width for a resizable dialog (defaults to 200)",
564      "memberOf": ""
565     },
566     {
567      "name": "modal",
568      "type": "Boolean",
569      "desc": "True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)",
570      "memberOf": ""
571     },
572     {
573      "name": "autoScroll",
574      "type": "Boolean",
575      "desc": "True to allow the dialog body contents to overflow and display scrollbars (defaults to false)",
576      "memberOf": ""
577     },
578     {
579      "name": "closable",
580      "type": "Boolean",
581      "desc": "False to remove the built-in top-right corner close button (defaults to true)",
582      "memberOf": ""
583     },
584     {
585      "name": "collapsible",
586      "type": "Boolean",
587      "desc": "False to remove the built-in top-right corner collapse button (defaults to true)",
588      "memberOf": ""
589     },
590     {
591      "name": "constraintoviewport",
592      "type": "Boolean",
593      "desc": "True to keep the dialog constrained within the visible viewport boundaries (defaults to true)",
594      "memberOf": ""
595     },
596     {
597      "name": "syncHeightBeforeShow",
598      "type": "Boolean",
599      "desc": "True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)",
600      "memberOf": ""
601     },
602     {
603      "name": "draggable",
604      "type": "Boolean",
605      "desc": "False to disable dragging of the dialog within the viewport (defaults to true)",
606      "memberOf": ""
607     },
608     {
609      "name": "autoTabs",
610      "type": "Boolean",
611      "desc": "If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)",
612      "memberOf": ""
613     },
614     {
615      "name": "tabTag",
616      "type": "String",
617      "desc": "The tag name of tab elements, used when autoTabs = true (defaults to 'div')",
618      "memberOf": ""
619     },
620     {
621      "name": "proxyDrag",
622      "type": "Boolean",
623      "desc": "True to drag a lightweight proxy element rather than the dialog itself, used when\ndraggable = true (defaults to false)",
624      "memberOf": ""
625     },
626     {
627      "name": "fixedcenter",
628      "type": "Boolean",
629      "desc": "True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)",
630      "memberOf": ""
631     },
632     {
633      "name": "shadow",
634      "type": "Boolean/String",
635      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\" for bottom-right\nshadow (defaults to false)",
636      "memberOf": ""
637     },
638     {
639      "name": "shadowOffset",
640      "type": "Number",
641      "desc": "The number of pixels to offset the shadow if displayed (defaults to 5)",
642      "memberOf": ""
643     },
644     {
645      "name": "buttonAlign",
646      "type": "String",
647      "desc": "Valid values are \"left,\" \"center\" and \"right\" (defaults to \"right\")",
648      "memberOf": ""
649     },
650     {
651      "name": "minButtonWidth",
652      "type": "Number",
653      "desc": "Minimum width of all dialog buttons (defaults to 75)",
654      "memberOf": ""
655     },
656     {
657      "name": "buttons",
658      "type": "Array",
659      "desc": "Array of buttons",
660      "memberOf": ""
661     },
662     {
663      "name": "shim",
664      "type": "Boolean",
665      "desc": "True to create an iframe shim that prevents selects from showing through (defaults to false)",
666      "memberOf": ""
667     },
668     {
669      "name": "listeners",
670      "type": "Object",
671      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
672      "memberOf": "Roo.util.Observable"
673     }
674    ],
675    "events": [
676     {
677      "name": "beforehide",
678      "sig": "function (_self)\n{\n\n}",
679      "type": "function",
680      "desc": "Fires before this dialog is hidden."
681     },
682     {
683      "name": "beforeshow",
684      "sig": "function (_self)\n{\n\n}",
685      "type": "function",
686      "desc": "Fires before this dialog is shown."
687     },
688     {
689      "name": "hide",
690      "sig": "function (_self)\n{\n\n}",
691      "type": "function",
692      "desc": "Fires when this dialog is hidden."
693     },
694     {
695      "name": "keydown",
696      "sig": "function (_self, e)\n{\n\n}",
697      "type": "function",
698      "desc": "Fires when a key is pressed"
699     },
700     {
701      "name": "move",
702      "sig": "function (_self, x, y)\n{\n\n}",
703      "type": "function",
704      "desc": "Fires when this dialog is moved by the user."
705     },
706     {
707      "name": "resize",
708      "sig": "function (_self, width, height)\n{\n\n}",
709      "type": "function",
710      "desc": "Fires when this dialog is resized by the user."
711     },
712     {
713      "name": "show",
714      "sig": "function (_self)\n{\n\n}",
715      "type": "function",
716      "desc": "Fires when this dialog is shown."
717     }
718    ],
719    "methods": [
720     {
721      "name": "addButton",
722      "sig": "(String/Object config, Function handler, Object scope)",
723      "type": "function",
724      "desc": "Adds a button to the footer section of the dialog."
725     },
726     {
727      "name": "addEvents",
728      "sig": "(Object object)",
729      "type": "function",
730      "desc": "Used to define events on this Observable"
731     },
732     {
733      "name": "addKeyListener",
734      "sig": "(Number/Array/Object key, Function fn, Object scope)",
735      "type": "function",
736      "desc": "Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be\nexecuted in response to a particular key being pressed while the dialog is active."
737     },
738     {
739      "name": "addListener",
740      "sig": "(String eventName, Function handler, Object scope, Object options)",
741      "type": "function",
742      "desc": "Appends an event handler to this component"
743     },
744     {
745      "name": "alignTo",
746      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets)",
747      "type": "function",
748      "desc": "Aligns the dialog to the specified element"
749     },
750     {
751      "name": "anchorTo",
752      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets, Boolean/Number monitorScroll)",
753      "type": "function",
754      "desc": "Anchors an element to another element and realigns it when the window is resized."
755     },
756     {
757      "name": "capture",
758      "sig": "(Observable o, Function fn, Object scope)",
759      "type": "function",
760      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
761     },
762     {
763      "name": "center",
764      "sig": "()",
765      "type": "function",
766      "desc": "Centers this dialog in the viewport"
767     },
768     {
769      "name": "collapse",
770      "sig": "()",
771      "type": "function",
772      "desc": "Collapses the dialog to its minimized state (only the title bar is visible).\nEquivalent to the user clicking the collapse dialog button."
773     },
774     {
775      "name": "destroy",
776      "sig": "(Boolean removeEl)",
777      "type": "function",
778      "desc": "Destroys this dialog and all its supporting elements (including any tabs, shim,\nshadow, proxy, mask, etc.)  Also removes all event listeners."
779     },
780     {
781      "name": "expand",
782      "sig": "()",
783      "type": "function",
784      "desc": "Expands a collapsed dialog back to its normal state.  Equivalent to the user\nclicking the expand dialog button."
785     },
786     {
787      "name": "fireEvent",
788      "sig": "(String eventName, Object... args)",
789      "type": "function",
790      "desc": "Fires the specified event with the passed parameters (minus the event name)."
791     },
792     {
793      "name": "focus",
794      "sig": "()",
795      "type": "function",
796      "desc": "Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the\ndialog itself will receive focus."
797     },
798     {
799      "name": "getEl",
800      "sig": "()",
801      "type": "function",
802      "desc": "Returns the element for this dialog"
803     },
804     {
805      "name": "getTabs",
806      "sig": "()",
807      "type": "function",
808      "desc": "Returns the TabPanel component (creates it if it doesn't exist).\nNote: If you wish to simply check for the existence of tabs without creating them,\ncheck for a null 'tabs' property."
809     },
810     {
811      "name": "hasListener",
812      "sig": "(String eventName)",
813      "type": "function",
814      "desc": "Checks to see if this object has any listeners for a specified event"
815     },
816     {
817      "name": "hide",
818      "sig": "(Function callback)",
819      "type": "function",
820      "desc": "Hides the dialog."
821     },
822     {
823      "name": "initTabs",
824      "sig": "()",
825      "type": "function",
826      "desc": "Reinitializes the tabs component, clearing out old tabs and finding new ones."
827     },
828     {
829      "name": "isVisible",
830      "sig": "()",
831      "type": "function",
832      "desc": "Returns true if the dialog is visible"
833     },
834     {
835      "name": "moveTo",
836      "sig": "(Number x, Number y)",
837      "type": "function",
838      "desc": "Moves the dialog's top-left corner to the specified point"
839     },
840     {
841      "name": "on",
842      "sig": "(String eventName, Function handler, Object scope, Object options)",
843      "type": "function",
844      "desc": "Appends an event handler to this element (shorthand for addListener)"
845     },
846     {
847      "name": "purgeListeners",
848      "sig": "()",
849      "type": "function",
850      "desc": "Removes all listeners for this object"
851     },
852     {
853      "name": "releaseCapture",
854      "sig": "(Observable o)",
855      "type": "function",
856      "desc": "Removes <b>all</b> added captures from the Observable."
857     },
858     {
859      "name": "removeListener",
860      "sig": "(String eventName, Function handler, Object scope)",
861      "type": "function",
862      "desc": "Removes a listener"
863     },
864     {
865      "name": "resizeTo",
866      "sig": "(Number width, Number height)",
867      "type": "function",
868      "desc": "Resizes the dialog."
869     },
870     {
871      "name": "restoreState",
872      "sig": "()",
873      "type": "function",
874      "desc": "Restores the previous state of the dialog if Roo.state is configured."
875     },
876     {
877      "name": "setContentSize",
878      "sig": "(Number width, Number height)",
879      "type": "function",
880      "desc": "Resizes the dialog to fit the specified content size."
881     },
882     {
883      "name": "setDefaultButton",
884      "sig": "(Roo.BasicDialog.Button btn)",
885      "type": "function",
886      "desc": "Sets the default button to be focused when the dialog is displayed."
887     },
888     {
889      "name": "setTitle",
890      "sig": "(String text)",
891      "type": "function",
892      "desc": "Sets the dialog title text"
893     },
894     {
895      "name": "show",
896      "sig": "(String/HTMLElement/Roo.Element animateTarget)",
897      "type": "function",
898      "desc": "Shows the dialog."
899     },
900     {
901      "name": "toBack",
902      "sig": "()",
903      "type": "function",
904      "desc": "Sends this dialog to the back (under) of any other visible dialogs"
905     },
906     {
907      "name": "toFront",
908      "sig": "()",
909      "type": "function",
910      "desc": "Brings this dialog to the front of any other visible dialogs"
911     },
912     {
913      "name": "un",
914      "sig": "(String eventName, Function handler, Object scope)",
915      "type": "function",
916      "desc": "Removes a listener (shorthand for removeListener)"
917     }
918    ]
919   },
920   "Roo.BasicLayoutRegion": {
921    "props": [
922     {
923      "name": "listeners",
924      "type": "Object",
925      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
926      "memberOf": "Roo.util.Observable"
927     }
928    ],
929    "events": [
930     {
931      "name": "beforecollapse",
932      "sig": "function (_self)\n{\n\n}",
933      "type": "function",
934      "desc": "Fires when this region before collapse."
935     },
936     {
937      "name": "beforeremove",
938      "sig": "function (_self, panel, e)\n{\n\n}",
939      "type": "function",
940      "desc": "Fires before a panel is removed (or closed). To cancel the removal set \"e.cancel = true\" on the event argument."
941     },
942     {
943      "name": "collapsed",
944      "sig": "function (_self)\n{\n\n}",
945      "type": "function",
946      "desc": "Fires when this region is collapsed."
947     },
948     {
949      "name": "expanded",
950      "sig": "function (_self)\n{\n\n}",
951      "type": "function",
952      "desc": "Fires when this region is expanded."
953     },
954     {
955      "name": "invalidated",
956      "sig": "function (_self)\n{\n\n}",
957      "type": "function",
958      "desc": "Fires when the layout for this region is changed."
959     },
960     {
961      "name": "panelactivated",
962      "sig": "function (_self, panel)\n{\n\n}",
963      "type": "function",
964      "desc": "Fires when a panel is activated."
965     },
966     {
967      "name": "paneladded",
968      "sig": "function (_self, panel)\n{\n\n}",
969      "type": "function",
970      "desc": "Fires when a panel is added."
971     },
972     {
973      "name": "panelremoved",
974      "sig": "function (_self, panel)\n{\n\n}",
975      "type": "function",
976      "desc": "Fires when a panel is removed."
977     },
978     {
979      "name": "resized",
980      "sig": "function (_self, newSize)\n{\n\n}",
981      "type": "function",
982      "desc": "Fires when the user resizes this region."
983     },
984     {
985      "name": "slidehide",
986      "sig": "function (_self)\n{\n\n}",
987      "type": "function",
988      "desc": "Fires when this region slides out of view."
989     },
990     {
991      "name": "slideshow",
992      "sig": "function (_self)\n{\n\n}",
993      "type": "function",
994      "desc": "Fires when this region is slid into view."
995     },
996     {
997      "name": "visibilitychange",
998      "sig": "function (_self, visibility)\n{\n\n}",
999      "type": "function",
1000      "desc": "Fires when this region is shown or hidden"
1001     }
1002    ],
1003    "methods": [
1004     {
1005      "name": "add",
1006      "sig": "(ContentPanel... panel)",
1007      "type": "function",
1008      "desc": "Add the passed ContentPanel(s)"
1009     },
1010     {
1011      "name": "addEvents",
1012      "sig": "(Object object)",
1013      "type": "function",
1014      "desc": "Used to define events on this Observable"
1015     },
1016     {
1017      "name": "addListener",
1018      "sig": "(String eventName, Function handler, Object scope, Object options)",
1019      "type": "function",
1020      "desc": "Appends an event handler to this component"
1021     },
1022     {
1023      "name": "capture",
1024      "sig": "(Observable o, Function fn, Object scope)",
1025      "type": "function",
1026      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
1027     },
1028     {
1029      "name": "fireEvent",
1030      "sig": "(String eventName, Object... args)",
1031      "type": "function",
1032      "desc": "Fires the specified event with the passed parameters (minus the event name)."
1033     },
1034     {
1035      "name": "getActivePanel",
1036      "sig": "()",
1037      "type": "function",
1038      "desc": "Get the active panel for this region."
1039     },
1040     {
1041      "name": "getEl",
1042      "sig": "()",
1043      "type": "function",
1044      "desc": "Returns the container element for this region."
1045     },
1046     {
1047      "name": "getPanel",
1048      "sig": "(Number/String/ContentPanel panel)",
1049      "type": "function",
1050      "desc": "Returns the panel specified or null if it's not in this region."
1051     },
1052     {
1053      "name": "getPosition",
1054      "sig": "()",
1055      "type": "function",
1056      "desc": "Returns this regions position (north/south/east/west/center)."
1057     },
1058     {
1059      "name": "hasListener",
1060      "sig": "(String eventName)",
1061      "type": "function",
1062      "desc": "Checks to see if this object has any listeners for a specified event"
1063     },
1064     {
1065      "name": "hasPanel",
1066      "sig": "(Number/String/ContentPanel panel)",
1067      "type": "function",
1068      "desc": "Returns true if the panel is in this region."
1069     },
1070     {
1071      "name": "isVisible",
1072      "sig": "()",
1073      "type": "function",
1074      "desc": "Returns true if this region is currently visible."
1075     },
1076     {
1077      "name": "on",
1078      "sig": "(String eventName, Function handler, Object scope, Object options)",
1079      "type": "function",
1080      "desc": "Appends an event handler to this element (shorthand for addListener)"
1081     },
1082     {
1083      "name": "purgeListeners",
1084      "sig": "()",
1085      "type": "function",
1086      "desc": "Removes all listeners for this object"
1087     },
1088     {
1089      "name": "releaseCapture",
1090      "sig": "(Observable o)",
1091      "type": "function",
1092      "desc": "Removes <b>all</b> added captures from the Observable."
1093     },
1094     {
1095      "name": "remove",
1096      "sig": "(Number/String/ContentPanel panel, Boolean preservePanel)",
1097      "type": "function",
1098      "desc": "Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed."
1099     },
1100     {
1101      "name": "removeListener",
1102      "sig": "(String eventName, Function handler, Object scope)",
1103      "type": "function",
1104      "desc": "Removes a listener"
1105     },
1106     {
1107      "name": "resizeTo",
1108      "sig": "(Number newSize)",
1109      "type": "function",
1110      "desc": "Resizes the region to the specified size. For vertical regions (west, east) this adjusts \nthe width, for horizontal (north, south) the height."
1111     },
1112     {
1113      "name": "showPanel",
1114      "sig": "(Number/String/ContentPanel panelId)",
1115      "type": "function",
1116      "desc": "Show the specified panel."
1117     },
1118     {
1119      "name": "un",
1120      "sig": "(String eventName, Function handler, Object scope)",
1121      "type": "function",
1122      "desc": "Removes a listener (shorthand for removeListener)"
1123     }
1124    ]
1125   },
1126   "Roo.BorderLayout": {
1127    "props": [
1128     {
1129      "name": "listeners",
1130      "type": "Object",
1131      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
1132      "memberOf": "Roo.util.Observable"
1133     }
1134    ],
1135    "events": [
1136     {
1137      "name": "layout",
1138      "sig": "function (_self)\n{\n\n}",
1139      "type": "function",
1140      "desc": "Fires when a layout is performed."
1141     },
1142     {
1143      "name": "regioncollapsed",
1144      "sig": "function (region)\n{\n\n}",
1145      "type": "function",
1146      "desc": "Fires when a region is collapsed."
1147     },
1148     {
1149      "name": "regionexpanded",
1150      "sig": "function (region)\n{\n\n}",
1151      "type": "function",
1152      "desc": "Fires when a region is expanded."
1153     },
1154     {
1155      "name": "regionresized",
1156      "sig": "function (region, newSize)\n{\n\n}",
1157      "type": "function",
1158      "desc": "Fires when the user resizes a region."
1159     }
1160    ],
1161    "methods": [
1162     {
1163      "name": "add",
1164      "sig": "(String target, Roo.ContentPanel panel)",
1165      "type": "function",
1166      "desc": "Adds a ContentPanel (or subclass) to this layout."
1167     },
1168     {
1169      "name": "addEvents",
1170      "sig": "(Object object)",
1171      "type": "function",
1172      "desc": "Used to define events on this Observable"
1173     },
1174     {
1175      "name": "addListener",
1176      "sig": "(String eventName, Function handler, Object scope, Object options)",
1177      "type": "function",
1178      "desc": "Appends an event handler to this component"
1179     },
1180     {
1181      "name": "addRegion",
1182      "sig": "(String target, Object config)",
1183      "type": "function",
1184      "desc": "Creates and adds a new region if it doesn't already exist."
1185     },
1186     {
1187      "name": "addxtype",
1188      "sig": "(Object cfg)",
1189      "type": "function",
1190      "desc": "Adds a xtype elements to the layout.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'ContentPanel',\n       region: 'west',\n       items: [ .... ]\n   }\n);\n\nlayout.addxtype({\n        xtype : 'NestedLayoutPanel',\n        region: 'west',\n        layout: {\n           center: { },\n           west: { }   \n        },\n        items : [ ... list of content panels or nested layout panels.. ]\n   }\n);\n</code></pre>"
1191     },
1192     {
1193      "name": "batchAdd",
1194      "sig": "(Object regions)",
1195      "type": "function",
1196      "desc": "Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config\nobject should contain properties for each region to add ContentPanels to, and each property's value should be\na valid ContentPanel config object.  Example:\n<pre><code>\n// Create the main layout\nvar layout = new Roo.BorderLayout('main-ct', {\n    west: {\n        split:true,\n        minSize: 175,\n        titlebar: true\n    },\n    center: {\n        title:'Components'\n    }\n}, 'main-ct');\n\n// Create and add multiple ContentPanels at once via configs\nlayout.batchAdd({\n   west: {\n       id: 'source-files',\n       autoCreate:true,\n       title:'Ext Source Files',\n       autoScroll:true,\n       fitToFrame:true\n   },\n   center : {\n       el: cview,\n       autoScroll:true,\n       fitToFrame:true,\n       toolbar: tb,\n       resizeEl:'cbody'\n   }\n});\n</code></pre>"
1197     },
1198     {
1199      "name": "beginUpdate",
1200      "sig": "()",
1201      "type": "function",
1202      "desc": "Suspend the LayoutManager from doing auto-layouts while\nmaking multiple add or remove calls"
1203     },
1204     {
1205      "name": "capture",
1206      "sig": "(Observable o, Function fn, Object scope)",
1207      "type": "function",
1208      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
1209     },
1210     {
1211      "name": "create",
1212      "sig": "( config,  targetEl)",
1213      "type": "function",
1214      "desc": "Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling\nthe beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be\nprovided with each region config, which allows you to add ContentPanel configs in addition to the region configs\nduring creation.  The following code is equivalent to the constructor-based example at the beginning of this class:\n<pre><code>\n// shorthand\nvar CP = Roo.ContentPanel;\n\nvar layout = Roo.BorderLayout.create({\n    north: {\n        initialSize: 25,\n        titlebar: false,\n        panels: [new CP(\"north\", \"North\")]\n    },\n    west: {\n        split:true,\n        initialSize: 200,\n        minSize: 175,\n        maxSize: 400,\n        titlebar: true,\n        collapsible: true,\n        panels: [new CP(\"west\", {title: \"West\"})]\n    },\n    east: {\n        split:true,\n        initialSize: 202,\n        minSize: 175,\n        maxSize: 400,\n        titlebar: true,\n        collapsible: true,\n        panels: [new CP(\"autoTabs\", {title: \"Auto Tabs\", closable: true})]\n    },\n    south: {\n        split:true,\n        initialSize: 100,\n        minSize: 100,\n        maxSize: 200,\n        titlebar: true,\n        collapsible: true,\n        panels: [new CP(\"south\", {title: \"South\", closable: true})]\n    },\n    center: {\n        titlebar: true,\n        autoScroll:true,\n        resizeTabs: true,\n        minTabWidth: 50,\n        preferredTabWidth: 150,\n        panels: [\n            new CP(\"center1\", {title: \"Close Me\", closable: true}),\n            new CP(\"center2\", {title: \"Center Panel\", closable: false})\n        ]\n    }\n}, document.body);\n\nlayout.getRegion(\"center\").showPanel(\"center1\");\n</code></pre>"
1215     },
1216     {
1217      "name": "endUpdate",
1218      "sig": "(Boolean noLayout)",
1219      "type": "function",
1220      "desc": "Restore auto-layouts and optionally disable the manager from performing a layout"
1221     },
1222     {
1223      "name": "findPanel",
1224      "sig": "(String panelId)",
1225      "type": "function",
1226      "desc": "Searches all regions for a panel with the specified id"
1227     },
1228     {
1229      "name": "fireEvent",
1230      "sig": "(String eventName, Object... args)",
1231      "type": "function",
1232      "desc": "Fires the specified event with the passed parameters (minus the event name)."
1233     },
1234     {
1235      "name": "getEl",
1236      "sig": "()",
1237      "type": "function",
1238      "desc": "Returns the Element this layout is bound to."
1239     },
1240     {
1241      "name": "getRegion",
1242      "sig": "(String target)",
1243      "type": "function",
1244      "desc": "Returns the specified region."
1245     },
1246     {
1247      "name": "getViewSize",
1248      "sig": "()",
1249      "type": "function",
1250      "desc": "Returns the size of the current view. This method normalizes document.body and element embedded layouts and\nperforms box-model adjustments."
1251     },
1252     {
1253      "name": "hasListener",
1254      "sig": "(String eventName)",
1255      "type": "function",
1256      "desc": "Checks to see if this object has any listeners for a specified event"
1257     },
1258     {
1259      "name": "isUpdating",
1260      "sig": "()",
1261      "type": "function",
1262      "desc": "Returns true if this layout is currently being updated"
1263     },
1264     {
1265      "name": "layout",
1266      "sig": "()",
1267      "type": "function",
1268      "desc": "Performs a layout update."
1269     },
1270     {
1271      "name": "on",
1272      "sig": "(String eventName, Function handler, Object scope, Object options)",
1273      "type": "function",
1274      "desc": "Appends an event handler to this element (shorthand for addListener)"
1275     },
1276     {
1277      "name": "purgeListeners",
1278      "sig": "()",
1279      "type": "function",
1280      "desc": "Removes all listeners for this object"
1281     },
1282     {
1283      "name": "releaseCapture",
1284      "sig": "(Observable o)",
1285      "type": "function",
1286      "desc": "Removes <b>all</b> added captures from the Observable."
1287     },
1288     {
1289      "name": "remove",
1290      "sig": "(String target, Number/String/Roo.ContentPanel panel)",
1291      "type": "function",
1292      "desc": "Remove a ContentPanel (or subclass) to this layout."
1293     },
1294     {
1295      "name": "removeListener",
1296      "sig": "(String eventName, Function handler, Object scope)",
1297      "type": "function",
1298      "desc": "Removes a listener"
1299     },
1300     {
1301      "name": "restoreState",
1302      "sig": "(Roo.state.Provider provider)",
1303      "type": "function",
1304      "desc": "Restores this layout's state using Roo.state.Manager or the state provided by the passed provider."
1305     },
1306     {
1307      "name": "showPanel",
1308      "sig": "(String/ContentPanel panelId)",
1309      "type": "function",
1310      "desc": "Searches all regions for a panel with the specified id and activates (shows) it."
1311     },
1312     {
1313      "name": "un",
1314      "sig": "(String eventName, Function handler, Object scope)",
1315      "type": "function",
1316      "desc": "Removes a listener (shorthand for removeListener)"
1317     }
1318    ]
1319   },
1320   "Roo.BoxComponent": {
1321    "props": [
1322     {
1323      "name": "width",
1324      "type": "Number",
1325      "desc": "width (optional) size of component",
1326      "memberOf": ""
1327     },
1328     {
1329      "name": "height",
1330      "type": "Number",
1331      "desc": "height (optional) size of component",
1332      "memberOf": ""
1333     },
1334     {
1335      "name": "disableClass",
1336      "type": "String",
1337      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
1338      "memberOf": "Roo.Component"
1339     },
1340     {
1341      "name": "allowDomMove",
1342      "type": "Boolean",
1343      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
1344      "memberOf": "Roo.Component"
1345     },
1346     {
1347      "name": "hideMode",
1348      "type": "String",
1349      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
1350      "memberOf": "Roo.Component",
1351      "optvals": [
1352       "display",
1353       "visibility"
1354      ]
1355     },
1356     {
1357      "name": "actionMode",
1358      "type": "String",
1359      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
1360      "memberOf": "Roo.Component"
1361     },
1362     {
1363      "name": "listeners",
1364      "type": "Object",
1365      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
1366      "memberOf": "Roo.util.Observable"
1367     }
1368    ],
1369    "events": [
1370     {
1371      "name": "beforedestroy",
1372      "sig": "function (_self)\n{\n\n}",
1373      "type": "function",
1374      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
1375     },
1376     {
1377      "name": "beforehide",
1378      "sig": "function (_self)\n{\n\n}",
1379      "type": "function",
1380      "desc": "Fires before the component is hidden. Return false to stop the hide."
1381     },
1382     {
1383      "name": "beforerender",
1384      "sig": "function (_self)\n{\n\n}",
1385      "type": "function",
1386      "desc": "Fires before the component is rendered. Return false to stop the render."
1387     },
1388     {
1389      "name": "beforeshow",
1390      "sig": "function (_self)\n{\n\n}",
1391      "type": "function",
1392      "desc": "Fires before the component is shown.  Return false to stop the show."
1393     },
1394     {
1395      "name": "destroy",
1396      "sig": "function (_self)\n{\n\n}",
1397      "type": "function",
1398      "desc": "Fires after the component is destroyed."
1399     },
1400     {
1401      "name": "disable",
1402      "sig": "function (_self)\n{\n\n}",
1403      "type": "function",
1404      "desc": "Fires after the component is disabled."
1405     },
1406     {
1407      "name": "enable",
1408      "sig": "function (_self)\n{\n\n}",
1409      "type": "function",
1410      "desc": "Fires after the component is enabled."
1411     },
1412     {
1413      "name": "hide",
1414      "sig": "function (_self)\n{\n\n}",
1415      "type": "function",
1416      "desc": "Fires after the component is hidden."
1417     },
1418     {
1419      "name": "move",
1420      "sig": "function (_self, x, y)\n{\n\n}",
1421      "type": "function",
1422      "desc": "Fires after the component is moved."
1423     },
1424     {
1425      "name": "render",
1426      "sig": "function (_self)\n{\n\n}",
1427      "type": "function",
1428      "desc": "Fires after the component is rendered."
1429     },
1430     {
1431      "name": "resize",
1432      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
1433      "type": "function",
1434      "desc": "Fires after the component is resized."
1435     },
1436     {
1437      "name": "show",
1438      "sig": "function (_self)\n{\n\n}",
1439      "type": "function",
1440      "desc": "Fires after the component is shown."
1441     }
1442    ],
1443    "methods": [
1444     {
1445      "name": "addEvents",
1446      "sig": "(Object object)",
1447      "type": "function",
1448      "desc": "Used to define events on this Observable"
1449     },
1450     {
1451      "name": "addListener",
1452      "sig": "(String eventName, Function handler, Object scope, Object options)",
1453      "type": "function",
1454      "desc": "Appends an event handler to this component"
1455     },
1456     {
1457      "name": "capture",
1458      "sig": "(Observable o, Function fn, Object scope)",
1459      "type": "function",
1460      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
1461     },
1462     {
1463      "name": "destroy",
1464      "sig": "()",
1465      "type": "function",
1466      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
1467     },
1468     {
1469      "name": "disable",
1470      "sig": "()",
1471      "type": "function",
1472      "desc": "Disable this component."
1473     },
1474     {
1475      "name": "enable",
1476      "sig": "()",
1477      "type": "function",
1478      "desc": "Enable this component."
1479     },
1480     {
1481      "name": "fireEvent",
1482      "sig": "(String eventName, Object... args)",
1483      "type": "function",
1484      "desc": "Fires the specified event with the passed parameters (minus the event name)."
1485     },
1486     {
1487      "name": "focus",
1488      "sig": "(Boolean selectText)",
1489      "type": "function",
1490      "desc": "Try to focus this component."
1491     },
1492     {
1493      "name": "getBox",
1494      "sig": "(Boolean local)",
1495      "type": "function",
1496      "desc": "Gets the current box measurements of the component's underlying element."
1497     },
1498     {
1499      "name": "getEl",
1500      "sig": "()",
1501      "type": "function",
1502      "desc": "Returns the underlying {@link Roo.Element}."
1503     },
1504     {
1505      "name": "getId",
1506      "sig": "()",
1507      "type": "function",
1508      "desc": "Returns the id of this component."
1509     },
1510     {
1511      "name": "getPosition",
1512      "sig": "(Boolean local)",
1513      "type": "function",
1514      "desc": "Gets the current XY position of the component's underlying element."
1515     },
1516     {
1517      "name": "getSize",
1518      "sig": "()",
1519      "type": "function",
1520      "desc": "Gets the current size of the component's underlying element."
1521     },
1522     {
1523      "name": "hasListener",
1524      "sig": "(String eventName)",
1525      "type": "function",
1526      "desc": "Checks to see if this object has any listeners for a specified event"
1527     },
1528     {
1529      "name": "hide",
1530      "sig": "()",
1531      "type": "function",
1532      "desc": "Hide this component."
1533     },
1534     {
1535      "name": "isVisible",
1536      "sig": "()",
1537      "type": "function",
1538      "desc": "Returns true if this component is visible."
1539     },
1540     {
1541      "name": "on",
1542      "sig": "(String eventName, Function handler, Object scope, Object options)",
1543      "type": "function",
1544      "desc": "Appends an event handler to this element (shorthand for addListener)"
1545     },
1546     {
1547      "name": "onPosition",
1548      "sig": "(Number x, Number y)",
1549      "type": "function",
1550      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
1551     },
1552     {
1553      "name": "onResize",
1554      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
1555      "type": "function",
1556      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
1557     },
1558     {
1559      "name": "purgeListeners",
1560      "sig": "()",
1561      "type": "function",
1562      "desc": "Removes all listeners for this object"
1563     },
1564     {
1565      "name": "releaseCapture",
1566      "sig": "(Observable o)",
1567      "type": "function",
1568      "desc": "Removes <b>all</b> added captures from the Observable."
1569     },
1570     {
1571      "name": "removeListener",
1572      "sig": "(String eventName, Function handler, Object scope)",
1573      "type": "function",
1574      "desc": "Removes a listener"
1575     },
1576     {
1577      "name": "render",
1578      "sig": "(String/HTMLElement/Element container)",
1579      "type": "function",
1580      "desc": "If this is a lazy rendering component, render it to its container element."
1581     },
1582     {
1583      "name": "setDisabled",
1584      "sig": "(Boolean disabled)",
1585      "type": "function",
1586      "desc": "Convenience function for setting disabled/enabled by boolean."
1587     },
1588     {
1589      "name": "setPagePosition",
1590      "sig": "(Number x, Number y)",
1591      "type": "function",
1592      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
1593     },
1594     {
1595      "name": "setPosition",
1596      "sig": "(Number left, Number top)",
1597      "type": "function",
1598      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
1599     },
1600     {
1601      "name": "setSize",
1602      "sig": "(Number/Object width, Number height)",
1603      "type": "function",
1604      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
1605     },
1606     {
1607      "name": "setVisible",
1608      "sig": "(Boolean visible)",
1609      "type": "function",
1610      "desc": "Convenience function to hide or show this component by boolean."
1611     },
1612     {
1613      "name": "show",
1614      "sig": "()",
1615      "type": "function",
1616      "desc": "Show this component."
1617     },
1618     {
1619      "name": "syncSize",
1620      "sig": "()",
1621      "type": "function",
1622      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
1623     },
1624     {
1625      "name": "un",
1626      "sig": "(String eventName, Function handler, Object scope)",
1627      "type": "function",
1628      "desc": "Removes a listener (shorthand for removeListener)"
1629     },
1630     {
1631      "name": "updateBox",
1632      "sig": "(Object box)",
1633      "type": "function",
1634      "desc": "Sets the current box measurements of the component's underlying element."
1635     }
1636    ]
1637   },
1638   "Roo.Button": {
1639    "props": [
1640     {
1641      "name": "text",
1642      "type": "String",
1643      "desc": "The button text",
1644      "memberOf": ""
1645     },
1646     {
1647      "name": "icon",
1648      "type": "String",
1649      "desc": "The path to an image to display in the button (the image will be set as the background-image\nCSS property of the button by default, so if you want a mixed icon/text button, set cls:\"x-btn-text-icon\")",
1650      "memberOf": ""
1651     },
1652     {
1653      "name": "handler",
1654      "type": "Function",
1655      "desc": "A function called when the button is clicked (can be used instead of click event)",
1656      "memberOf": ""
1657     },
1658     {
1659      "name": "scope",
1660      "type": "Object",
1661      "desc": "The scope of the handler",
1662      "memberOf": ""
1663     },
1664     {
1665      "name": "minWidth",
1666      "type": "Number",
1667      "desc": "The minimum width for this button (used to give a set of buttons a common width)",
1668      "memberOf": ""
1669     },
1670     {
1671      "name": "tooltip",
1672      "type": "String/Object",
1673      "desc": "The tooltip for the button - can be a string or QuickTips config object",
1674      "memberOf": ""
1675     },
1676     {
1677      "name": "hidden",
1678      "type": "Boolean",
1679      "desc": "True to start hidden (defaults to false)",
1680      "memberOf": ""
1681     },
1682     {
1683      "name": "disabled",
1684      "type": "Boolean",
1685      "desc": "True to start disabled (defaults to false)",
1686      "memberOf": ""
1687     },
1688     {
1689      "name": "pressed",
1690      "type": "Boolean",
1691      "desc": "True to start pressed (only if enableToggle = true)",
1692      "memberOf": ""
1693     },
1694     {
1695      "name": "toggleGroup",
1696      "type": "String",
1697      "desc": "The group this toggle button is a member of (only 1 per group can be pressed, only\n   applies if enableToggle = true)",
1698      "memberOf": ""
1699     },
1700     {
1701      "name": "renderTo",
1702      "type": "String/HTMLElement/Element",
1703      "desc": "The element to append the button to",
1704      "memberOf": ""
1705     },
1706     {
1707      "name": "repeat",
1708      "type": "Boolean/Object",
1709      "desc": "True to repeat fire the click event while the mouse is down. This can also be\n  an {@link Roo.util.ClickRepeater} config object (defaults to false).",
1710      "memberOf": ""
1711     },
1712     {
1713      "name": "cls",
1714      "type": "String",
1715      "desc": "A CSS class to apply to the button's main element.",
1716      "memberOf": ""
1717     },
1718     {
1719      "name": "tabIndex",
1720      "type": "Number",
1721      "desc": "The DOM tabIndex for this button (defaults to undefined)",
1722      "memberOf": ""
1723     },
1724     {
1725      "name": "enableToggle",
1726      "type": "Boolean",
1727      "desc": "True to enable pressed/not pressed toggling (defaults to false)",
1728      "memberOf": ""
1729     },
1730     {
1731      "name": "menu",
1732      "type": "Mixed",
1733      "desc": "Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).",
1734      "memberOf": ""
1735     },
1736     {
1737      "name": "menuAlign",
1738      "type": "String",
1739      "desc": "The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').",
1740      "memberOf": ""
1741     },
1742     {
1743      "name": "iconCls",
1744      "type": "String",
1745      "desc": "A css class which sets a background image to be used as the icon for this button (defaults to undefined).",
1746      "memberOf": ""
1747     },
1748     {
1749      "name": "type",
1750      "type": "String",
1751      "desc": "The button's type, corresponding to the DOM input element type attribute.  Either \"submit,\" \"reset\" or \"button\" (default).",
1752      "memberOf": ""
1753     },
1754     {
1755      "name": "clickEvent",
1756      "type": "String",
1757      "desc": "The type of event to map to the button's event handler (defaults to 'click')",
1758      "memberOf": ""
1759     },
1760     {
1761      "name": "handleMouseEvents",
1762      "type": "Boolean",
1763      "desc": "False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)",
1764      "memberOf": ""
1765     },
1766     {
1767      "name": "tooltipType",
1768      "type": "String",
1769      "desc": "The type of tooltip to use. Either \"qtip\" (default) for QuickTips or \"title\" for title attribute.",
1770      "memberOf": ""
1771     },
1772     {
1773      "name": "template",
1774      "type": "Roo.Template",
1775      "desc": "(Optional)\nAn {@link Roo.Template} with which to create the Button's main element. This Template must\ncontain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could\nrequire code modifications if required elements (e.g. a button) aren't present.",
1776      "memberOf": ""
1777     },
1778     {
1779      "name": "listeners",
1780      "type": "Object",
1781      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
1782      "memberOf": "Roo.util.Observable"
1783     }
1784    ],
1785    "events": [
1786     {
1787      "name": "click",
1788      "sig": "function (_self, e)\n{\n\n}",
1789      "type": "function",
1790      "desc": "Fires when this button is clicked"
1791     },
1792     {
1793      "name": "mouseout",
1794      "sig": "function (_self, e)\n{\n\n}",
1795      "type": "function",
1796      "desc": "Fires when the mouse exits the button"
1797     },
1798     {
1799      "name": "mouseover",
1800      "sig": "function (_self, e)\n{\n\n}",
1801      "type": "function",
1802      "desc": "Fires when the mouse hovers over the button"
1803     },
1804     {
1805      "name": "render",
1806      "sig": "function (_self)\n{\n\n}",
1807      "type": "function",
1808      "desc": "Fires when the button is rendered"
1809     },
1810     {
1811      "name": "toggle",
1812      "sig": "function (_self, pressed)\n{\n\n}",
1813      "type": "function",
1814      "desc": "Fires when the \"pressed\" state of this button changes (only if enableToggle = true)"
1815     }
1816    ],
1817    "methods": [
1818     {
1819      "name": "addEvents",
1820      "sig": "(Object object)",
1821      "type": "function",
1822      "desc": "Used to define events on this Observable"
1823     },
1824     {
1825      "name": "addListener",
1826      "sig": "(String eventName, Function handler, Object scope, Object options)",
1827      "type": "function",
1828      "desc": "Appends an event handler to this component"
1829     },
1830     {
1831      "name": "capture",
1832      "sig": "(Observable o, Function fn, Object scope)",
1833      "type": "function",
1834      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
1835     },
1836     {
1837      "name": "destroy",
1838      "sig": "()",
1839      "type": "function",
1840      "desc": "Destroys this Button and removes any listeners."
1841     },
1842     {
1843      "name": "disable",
1844      "sig": "()",
1845      "type": "function",
1846      "desc": "Disable this button"
1847     },
1848     {
1849      "name": "enable",
1850      "sig": "()",
1851      "type": "function",
1852      "desc": "Enable this button"
1853     },
1854     {
1855      "name": "fireEvent",
1856      "sig": "(String eventName, Object... args)",
1857      "type": "function",
1858      "desc": "Fires the specified event with the passed parameters (minus the event name)."
1859     },
1860     {
1861      "name": "focus",
1862      "sig": "()",
1863      "type": "function",
1864      "desc": "Focus the button"
1865     },
1866     {
1867      "name": "getEl",
1868      "sig": "()",
1869      "type": "function",
1870      "desc": "Returns the button's underlying element"
1871     },
1872     {
1873      "name": "getText",
1874      "sig": "()",
1875      "type": "function",
1876      "desc": "Gets the text for this button"
1877     },
1878     {
1879      "name": "hasListener",
1880      "sig": "(String eventName)",
1881      "type": "function",
1882      "desc": "Checks to see if this object has any listeners for a specified event"
1883     },
1884     {
1885      "name": "hide",
1886      "sig": "()",
1887      "type": "function",
1888      "desc": "Hide this button"
1889     },
1890     {
1891      "name": "on",
1892      "sig": "(String eventName, Function handler, Object scope, Object options)",
1893      "type": "function",
1894      "desc": "Appends an event handler to this element (shorthand for addListener)"
1895     },
1896     {
1897      "name": "purgeListeners",
1898      "sig": "()",
1899      "type": "function",
1900      "desc": "Removes all listeners for this object"
1901     },
1902     {
1903      "name": "releaseCapture",
1904      "sig": "(Observable o)",
1905      "type": "function",
1906      "desc": "Removes <b>all</b> added captures from the Observable."
1907     },
1908     {
1909      "name": "removeListener",
1910      "sig": "(String eventName, Function handler, Object scope)",
1911      "type": "function",
1912      "desc": "Removes a listener"
1913     },
1914     {
1915      "name": "setDisabled",
1916      "sig": "(Boolean enabled)",
1917      "type": "function",
1918      "desc": "Convenience function for boolean enable/disable"
1919     },
1920     {
1921      "name": "setHandler",
1922      "sig": "(Function handler, Object scope)",
1923      "type": "function",
1924      "desc": "Assigns this button's click handler"
1925     },
1926     {
1927      "name": "setText",
1928      "sig": "(String text)",
1929      "type": "function",
1930      "desc": "Sets this button's text"
1931     },
1932     {
1933      "name": "setVisible",
1934      "sig": "(Boolean visible)",
1935      "type": "function",
1936      "desc": "Convenience function for boolean show/hide"
1937     },
1938     {
1939      "name": "show",
1940      "sig": "()",
1941      "type": "function",
1942      "desc": "Show this button"
1943     },
1944     {
1945      "name": "toggle",
1946      "sig": "(Boolean state)",
1947      "type": "function",
1948      "desc": "If a state it passed, it becomes the pressed state otherwise the current state is toggled."
1949     },
1950     {
1951      "name": "un",
1952      "sig": "(String eventName, Function handler, Object scope)",
1953      "type": "function",
1954      "desc": "Removes a listener (shorthand for removeListener)"
1955     }
1956    ]
1957   },
1958   "Roo.CalendarPanel": {
1959    "props": [
1960     {
1961      "name": "disableClass",
1962      "type": "String",
1963      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
1964      "memberOf": "Roo.Component"
1965     },
1966     {
1967      "name": "allowDomMove",
1968      "type": "Boolean",
1969      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
1970      "memberOf": "Roo.Component"
1971     },
1972     {
1973      "name": "hideMode",
1974      "type": "String",
1975      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
1976      "memberOf": "Roo.Component",
1977      "optvals": [
1978       "display",
1979       "visibility"
1980      ]
1981     },
1982     {
1983      "name": "actionMode",
1984      "type": "String",
1985      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
1986      "memberOf": "Roo.Component"
1987     },
1988     {
1989      "name": "listeners",
1990      "type": "Object",
1991      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
1992      "memberOf": "Roo.util.Observable"
1993     }
1994    ],
1995    "events": [
1996     {
1997      "name": "beforedestroy",
1998      "sig": "function (_self)\n{\n\n}",
1999      "type": "function",
2000      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
2001     },
2002     {
2003      "name": "beforehide",
2004      "sig": "function (_self)\n{\n\n}",
2005      "type": "function",
2006      "desc": "Fires before the component is hidden. Return false to stop the hide."
2007     },
2008     {
2009      "name": "beforerender",
2010      "sig": "function (_self)\n{\n\n}",
2011      "type": "function",
2012      "desc": "Fires before the component is rendered. Return false to stop the render."
2013     },
2014     {
2015      "name": "beforeshow",
2016      "sig": "function (_self)\n{\n\n}",
2017      "type": "function",
2018      "desc": "Fires before the component is shown.  Return false to stop the show."
2019     },
2020     {
2021      "name": "destroy",
2022      "sig": "function (_self)\n{\n\n}",
2023      "type": "function",
2024      "desc": "Fires after the component is destroyed."
2025     },
2026     {
2027      "name": "disable",
2028      "sig": "function (_self)\n{\n\n}",
2029      "type": "function",
2030      "desc": "Fires after the component is disabled."
2031     },
2032     {
2033      "name": "enable",
2034      "sig": "function (_self)\n{\n\n}",
2035      "type": "function",
2036      "desc": "Fires after the component is enabled."
2037     },
2038     {
2039      "name": "eventclick",
2040      "sig": "function (_self, )\n{\n\n}",
2041      "type": "function",
2042      "desc": "Fires when the mouse click an"
2043     },
2044     {
2045      "name": "evententer",
2046      "sig": "function (_self, Event)\n{\n\n}",
2047      "type": "function",
2048      "desc": "Fires when mouse over an event"
2049     },
2050     {
2051      "name": "eventleave",
2052      "sig": "function (_self, )\n{\n\n}",
2053      "type": "function",
2054      "desc": "Fires when the mouse leaves an"
2055     },
2056     {
2057      "name": "hide",
2058      "sig": "function (_self)\n{\n\n}",
2059      "type": "function",
2060      "desc": "Fires after the component is hidden."
2061     },
2062     {
2063      "name": "monthchange",
2064      "sig": "function (_self, date)\n{\n\n}",
2065      "type": "function",
2066      "desc": "Fires when the displayed month changes"
2067     },
2068     {
2069      "name": "render",
2070      "sig": "function (_self)\n{\n\n}",
2071      "type": "function",
2072      "desc": "Fires after the component is rendered."
2073     },
2074     {
2075      "name": "rendered",
2076      "sig": "function (_self)\n{\n\n}",
2077      "type": "function",
2078      "desc": "Fires when the grid is rendered"
2079     },
2080     {
2081      "name": "select",
2082      "sig": "function (_self, date)\n{\n\n}",
2083      "type": "function",
2084      "desc": "Fires when a date is selected"
2085     },
2086     {
2087      "name": "show",
2088      "sig": "function (_self)\n{\n\n}",
2089      "type": "function",
2090      "desc": "Fires after the component is shown."
2091     }
2092    ],
2093    "methods": [
2094     {
2095      "name": "addEvents",
2096      "sig": "(Object object)",
2097      "type": "function",
2098      "desc": "Used to define events on this Observable"
2099     },
2100     {
2101      "name": "addListener",
2102      "sig": "(String eventName, Function handler, Object scope, Object options)",
2103      "type": "function",
2104      "desc": "Appends an event handler to this component"
2105     },
2106     {
2107      "name": "capture",
2108      "sig": "(Observable o, Function fn, Object scope)",
2109      "type": "function",
2110      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
2111     },
2112     {
2113      "name": "destroy",
2114      "sig": "()",
2115      "type": "function",
2116      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
2117     },
2118     {
2119      "name": "disable",
2120      "sig": "()",
2121      "type": "function",
2122      "desc": "Disable this component."
2123     },
2124     {
2125      "name": "enable",
2126      "sig": "()",
2127      "type": "function",
2128      "desc": "Enable this component."
2129     },
2130     {
2131      "name": "fireEvent",
2132      "sig": "(String eventName, Object... args)",
2133      "type": "function",
2134      "desc": "Fires the specified event with the passed parameters (minus the event name)."
2135     },
2136     {
2137      "name": "focus",
2138      "sig": "(Boolean selectText)",
2139      "type": "function",
2140      "desc": "Try to focus this component."
2141     },
2142     {
2143      "name": "getEl",
2144      "sig": "()",
2145      "type": "function",
2146      "desc": "Returns the underlying {@link Roo.Element}."
2147     },
2148     {
2149      "name": "getId",
2150      "sig": "()",
2151      "type": "function",
2152      "desc": "Returns the id of this component."
2153     },
2154     {
2155      "name": "hasListener",
2156      "sig": "(String eventName)",
2157      "type": "function",
2158      "desc": "Checks to see if this object has any listeners for a specified event"
2159     },
2160     {
2161      "name": "hide",
2162      "sig": "()",
2163      "type": "function",
2164      "desc": "Hide this component."
2165     },
2166     {
2167      "name": "isVisible",
2168      "sig": "()",
2169      "type": "function",
2170      "desc": "Returns true if this component is visible."
2171     },
2172     {
2173      "name": "on",
2174      "sig": "(String eventName, Function handler, Object scope, Object options)",
2175      "type": "function",
2176      "desc": "Appends an event handler to this element (shorthand for addListener)"
2177     },
2178     {
2179      "name": "purgeListeners",
2180      "sig": "()",
2181      "type": "function",
2182      "desc": "Removes all listeners for this object"
2183     },
2184     {
2185      "name": "releaseCapture",
2186      "sig": "(Observable o)",
2187      "type": "function",
2188      "desc": "Removes <b>all</b> added captures from the Observable."
2189     },
2190     {
2191      "name": "removeListener",
2192      "sig": "(String eventName, Function handler, Object scope)",
2193      "type": "function",
2194      "desc": "Removes a listener"
2195     },
2196     {
2197      "name": "render",
2198      "sig": "(String/HTMLElement/Element container)",
2199      "type": "function",
2200      "desc": "If this is a lazy rendering component, render it to its container element."
2201     },
2202     {
2203      "name": "setDisabled",
2204      "sig": "(Boolean disabled)",
2205      "type": "function",
2206      "desc": "Convenience function for setting disabled/enabled by boolean."
2207     },
2208     {
2209      "name": "setVisible",
2210      "sig": "(Boolean visible)",
2211      "type": "function",
2212      "desc": "Convenience function to hide or show this component by boolean."
2213     },
2214     {
2215      "name": "show",
2216      "sig": "()",
2217      "type": "function",
2218      "desc": "Show this component."
2219     },
2220     {
2221      "name": "un",
2222      "sig": "(String eventName, Function handler, Object scope)",
2223      "type": "function",
2224      "desc": "Removes a listener (shorthand for removeListener)"
2225     }
2226    ]
2227   },
2228   "Roo.ColorPalette": {
2229    "props": [
2230     {
2231      "name": "itemCls",
2232      "type": "String",
2233      "desc": "The CSS class to apply to the containing element (defaults to \"x-color-palette\")",
2234      "memberOf": ""
2235     },
2236     {
2237      "name": "value",
2238      "type": "String",
2239      "desc": "The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that\nthe hex codes are case-sensitive.",
2240      "memberOf": ""
2241     },
2242     {
2243      "name": "allowReselect",
2244      "type": "Boolean",
2245      "desc": "If set to true then reselecting a color that is already selected fires the selection event",
2246      "memberOf": ""
2247     },
2248     {
2249      "name": "disableClass",
2250      "type": "String",
2251      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
2252      "memberOf": "Roo.Component"
2253     },
2254     {
2255      "name": "allowDomMove",
2256      "type": "Boolean",
2257      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
2258      "memberOf": "Roo.Component"
2259     },
2260     {
2261      "name": "hideMode",
2262      "type": "String",
2263      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
2264      "memberOf": "Roo.Component",
2265      "optvals": [
2266       "display",
2267       "visibility"
2268      ]
2269     },
2270     {
2271      "name": "actionMode",
2272      "type": "String",
2273      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
2274      "memberOf": "Roo.Component"
2275     },
2276     {
2277      "name": "listeners",
2278      "type": "Object",
2279      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
2280      "memberOf": "Roo.util.Observable"
2281     }
2282    ],
2283    "events": [
2284     {
2285      "name": "beforedestroy",
2286      "sig": "function (_self)\n{\n\n}",
2287      "type": "function",
2288      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
2289     },
2290     {
2291      "name": "beforehide",
2292      "sig": "function (_self)\n{\n\n}",
2293      "type": "function",
2294      "desc": "Fires before the component is hidden. Return false to stop the hide."
2295     },
2296     {
2297      "name": "beforerender",
2298      "sig": "function (_self)\n{\n\n}",
2299      "type": "function",
2300      "desc": "Fires before the component is rendered. Return false to stop the render."
2301     },
2302     {
2303      "name": "beforeshow",
2304      "sig": "function (_self)\n{\n\n}",
2305      "type": "function",
2306      "desc": "Fires before the component is shown.  Return false to stop the show."
2307     },
2308     {
2309      "name": "destroy",
2310      "sig": "function (_self)\n{\n\n}",
2311      "type": "function",
2312      "desc": "Fires after the component is destroyed."
2313     },
2314     {
2315      "name": "disable",
2316      "sig": "function (_self)\n{\n\n}",
2317      "type": "function",
2318      "desc": "Fires after the component is disabled."
2319     },
2320     {
2321      "name": "enable",
2322      "sig": "function (_self)\n{\n\n}",
2323      "type": "function",
2324      "desc": "Fires after the component is enabled."
2325     },
2326     {
2327      "name": "hide",
2328      "sig": "function (_self)\n{\n\n}",
2329      "type": "function",
2330      "desc": "Fires after the component is hidden."
2331     },
2332     {
2333      "name": "render",
2334      "sig": "function (_self)\n{\n\n}",
2335      "type": "function",
2336      "desc": "Fires after the component is rendered."
2337     },
2338     {
2339      "name": "select",
2340      "sig": "function (_self, color)\n{\n\n}",
2341      "type": "function",
2342      "desc": "Fires when a color is selected"
2343     },
2344     {
2345      "name": "show",
2346      "sig": "function (_self)\n{\n\n}",
2347      "type": "function",
2348      "desc": "Fires after the component is shown."
2349     }
2350    ],
2351    "methods": [
2352     {
2353      "name": "addEvents",
2354      "sig": "(Object object)",
2355      "type": "function",
2356      "desc": "Used to define events on this Observable"
2357     },
2358     {
2359      "name": "addListener",
2360      "sig": "(String eventName, Function handler, Object scope, Object options)",
2361      "type": "function",
2362      "desc": "Appends an event handler to this component"
2363     },
2364     {
2365      "name": "capture",
2366      "sig": "(Observable o, Function fn, Object scope)",
2367      "type": "function",
2368      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
2369     },
2370     {
2371      "name": "destroy",
2372      "sig": "()",
2373      "type": "function",
2374      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
2375     },
2376     {
2377      "name": "disable",
2378      "sig": "()",
2379      "type": "function",
2380      "desc": "Disable this component."
2381     },
2382     {
2383      "name": "enable",
2384      "sig": "()",
2385      "type": "function",
2386      "desc": "Enable this component."
2387     },
2388     {
2389      "name": "fireEvent",
2390      "sig": "(String eventName, Object... args)",
2391      "type": "function",
2392      "desc": "Fires the specified event with the passed parameters (minus the event name)."
2393     },
2394     {
2395      "name": "focus",
2396      "sig": "(Boolean selectText)",
2397      "type": "function",
2398      "desc": "Try to focus this component."
2399     },
2400     {
2401      "name": "getEl",
2402      "sig": "()",
2403      "type": "function",
2404      "desc": "Returns the underlying {@link Roo.Element}."
2405     },
2406     {
2407      "name": "getId",
2408      "sig": "()",
2409      "type": "function",
2410      "desc": "Returns the id of this component."
2411     },
2412     {
2413      "name": "hasListener",
2414      "sig": "(String eventName)",
2415      "type": "function",
2416      "desc": "Checks to see if this object has any listeners for a specified event"
2417     },
2418     {
2419      "name": "hide",
2420      "sig": "()",
2421      "type": "function",
2422      "desc": "Hide this component."
2423     },
2424     {
2425      "name": "isVisible",
2426      "sig": "()",
2427      "type": "function",
2428      "desc": "Returns true if this component is visible."
2429     },
2430     {
2431      "name": "on",
2432      "sig": "(String eventName, Function handler, Object scope, Object options)",
2433      "type": "function",
2434      "desc": "Appends an event handler to this element (shorthand for addListener)"
2435     },
2436     {
2437      "name": "purgeListeners",
2438      "sig": "()",
2439      "type": "function",
2440      "desc": "Removes all listeners for this object"
2441     },
2442     {
2443      "name": "releaseCapture",
2444      "sig": "(Observable o)",
2445      "type": "function",
2446      "desc": "Removes <b>all</b> added captures from the Observable."
2447     },
2448     {
2449      "name": "removeListener",
2450      "sig": "(String eventName, Function handler, Object scope)",
2451      "type": "function",
2452      "desc": "Removes a listener"
2453     },
2454     {
2455      "name": "render",
2456      "sig": "(String/HTMLElement/Element container)",
2457      "type": "function",
2458      "desc": "If this is a lazy rendering component, render it to its container element."
2459     },
2460     {
2461      "name": "select",
2462      "sig": "(String color)",
2463      "type": "function",
2464      "desc": "Selects the specified color in the palette (fires the select event)"
2465     },
2466     {
2467      "name": "setDisabled",
2468      "sig": "(Boolean disabled)",
2469      "type": "function",
2470      "desc": "Convenience function for setting disabled/enabled by boolean."
2471     },
2472     {
2473      "name": "setVisible",
2474      "sig": "(Boolean visible)",
2475      "type": "function",
2476      "desc": "Convenience function to hide or show this component by boolean."
2477     },
2478     {
2479      "name": "show",
2480      "sig": "()",
2481      "type": "function",
2482      "desc": "Show this component."
2483     },
2484     {
2485      "name": "un",
2486      "sig": "(String eventName, Function handler, Object scope)",
2487      "type": "function",
2488      "desc": "Removes a listener (shorthand for removeListener)"
2489     }
2490    ]
2491   },
2492   "Roo.Component": {
2493    "props": [
2494     {
2495      "name": "disableClass",
2496      "type": "String",
2497      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
2498      "memberOf": ""
2499     },
2500     {
2501      "name": "allowDomMove",
2502      "type": "Boolean",
2503      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
2504      "memberOf": ""
2505     },
2506     {
2507      "name": "hideMode",
2508      "type": "String",
2509      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
2510      "memberOf": "",
2511      "optvals": [
2512       "display",
2513       "visibility"
2514      ]
2515     },
2516     {
2517      "name": "actionMode",
2518      "type": "String",
2519      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
2520      "memberOf": ""
2521     },
2522     {
2523      "name": "listeners",
2524      "type": "Object",
2525      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
2526      "memberOf": "Roo.util.Observable"
2527     }
2528    ],
2529    "events": [
2530     {
2531      "name": "beforedestroy",
2532      "sig": "function (_self)\n{\n\n}",
2533      "type": "function",
2534      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
2535     },
2536     {
2537      "name": "beforehide",
2538      "sig": "function (_self)\n{\n\n}",
2539      "type": "function",
2540      "desc": "Fires before the component is hidden. Return false to stop the hide."
2541     },
2542     {
2543      "name": "beforerender",
2544      "sig": "function (_self)\n{\n\n}",
2545      "type": "function",
2546      "desc": "Fires before the component is rendered. Return false to stop the render."
2547     },
2548     {
2549      "name": "beforeshow",
2550      "sig": "function (_self)\n{\n\n}",
2551      "type": "function",
2552      "desc": "Fires before the component is shown.  Return false to stop the show."
2553     },
2554     {
2555      "name": "destroy",
2556      "sig": "function (_self)\n{\n\n}",
2557      "type": "function",
2558      "desc": "Fires after the component is destroyed."
2559     },
2560     {
2561      "name": "disable",
2562      "sig": "function (_self)\n{\n\n}",
2563      "type": "function",
2564      "desc": "Fires after the component is disabled."
2565     },
2566     {
2567      "name": "enable",
2568      "sig": "function (_self)\n{\n\n}",
2569      "type": "function",
2570      "desc": "Fires after the component is enabled."
2571     },
2572     {
2573      "name": "hide",
2574      "sig": "function (_self)\n{\n\n}",
2575      "type": "function",
2576      "desc": "Fires after the component is hidden."
2577     },
2578     {
2579      "name": "render",
2580      "sig": "function (_self)\n{\n\n}",
2581      "type": "function",
2582      "desc": "Fires after the component is rendered."
2583     },
2584     {
2585      "name": "show",
2586      "sig": "function (_self)\n{\n\n}",
2587      "type": "function",
2588      "desc": "Fires after the component is shown."
2589     }
2590    ],
2591    "methods": [
2592     {
2593      "name": "addEvents",
2594      "sig": "(Object object)",
2595      "type": "function",
2596      "desc": "Used to define events on this Observable"
2597     },
2598     {
2599      "name": "addListener",
2600      "sig": "(String eventName, Function handler, Object scope, Object options)",
2601      "type": "function",
2602      "desc": "Appends an event handler to this component"
2603     },
2604     {
2605      "name": "capture",
2606      "sig": "(Observable o, Function fn, Object scope)",
2607      "type": "function",
2608      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
2609     },
2610     {
2611      "name": "destroy",
2612      "sig": "()",
2613      "type": "function",
2614      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
2615     },
2616     {
2617      "name": "disable",
2618      "sig": "()",
2619      "type": "function",
2620      "desc": "Disable this component."
2621     },
2622     {
2623      "name": "enable",
2624      "sig": "()",
2625      "type": "function",
2626      "desc": "Enable this component."
2627     },
2628     {
2629      "name": "fireEvent",
2630      "sig": "(String eventName, Object... args)",
2631      "type": "function",
2632      "desc": "Fires the specified event with the passed parameters (minus the event name)."
2633     },
2634     {
2635      "name": "focus",
2636      "sig": "(Boolean selectText)",
2637      "type": "function",
2638      "desc": "Try to focus this component."
2639     },
2640     {
2641      "name": "getEl",
2642      "sig": "()",
2643      "type": "function",
2644      "desc": "Returns the underlying {@link Roo.Element}."
2645     },
2646     {
2647      "name": "getId",
2648      "sig": "()",
2649      "type": "function",
2650      "desc": "Returns the id of this component."
2651     },
2652     {
2653      "name": "hasListener",
2654      "sig": "(String eventName)",
2655      "type": "function",
2656      "desc": "Checks to see if this object has any listeners for a specified event"
2657     },
2658     {
2659      "name": "hide",
2660      "sig": "()",
2661      "type": "function",
2662      "desc": "Hide this component."
2663     },
2664     {
2665      "name": "isVisible",
2666      "sig": "()",
2667      "type": "function",
2668      "desc": "Returns true if this component is visible."
2669     },
2670     {
2671      "name": "on",
2672      "sig": "(String eventName, Function handler, Object scope, Object options)",
2673      "type": "function",
2674      "desc": "Appends an event handler to this element (shorthand for addListener)"
2675     },
2676     {
2677      "name": "purgeListeners",
2678      "sig": "()",
2679      "type": "function",
2680      "desc": "Removes all listeners for this object"
2681     },
2682     {
2683      "name": "releaseCapture",
2684      "sig": "(Observable o)",
2685      "type": "function",
2686      "desc": "Removes <b>all</b> added captures from the Observable."
2687     },
2688     {
2689      "name": "removeListener",
2690      "sig": "(String eventName, Function handler, Object scope)",
2691      "type": "function",
2692      "desc": "Removes a listener"
2693     },
2694     {
2695      "name": "render",
2696      "sig": "(String/HTMLElement/Element container)",
2697      "type": "function",
2698      "desc": "If this is a lazy rendering component, render it to its container element."
2699     },
2700     {
2701      "name": "setDisabled",
2702      "sig": "(Boolean disabled)",
2703      "type": "function",
2704      "desc": "Convenience function for setting disabled/enabled by boolean."
2705     },
2706     {
2707      "name": "setVisible",
2708      "sig": "(Boolean visible)",
2709      "type": "function",
2710      "desc": "Convenience function to hide or show this component by boolean."
2711     },
2712     {
2713      "name": "show",
2714      "sig": "()",
2715      "type": "function",
2716      "desc": "Show this component."
2717     },
2718     {
2719      "name": "un",
2720      "sig": "(String eventName, Function handler, Object scope)",
2721      "type": "function",
2722      "desc": "Removes a listener (shorthand for removeListener)"
2723     }
2724    ]
2725   },
2726   "Roo.ComponentMgr": {
2727    "props": [],
2728    "events": [],
2729    "methods": [
2730     {
2731      "name": "get",
2732      "sig": "(String id)",
2733      "type": "function",
2734      "desc": "Returns a component by id"
2735     },
2736     {
2737      "name": "onAvailable",
2738      "sig": "(String id, Funtction fn, Object scope)",
2739      "type": "function",
2740      "desc": "Registers a function that will be called when a specified component is added to ComponentMgr"
2741     },
2742     {
2743      "name": "register",
2744      "sig": "(Roo.Component c)",
2745      "type": "function",
2746      "desc": "Registers a component."
2747     },
2748     {
2749      "name": "unregister",
2750      "sig": "(Roo.Component c)",
2751      "type": "function",
2752      "desc": "Unregisters a component."
2753     }
2754    ]
2755   },
2756   "Roo.CompositeElement": {
2757    "props": [],
2758    "events": [],
2759    "methods": [
2760     {
2761      "name": "add",
2762      "sig": "(String/Array els)",
2763      "type": "function",
2764      "desc": "Adds elements to this composite."
2765     },
2766     {
2767      "name": "clear",
2768      "sig": "()",
2769      "type": "function",
2770      "desc": "Removes all elements."
2771     },
2772     {
2773      "name": "contains",
2774      "sig": "()",
2775      "type": "function",
2776      "desc": "Returns true if this composite contains the passed element"
2777     },
2778     {
2779      "name": "each",
2780      "sig": "(Function fn, Object scope)",
2781      "type": "function",
2782      "desc": "Calls the passed function passing (el, this, index) for each element in this composite."
2783     },
2784     {
2785      "name": "fill",
2786      "sig": "(String/Array els)",
2787      "type": "function",
2788      "desc": "Clears this composite and adds the elements returned by the passed selector."
2789     },
2790     {
2791      "name": "filter",
2792      "sig": "(String selector, Boolean inverse)",
2793      "type": "function",
2794      "desc": "Filters this composite to only elements that match the passed selector."
2795     },
2796     {
2797      "name": "first",
2798      "sig": "()",
2799      "type": "function",
2800      "desc": "Returns the first Element"
2801     },
2802     {
2803      "name": "getCount",
2804      "sig": "()",
2805      "type": "function",
2806      "desc": "Returns the number of elements in this composite"
2807     },
2808     {
2809      "name": "indexOf",
2810      "sig": "()",
2811      "type": "function",
2812      "desc": "Returns true if this composite contains the passed element"
2813     },
2814     {
2815      "name": "item",
2816      "sig": "(Number index)",
2817      "type": "function",
2818      "desc": "Returns the Element object at the specified index"
2819     },
2820     {
2821      "name": "last",
2822      "sig": "()",
2823      "type": "function",
2824      "desc": "Returns the last Element"
2825     },
2826     {
2827      "name": "removeElement",
2828      "sig": "(Mixed el, Boolean removeDom)",
2829      "type": "function",
2830      "desc": "Removes the specified element(s)."
2831     },
2832     {
2833      "name": "replaceElement",
2834      "sig": "(String/HTMLElement/Element/Number el, String/HTMLElement/Element replacement, Boolean domReplace)",
2835      "type": "function",
2836      "desc": "Replaces the specified element with the passed element."
2837     }
2838    ]
2839   },
2840   "Roo.CompositeElementLite": {
2841    "props": [],
2842    "events": [],
2843    "methods": [
2844     {
2845      "name": "add",
2846      "sig": "(String/Array els)",
2847      "type": "function",
2848      "desc": "Adds elements to this composite."
2849     },
2850     {
2851      "name": "clear",
2852      "sig": "()",
2853      "type": "function",
2854      "desc": "Removes all elements."
2855     },
2856     {
2857      "name": "contains",
2858      "sig": "()",
2859      "type": "function",
2860      "desc": "Returns true if this composite contains the passed element"
2861     },
2862     {
2863      "name": "each",
2864      "sig": "(Function fn, Object scope)",
2865      "type": "function",
2866      "desc": "Calls the passed function passing (el, this, index) for each element in this composite. <b>The element\npassed is the flyweight (shared) Roo.Element instance, so if you require a\na reference to the dom node, use el.dom.</b>"
2867     },
2868     {
2869      "name": "fill",
2870      "sig": "(String/Array els)",
2871      "type": "function",
2872      "desc": "Clears this composite and adds the elements returned by the passed selector."
2873     },
2874     {
2875      "name": "filter",
2876      "sig": "(String selector, Boolean inverse)",
2877      "type": "function",
2878      "desc": "Filters this composite to only elements that match the passed selector."
2879     },
2880     {
2881      "name": "first",
2882      "sig": "()",
2883      "type": "function",
2884      "desc": "Returns the first Element"
2885     },
2886     {
2887      "name": "getCount",
2888      "sig": "()",
2889      "type": "function",
2890      "desc": "Returns the number of elements in this composite"
2891     },
2892     {
2893      "name": "indexOf",
2894      "sig": "()",
2895      "type": "function",
2896      "desc": "Returns true if this composite contains the passed element"
2897     },
2898     {
2899      "name": "item",
2900      "sig": "(Number index)",
2901      "type": "function",
2902      "desc": "Returns a flyweight Element of the dom element object at the specified index"
2903     },
2904     {
2905      "name": "last",
2906      "sig": "()",
2907      "type": "function",
2908      "desc": "Returns the last Element"
2909     },
2910     {
2911      "name": "removeElement",
2912      "sig": "(Mixed el, Boolean removeDom)",
2913      "type": "function",
2914      "desc": "Removes the specified element(s)."
2915     },
2916     {
2917      "name": "replaceElement",
2918      "sig": "(String/HTMLElement/Element/Number el, String/HTMLElement/Element replacement, Boolean domReplace)",
2919      "type": "function",
2920      "desc": "Replaces the specified element with the passed element."
2921     }
2922    ]
2923   },
2924   "Roo.ContentPanel": {
2925    "props": [
2926     {
2927      "name": "fitToFrame",
2928      "type": "Boolean",
2929      "desc": "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
2930      "memberOf": ""
2931     },
2932     {
2933      "name": "fitContainer",
2934      "type": "Boolean",
2935      "desc": "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
2936      "memberOf": ""
2937     },
2938     {
2939      "name": "autoCreate",
2940      "type": "Boolean/Object",
2941      "desc": "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
2942      "memberOf": ""
2943     },
2944     {
2945      "name": "closable",
2946      "type": "Boolean",
2947      "desc": "True if the panel can be closed/removed",
2948      "memberOf": ""
2949     },
2950     {
2951      "name": "background",
2952      "type": "Boolean",
2953      "desc": "True if the panel should not be activated when it is added (defaults to false)",
2954      "memberOf": ""
2955     },
2956     {
2957      "name": "resizeEl",
2958      "type": "String/HTMLElement/Element",
2959      "desc": "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
2960      "memberOf": ""
2961     },
2962     {
2963      "name": "toolbar",
2964      "type": "Toolbar",
2965      "desc": "A toolbar for this panel",
2966      "memberOf": ""
2967     },
2968     {
2969      "name": "autoScroll",
2970      "type": "Boolean",
2971      "desc": "True to scroll overflow in this panel (use with {@link #fitToFrame})",
2972      "memberOf": ""
2973     },
2974     {
2975      "name": "title",
2976      "type": "String",
2977      "desc": "The title for this panel",
2978      "memberOf": ""
2979     },
2980     {
2981      "name": "adjustments",
2982      "type": "Array",
2983      "desc": "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
2984      "memberOf": ""
2985     },
2986     {
2987      "name": "url",
2988      "type": "String",
2989      "desc": "Calls {@link #setUrl} with this value",
2990      "memberOf": ""
2991     },
2992     {
2993      "name": "region",
2994      "type": "String",
2995      "desc": "which region to put this panel on (when used with xtype constructors)",
2996      "memberOf": "",
2997      "optvals": [
2998       "center",
2999       "north",
3000       "south",
3001       "east",
3002       "west"
3003      ]
3004     },
3005     {
3006      "name": "params",
3007      "type": "String/Object",
3008      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
3009      "memberOf": ""
3010     },
3011     {
3012      "name": "loadOnce",
3013      "type": "Boolean",
3014      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
3015      "memberOf": ""
3016     },
3017     {
3018      "name": "content",
3019      "type": "String",
3020      "desc": "Raw content to fill content panel with (uses setContent on construction.)",
3021      "memberOf": ""
3022     },
3023     {
3024      "name": "listeners",
3025      "type": "Object",
3026      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
3027      "memberOf": "Roo.util.Observable"
3028     }
3029    ],
3030    "events": [
3031     {
3032      "name": "activate",
3033      "sig": "function (_self)\n{\n\n}",
3034      "type": "function",
3035      "desc": "Fires when this panel is activated."
3036     },
3037     {
3038      "name": "deactivate",
3039      "sig": "function (_self)\n{\n\n}",
3040      "type": "function",
3041      "desc": "Fires when this panel is activated."
3042     },
3043     {
3044      "name": "render",
3045      "sig": "function (_self)\n{\n\n}",
3046      "type": "function",
3047      "desc": "Fires when this tab is created"
3048     },
3049     {
3050      "name": "resize",
3051      "sig": "function (_self, width, height)\n{\n\n}",
3052      "type": "function",
3053      "desc": "Fires when this panel is resized if fitToFrame is true."
3054     }
3055    ],
3056    "methods": [
3057     {
3058      "name": "addEvents",
3059      "sig": "(Object object)",
3060      "type": "function",
3061      "desc": "Used to define events on this Observable"
3062     },
3063     {
3064      "name": "addListener",
3065      "sig": "(String eventName, Function handler, Object scope, Object options)",
3066      "type": "function",
3067      "desc": "Appends an event handler to this component"
3068     },
3069     {
3070      "name": "addxtype",
3071      "sig": "(Object cfg)",
3072      "type": "function",
3073      "desc": "Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'Form',\n       items: [ .... ]\n   }\n);\n\n</code></pre>"
3074     },
3075     {
3076      "name": "capture",
3077      "sig": "(Observable o, Function fn, Object scope)",
3078      "type": "function",
3079      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
3080     },
3081     {
3082      "name": "destroy",
3083      "sig": "()",
3084      "type": "function",
3085      "desc": "Destroys this panel"
3086     },
3087     {
3088      "name": "fireEvent",
3089      "sig": "(String eventName, Object... args)",
3090      "type": "function",
3091      "desc": "Fires the specified event with the passed parameters (minus the event name)."
3092     },
3093     {
3094      "name": "getEl",
3095      "sig": "()",
3096      "type": "function",
3097      "desc": "Returns this panel's element - used by regiosn to add."
3098     },
3099     {
3100      "name": "getId",
3101      "sig": "()",
3102      "type": "function",
3103      "desc": "Returns this panel's id"
3104     },
3105     {
3106      "name": "getTitle",
3107      "sig": "()",
3108      "type": "function",
3109      "desc": "Returns this panel's title"
3110     },
3111     {
3112      "name": "getToolbar",
3113      "sig": "()",
3114      "type": "function",
3115      "desc": "Returns the toolbar for this Panel if one was configured."
3116     },
3117     {
3118      "name": "getUpdateManager",
3119      "sig": "()",
3120      "type": "function",
3121      "desc": "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates."
3122     },
3123     {
3124      "name": "hasListener",
3125      "sig": "(String eventName)",
3126      "type": "function",
3127      "desc": "Checks to see if this object has any listeners for a specified event"
3128     },
3129     {
3130      "name": "isClosable",
3131      "sig": "()",
3132      "type": "function",
3133      "desc": "Returns true is this panel was configured to be closable"
3134     },
3135     {
3136      "name": "load",
3137      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
3138      "type": "function",
3139      "desc": "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}."
3140     },
3141     {
3142      "name": "on",
3143      "sig": "(String eventName, Function handler, Object scope, Object options)",
3144      "type": "function",
3145      "desc": "Appends an event handler to this element (shorthand for addListener)"
3146     },
3147     {
3148      "name": "purgeListeners",
3149      "sig": "()",
3150      "type": "function",
3151      "desc": "Removes all listeners for this object"
3152     },
3153     {
3154      "name": "refresh",
3155      "sig": "()",
3156      "type": "function",
3157      "desc": "Force a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the {@link #setUrl} method has not been called.\n  This does not activate the panel, just updates its content."
3158     },
3159     {
3160      "name": "releaseCapture",
3161      "sig": "(Observable o)",
3162      "type": "function",
3163      "desc": "Removes <b>all</b> added captures from the Observable."
3164     },
3165     {
3166      "name": "removeListener",
3167      "sig": "(String eventName, Function handler, Object scope)",
3168      "type": "function",
3169      "desc": "Removes a listener"
3170     },
3171     {
3172      "name": "setContent",
3173      "sig": "(String content, Boolean loadScripts)",
3174      "type": "function",
3175      "desc": "Updates this panel's element"
3176     },
3177     {
3178      "name": "setTitle",
3179      "sig": "(String title)",
3180      "type": "function",
3181      "desc": "Set this panel's title"
3182     },
3183     {
3184      "name": "setUrl",
3185      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
3186      "type": "function",
3187      "desc": "Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL."
3188     },
3189     {
3190      "name": "un",
3191      "sig": "(String eventName, Function handler, Object scope)",
3192      "type": "function",
3193      "desc": "Removes a listener (shorthand for removeListener)"
3194     }
3195    ]
3196   },
3197   "Roo.DDView": {
3198    "props": [
3199     {
3200      "name": "dragGroup",
3201      "type": "String/Array",
3202      "desc": "The ddgroup name(s) for the View's DragZone.",
3203      "memberOf": ""
3204     },
3205     {
3206      "name": "dropGroup",
3207      "type": "String/Array",
3208      "desc": "The ddgroup name(s) for the View's DropZone.",
3209      "memberOf": ""
3210     },
3211     {
3212      "name": "copy",
3213      "type": "Boolean",
3214      "desc": "Causes drag operations to copy nodes rather than move.",
3215      "memberOf": ""
3216     },
3217     {
3218      "name": "allowCopy",
3219      "type": "Boolean",
3220      "desc": "Causes ctrl/drag operations to copy nodes rather than move.",
3221      "memberOf": ""
3222     }
3223    ],
3224    "events": [],
3225    "methods": [
3226     {
3227      "name": "getContextMenu",
3228      "sig": "()",
3229      "type": "function",
3230      "desc": "Return the context menu for this DDView."
3231     },
3232     {
3233      "name": "getDragData",
3234      "sig": "()",
3235      "type": "function",
3236      "desc": "Create the drag data which consists of an object which has the property \"ddel\" as\n\tthe drag proxy element."
3237     },
3238     {
3239      "name": "getDropPoint",
3240      "sig": "()",
3241      "type": "function",
3242      "desc": "Decide whether to drop above or below a View node."
3243     },
3244     {
3245      "name": "getName",
3246      "sig": "()",
3247      "type": "function",
3248      "desc": "Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}."
3249     },
3250     {
3251      "name": "getTargetFromEvent",
3252      "sig": "()",
3253      "type": "function",
3254      "desc": "Part of the Roo.dd.DropZone interface. If no target node is found, the\n\twhole Element becomes the target, and this causes the drop gesture to append."
3255     },
3256     {
3257      "name": "getValue",
3258      "sig": "()",
3259      "type": "function",
3260      "desc": ""
3261     },
3262     {
3263      "name": "onDblClick",
3264      "sig": "()",
3265      "type": "function",
3266      "desc": "Double click fires the event, but also, if this is draggable, and there is only one other\n\trelated DropZone, it transfers the selected node."
3267     },
3268     {
3269      "name": "remove",
3270      "sig": "(Array/Number selectedIndices)",
3271      "type": "function",
3272      "desc": "Remove {@link Roo.data.Record}s at the specified indices."
3273     },
3274     {
3275      "name": "setDeletable",
3276      "sig": "(String imageUrl)",
3277      "type": "function",
3278      "desc": "Utility method. Add a delete option to the DDView's context menu."
3279     },
3280     {
3281      "name": "setDraggable",
3282      "sig": "()",
3283      "type": "function",
3284      "desc": "Specify to which ddGroup items in this DDView may be dragged."
3285     },
3286     {
3287      "name": "setDroppable",
3288      "sig": "()",
3289      "type": "function",
3290      "desc": "Specify from which ddGroup this DDView accepts drops."
3291     },
3292     {
3293      "name": "setValue",
3294      "sig": "()",
3295      "type": "function",
3296      "desc": "Loads the View from a JSON string representing the Records to put into the Store."
3297     }
3298    ]
3299   },
3300   "Roo.DatePicker": {
3301    "props": [
3302     {
3303      "name": "todayText",
3304      "type": "String",
3305      "desc": "The text to display on the button that selects the current date (defaults to \"Today\")",
3306      "memberOf": ""
3307     },
3308     {
3309      "name": "okText",
3310      "type": "String",
3311      "desc": "The text to display on the ok button",
3312      "memberOf": ""
3313     },
3314     {
3315      "name": "cancelText",
3316      "type": "String",
3317      "desc": "The text to display on the cancel button",
3318      "memberOf": ""
3319     },
3320     {
3321      "name": "todayTip",
3322      "type": "String",
3323      "desc": "The tooltip to display for the button that selects the current date (defaults to \"{current date} (Spacebar)\")",
3324      "memberOf": ""
3325     },
3326     {
3327      "name": "minDate",
3328      "type": "Date",
3329      "desc": "Minimum allowable date (JavaScript date object, defaults to null)",
3330      "memberOf": ""
3331     },
3332     {
3333      "name": "maxDate",
3334      "type": "Date",
3335      "desc": "Maximum allowable date (JavaScript date object, defaults to null)",
3336      "memberOf": ""
3337     },
3338     {
3339      "name": "minText",
3340      "type": "String",
3341      "desc": "The error text to display if the minDate validation fails (defaults to \"This date is before the minimum date\")",
3342      "memberOf": ""
3343     },
3344     {
3345      "name": "maxText",
3346      "type": "String",
3347      "desc": "The error text to display if the maxDate validation fails (defaults to \"This date is after the maximum date\")",
3348      "memberOf": ""
3349     },
3350     {
3351      "name": "format",
3352      "type": "String",
3353      "desc": "The default date format string which can be overriden for localization support.  The format must be\nvalid according to {@link Date#parseDate} (defaults to 'm/d/y').",
3354      "memberOf": ""
3355     },
3356     {
3357      "name": "disabledDays",
3358      "type": "Array",
3359      "desc": "An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).",
3360      "memberOf": ""
3361     },
3362     {
3363      "name": "disabledDaysText",
3364      "type": "String",
3365      "desc": "The tooltip to display when the date falls on a disabled day (defaults to \"\")",
3366      "memberOf": ""
3367     },
3368     {
3369      "name": "disabledDatesRE",
3370      "type": "RegExp",
3371      "desc": "JavaScript regular expression used to disable a pattern of dates (defaults to null)",
3372      "memberOf": ""
3373     },
3374     {
3375      "name": "disabledDatesText",
3376      "type": "String",
3377      "desc": "The tooltip text to display when the date falls on a disabled date (defaults to \"\")",
3378      "memberOf": ""
3379     },
3380     {
3381      "name": "constrainToViewport",
3382      "type": "Boolean",
3383      "desc": "True to constrain the date picker to the viewport (defaults to true)",
3384      "memberOf": ""
3385     },
3386     {
3387      "name": "monthNames",
3388      "type": "Array",
3389      "desc": "An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)",
3390      "memberOf": ""
3391     },
3392     {
3393      "name": "dayNames",
3394      "type": "Array",
3395      "desc": "An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)",
3396      "memberOf": ""
3397     },
3398     {
3399      "name": "nextText",
3400      "type": "String",
3401      "desc": "The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')",
3402      "memberOf": ""
3403     },
3404     {
3405      "name": "prevText",
3406      "type": "String",
3407      "desc": "The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')",
3408      "memberOf": ""
3409     },
3410     {
3411      "name": "monthYearText",
3412      "type": "String",
3413      "desc": "The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')",
3414      "memberOf": ""
3415     },
3416     {
3417      "name": "startDay",
3418      "type": "Number",
3419      "desc": "Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)",
3420      "memberOf": ""
3421     },
3422     {
3423      "name": "showClear",
3424      "type": "Bool",
3425      "desc": "Show a clear button (usefull for date form elements that can be blank.)",
3426      "memberOf": ""
3427     },
3428     {
3429      "name": "disableClass",
3430      "type": "String",
3431      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
3432      "memberOf": "Roo.Component"
3433     },
3434     {
3435      "name": "allowDomMove",
3436      "type": "Boolean",
3437      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
3438      "memberOf": "Roo.Component"
3439     },
3440     {
3441      "name": "hideMode",
3442      "type": "String",
3443      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
3444      "memberOf": "Roo.Component",
3445      "optvals": [
3446       "display",
3447       "visibility"
3448      ]
3449     },
3450     {
3451      "name": "actionMode",
3452      "type": "String",
3453      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
3454      "memberOf": "Roo.Component"
3455     },
3456     {
3457      "name": "listeners",
3458      "type": "Object",
3459      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
3460      "memberOf": "Roo.util.Observable"
3461     }
3462    ],
3463    "events": [
3464     {
3465      "name": "beforedestroy",
3466      "sig": "function (_self)\n{\n\n}",
3467      "type": "function",
3468      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
3469     },
3470     {
3471      "name": "beforehide",
3472      "sig": "function (_self)\n{\n\n}",
3473      "type": "function",
3474      "desc": "Fires before the component is hidden. Return false to stop the hide."
3475     },
3476     {
3477      "name": "beforerender",
3478      "sig": "function (_self)\n{\n\n}",
3479      "type": "function",
3480      "desc": "Fires before the component is rendered. Return false to stop the render."
3481     },
3482     {
3483      "name": "beforeshow",
3484      "sig": "function (_self)\n{\n\n}",
3485      "type": "function",
3486      "desc": "Fires before the component is shown.  Return false to stop the show."
3487     },
3488     {
3489      "name": "destroy",
3490      "sig": "function (_self)\n{\n\n}",
3491      "type": "function",
3492      "desc": "Fires after the component is destroyed."
3493     },
3494     {
3495      "name": "disable",
3496      "sig": "function (_self)\n{\n\n}",
3497      "type": "function",
3498      "desc": "Fires after the component is disabled."
3499     },
3500     {
3501      "name": "enable",
3502      "sig": "function (_self)\n{\n\n}",
3503      "type": "function",
3504      "desc": "Fires after the component is enabled."
3505     },
3506     {
3507      "name": "hide",
3508      "sig": "function (_self)\n{\n\n}",
3509      "type": "function",
3510      "desc": "Fires after the component is hidden."
3511     },
3512     {
3513      "name": "monthchange",
3514      "sig": "function (_self, date)\n{\n\n}",
3515      "type": "function",
3516      "desc": "Fires when the displayed month changes"
3517     },
3518     {
3519      "name": "render",
3520      "sig": "function (_self)\n{\n\n}",
3521      "type": "function",
3522      "desc": "Fires after the component is rendered."
3523     },
3524     {
3525      "name": "select",
3526      "sig": "function (_self, date)\n{\n\n}",
3527      "type": "function",
3528      "desc": "Fires when a date is selected"
3529     },
3530     {
3531      "name": "show",
3532      "sig": "function (_self)\n{\n\n}",
3533      "type": "function",
3534      "desc": "Fires after the component is shown."
3535     }
3536    ],
3537    "methods": [
3538     {
3539      "name": "addEvents",
3540      "sig": "(Object object)",
3541      "type": "function",
3542      "desc": "Used to define events on this Observable"
3543     },
3544     {
3545      "name": "addListener",
3546      "sig": "(String eventName, Function handler, Object scope, Object options)",
3547      "type": "function",
3548      "desc": "Appends an event handler to this component"
3549     },
3550     {
3551      "name": "capture",
3552      "sig": "(Observable o, Function fn, Object scope)",
3553      "type": "function",
3554      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
3555     },
3556     {
3557      "name": "destroy",
3558      "sig": "()",
3559      "type": "function",
3560      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
3561     },
3562     {
3563      "name": "disable",
3564      "sig": "()",
3565      "type": "function",
3566      "desc": "Disable this component."
3567     },
3568     {
3569      "name": "enable",
3570      "sig": "()",
3571      "type": "function",
3572      "desc": "Enable this component."
3573     },
3574     {
3575      "name": "fireEvent",
3576      "sig": "(String eventName, Object... args)",
3577      "type": "function",
3578      "desc": "Fires the specified event with the passed parameters (minus the event name)."
3579     },
3580     {
3581      "name": "focus",
3582      "sig": "(Boolean selectText)",
3583      "type": "function",
3584      "desc": "Try to focus this component."
3585     },
3586     {
3587      "name": "getEl",
3588      "sig": "()",
3589      "type": "function",
3590      "desc": "Returns the underlying {@link Roo.Element}."
3591     },
3592     {
3593      "name": "getId",
3594      "sig": "()",
3595      "type": "function",
3596      "desc": "Returns the id of this component."
3597     },
3598     {
3599      "name": "getValue",
3600      "sig": "()",
3601      "type": "function",
3602      "desc": "Gets the current selected value of the date field"
3603     },
3604     {
3605      "name": "hasListener",
3606      "sig": "(String eventName)",
3607      "type": "function",
3608      "desc": "Checks to see if this object has any listeners for a specified event"
3609     },
3610     {
3611      "name": "hide",
3612      "sig": "()",
3613      "type": "function",
3614      "desc": "Hide this component."
3615     },
3616     {
3617      "name": "isVisible",
3618      "sig": "()",
3619      "type": "function",
3620      "desc": "Returns true if this component is visible."
3621     },
3622     {
3623      "name": "on",
3624      "sig": "(String eventName, Function handler, Object scope, Object options)",
3625      "type": "function",
3626      "desc": "Appends an event handler to this element (shorthand for addListener)"
3627     },
3628     {
3629      "name": "purgeListeners",
3630      "sig": "()",
3631      "type": "function",
3632      "desc": "Removes all listeners for this object"
3633     },
3634     {
3635      "name": "releaseCapture",
3636      "sig": "(Observable o)",
3637      "type": "function",
3638      "desc": "Removes <b>all</b> added captures from the Observable."
3639     },
3640     {
3641      "name": "removeListener",
3642      "sig": "(String eventName, Function handler, Object scope)",
3643      "type": "function",
3644      "desc": "Removes a listener"
3645     },
3646     {
3647      "name": "render",
3648      "sig": "(String/HTMLElement/Element container)",
3649      "type": "function",
3650      "desc": "If this is a lazy rendering component, render it to its container element."
3651     },
3652     {
3653      "name": "setDisabled",
3654      "sig": "(Boolean disabled)",
3655      "type": "function",
3656      "desc": "Convenience function for setting disabled/enabled by boolean."
3657     },
3658     {
3659      "name": "setValue",
3660      "sig": "(Date value)",
3661      "type": "function",
3662      "desc": "Sets the value of the date field"
3663     },
3664     {
3665      "name": "setVisible",
3666      "sig": "(Boolean visible)",
3667      "type": "function",
3668      "desc": "Convenience function to hide or show this component by boolean."
3669     },
3670     {
3671      "name": "show",
3672      "sig": "()",
3673      "type": "function",
3674      "desc": "Show this component."
3675     },
3676     {
3677      "name": "un",
3678      "sig": "(String eventName, Function handler, Object scope)",
3679      "type": "function",
3680      "desc": "Removes a listener (shorthand for removeListener)"
3681     }
3682    ]
3683   },
3684   "Roo.DialogManager": {
3685    "props": [],
3686    "events": [],
3687    "methods": [
3688     {
3689      "name": "bringToFront",
3690      "sig": "(String/Object dlg)",
3691      "type": "function",
3692      "desc": "Brings the specified dialog to the front"
3693     },
3694     {
3695      "name": "get",
3696      "sig": "(String/Object id)",
3697      "type": "function",
3698      "desc": "Gets a registered dialog by id"
3699     },
3700     {
3701      "name": "hideAll",
3702      "sig": "()",
3703      "type": "function",
3704      "desc": "Hides all dialogs"
3705     },
3706     {
3707      "name": "sendToBack",
3708      "sig": "(String/Object dlg)",
3709      "type": "function",
3710      "desc": "Sends the specified dialog to the back"
3711     }
3712    ]
3713   },
3714   "Roo.Document": {
3715    "props": [
3716     {
3717      "name": "listeners",
3718      "type": "Object",
3719      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
3720      "memberOf": "Roo.util.Observable"
3721     }
3722    ],
3723    "events": [],
3724    "methods": [
3725     {
3726      "name": "addEvents",
3727      "sig": "(Object object)",
3728      "type": "function",
3729      "desc": "Used to define events on this Observable"
3730     },
3731     {
3732      "name": "addListener",
3733      "sig": "(String eventName, Function handler, Object scope, Object options)",
3734      "type": "function",
3735      "desc": "Appends an event handler to this component"
3736     },
3737     {
3738      "name": "capture",
3739      "sig": "(Observable o, Function fn, Object scope)",
3740      "type": "function",
3741      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
3742     },
3743     {
3744      "name": "fireEvent",
3745      "sig": "(String eventName, Object... args)",
3746      "type": "function",
3747      "desc": "Fires the specified event with the passed parameters (minus the event name)."
3748     },
3749     {
3750      "name": "hasListener",
3751      "sig": "(String eventName)",
3752      "type": "function",
3753      "desc": "Checks to see if this object has any listeners for a specified event"
3754     },
3755     {
3756      "name": "on",
3757      "sig": "(String eventName, Function handler, Object scope, Object options)",
3758      "type": "function",
3759      "desc": "Appends an event handler to this element (shorthand for addListener)"
3760     },
3761     {
3762      "name": "purgeListeners",
3763      "sig": "()",
3764      "type": "function",
3765      "desc": "Removes all listeners for this object"
3766     },
3767     {
3768      "name": "releaseCapture",
3769      "sig": "(Observable o)",
3770      "type": "function",
3771      "desc": "Removes <b>all</b> added captures from the Observable."
3772     },
3773     {
3774      "name": "removeListener",
3775      "sig": "(String eventName, Function handler, Object scope)",
3776      "type": "function",
3777      "desc": "Removes a listener"
3778     },
3779     {
3780      "name": "un",
3781      "sig": "(String eventName, Function handler, Object scope)",
3782      "type": "function",
3783      "desc": "Removes a listener (shorthand for removeListener)"
3784     }
3785    ]
3786   },
3787   "Roo.DomHelper": {
3788    "props": [],
3789    "events": [],
3790    "methods": [
3791     {
3792      "name": "append",
3793      "sig": "(String/HTMLElement/Element el, Object/String o, Boolean returnElement)",
3794      "type": "function",
3795      "desc": "Creates new Dom element(s) and appends them to el"
3796     },
3797     {
3798      "name": "applyStyles",
3799      "sig": "(String/HTMLElement el, String/Object/Function styles)",
3800      "type": "function",
3801      "desc": "Applies a style specification to an element"
3802     },
3803     {
3804      "name": "createTemplate",
3805      "sig": "(Object o)",
3806      "type": "function",
3807      "desc": "Creates a new Roo.DomHelper.Template from the Dom object spec"
3808     },
3809     {
3810      "name": "insertAfter",
3811      "sig": "(String/HTMLElement/Element el, Object o, Boolean returnElement)",
3812      "type": "function",
3813      "desc": "Creates new Dom element(s) and inserts them after el"
3814     },
3815     {
3816      "name": "insertBefore",
3817      "sig": "(String/HTMLElement/Element el, Object/String o, Boolean returnElement)",
3818      "type": "function",
3819      "desc": "Creates new Dom element(s) and inserts them before el"
3820     },
3821     {
3822      "name": "insertFirst",
3823      "sig": "(String/HTMLElement/Element el, Object/String o, Boolean returnElement)",
3824      "type": "function",
3825      "desc": "Creates new Dom element(s) and inserts them as the first child of el"
3826     },
3827     {
3828      "name": "insertHtml",
3829      "sig": "(String where, HTMLElement el, String html)",
3830      "type": "function",
3831      "desc": "Inserts an HTML fragment into the Dom"
3832     },
3833     {
3834      "name": "markup",
3835      "sig": "(Object o)",
3836      "type": "function",
3837      "desc": "Returns the markup for the passed Element(s) config"
3838     },
3839     {
3840      "name": "overwrite",
3841      "sig": "(String/HTMLElement/Element el, Object/String o, Boolean returnElement)",
3842      "type": "function",
3843      "desc": "Creates new Dom element(s) and overwrites the contents of el with them"
3844     }
3845    ]
3846   },
3847   "Roo.DomQuery": {
3848    "props": [],
3849    "events": [],
3850    "methods": [
3851     {
3852      "name": "compile",
3853      "sig": "(String selector, String type)",
3854      "type": "function",
3855      "desc": "Compiles a selector/xpath query into a reusable function. The returned function\ntakes one parameter \"root\" (optional), which is the context node from where the query should start."
3856     },
3857     {
3858      "name": "filter",
3859      "sig": "(Array el, String selector, Boolean nonMatches)",
3860      "type": "function",
3861      "desc": "Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)"
3862     },
3863     {
3864      "name": "is",
3865      "sig": "(String/HTMLElement/Array el, String selector)",
3866      "type": "function",
3867      "desc": "Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)"
3868     },
3869     {
3870      "name": "select",
3871      "sig": "(String selector, Node root)",
3872      "type": "function",
3873      "desc": "Selects a group of elements."
3874     },
3875     {
3876      "name": "selectNode",
3877      "sig": "(String selector, Node root)",
3878      "type": "function",
3879      "desc": "Selects a single element."
3880     },
3881     {
3882      "name": "selectNumber",
3883      "sig": "(String selector, Node root, Number defaultValue)",
3884      "type": "function",
3885      "desc": "Selects the value of a node, parsing integers and floats."
3886     },
3887     {
3888      "name": "selectValue",
3889      "sig": "(String selector, Node root, String defaultValue)",
3890      "type": "function",
3891      "desc": "Selects the value of a node, optionally replacing null with the defaultValue."
3892     }
3893    ]
3894   },
3895   "Roo.DomTemplate": {
3896    "props": [
3897     {
3898      "name": "url",
3899      "type": "String",
3900      "desc": "The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..\n                   it should be fixed so that template is observable...",
3901      "memberOf": "Roo.Template"
3902     },
3903     {
3904      "name": "html",
3905      "type": "String",
3906      "desc": "The HTML fragment or an array of fragments to join(\"\") or multiple arguments to join(\"\")",
3907      "memberOf": "Roo.Template"
3908     }
3909    ],
3910    "events": [],
3911    "methods": [
3912     {
3913      "name": "append",
3914      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
3915      "type": "function",
3916      "desc": "Applies the supplied values to the template and appends the new node(s) to el."
3917     },
3918     {
3919      "name": "apply",
3920      "sig": "()",
3921      "type": "function",
3922      "desc": "Alias for {@link #applyTemplate}"
3923     },
3924     {
3925      "name": "applySubTemplate",
3926      "sig": "(Number id, Object values, Object parent)",
3927      "type": "function",
3928      "desc": "same as applyTemplate, except it's done to one of the subTemplates\nwhen using named templates, you can do:\n\nvar str = pl.applySubTemplate('your-name', values);"
3929     },
3930     {
3931      "name": "applyTemplate",
3932      "sig": "(Object values)",
3933      "type": "function",
3934      "desc": "Returns an HTML fragment of this template with the specified values applied."
3935     },
3936     {
3937      "name": "compile",
3938      "sig": "()",
3939      "type": "function",
3940      "desc": "compile the template\n\nThis is not recursive, so I'm not sure how nested templates are really going to be handled.."
3941     },
3942     {
3943      "name": "compileTpl",
3944      "sig": "()",
3945      "type": "function",
3946      "desc": "Compile a segment of the template into a 'sub-template'"
3947     },
3948     {
3949      "name": "from",
3950      "sig": "(String/HTMLElement el)",
3951      "type": "function",
3952      "desc": "Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML."
3953     },
3954     {
3955      "name": "insertAfter",
3956      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
3957      "type": "function",
3958      "desc": "Applies the supplied values to the template and inserts the new node(s) after el."
3959     },
3960     {
3961      "name": "insertBefore",
3962      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
3963      "type": "function",
3964      "desc": "Applies the supplied values to the template and inserts the new node(s) before el."
3965     },
3966     {
3967      "name": "insertFirst",
3968      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
3969      "type": "function",
3970      "desc": "Applies the supplied values to the template and inserts the new node(s) as the first child of el."
3971     },
3972     {
3973      "name": "overwrite",
3974      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
3975      "type": "function",
3976      "desc": "Applies the supplied values to the template and overwrites the content of el with the new node(s)."
3977     },
3978     {
3979      "name": "set",
3980      "sig": "(String html, Boolean compile)",
3981      "type": "function",
3982      "desc": "Sets the HTML used as the template and optionally compiles it."
3983     }
3984    ]
3985   },
3986   "Roo.Editor": {
3987    "props": [
3988     {
3989      "name": "autosize",
3990      "type": "Boolean/String",
3991      "desc": "True for the editor to automatically adopt the size of the underlying field, \"width\" to adopt the width only,\nor \"height\" to adopt the height only (defaults to false)",
3992      "memberOf": ""
3993     },
3994     {
3995      "name": "revertInvalid",
3996      "type": "Boolean",
3997      "desc": "True to automatically revert the field value and cancel the edit when the user completes an edit and the field\nvalidation fails (defaults to true)",
3998      "memberOf": ""
3999     },
4000     {
4001      "name": "ignoreNoChange",
4002      "type": "Boolean",
4003      "desc": "True to skip the the edit completion process (no save, no events fired) if the user completes an edit and\nthe value has not changed (defaults to false).  Applies only to string values - edits for other data types\nwill never be ignored.",
4004      "memberOf": ""
4005     },
4006     {
4007      "name": "hideEl",
4008      "type": "Boolean",
4009      "desc": "False to keep the bound element visible while the editor is displayed (defaults to true)",
4010      "memberOf": ""
4011     },
4012     {
4013      "name": "value",
4014      "type": "Mixed",
4015      "desc": "The data value of the underlying field (defaults to \"\")",
4016      "memberOf": ""
4017     },
4018     {
4019      "name": "alignment",
4020      "type": "String",
4021      "desc": "The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to \"c-c?\").",
4022      "memberOf": ""
4023     },
4024     {
4025      "name": "shadow",
4026      "type": "Boolean/String",
4027      "desc": "\"sides\" for sides/bottom only, \"frame\" for 4-way shadow, and \"drop\"\nfor bottom-right shadow (defaults to \"frame\")",
4028      "memberOf": ""
4029     },
4030     {
4031      "name": "constrain",
4032      "type": "Boolean",
4033      "desc": "True to constrain the editor to the viewport",
4034      "memberOf": ""
4035     },
4036     {
4037      "name": "completeOnEnter",
4038      "type": "Boolean",
4039      "desc": "True to complete the edit when the enter key is pressed (defaults to false)",
4040      "memberOf": ""
4041     },
4042     {
4043      "name": "cancelOnEsc",
4044      "type": "Boolean",
4045      "desc": "True to cancel the edit when the escape key is pressed (defaults to false)",
4046      "memberOf": ""
4047     },
4048     {
4049      "name": "updateEl",
4050      "type": "Boolean",
4051      "desc": "True to update the innerHTML of the bound element when the update completes (defaults to false)",
4052      "memberOf": ""
4053     },
4054     {
4055      "name": "disableClass",
4056      "type": "String",
4057      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
4058      "memberOf": "Roo.Component"
4059     },
4060     {
4061      "name": "allowDomMove",
4062      "type": "Boolean",
4063      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
4064      "memberOf": "Roo.Component"
4065     },
4066     {
4067      "name": "hideMode",
4068      "type": "String",
4069      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
4070      "memberOf": "Roo.Component",
4071      "optvals": [
4072       "display",
4073       "visibility"
4074      ]
4075     },
4076     {
4077      "name": "actionMode",
4078      "type": "String",
4079      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
4080      "memberOf": "Roo.Component"
4081     },
4082     {
4083      "name": "listeners",
4084      "type": "Object",
4085      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
4086      "memberOf": "Roo.util.Observable"
4087     }
4088    ],
4089    "events": [
4090     {
4091      "name": "beforecomplete",
4092      "sig": "function (_self, value, startValue)\n{\n\n}",
4093      "type": "function",
4094      "desc": "Fires after a change has been made to the field, but before the change is reflected in the underlying\nfield.  Saving the change to the field can be canceled by returning false from the handler of this event.\nNote that if the value has not changed and ignoreNoChange = true, the editing will still end but this\nevent will not fire since no edit actually occurred."
4095     },
4096     {
4097      "name": "beforedestroy",
4098      "sig": "function (_self)\n{\n\n}",
4099      "type": "function",
4100      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
4101     },
4102     {
4103      "name": "beforehide",
4104      "sig": "function (_self)\n{\n\n}",
4105      "type": "function",
4106      "desc": "Fires before the component is hidden. Return false to stop the hide."
4107     },
4108     {
4109      "name": "beforerender",
4110      "sig": "function (_self)\n{\n\n}",
4111      "type": "function",
4112      "desc": "Fires before the component is rendered. Return false to stop the render."
4113     },
4114     {
4115      "name": "beforeshow",
4116      "sig": "function (_self)\n{\n\n}",
4117      "type": "function",
4118      "desc": "Fires before the component is shown.  Return false to stop the show."
4119     },
4120     {
4121      "name": "beforestartedit",
4122      "sig": "function (_self, boundEl, value)\n{\n\n}",
4123      "type": "function",
4124      "desc": "Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning\nfalse from the handler of this event."
4125     },
4126     {
4127      "name": "complete",
4128      "sig": "function (_self, value, startValue)\n{\n\n}",
4129      "type": "function",
4130      "desc": "Fires after editing is complete and any changed value has been written to the underlying field."
4131     },
4132     {
4133      "name": "destroy",
4134      "sig": "function (_self)\n{\n\n}",
4135      "type": "function",
4136      "desc": "Fires after the component is destroyed."
4137     },
4138     {
4139      "name": "disable",
4140      "sig": "function (_self)\n{\n\n}",
4141      "type": "function",
4142      "desc": "Fires after the component is disabled."
4143     },
4144     {
4145      "name": "enable",
4146      "sig": "function (_self)\n{\n\n}",
4147      "type": "function",
4148      "desc": "Fires after the component is enabled."
4149     },
4150     {
4151      "name": "hide",
4152      "sig": "function (_self)\n{\n\n}",
4153      "type": "function",
4154      "desc": "Fires after the component is hidden."
4155     },
4156     {
4157      "name": "render",
4158      "sig": "function (_self)\n{\n\n}",
4159      "type": "function",
4160      "desc": "Fires after the component is rendered."
4161     },
4162     {
4163      "name": "show",
4164      "sig": "function (_self)\n{\n\n}",
4165      "type": "function",
4166      "desc": "Fires after the component is shown."
4167     },
4168     {
4169      "name": "specialkey",
4170      "sig": "function (_self, e)\n{\n\n}",
4171      "type": "function",
4172      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
4173     },
4174     {
4175      "name": "startedit",
4176      "sig": "function (boundEl, value)\n{\n\n}",
4177      "type": "function",
4178      "desc": "Fires when this editor is displayed"
4179     }
4180    ],
4181    "methods": [
4182     {
4183      "name": "addEvents",
4184      "sig": "(Object object)",
4185      "type": "function",
4186      "desc": "Used to define events on this Observable"
4187     },
4188     {
4189      "name": "addListener",
4190      "sig": "(String eventName, Function handler, Object scope, Object options)",
4191      "type": "function",
4192      "desc": "Appends an event handler to this component"
4193     },
4194     {
4195      "name": "cancelEdit",
4196      "sig": "(Boolean remainVisible)",
4197      "type": "function",
4198      "desc": "Cancels the editing process and hides the editor without persisting any changes.  The field value will be\nreverted to the original starting value."
4199     },
4200     {
4201      "name": "capture",
4202      "sig": "(Observable o, Function fn, Object scope)",
4203      "type": "function",
4204      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
4205     },
4206     {
4207      "name": "completeEdit",
4208      "sig": "(Boolean remainVisible)",
4209      "type": "function",
4210      "desc": "Ends the editing process, persists the changed value to the underlying field, and hides the editor."
4211     },
4212     {
4213      "name": "destroy",
4214      "sig": "()",
4215      "type": "function",
4216      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
4217     },
4218     {
4219      "name": "disable",
4220      "sig": "()",
4221      "type": "function",
4222      "desc": "Disable this component."
4223     },
4224     {
4225      "name": "enable",
4226      "sig": "()",
4227      "type": "function",
4228      "desc": "Enable this component."
4229     },
4230     {
4231      "name": "fireEvent",
4232      "sig": "(String eventName, Object... args)",
4233      "type": "function",
4234      "desc": "Fires the specified event with the passed parameters (minus the event name)."
4235     },
4236     {
4237      "name": "focus",
4238      "sig": "(Boolean selectText)",
4239      "type": "function",
4240      "desc": "Try to focus this component."
4241     },
4242     {
4243      "name": "getEl",
4244      "sig": "()",
4245      "type": "function",
4246      "desc": "Returns the underlying {@link Roo.Element}."
4247     },
4248     {
4249      "name": "getId",
4250      "sig": "()",
4251      "type": "function",
4252      "desc": "Returns the id of this component."
4253     },
4254     {
4255      "name": "getValue",
4256      "sig": "()",
4257      "type": "function",
4258      "desc": "Gets the data value of the editor"
4259     },
4260     {
4261      "name": "hasListener",
4262      "sig": "(String eventName)",
4263      "type": "function",
4264      "desc": "Checks to see if this object has any listeners for a specified event"
4265     },
4266     {
4267      "name": "hide",
4268      "sig": "()",
4269      "type": "function",
4270      "desc": "Hide this component."
4271     },
4272     {
4273      "name": "isVisible",
4274      "sig": "()",
4275      "type": "function",
4276      "desc": "Returns true if this component is visible."
4277     },
4278     {
4279      "name": "on",
4280      "sig": "(String eventName, Function handler, Object scope, Object options)",
4281      "type": "function",
4282      "desc": "Appends an event handler to this element (shorthand for addListener)"
4283     },
4284     {
4285      "name": "purgeListeners",
4286      "sig": "()",
4287      "type": "function",
4288      "desc": "Removes all listeners for this object"
4289     },
4290     {
4291      "name": "realign",
4292      "sig": "()",
4293      "type": "function",
4294      "desc": "Realigns the editor to the bound field based on the current alignment config value."
4295     },
4296     {
4297      "name": "releaseCapture",
4298      "sig": "(Observable o)",
4299      "type": "function",
4300      "desc": "Removes <b>all</b> added captures from the Observable."
4301     },
4302     {
4303      "name": "removeListener",
4304      "sig": "(String eventName, Function handler, Object scope)",
4305      "type": "function",
4306      "desc": "Removes a listener"
4307     },
4308     {
4309      "name": "render",
4310      "sig": "(String/HTMLElement/Element container)",
4311      "type": "function",
4312      "desc": "If this is a lazy rendering component, render it to its container element."
4313     },
4314     {
4315      "name": "setDisabled",
4316      "sig": "(Boolean disabled)",
4317      "type": "function",
4318      "desc": "Convenience function for setting disabled/enabled by boolean."
4319     },
4320     {
4321      "name": "setSize",
4322      "sig": "(Number width, Number height)",
4323      "type": "function",
4324      "desc": "Sets the height and width of this editor."
4325     },
4326     {
4327      "name": "setValue",
4328      "sig": "(Mixed value)",
4329      "type": "function",
4330      "desc": "Sets the data value of the editor"
4331     },
4332     {
4333      "name": "setVisible",
4334      "sig": "(Boolean visible)",
4335      "type": "function",
4336      "desc": "Convenience function to hide or show this component by boolean."
4337     },
4338     {
4339      "name": "show",
4340      "sig": "()",
4341      "type": "function",
4342      "desc": "Show this component."
4343     },
4344     {
4345      "name": "startEdit",
4346      "sig": "(String/HTMLElement/Element el, String value)",
4347      "type": "function",
4348      "desc": "Starts the editing process and shows the editor."
4349     },
4350     {
4351      "name": "un",
4352      "sig": "(String eventName, Function handler, Object scope)",
4353      "type": "function",
4354      "desc": "Removes a listener (shorthand for removeListener)"
4355     }
4356    ]
4357   },
4358   "Roo.Element": {
4359    "props": [],
4360    "events": [],
4361    "methods": [
4362     {
4363      "name": "addClass",
4364      "sig": "(String/Array className)",
4365      "type": "function",
4366      "desc": "Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out."
4367     },
4368     {
4369      "name": "addClassOnClick",
4370      "sig": "(String className)",
4371      "type": "function",
4372      "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)"
4373     },
4374     {
4375      "name": "addClassOnFocus",
4376      "sig": "(String className)",
4377      "type": "function",
4378      "desc": "Sets up event handlers to add and remove a css class when this element has the focus"
4379     },
4380     {
4381      "name": "addClassOnOver",
4382      "sig": "(String className, Boolean preventFlicker)",
4383      "type": "function",
4384      "desc": "Sets up event handlers to add and remove a css class when the mouse is over this element"
4385     },
4386     {
4387      "name": "addKeyListener",
4388      "sig": "(Number/Array/Object/String key, Function fn, Object scope)",
4389      "type": "function",
4390      "desc": "Convenience method for constructing a KeyMap"
4391     },
4392     {
4393      "name": "addKeyMap",
4394      "sig": "(Object config)",
4395      "type": "function",
4396      "desc": "Creates a KeyMap for this element"
4397     },
4398     {
4399      "name": "addListener",
4400      "sig": "(String eventName, Function fn, Object scope, Object options)",
4401      "type": "function",
4402      "desc": "Appends an event handler"
4403     },
4404     {
4405      "name": "alignTo",
4406      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets, Boolean/Object animate)",
4407      "type": "function",
4408      "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>"
4409     },
4410     {
4411      "name": "anchorTo",
4412      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets, Boolean/Object animate, Boolean/Number monitorScroll, Function callback)",
4413      "type": "function",
4414      "desc": "Anchors an element to another element and realigns it when the window is resized."
4415     },
4416     {
4417      "name": "animate",
4418      "sig": "(Object args, Float duration, Function onComplete, String easing, String animType)",
4419      "type": "function",
4420      "desc": "Perform animation on this element."
4421     },
4422     {
4423      "name": "appendChild",
4424      "sig": "(String/HTMLElement/Array/Element/CompositeElement el)",
4425      "type": "function",
4426      "desc": "Appends the passed element(s) to this element"
4427     },
4428     {
4429      "name": "appendTo",
4430      "sig": "(String/HTMLElement/Element el)",
4431      "type": "function",
4432      "desc": "Appends this element to the passed element"
4433     },
4434     {
4435      "name": "applyStyles",
4436      "sig": "(String/Object/Function styles)",
4437      "type": "function",
4438      "desc": "More flexible version of {@link #setStyle} for setting style properties."
4439     },
4440     {
4441      "name": "attr",
4442      "sig": "(String|Object name, String value)",
4443      "type": "function",
4444      "desc": "Sets or Returns the value the dom attribute value"
4445     },
4446     {
4447      "name": "autoHeight",
4448      "sig": "(Boolean animate, Float duration, Function onComplete, String easing)",
4449      "type": "function",
4450      "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."
4451     },
4452     {
4453      "name": "beginMeasure",
4454      "sig": "()",
4455      "type": "function",
4456      "desc": "Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done."
4457     },
4458     {
4459      "name": "blur",
4460      "sig": "()",
4461      "type": "function",
4462      "desc": "Tries to blur the element. Any exceptions are caught and ignored."
4463     },
4464     {
4465      "name": "boxWrap",
4466      "sig": "(String class)",
4467      "type": "function",
4468      "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."
4469     },
4470     {
4471      "name": "center",
4472      "sig": "(String/HTMLElement/Roo.Element centerIn)",
4473      "type": "function",
4474      "desc": "Centers the Element in either the viewport, or another Element."
4475     },
4476     {
4477      "name": "child",
4478      "sig": "(String selector, Boolean returnDom)",
4479      "type": "function",
4480      "desc": "Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id)."
4481     },
4482     {
4483      "name": "clean",
4484      "sig": "(Boolean forceReclean)",
4485      "type": "function",
4486      "desc": "Removes worthless text nodes"
4487     },
4488     {
4489      "name": "clearOpacity",
4490      "sig": "()",
4491      "type": "function",
4492      "desc": "Clears any opacity settings from this element. Required in some cases for IE."
4493     },
4494     {
4495      "name": "clearPositioning",
4496      "sig": "(String value)",
4497      "type": "function",
4498      "desc": "Clear positioning back to the default when the document was loaded"
4499     },
4500     {
4501      "name": "clip",
4502      "sig": "()",
4503      "type": "function",
4504      "desc": "Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove"
4505     },
4506     {
4507      "name": "contains",
4508      "sig": "(HTMLElement/String el)",
4509      "type": "function",
4510      "desc": "Returns true if this element is an ancestor of the passed element"
4511     },
4512     {
4513      "name": "createChild",
4514      "sig": "(Object config, HTMLElement insertBefore, Boolean returnDom)",
4515      "type": "function",
4516      "desc": "Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element."
4517     },
4518     {
4519      "name": "createProxy",
4520      "sig": "(String/Object config, String/HTMLElement renderTo, Boolean matchBox)",
4521      "type": "function",
4522      "desc": "Creates a proxy element of this element"
4523     },
4524     {
4525      "name": "createShim",
4526      "sig": "()",
4527      "type": "function",
4528      "desc": "Creates an iframe shim for this element to keep selects and other windowed objects from\nshowing through."
4529     },
4530     {
4531      "name": "down",
4532      "sig": "(String selector, Boolean returnDom)",
4533      "type": "function",
4534      "desc": "Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id)."
4535     },
4536     {
4537      "name": "enableDisplayMode",
4538      "sig": "(String display)",
4539      "type": "function",
4540      "desc": "Convenience method for setVisibilityMode(Element.DISPLAY)"
4541     },
4542     {
4543      "name": "endMeasure",
4544      "sig": "()",
4545      "type": "function",
4546      "desc": "Restores displays to before beginMeasure was called"
4547     },
4548     {
4549      "name": "findParent",
4550      "sig": "(String selector, Number/String/HTMLElement/Element maxDepth, Boolean returnEl)",
4551      "type": "function",
4552      "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)"
4553     },
4554     {
4555      "name": "findParentNode",
4556      "sig": "(String selector, Number/String/HTMLElement/Element maxDepth, Boolean returnEl)",
4557      "type": "function",
4558      "desc": "Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)"
4559     },
4560     {
4561      "name": "fitToParent",
4562      "sig": "(Boolean monitorResize, String/HTMLElment/Element targetParent)",
4563      "type": "function",
4564      "desc": "Sizes this element to its parent element's dimensions performing\nneccessary box adjustments."
4565     },
4566     {
4567      "name": "fly",
4568      "sig": "(String/HTMLElement el, String named)",
4569      "type": "function",
4570      "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."
4571     },
4572     {
4573      "name": "focus",
4574      "sig": "()",
4575      "type": "function",
4576      "desc": "Tries to focus the element. Any exceptions are caught and ignored."
4577     },
4578     {
4579      "name": "get",
4580      "sig": "(String/HTMLElement/Element el)",
4581      "type": "function",
4582      "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."
4583     },
4584     {
4585      "name": "getAlignToXY",
4586      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets)",
4587      "type": "function",
4588      "desc": "Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the\nsupported position values."
4589     },
4590     {
4591      "name": "getAnchorXY",
4592      "sig": "(String anchor, Object size, Boolean local)",
4593      "type": "function",
4594      "desc": "Gets the x,y coordinates specified by the anchor position on the element."
4595     },
4596     {
4597      "name": "getAttributeNS",
4598      "sig": "(String namespace, String name)",
4599      "type": "function",
4600      "desc": "Returns the value of a namespaced attribute from the element's underlying DOM node."
4601     },
4602     {
4603      "name": "getBorderWidth",
4604      "sig": "(String side)",
4605      "type": "function",
4606      "desc": "Gets the width of the border(s) for the specified side(s)"
4607     },
4608     {
4609      "name": "getBottom",
4610      "sig": "(Boolean local)",
4611      "type": "function",
4612      "desc": "Gets the bottom Y coordinate of the element (element Y position + element height)"
4613     },
4614     {
4615      "name": "getBox",
4616      "sig": "(Boolean contentBox, Boolean local)",
4617      "type": "function",
4618      "desc": "Return a box {x, y, width, height} that can be used to set another elements\nsize/location to match this element."
4619     },
4620     {
4621      "name": "getCenterXY",
4622      "sig": "()",
4623      "type": "function",
4624      "desc": "Calculates the x, y to center this element on the screen"
4625     },
4626     {
4627      "name": "getColor",
4628      "sig": "(String attr, String defaultValue, String prefix)",
4629      "type": "function",
4630      "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."
4631     },
4632     {
4633      "name": "getComputedHeight",
4634      "sig": "()",
4635      "type": "function",
4636      "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."
4637     },
4638     {
4639      "name": "getComputedWidth",
4640      "sig": "()",
4641      "type": "function",
4642      "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."
4643     },
4644     {
4645      "name": "getFrameWidth",
4646      "sig": "(String sides)",
4647      "type": "function",
4648      "desc": "Returns the sum width of the padding and borders for the passed \"sides\". See getBorderWidth()\n         for more information about the sides."
4649     },
4650     {
4651      "name": "getHeight",
4652      "sig": "(Boolean contentHeight)",
4653      "type": "function",
4654      "desc": "Returns the offset height of the element"
4655     },
4656     {
4657      "name": "getLeft",
4658      "sig": "(Boolean local)",
4659      "type": "function",
4660      "desc": "Gets the left X coordinate"
4661     },
4662     {
4663      "name": "getMargins",
4664      "sig": "(String sides)",
4665      "type": "function",
4666      "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)"
4667     },
4668     {
4669      "name": "getNextSibling",
4670      "sig": "()",
4671      "type": "function",
4672      "desc": "Gets the next sibling, skipping text nodes"
4673     },
4674     {
4675      "name": "getPadding",
4676      "sig": "(String side)",
4677      "type": "function",
4678      "desc": "Gets the width of the padding(s) for the specified side(s)"
4679     },
4680     {
4681      "name": "getPositioning",
4682      "sig": "()",
4683      "type": "function",
4684      "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."
4685     },
4686     {
4687      "name": "getPrevSibling",
4688      "sig": "()",
4689      "type": "function",
4690      "desc": "Gets the previous sibling, skipping text nodes"
4691     },
4692     {
4693      "name": "getRegion",
4694      "sig": "()",
4695      "type": "function",
4696      "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)."
4697     },
4698     {
4699      "name": "getRight",
4700      "sig": "(Boolean local)",
4701      "type": "function",
4702      "desc": "Gets the right X coordinate of the element (element X position + element width)"
4703     },
4704     {
4705      "name": "getScroll",
4706      "sig": "()",
4707      "type": "function",
4708      "desc": "Returns the current scroll position of the element."
4709     },
4710     {
4711      "name": "getSize",
4712      "sig": "(Boolean contentSize)",
4713      "type": "function",
4714      "desc": "Returns the size of the element."
4715     },
4716     {
4717      "name": "getStyle",
4718      "sig": "(String property)",
4719      "type": "function",
4720      "desc": "Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version."
4721     },
4722     {
4723      "name": "getStyles",
4724      "sig": "(String style1, String style2)",
4725      "type": "function",
4726      "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'}."
4727     },
4728     {
4729      "name": "getTop",
4730      "sig": "(Boolean local)",
4731      "type": "function",
4732      "desc": "Gets the top Y coordinate"
4733     },
4734     {
4735      "name": "getUpdateManager",
4736      "sig": "()",
4737      "type": "function",
4738      "desc": "Gets this element's UpdateManager"
4739     },
4740     {
4741      "name": "getValue",
4742      "sig": "(Boolean asNumber)",
4743      "type": "function",
4744      "desc": "Returns the value of the \"value\" attribute"
4745     },
4746     {
4747      "name": "getViewSize",
4748      "sig": "()",
4749      "type": "function",
4750      "desc": "Returns the width and height of the viewport."
4751     },
4752     {
4753      "name": "getWidth",
4754      "sig": "(Boolean contentWidth)",
4755      "type": "function",
4756      "desc": "Returns the offset width of the element"
4757     },
4758     {
4759      "name": "getX",
4760      "sig": "()",
4761      "type": "function",
4762      "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)."
4763     },
4764     {
4765      "name": "getXY",
4766      "sig": "()",
4767      "type": "function",
4768      "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)."
4769     },
4770     {
4771      "name": "getY",
4772      "sig": "()",
4773      "type": "function",
4774      "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)."
4775     },
4776     {
4777      "name": "hasClass",
4778      "sig": "(String className)",
4779      "type": "function",
4780      "desc": "Checks if the specified CSS class exists on this element's DOM node."
4781     },
4782     {
4783      "name": "hide",
4784      "sig": "(Boolean/Object animate)",
4785      "type": "function",
4786      "desc": "Hide this element - Uses display mode to determine whether to use \"display\" or \"visibility\". See {@link #setVisible}."
4787     },
4788     {
4789      "name": "initDD",
4790      "sig": "(String group, Object config, Object overrides)",
4791      "type": "function",
4792      "desc": "Initializes a {@link Roo.dd.DD} drag drop object for this element."
4793     },
4794     {
4795      "name": "initDDProxy",
4796      "sig": "(String group, Object config, Object overrides)",
4797      "type": "function",
4798      "desc": "Initializes a {@link Roo.dd.DDProxy} object for this element."
4799     },
4800     {
4801      "name": "initDDTarget",
4802      "sig": "(String group, Object config, Object overrides)",
4803      "type": "function",
4804      "desc": "Initializes a {@link Roo.dd.DDTarget} object for this element."
4805     },
4806     {
4807      "name": "insertAfter",
4808      "sig": "(String/HTMLElement/Element el)",
4809      "type": "function",
4810      "desc": "Inserts this element after the passed element in the DOM"
4811     },
4812     {
4813      "name": "insertBefore",
4814      "sig": "(String/HTMLElement/Element el)",
4815      "type": "function",
4816      "desc": "Inserts this element before the passed element in the DOM"
4817     },
4818     {
4819      "name": "insertFirst",
4820      "sig": "(String/HTMLElement/Element/Object el)",
4821      "type": "function",
4822      "desc": "Inserts (or creates) an element (or DomHelper config) as the first child of the this element"
4823     },
4824     {
4825      "name": "insertHtml",
4826      "sig": "(String where, String html, Boolean returnEl)",
4827      "type": "function",
4828      "desc": "Inserts an html fragment into this element"
4829     },
4830     {
4831      "name": "insertSibling",
4832      "sig": "(String/HTMLElement/Element/Object el, String where, Boolean returnDom)",
4833      "type": "function",
4834      "desc": "Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element"
4835     },
4836     {
4837      "name": "is",
4838      "sig": "(String selector)",
4839      "type": "function",
4840      "desc": "Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)"
4841     },
4842     {
4843      "name": "isBorderBox",
4844      "sig": "()",
4845      "type": "function",
4846      "desc": "Tests various css rules/browsers to determine if this element uses a border box"
4847     },
4848     {
4849      "name": "isDisplayed",
4850      "sig": "()",
4851      "type": "function",
4852      "desc": "Returns true if display is not \"none\""
4853     },
4854     {
4855      "name": "isMasked",
4856      "sig": "()",
4857      "type": "function",
4858      "desc": "Returns true if this element is masked"
4859     },
4860     {
4861      "name": "isScrollable",
4862      "sig": "()",
4863      "type": "function",
4864      "desc": "Returns true if this element is scrollable."
4865     },
4866     {
4867      "name": "isVisible",
4868      "sig": "(Boolean deep)",
4869      "type": "function",
4870      "desc": "Checks whether the element is currently visible using both visibility and display properties."
4871     },
4872     {
4873      "name": "load",
4874      "sig": "(String/Function url, String/Object params, Function callback, Boolean discardUrl)",
4875      "type": "function",
4876      "desc": "Direct access to the UpdateManager update() method (takes the same parameters)."
4877     },
4878     {
4879      "name": "mask",
4880      "sig": "(String msg, String msgCls)",
4881      "type": "function",
4882      "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."
4883     },
4884     {
4885      "name": "move",
4886      "sig": "(String direction, Number distance, Boolean/Object animate)",
4887      "type": "function",
4888      "desc": "Move this element relative to its current position."
4889     },
4890     {
4891      "name": "moveTo",
4892      "sig": "(Number x, Number y, Boolean/Object animate)",
4893      "type": "function",
4894      "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)."
4895     },
4896     {
4897      "name": "on",
4898      "sig": "(String eventName, Function fn, Object scope, Object options)",
4899      "type": "function",
4900      "desc": "Appends an event handler (Shorthand for addListener)"
4901     },
4902     {
4903      "name": "position",
4904      "sig": "(String pos, Number zIndex, Number x, Number y)",
4905      "type": "function",
4906      "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."
4907     },
4908     {
4909      "name": "query",
4910      "sig": "(String selector)",
4911      "type": "function",
4912      "desc": "Selects child nodes based on the passed CSS selector (the selector should not contain an id)."
4913     },
4914     {
4915      "name": "radioClass",
4916      "sig": "(String/Array className)",
4917      "type": "function",
4918      "desc": "Adds one or more CSS classes to this element and removes the same class(es) from all siblings."
4919     },
4920     {
4921      "name": "remove",
4922      "sig": "()",
4923      "type": "function",
4924      "desc": "Removes this element from the DOM and deletes it from the cache"
4925     },
4926     {
4927      "name": "removeAllListeners",
4928      "sig": "()",
4929      "type": "function",
4930      "desc": "Removes all previous added listeners from this element"
4931     },
4932     {
4933      "name": "removeClass",
4934      "sig": "(String/Array className)",
4935      "type": "function",
4936      "desc": "Removes one or more CSS classes from the element."
4937     },
4938     {
4939      "name": "removeListener",
4940      "sig": "(String eventName, Function fn)",
4941      "type": "function",
4942      "desc": "Removes an event handler from this element"
4943     },
4944     {
4945      "name": "repaint",
4946      "sig": "()",
4947      "type": "function",
4948      "desc": "Forces the browser to repaint this element"
4949     },
4950     {
4951      "name": "replace",
4952      "sig": "(String/HTMLElement/Element el)",
4953      "type": "function",
4954      "desc": "Replaces the passed element with this element"
4955     },
4956     {
4957      "name": "replaceClass",
4958      "sig": "(String oldClassName, String newClassName)",
4959      "type": "function",
4960      "desc": "Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added."
4961     },
4962     {
4963      "name": "scroll",
4964      "sig": "(String direction, Number distance, Boolean/Object animate)",
4965      "type": "function",
4966      "desc": "Scrolls this element the specified direction. Does bounds checking to make sure the scroll is\nwithin this element's scrollable range."
4967     },
4968     {
4969      "name": "scrollIntoView",
4970      "sig": "(String/HTMLElement/Element container, Boolean hscroll)",
4971      "type": "function",
4972      "desc": "Scrolls this element into view within the passed container."
4973     },
4974     {
4975      "name": "scrollTo",
4976      "sig": "(String side, Number value, Boolean/Object animate)",
4977      "type": "function",
4978      "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()."
4979     },
4980     {
4981      "name": "select",
4982      "sig": "(String selector, Boolean unique)",
4983      "type": "function",
4984      "desc": "Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id)."
4985     },
4986     {
4987      "name": "set",
4988      "sig": "(Object o, Boolean useSet)",
4989      "type": "function",
4990      "desc": "Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)"
4991     },
4992     {
4993      "name": "setBottom",
4994      "sig": "(String bottom)",
4995      "type": "function",
4996      "desc": "Sets the element's CSS bottom style."
4997     },
4998     {
4999      "name": "setBounds",
5000      "sig": "(Number x, Number y, Number width, Number height, Boolean/Object animate)",
5001      "type": "function",
5002      "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."
5003     },
5004     {
5005      "name": "setBox",
5006      "sig": "(Object box, Boolean adjust, Boolean/Object animate)",
5007      "type": "function",
5008      "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."
5009     },
5010     {
5011      "name": "setDisplayed",
5012      "sig": "(Boolean value)",
5013      "type": "function",
5014      "desc": "Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true."
5015     },
5016     {
5017      "name": "setHeight",
5018      "sig": "(Number height, Boolean/Object animate)",
5019      "type": "function",
5020      "desc": "Set the height of the element"
5021     },
5022     {
5023      "name": "setLeft",
5024      "sig": "(String left)",
5025      "type": "function",
5026      "desc": "Sets the element's left position directly using CSS style (instead of {@link #setX})."
5027     },
5028     {
5029      "name": "setLeftTop",
5030      "sig": "(String left, String top)",
5031      "type": "function",
5032      "desc": "Quick set left and top adding default units"
5033     },
5034     {
5035      "name": "setLocation",
5036      "sig": "(Number x, Number y, Boolean/Object animate)",
5037      "type": "function",
5038      "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)."
5039     },
5040     {
5041      "name": "setOpacity",
5042      "sig": "(Float opacity, Boolean/Object animate)",
5043      "type": "function",
5044      "desc": "Set the opacity of the element"
5045     },
5046     {
5047      "name": "setPositioning",
5048      "sig": "(Object posCfg)",
5049      "type": "function",
5050      "desc": "Set positioning with an object returned by getPositioning()."
5051     },
5052     {
5053      "name": "setRegion",
5054      "sig": "(Roo.lib.Region region, Boolean/Object animate)",
5055      "type": "function",
5056      "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."
5057     },
5058     {
5059      "name": "setRight",
5060      "sig": "(String right)",
5061      "type": "function",
5062      "desc": "Sets the element's CSS right style."
5063     },
5064     {
5065      "name": "setSize",
5066      "sig": "(Number width, Number height, Boolean/Object animate)",
5067      "type": "function",
5068      "desc": "Set the size of the element. If animation is true, both width an height will be animated concurrently."
5069     },
5070     {
5071      "name": "setStyle",
5072      "sig": "(String/Object property, String value)",
5073      "type": "function",
5074      "desc": "Wrapper for setting style properties, also takes single object parameter of multiple styles."
5075     },
5076     {
5077      "name": "setTop",
5078      "sig": "(String top)",
5079      "type": "function",
5080      "desc": "Sets the element's top position directly using CSS style (instead of {@link #setY})."
5081     },
5082     {
5083      "name": "setVisibilityMode",
5084      "sig": "( visMode)",
5085      "type": "function",
5086      "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."
5087     },
5088     {
5089      "name": "setVisible",
5090      "sig": "(Boolean visible, Boolean/Object animate)",
5091      "type": "function",
5092      "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."
5093     },
5094     {
5095      "name": "setWidth",
5096      "sig": "(Number width, Boolean/Object animate)",
5097      "type": "function",
5098      "desc": "Set the width of the element"
5099     },
5100     {
5101      "name": "setX",
5102      "sig": "(Number The, Boolean/Object animate)",
5103      "type": "function",
5104      "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)."
5105     },
5106     {
5107      "name": "setXY",
5108      "sig": "(Array pos, Boolean/Object animate)",
5109      "type": "function",
5110      "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)."
5111     },
5112     {
5113      "name": "setY",
5114      "sig": "(Number The, Boolean/Object animate)",
5115      "type": "function",
5116      "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)."
5117     },
5118     {
5119      "name": "show",
5120      "sig": "(Boolean/Object animate)",
5121      "type": "function",
5122      "desc": "Show this element - Uses display mode to determine whether to use \"display\" or \"visibility\". See {@link #setVisible}."
5123     },
5124     {
5125      "name": "swallowEvent",
5126      "sig": "(String eventName, Boolean preventDefault)",
5127      "type": "function",
5128      "desc": "Stops the specified event from bubbling and optionally prevents the default action"
5129     },
5130     {
5131      "name": "toggle",
5132      "sig": "(Boolean/Object animate)",
5133      "type": "function",
5134      "desc": "Toggles the element's visibility or display, depending on visibility mode."
5135     },
5136     {
5137      "name": "toggleClass",
5138      "sig": "(String className)",
5139      "type": "function",
5140      "desc": "Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it)."
5141     },
5142     {
5143      "name": "translatePoints",
5144      "sig": "(Number/Array x, Number y)",
5145      "type": "function",
5146      "desc": "Translates the passed page coordinates into left/top css values for this element"
5147     },
5148     {
5149      "name": "un",
5150      "sig": "(String eventName, Function fn)",
5151      "type": "function",
5152      "desc": "Removes an event handler from this element (shorthand for removeListener)"
5153     },
5154     {
5155      "name": "unclip",
5156      "sig": "()",
5157      "type": "function",
5158      "desc": "Return clipping (overflow) to original clipping before clip() was called"
5159     },
5160     {
5161      "name": "unmask",
5162      "sig": "()",
5163      "type": "function",
5164      "desc": "Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise\nit is cached for reuse."
5165     },
5166     {
5167      "name": "unselectable",
5168      "sig": "()",
5169      "type": "function",
5170      "desc": "Disables text selection for this element (normalized across browsers)"
5171     },
5172     {
5173      "name": "up",
5174      "sig": "(String selector, Number/String/HTMLElement/Element maxDepth)",
5175      "type": "function",
5176      "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."
5177     },
5178     {
5179      "name": "update",
5180      "sig": "(String html, Boolean loadScripts, Function callback)",
5181      "type": "function",
5182      "desc": "Update the innerHTML of this element, optionally searching for and processing scripts"
5183     },
5184     {
5185      "name": "wrap",
5186      "sig": "(Object config, Boolean returnDom)",
5187      "type": "function",
5188      "desc": "Creates and wraps this element with another element"
5189     }
5190    ]
5191   },
5192   "Roo.EventManager": {
5193    "props": [],
5194    "events": [],
5195    "methods": [
5196     {
5197      "name": "addListener",
5198      "sig": "(String/HTMLElement element, String eventName, Function handler, Object scope, Object options)",
5199      "type": "function",
5200      "desc": "Appends an event handler to an element (shorthand for addListener)"
5201     },
5202     {
5203      "name": "on",
5204      "sig": "(String/HTMLElement element, String eventName, Function handler, Object scope, Object options)",
5205      "type": "function",
5206      "desc": "Appends an event handler to an element (shorthand for addListener)"
5207     },
5208     {
5209      "name": "onDocumentReady",
5210      "sig": "(Function fn, Object scope, boolean options)",
5211      "type": "function",
5212      "desc": "Fires when the document is ready (before onload and before images are loaded). Can be \naccessed shorthanded Roo.onReady()."
5213     },
5214     {
5215      "name": "onTextResize",
5216      "sig": "(Function fn, Object scope, boolean options)",
5217      "type": "function",
5218      "desc": "Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size."
5219     },
5220     {
5221      "name": "onWindowResize",
5222      "sig": "(Function fn, Object scope, boolean options)",
5223      "type": "function",
5224      "desc": "Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers."
5225     },
5226     {
5227      "name": "removeListener",
5228      "sig": "(String/HTMLElement element, String eventName, Function fn)",
5229      "type": "function",
5230      "desc": "Removes an event handler"
5231     },
5232     {
5233      "name": "removeResizeListener",
5234      "sig": "(Function fn, Object scope)",
5235      "type": "function",
5236      "desc": "Removes the passed window resize listener."
5237     },
5238     {
5239      "name": "wrap",
5240      "sig": "(Function fn, Object scope, boolean override)",
5241      "type": "function",
5242      "desc": "This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event\nobject with a Roo.EventObject"
5243     }
5244    ]
5245   },
5246   "Roo.EventObject": {
5247    "props": [],
5248    "events": [],
5249    "methods": [
5250     {
5251      "name": "getCharCode",
5252      "sig": "()",
5253      "type": "function",
5254      "desc": "Gets the key code for the event."
5255     },
5256     {
5257      "name": "getKey",
5258      "sig": "()",
5259      "type": "function",
5260      "desc": "Returns a normalized keyCode for the event."
5261     },
5262     {
5263      "name": "getPageX",
5264      "sig": "()",
5265      "type": "function",
5266      "desc": "Gets the x coordinate of the event."
5267     },
5268     {
5269      "name": "getPageY",
5270      "sig": "()",
5271      "type": "function",
5272      "desc": "Gets the y coordinate of the event."
5273     },
5274     {
5275      "name": "getRelatedTarget",
5276      "sig": "()",
5277      "type": "function",
5278      "desc": "Gets the related target."
5279     },
5280     {
5281      "name": "getTarget",
5282      "sig": "(String selector, Number/String/HTMLElement/Element maxDepth, Boolean returnEl)",
5283      "type": "function",
5284      "desc": "Gets the target for the event."
5285     },
5286     {
5287      "name": "getTime",
5288      "sig": "()",
5289      "type": "function",
5290      "desc": "Gets the time of the event."
5291     },
5292     {
5293      "name": "getWheelDelta",
5294      "sig": "()",
5295      "type": "function",
5296      "desc": "Normalizes mouse wheel delta across browsers"
5297     },
5298     {
5299      "name": "getXY",
5300      "sig": "()",
5301      "type": "function",
5302      "desc": "Gets the page coordinates of the event."
5303     },
5304     {
5305      "name": "hasModifier",
5306      "sig": "()",
5307      "type": "function",
5308      "desc": "Returns true if the control, meta, shift or alt key was pressed during this event."
5309     },
5310     {
5311      "name": "preventDefault",
5312      "sig": "()",
5313      "type": "function",
5314      "desc": "Prevents the browsers default handling of the event."
5315     },
5316     {
5317      "name": "stopEvent",
5318      "sig": "()",
5319      "type": "function",
5320      "desc": "Stop the event (preventDefault and stopPropagation)"
5321     },
5322     {
5323      "name": "stopPropagation",
5324      "sig": "()",
5325      "type": "function",
5326      "desc": "Cancels bubbling of the event."
5327     },
5328     {
5329      "name": "within",
5330      "sig": "(String/HTMLElement/Element el, Boolean related)",
5331      "type": "function",
5332      "desc": "Returns true if the target of this event equals el or is a child of el"
5333     }
5334    ]
5335   },
5336   "Roo.Fx": {
5337    "props": [
5338     {
5339      "name": "callback",
5340      "type": "Function",
5341      "desc": "A function called when the effect is finished",
5342      "memberOf": ""
5343     },
5344     {
5345      "name": "scope",
5346      "type": "Object",
5347      "desc": "The scope of the effect function",
5348      "memberOf": ""
5349     },
5350     {
5351      "name": "easing",
5352      "type": "String",
5353      "desc": "A valid Easing value for the effect",
5354      "memberOf": ""
5355     },
5356     {
5357      "name": "afterCls",
5358      "type": "String",
5359      "desc": "A css class to apply after the effect",
5360      "memberOf": ""
5361     },
5362     {
5363      "name": "duration",
5364      "type": "Number",
5365      "desc": "The length of time (in seconds) that the effect should last",
5366      "memberOf": ""
5367     },
5368     {
5369      "name": "remove",
5370      "type": "Boolean",
5371      "desc": "Whether the Element should be removed from the DOM and destroyed after the effect finishes",
5372      "memberOf": ""
5373     },
5374     {
5375      "name": "useDisplay",
5376      "type": "Boolean",
5377      "desc": "Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to \neffects that end with the element being visually hidden, ignored otherwise)",
5378      "memberOf": ""
5379     },
5380     {
5381      "name": "afterStyle",
5382      "type": "String/Object/Function",
5383      "desc": "A style specification string, e.g. \"width:100px\", or an object in the form {width:\"100px\"}, or\na function which returns such a specification that will be applied to the Element after the effect finishes",
5384      "memberOf": ""
5385     },
5386     {
5387      "name": "block",
5388      "type": "Boolean",
5389      "desc": "Whether the effect should block other effects from queueing while it runs",
5390      "memberOf": ""
5391     },
5392     {
5393      "name": "concurrent",
5394      "type": "Boolean",
5395      "desc": "Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence",
5396      "memberOf": ""
5397     },
5398     {
5399      "name": "stopFx",
5400      "type": "Boolean",
5401      "desc": "Whether subsequent effects should be stopped and removed after the current effect finishes",
5402      "memberOf": ""
5403     }
5404    ],
5405    "events": [],
5406    "methods": [
5407     {
5408      "name": "fadeIn",
5409      "sig": "(Object options)",
5410      "type": "function",
5411      "desc": "Fade an element in (from transparent to opaque).  The ending opacity can be specified\nusing the \"endOpacity\" config option.\nUsage:\n<pre><code>\n// default: fade in from opacity 0 to 100%\nel.fadeIn();\n\n// custom: fade in from opacity 0 to 75% over 2 seconds\nel.fadeIn({ endOpacity: .75, duration: 2});\n\n// common config options shown with default values\nel.fadeIn({\n    endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)\n    easing: 'easeOut',\n    duration: .5\n});\n</code></pre>"
5412     },
5413     {
5414      "name": "fadeOut",
5415      "sig": "(Object options)",
5416      "type": "function",
5417      "desc": "Fade an element out (from opaque to transparent).  The ending opacity can be specified\nusing the \"endOpacity\" config option.\nUsage:\n<pre><code>\n// default: fade out from the element's current opacity to 0\nel.fadeOut();\n\n// custom: fade out from the element's current opacity to 25% over 2 seconds\nel.fadeOut({ endOpacity: .25, duration: 2});\n\n// common config options shown with default values\nel.fadeOut({\n    endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)\n    easing: 'easeOut',\n    duration: .5\n    remove: false,\n    useDisplay: false\n});\n</code></pre>"
5418     },
5419     {
5420      "name": "frame",
5421      "sig": "(String color, Number count, Object options)",
5422      "type": "function",
5423      "desc": "Shows a ripple of exploding, attenuating borders to draw attention to an Element.\nUsage:\n<pre><code>\n// default: a single light blue ripple\nel.frame();\n\n// custom: 3 red ripples lasting 3 seconds total\nel.frame(\"ff0000\", 3, { duration: 3 });\n\n// common config options shown with default values\nel.frame(\"C3DAF9\", 1, {\n    duration: 1 //duration of entire animation (not each individual ripple)\n    // Note: Easing is not configurable and will be ignored if included\n});\n</code></pre>"
5424     },
5425     {
5426      "name": "ghost",
5427      "sig": "(String anchor, Object options)",
5428      "type": "function",
5429      "desc": "Slides the element while fading it out of view.  An anchor point can be optionally passed to set the \nending point of the effect.\nUsage:\n<pre><code>\n// default: slide the element downward while fading out\nel.ghost();\n\n// custom: slide the element out to the right with a 2-second duration\nel.ghost('r', { duration: 2 });\n\n// common config options shown with default values\nel.ghost('b', {\n    easing: 'easeOut',\n    duration: .5\n    remove: false,\n    useDisplay: false\n});\n</code></pre>"
5430     },
5431     {
5432      "name": "hasActiveFx",
5433      "sig": "()",
5434      "type": "function",
5435      "desc": "Returns true if the element has any effects actively running or queued, else returns false."
5436     },
5437     {
5438      "name": "hasFxBlock",
5439      "sig": "()",
5440      "type": "function",
5441      "desc": "Returns true if the element is currently blocking so that no other effect can be queued\nuntil this effect is finished, else returns false if blocking is not set.  This is commonly\nused to ensure that an effect initiated by a user action runs to completion prior to the\nsame effect being restarted (e.g., firing only one effect even if the user clicks several times)."
5442     },
5443     {
5444      "name": "highlight",
5445      "sig": "(String color, Object options)",
5446      "type": "function",
5447      "desc": "Highlights the Element by setting a color (applies to the background-color by default, but can be\nchanged using the \"attr\" config option) and then fading back to the original color. If no original\ncolor is available, you should provide the \"endColor\" config option which will be cleared after the animation.\nUsage:\n<pre><code>\n// default: highlight background to yellow\nel.highlight();\n\n// custom: highlight foreground text to blue for 2 seconds\nel.highlight(\"0000ff\", { attr: 'color', duration: 2 });\n\n// common config options shown with default values\nel.highlight(\"ffff9c\", {\n    attr: \"background-color\", //can be any valid CSS property (attribute) that supports a color value\n    endColor: (current color) or \"ffffff\",\n    easing: 'easeIn',\n    duration: 1\n});\n</code></pre>"
5448     },
5449     {
5450      "name": "pause",
5451      "sig": "(Number seconds)",
5452      "type": "function",
5453      "desc": "Creates a pause before any subsequent queued effects begin.  If there are\nno effects queued after the pause it will have no effect.\nUsage:\n<pre><code>\nel.pause(1);\n</code></pre>"
5454     },
5455     {
5456      "name": "puff",
5457      "sig": "(Object options)",
5458      "type": "function",
5459      "desc": "Fades the element out while slowly expanding it in all directions.  When the effect is completed, the \nelement will be hidden (visibility = 'hidden') but block elements will still take up space in the document. \nThe element must be removed from the DOM using the 'remove' config option if desired.\nUsage:\n<pre><code>\n// default\nel.puff();\n\n// common config options shown with default values\nel.puff({\n    easing: 'easeOut',\n    duration: .5,\n    remove: false,\n    useDisplay: false\n});\n</code></pre>"
5460     },
5461     {
5462      "name": "scale",
5463      "sig": "(Number width, Number height, Object options)",
5464      "type": "function",
5465      "desc": "Animates the transition of an element's dimensions from a starting height/width\nto an ending height/width.\nUsage:\n<pre><code>\n// change height and width to 100x100 pixels\nel.scale(100, 100);\n\n// common config options shown with default values.  The height and width will default to\n// the element's existing values if passed as null.\nel.scale(\n    [element's width],\n    [element's height], {\n    easing: 'easeOut',\n    duration: .35\n});\n</code></pre>"
5466     },
5467     {
5468      "name": "sequenceFx",
5469      "sig": "()",
5470      "type": "function",
5471      "desc": "Ensures that all effects queued after sequenceFx is called on the element are\nrun in sequence.  This is the opposite of {@link #syncFx}."
5472     },
5473     {
5474      "name": "shift",
5475      "sig": "(Object options)",
5476      "type": "function",
5477      "desc": "Animates the transition of any combination of an element's dimensions, xy position and/or opacity.\nAny of these properties not specified in the config object will not be changed.  This effect \nrequires that at least one new dimension, position or opacity setting must be passed in on\nthe config object in order for the function to have any effect.\nUsage:\n<pre><code>\n// slide the element horizontally to x position 200 while changing the height and opacity\nel.shift({ x: 200, height: 50, opacity: .8 });\n\n// common config options shown with default values.\nel.shift({\n    width: [element's width],\n    height: [element's height],\n    x: [element's x position],\n    y: [element's y position],\n    opacity: [element's opacity],\n    easing: 'easeOut',\n    duration: .35\n});\n</code></pre>"
5478     },
5479     {
5480      "name": "slideIn",
5481      "sig": "(String anchor, Object options)",
5482      "type": "function",
5483      "desc": "Slides the element into view.  An anchor point can be optionally passed to set the point of\norigin for the slide effect.  This function automatically handles wrapping the element with\na fixed-size container if needed.  See the Fx class overview for valid anchor point options.\nUsage:\n<pre><code>\n// default: slide the element in from the top\nel.slideIn();\n\n// custom: slide the element in from the right with a 2-second duration\nel.slideIn('r', { duration: 2 });\n\n// common config options shown with default values\nel.slideIn('t', {\n    easing: 'easeOut',\n    duration: .5\n});\n</code></pre>"
5484     },
5485     {
5486      "name": "slideOut",
5487      "sig": "(String anchor, Object options)",
5488      "type": "function",
5489      "desc": "Slides the element out of view.  An anchor point can be optionally passed to set the end point\nfor the slide effect.  When the effect is completed, the element will be hidden (visibility = \n'hidden') but block elements will still take up space in the document.  The element must be removed\nfrom the DOM using the 'remove' config option if desired.  This function automatically handles \nwrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.\nUsage:\n<pre><code>\n// default: slide the element out to the top\nel.slideOut();\n\n// custom: slide the element out to the right with a 2-second duration\nel.slideOut('r', { duration: 2 });\n\n// common config options shown with default values\nel.slideOut('t', {\n    easing: 'easeOut',\n    duration: .5,\n    remove: false,\n    useDisplay: false\n});\n</code></pre>"
5490     },
5491     {
5492      "name": "stopFx",
5493      "sig": "()",
5494      "type": "function",
5495      "desc": "Stops any running effects and clears the element's internal effects queue if it contains\nany additional effects that haven't started yet."
5496     },
5497     {
5498      "name": "switchOff",
5499      "sig": "(Object options)",
5500      "type": "function",
5501      "desc": "Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).\nWhen the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still \ntake up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.\nUsage:\n<pre><code>\n// default\nel.switchOff();\n\n// all config options shown with default values\nel.switchOff({\n    easing: 'easeIn',\n    duration: .3,\n    remove: false,\n    useDisplay: false\n});\n</code></pre>"
5502     },
5503     {
5504      "name": "syncFx",
5505      "sig": "()",
5506      "type": "function",
5507      "desc": "Ensures that all effects queued after syncFx is called on the element are\nrun concurrently.  This is the opposite of {@link #sequenceFx}."
5508     }
5509    ]
5510   },
5511   "Roo.GridPanel": {
5512    "props": [
5513     {
5514      "name": "fitToFrame",
5515      "type": "Boolean",
5516      "desc": "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
5517      "memberOf": "Roo.ContentPanel"
5518     },
5519     {
5520      "name": "fitContainer",
5521      "type": "Boolean",
5522      "desc": "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
5523      "memberOf": "Roo.ContentPanel"
5524     },
5525     {
5526      "name": "autoCreate",
5527      "type": "Boolean/Object",
5528      "desc": "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
5529      "memberOf": "Roo.ContentPanel"
5530     },
5531     {
5532      "name": "closable",
5533      "type": "Boolean",
5534      "desc": "True if the panel can be closed/removed",
5535      "memberOf": "Roo.ContentPanel"
5536     },
5537     {
5538      "name": "background",
5539      "type": "Boolean",
5540      "desc": "True if the panel should not be activated when it is added (defaults to false)",
5541      "memberOf": "Roo.ContentPanel"
5542     },
5543     {
5544      "name": "resizeEl",
5545      "type": "String/HTMLElement/Element",
5546      "desc": "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
5547      "memberOf": "Roo.ContentPanel"
5548     },
5549     {
5550      "name": "toolbar",
5551      "type": "Toolbar",
5552      "desc": "A toolbar for this panel",
5553      "memberOf": "Roo.ContentPanel"
5554     },
5555     {
5556      "name": "autoScroll",
5557      "type": "Boolean",
5558      "desc": "True to scroll overflow in this panel (use with {@link #fitToFrame})",
5559      "memberOf": "Roo.ContentPanel"
5560     },
5561     {
5562      "name": "title",
5563      "type": "String",
5564      "desc": "The title for this panel",
5565      "memberOf": "Roo.ContentPanel"
5566     },
5567     {
5568      "name": "adjustments",
5569      "type": "Array",
5570      "desc": "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
5571      "memberOf": "Roo.ContentPanel"
5572     },
5573     {
5574      "name": "url",
5575      "type": "String",
5576      "desc": "Calls {@link #setUrl} with this value",
5577      "memberOf": "Roo.ContentPanel"
5578     },
5579     {
5580      "name": "region",
5581      "type": "String",
5582      "desc": "which region to put this panel on (when used with xtype constructors)",
5583      "memberOf": "Roo.ContentPanel",
5584      "optvals": [
5585       "center",
5586       "north",
5587       "south",
5588       "east",
5589       "west"
5590      ]
5591     },
5592     {
5593      "name": "params",
5594      "type": "String/Object",
5595      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
5596      "memberOf": "Roo.ContentPanel"
5597     },
5598     {
5599      "name": "loadOnce",
5600      "type": "Boolean",
5601      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
5602      "memberOf": "Roo.ContentPanel"
5603     },
5604     {
5605      "name": "content",
5606      "type": "String",
5607      "desc": "Raw content to fill content panel with (uses setContent on construction.)",
5608      "memberOf": "Roo.ContentPanel"
5609     },
5610     {
5611      "name": "listeners",
5612      "type": "Object",
5613      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
5614      "memberOf": "Roo.util.Observable"
5615     }
5616    ],
5617    "events": [
5618     {
5619      "name": "activate",
5620      "sig": "function (_self)\n{\n\n}",
5621      "type": "function",
5622      "desc": "Fires when this panel is activated."
5623     },
5624     {
5625      "name": "deactivate",
5626      "sig": "function (_self)\n{\n\n}",
5627      "type": "function",
5628      "desc": "Fires when this panel is activated."
5629     },
5630     {
5631      "name": "render",
5632      "sig": "function (_self)\n{\n\n}",
5633      "type": "function",
5634      "desc": "Fires when this tab is created"
5635     },
5636     {
5637      "name": "resize",
5638      "sig": "function (_self, width, height)\n{\n\n}",
5639      "type": "function",
5640      "desc": "Fires when this panel is resized if fitToFrame is true."
5641     }
5642    ],
5643    "methods": [
5644     {
5645      "name": "addEvents",
5646      "sig": "(Object object)",
5647      "type": "function",
5648      "desc": "Used to define events on this Observable"
5649     },
5650     {
5651      "name": "addListener",
5652      "sig": "(String eventName, Function handler, Object scope, Object options)",
5653      "type": "function",
5654      "desc": "Appends an event handler to this component"
5655     },
5656     {
5657      "name": "addxtype",
5658      "sig": "(Object cfg)",
5659      "type": "function",
5660      "desc": "Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'Form',\n       items: [ .... ]\n   }\n);\n\n</code></pre>"
5661     },
5662     {
5663      "name": "capture",
5664      "sig": "(Observable o, Function fn, Object scope)",
5665      "type": "function",
5666      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
5667     },
5668     {
5669      "name": "destroy",
5670      "sig": "()",
5671      "type": "function",
5672      "desc": "Destroys this panel"
5673     },
5674     {
5675      "name": "fireEvent",
5676      "sig": "(String eventName, Object... args)",
5677      "type": "function",
5678      "desc": "Fires the specified event with the passed parameters (minus the event name)."
5679     },
5680     {
5681      "name": "getEl",
5682      "sig": "()",
5683      "type": "function",
5684      "desc": "Returns this panel's element - used by regiosn to add."
5685     },
5686     {
5687      "name": "getGrid",
5688      "sig": "()",
5689      "type": "function",
5690      "desc": "Returns the grid for this panel"
5691     },
5692     {
5693      "name": "getId",
5694      "sig": "()",
5695      "type": "function",
5696      "desc": "Returns this panel's id"
5697     },
5698     {
5699      "name": "getTitle",
5700      "sig": "()",
5701      "type": "function",
5702      "desc": "Returns this panel's title"
5703     },
5704     {
5705      "name": "getToolbar",
5706      "sig": "()",
5707      "type": "function",
5708      "desc": "Returns the toolbar for this Panel if one was configured."
5709     },
5710     {
5711      "name": "getUpdateManager",
5712      "sig": "()",
5713      "type": "function",
5714      "desc": "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates."
5715     },
5716     {
5717      "name": "hasListener",
5718      "sig": "(String eventName)",
5719      "type": "function",
5720      "desc": "Checks to see if this object has any listeners for a specified event"
5721     },
5722     {
5723      "name": "isClosable",
5724      "sig": "()",
5725      "type": "function",
5726      "desc": "Returns true is this panel was configured to be closable"
5727     },
5728     {
5729      "name": "load",
5730      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
5731      "type": "function",
5732      "desc": "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}."
5733     },
5734     {
5735      "name": "on",
5736      "sig": "(String eventName, Function handler, Object scope, Object options)",
5737      "type": "function",
5738      "desc": "Appends an event handler to this element (shorthand for addListener)"
5739     },
5740     {
5741      "name": "purgeListeners",
5742      "sig": "()",
5743      "type": "function",
5744      "desc": "Removes all listeners for this object"
5745     },
5746     {
5747      "name": "refresh",
5748      "sig": "()",
5749      "type": "function",
5750      "desc": "Force a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the {@link #setUrl} method has not been called.\n  This does not activate the panel, just updates its content."
5751     },
5752     {
5753      "name": "releaseCapture",
5754      "sig": "(Observable o)",
5755      "type": "function",
5756      "desc": "Removes <b>all</b> added captures from the Observable."
5757     },
5758     {
5759      "name": "removeListener",
5760      "sig": "(String eventName, Function handler, Object scope)",
5761      "type": "function",
5762      "desc": "Removes a listener"
5763     },
5764     {
5765      "name": "setContent",
5766      "sig": "(String content, Boolean loadScripts)",
5767      "type": "function",
5768      "desc": "Updates this panel's element"
5769     },
5770     {
5771      "name": "setTitle",
5772      "sig": "(String title)",
5773      "type": "function",
5774      "desc": "Set this panel's title"
5775     },
5776     {
5777      "name": "setUrl",
5778      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
5779      "type": "function",
5780      "desc": "Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL."
5781     },
5782     {
5783      "name": "un",
5784      "sig": "(String eventName, Function handler, Object scope)",
5785      "type": "function",
5786      "desc": "Removes a listener (shorthand for removeListener)"
5787     }
5788    ]
5789   },
5790   "Roo.HtmlEditorCore": {
5791    "props": [
5792     {
5793      "name": "the",
5794      "type": "Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor",
5795      "desc": "owner field",
5796      "memberOf": ""
5797     },
5798     {
5799      "name": "resizable",
5800      "type": "String",
5801      "desc": "'s' or 'se' or 'e' - wrapps the element in a\n                       Roo.resizable.",
5802      "memberOf": ""
5803     },
5804     {
5805      "name": "height",
5806      "type": "Number",
5807      "desc": "(in pixels)",
5808      "memberOf": ""
5809     },
5810     {
5811      "name": "width",
5812      "type": "Number",
5813      "desc": "(in pixels)",
5814      "memberOf": ""
5815     },
5816     {
5817      "name": "stylesheets",
5818      "type": "Array",
5819      "desc": "url of stylesheets. set to [] to disable stylesheets.",
5820      "memberOf": ""
5821     },
5822     {
5823      "name": "disableClass",
5824      "type": "String",
5825      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
5826      "memberOf": "Roo.Component"
5827     },
5828     {
5829      "name": "allowDomMove",
5830      "type": "Boolean",
5831      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
5832      "memberOf": "Roo.Component"
5833     },
5834     {
5835      "name": "hideMode",
5836      "type": "String",
5837      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
5838      "memberOf": "Roo.Component",
5839      "optvals": [
5840       "display",
5841       "visibility"
5842      ]
5843     },
5844     {
5845      "name": "actionMode",
5846      "type": "String",
5847      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
5848      "memberOf": "Roo.Component"
5849     },
5850     {
5851      "name": "listeners",
5852      "type": "Object",
5853      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
5854      "memberOf": "Roo.util.Observable"
5855     }
5856    ],
5857    "events": [
5858     {
5859      "name": "activate",
5860      "sig": "function (_self)\n{\n\n}",
5861      "type": "function",
5862      "desc": "Fires when the editor is first receives the focus. Any insertion must wait\nuntil after this event."
5863     },
5864     {
5865      "name": "beforedestroy",
5866      "sig": "function (_self)\n{\n\n}",
5867      "type": "function",
5868      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
5869     },
5870     {
5871      "name": "beforehide",
5872      "sig": "function (_self)\n{\n\n}",
5873      "type": "function",
5874      "desc": "Fires before the component is hidden. Return false to stop the hide."
5875     },
5876     {
5877      "name": "beforepush",
5878      "sig": "function (_self, html)\n{\n\n}",
5879      "type": "function",
5880      "desc": "Fires before the iframe editor is updated with content from the textarea. Return false\nto cancel the push."
5881     },
5882     {
5883      "name": "beforerender",
5884      "sig": "function (_self)\n{\n\n}",
5885      "type": "function",
5886      "desc": "Fires before the component is rendered. Return false to stop the render."
5887     },
5888     {
5889      "name": "beforeshow",
5890      "sig": "function (_self)\n{\n\n}",
5891      "type": "function",
5892      "desc": "Fires before the component is shown.  Return false to stop the show."
5893     },
5894     {
5895      "name": "beforesync",
5896      "sig": "function (_self, html)\n{\n\n}",
5897      "type": "function",
5898      "desc": "Fires before the textarea is updated with content from the editor iframe. Return false\nto cancel the sync."
5899     },
5900     {
5901      "name": "destroy",
5902      "sig": "function (_self)\n{\n\n}",
5903      "type": "function",
5904      "desc": "Fires after the component is destroyed."
5905     },
5906     {
5907      "name": "disable",
5908      "sig": "function (_self)\n{\n\n}",
5909      "type": "function",
5910      "desc": "Fires after the component is disabled."
5911     },
5912     {
5913      "name": "editorevent",
5914      "sig": "function (_self)\n{\n\n}",
5915      "type": "function",
5916      "desc": "Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks."
5917     },
5918     {
5919      "name": "enable",
5920      "sig": "function (_self)\n{\n\n}",
5921      "type": "function",
5922      "desc": "Fires after the component is enabled."
5923     },
5924     {
5925      "name": "hide",
5926      "sig": "function (_self)\n{\n\n}",
5927      "type": "function",
5928      "desc": "Fires after the component is hidden."
5929     },
5930     {
5931      "name": "initialize",
5932      "sig": "function (_self)\n{\n\n}",
5933      "type": "function",
5934      "desc": "Fires when the editor is fully initialized (including the iframe)"
5935     },
5936     {
5937      "name": "push",
5938      "sig": "function (_self, html)\n{\n\n}",
5939      "type": "function",
5940      "desc": "Fires when the iframe editor is updated with content from the textarea."
5941     },
5942     {
5943      "name": "render",
5944      "sig": "function (_self)\n{\n\n}",
5945      "type": "function",
5946      "desc": "Fires after the component is rendered."
5947     },
5948     {
5949      "name": "show",
5950      "sig": "function (_self)\n{\n\n}",
5951      "type": "function",
5952      "desc": "Fires after the component is shown."
5953     },
5954     {
5955      "name": "sync",
5956      "sig": "function (_self, html)\n{\n\n}",
5957      "type": "function",
5958      "desc": "Fires when the textarea is updated with content from the editor iframe."
5959     }
5960    ],
5961    "methods": [
5962     {
5963      "name": "addEvents",
5964      "sig": "(Object object)",
5965      "type": "function",
5966      "desc": "Used to define events on this Observable"
5967     },
5968     {
5969      "name": "addListener",
5970      "sig": "(String eventName, Function handler, Object scope, Object options)",
5971      "type": "function",
5972      "desc": "Appends an event handler to this component"
5973     },
5974     {
5975      "name": "capture",
5976      "sig": "(Observable o, Function fn, Object scope)",
5977      "type": "function",
5978      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
5979     },
5980     {
5981      "name": "cleanHtml",
5982      "sig": "(String html)",
5983      "type": "function",
5984      "desc": "Protected method that will not generally be called directly. If you need/want\ncustom HTML cleanup, this is the method you should override."
5985     },
5986     {
5987      "name": "cleanTableWidths",
5988      "sig": "()",
5989      "type": "function",
5990      "desc": "cleanTableWidths.\n\nQuite often pasting from word etc.. results in tables with column and widths.\nThis does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them.."
5991     },
5992     {
5993      "name": "cleanWord",
5994      "sig": "()",
5995      "type": "function",
5996      "desc": "Clean up MS wordisms..."
5997     },
5998     {
5999      "name": "destroy",
6000      "sig": "()",
6001      "type": "function",
6002      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
6003     },
6004     {
6005      "name": "disable",
6006      "sig": "()",
6007      "type": "function",
6008      "desc": "Disable this component."
6009     },
6010     {
6011      "name": "enable",
6012      "sig": "()",
6013      "type": "function",
6014      "desc": "Enable this component."
6015     },
6016     {
6017      "name": "execCmd",
6018      "sig": "(String cmd, String/Boolean value)",
6019      "type": "function",
6020      "desc": "Executes a Midas editor command directly on the editor document.\nFor visual commands, you should use {@link #relayCmd} instead.\n<b>This should only be called after the editor is initialized.</b>"
6021     },
6022     {
6023      "name": "fireEvent",
6024      "sig": "(String eventName, Object... args)",
6025      "type": "function",
6026      "desc": "Fires the specified event with the passed parameters (minus the event name)."
6027     },
6028     {
6029      "name": "focus",
6030      "sig": "(Boolean selectText)",
6031      "type": "function",
6032      "desc": "Try to focus this component."
6033     },
6034     {
6035      "name": "getDocMarkup",
6036      "sig": "()",
6037      "type": "function",
6038      "desc": "Protected method that will not generally be called directly. It\nis called when the editor initializes the iframe with HTML contents. Override this method if you\nwant to change the initialization markup of the iframe (e.g. to add stylesheets)."
6039     },
6040     {
6041      "name": "getEl",
6042      "sig": "()",
6043      "type": "function",
6044      "desc": "Returns the underlying {@link Roo.Element}."
6045     },
6046     {
6047      "name": "getId",
6048      "sig": "()",
6049      "type": "function",
6050      "desc": "Returns the id of this component."
6051     },
6052     {
6053      "name": "hasListener",
6054      "sig": "(String eventName)",
6055      "type": "function",
6056      "desc": "Checks to see if this object has any listeners for a specified event"
6057     },
6058     {
6059      "name": "hide",
6060      "sig": "()",
6061      "type": "function",
6062      "desc": "Hide this component."
6063     },
6064     {
6065      "name": "insertAtCursor",
6066      "sig": "(String text)",
6067      "type": "function",
6068      "desc": "Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated\nto insert tRoo."
6069     },
6070     {
6071      "name": "isVisible",
6072      "sig": "()",
6073      "type": "function",
6074      "desc": "Returns true if this component is visible."
6075     },
6076     {
6077      "name": "iterateChildren",
6078      "sig": "(DomNode node, Function fn)",
6079      "type": "function",
6080      "desc": "iterateChildren of a Node, calling fn each time, using this as the scole.."
6081     },
6082     {
6083      "name": "on",
6084      "sig": "(String eventName, Function handler, Object scope, Object options)",
6085      "type": "function",
6086      "desc": "Appends an event handler to this element (shorthand for addListener)"
6087     },
6088     {
6089      "name": "purgeListeners",
6090      "sig": "()",
6091      "type": "function",
6092      "desc": "Removes all listeners for this object"
6093     },
6094     {
6095      "name": "pushValue",
6096      "sig": "()",
6097      "type": "function",
6098      "desc": "Protected method that will not generally be called directly. Pushes the value of the textarea\ninto the iframe editor."
6099     },
6100     {
6101      "name": "rangeIntersectsNode",
6102      "sig": "()",
6103      "type": "function",
6104      "desc": "Range intersection.. the hard stuff...\n '-1' = before\n '0' = hits..\n '1' = after.\n        [ -- selected range --- ]\n  [fail]                        [fail]\n\n   basically..\n     if end is before start or  hits it. fail.\n     if start is after end or hits it fail.\n\n  if either hits (but other is outside. - then it's not"
6105     },
6106     {
6107      "name": "relayCmd",
6108      "sig": "(String cmd, String/Boolean value)",
6109      "type": "function",
6110      "desc": "Executes a Midas editor command on the editor document and performs necessary focus and\ntoolbar updates. <b>This should only be called after the editor is initialized.</b>"
6111     },
6112     {
6113      "name": "releaseCapture",
6114      "sig": "(Observable o)",
6115      "type": "function",
6116      "desc": "Removes <b>all</b> added captures from the Observable."
6117     },
6118     {
6119      "name": "removeListener",
6120      "sig": "(String eventName, Function handler, Object scope)",
6121      "type": "function",
6122      "desc": "Removes a listener"
6123     },
6124     {
6125      "name": "render",
6126      "sig": "(String/HTMLElement/Element container)",
6127      "type": "function",
6128      "desc": "If this is a lazy rendering component, render it to its container element."
6129     },
6130     {
6131      "name": "setDisabled",
6132      "sig": "(Boolean disabled)",
6133      "type": "function",
6134      "desc": "Convenience function for setting disabled/enabled by boolean."
6135     },
6136     {
6137      "name": "setVisible",
6138      "sig": "(Boolean visible)",
6139      "type": "function",
6140      "desc": "Convenience function to hide or show this component by boolean."
6141     },
6142     {
6143      "name": "show",
6144      "sig": "()",
6145      "type": "function",
6146      "desc": "Show this component."
6147     },
6148     {
6149      "name": "syncValue",
6150      "sig": "()",
6151      "type": "function",
6152      "desc": "HTML Editor -> Textarea\nProtected method that will not generally be called directly. Syncs the contents\nof the editor iframe with the textarea."
6153     },
6154     {
6155      "name": "toggleSourceEdit",
6156      "sig": "(Boolean sourceEdit)",
6157      "type": "function",
6158      "desc": "Toggles the editor between standard and source edit mode."
6159     },
6160     {
6161      "name": "un",
6162      "sig": "(String eventName, Function handler, Object scope)",
6163      "type": "function",
6164      "desc": "Removes a listener (shorthand for removeListener)"
6165     }
6166    ]
6167   },
6168   "Roo.JsonView": {
6169    "props": [
6170     {
6171      "name": "store",
6172      "type": "Roo.data.Store",
6173      "desc": "Data store to load data from.",
6174      "memberOf": "Roo.View"
6175     },
6176     {
6177      "name": "el",
6178      "type": "String|Roo.Element",
6179      "desc": "The container element.",
6180      "memberOf": "Roo.View"
6181     },
6182     {
6183      "name": "tpl",
6184      "type": "String|Roo.Template",
6185      "desc": "The template used by this View",
6186      "memberOf": "Roo.View"
6187     },
6188     {
6189      "name": "dataName",
6190      "type": "String",
6191      "desc": "the named area of the template to use as the data area\n                         Works with domtemplates roo-name=\"name\"",
6192      "memberOf": "Roo.View"
6193     },
6194     {
6195      "name": "selectedClass",
6196      "type": "String",
6197      "desc": "The css class to add to selected nodes",
6198      "memberOf": "Roo.View"
6199     },
6200     {
6201      "name": "emptyText",
6202      "type": "String",
6203      "desc": "The empty text to show when nothing is loaded.",
6204      "memberOf": "Roo.View"
6205     },
6206     {
6207      "name": "text",
6208      "type": "String",
6209      "desc": "to display on mask (default Loading)",
6210      "memberOf": "Roo.View"
6211     },
6212     {
6213      "name": "multiSelect",
6214      "type": "Boolean",
6215      "desc": "Allow multiple selection",
6216      "memberOf": "Roo.View"
6217     },
6218     {
6219      "name": "singleSelect",
6220      "type": "Boolean",
6221      "desc": "Allow single selection",
6222      "memberOf": "Roo.View"
6223     },
6224     {
6225      "name": "toggleSelect",
6226      "type": "Boolean",
6227      "desc": "- selecting",
6228      "memberOf": "Roo.View"
6229     },
6230     {
6231      "name": "tickable",
6232      "type": "Boolean",
6233      "desc": "- selecting",
6234      "memberOf": "Roo.View"
6235     },
6236     {
6237      "name": "listeners",
6238      "type": "Object",
6239      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
6240      "memberOf": "Roo.util.Observable"
6241     }
6242    ],
6243    "events": [
6244     {
6245      "name": "beforeclick",
6246      "sig": "function (_self, index, node, e)\n{\n\n}",
6247      "type": "function",
6248      "desc": "Fires before a click is processed. Returns false to cancel the default action."
6249     },
6250     {
6251      "name": "beforerender",
6252      "sig": "function (_self, data)\n{\n\n}",
6253      "type": "function",
6254      "desc": "Fires before rendering of the downloaded JSON data."
6255     },
6256     {
6257      "name": "beforeselect",
6258      "sig": "function (_self, node, selections)\n{\n\n}",
6259      "type": "function",
6260      "desc": "Fires before a selection is made. If any handlers return false, the selection is cancelled."
6261     },
6262     {
6263      "name": "click",
6264      "sig": "function (_self, index, node, e)\n{\n\n}",
6265      "type": "function",
6266      "desc": "Fires when a template node is clicked."
6267     },
6268     {
6269      "name": "contextmenu",
6270      "sig": "function (_self, index, node, e)\n{\n\n}",
6271      "type": "function",
6272      "desc": "Fires when a template node is right clicked."
6273     },
6274     {
6275      "name": "dblclick",
6276      "sig": "function (_self, index, node, e)\n{\n\n}",
6277      "type": "function",
6278      "desc": "Fires when a template node is double clicked."
6279     },
6280     {
6281      "name": "load",
6282      "sig": "function (_self, data, response)\n{\n\n}",
6283      "type": "function",
6284      "desc": "Fires when data is loaded."
6285     },
6286     {
6287      "name": "loadexception",
6288      "sig": "function (_self, response)\n{\n\n}",
6289      "type": "function",
6290      "desc": "Fires when loading fails."
6291     },
6292     {
6293      "name": "preparedata",
6294      "sig": "function (_self, data)\n{\n\n}",
6295      "type": "function",
6296      "desc": "Fires on every row to render, to allow you to change the data."
6297     },
6298     {
6299      "name": "selectionchange",
6300      "sig": "function (_self, selections)\n{\n\n}",
6301      "type": "function",
6302      "desc": "Fires when the selected nodes change."
6303     }
6304    ],
6305    "methods": [
6306     {
6307      "name": "addEvents",
6308      "sig": "(Object object)",
6309      "type": "function",
6310      "desc": "Used to define events on this Observable"
6311     },
6312     {
6313      "name": "addListener",
6314      "sig": "(String eventName, Function handler, Object scope, Object options)",
6315      "type": "function",
6316      "desc": "Appends an event handler to this component"
6317     },
6318     {
6319      "name": "capture",
6320      "sig": "(Observable o, Function fn, Object scope)",
6321      "type": "function",
6322      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
6323     },
6324     {
6325      "name": "clearFilter",
6326      "sig": "()",
6327      "type": "function",
6328      "desc": "Clears the current filter."
6329     },
6330     {
6331      "name": "clearSelections",
6332      "sig": "(Boolean suppressEvent)",
6333      "type": "function",
6334      "desc": "Clear all selections"
6335     },
6336     {
6337      "name": "filter",
6338      "sig": "(String property, String/RegExp value)",
6339      "type": "function",
6340      "desc": "Filter the data by a specific property."
6341     },
6342     {
6343      "name": "filterBy",
6344      "sig": "(Function fn, Object scope)",
6345      "type": "function",
6346      "desc": "Filter by a function. The passed function will be called with each\nobject in the current dataset. If the function returns true the value is kept,\notherwise it is filtered."
6347     },
6348     {
6349      "name": "findItemFromChild",
6350      "sig": "(HTMLElement node)",
6351      "type": "function",
6352      "desc": "Returns the template node the passed child belongs to or null if it doesn't belong to one."
6353     },
6354     {
6355      "name": "fireEvent",
6356      "sig": "(String eventName, Object... args)",
6357      "type": "function",
6358      "desc": "Fires the specified event with the passed parameters (minus the event name)."
6359     },
6360     {
6361      "name": "getCount",
6362      "sig": "()",
6363      "type": "function",
6364      "desc": "Get the number of records in the current JSON dataset"
6365     },
6366     {
6367      "name": "getEl",
6368      "sig": "()",
6369      "type": "function",
6370      "desc": "Returns the element this view is bound to."
6371     },
6372     {
6373      "name": "getNode",
6374      "sig": "(HTMLElement/String/Number nodeInfo)",
6375      "type": "function",
6376      "desc": "Gets a template node."
6377     },
6378     {
6379      "name": "getNodeData",
6380      "sig": "(HTMLElement/Array node)",
6381      "type": "function",
6382      "desc": "Returns the JSON object for the specified node(s)"
6383     },
6384     {
6385      "name": "getNodes",
6386      "sig": "(Number startIndex, Number endIndex)",
6387      "type": "function",
6388      "desc": "Gets a range template nodes."
6389     },
6390     {
6391      "name": "getSelectedIndexes",
6392      "sig": "()",
6393      "type": "function",
6394      "desc": "Get the indexes of the selected nodes."
6395     },
6396     {
6397      "name": "getSelectedNodes",
6398      "sig": "()",
6399      "type": "function",
6400      "desc": "Get the currently selected nodes."
6401     },
6402     {
6403      "name": "getSelectionCount",
6404      "sig": "()",
6405      "type": "function",
6406      "desc": "Get the number of selected nodes."
6407     },
6408     {
6409      "name": "hasListener",
6410      "sig": "(String eventName)",
6411      "type": "function",
6412      "desc": "Checks to see if this object has any listeners for a specified event"
6413     },
6414     {
6415      "name": "indexOf",
6416      "sig": "(HTMLElement/String/Number nodeInfo)",
6417      "type": "function",
6418      "desc": "Finds the index of the passed node"
6419     },
6420     {
6421      "name": "isSelected",
6422      "sig": "(HTMLElement/Number node)",
6423      "type": "function",
6424      "desc": "Returns true if the passed node is selected"
6425     },
6426     {
6427      "name": "load",
6428      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
6429      "type": "function",
6430      "desc": "Performs an async HTTP request, and loads the JSON from the response. If <i>params</i> are specified it uses POST, otherwise it uses GET."
6431     },
6432     {
6433      "name": "on",
6434      "sig": "(String eventName, Function handler, Object scope, Object options)",
6435      "type": "function",
6436      "desc": "Appends an event handler to this element (shorthand for addListener)"
6437     },
6438     {
6439      "name": "onBeforeLoad",
6440      "sig": "()",
6441      "type": "function",
6442      "desc": "onbeforeLoad - masks the loading area."
6443     },
6444     {
6445      "name": "prepareData",
6446      "sig": "(Array/Object data)",
6447      "type": "function",
6448      "desc": "Function to override to reformat the data that is sent to\nthe template for each node.\nDEPRICATED - use the preparedata event handler."
6449     },
6450     {
6451      "name": "purgeListeners",
6452      "sig": "()",
6453      "type": "function",
6454      "desc": "Removes all listeners for this object"
6455     },
6456     {
6457      "name": "refresh",
6458      "sig": "()",
6459      "type": "function",
6460      "desc": "Refreshes the view."
6461     },
6462     {
6463      "name": "refreshNode",
6464      "sig": "(Number index)",
6465      "type": "function",
6466      "desc": "Refresh an individual node."
6467     },
6468     {
6469      "name": "releaseCapture",
6470      "sig": "(Observable o)",
6471      "type": "function",
6472      "desc": "Removes <b>all</b> added captures from the Observable."
6473     },
6474     {
6475      "name": "removeListener",
6476      "sig": "(String eventName, Function handler, Object scope)",
6477      "type": "function",
6478      "desc": "Removes a listener"
6479     },
6480     {
6481      "name": "select",
6482      "sig": "(Array/HTMLElement/String/Number nodeInfo, Boolean keepExisting, Boolean suppressEvent)",
6483      "type": "function",
6484      "desc": "Selects nodes."
6485     },
6486     {
6487      "name": "setStore",
6488      "sig": "(Store store)",
6489      "type": "function",
6490      "desc": "Changes the data store this view uses and refresh the view."
6491     },
6492     {
6493      "name": "sort",
6494      "sig": "(String property, String direction, Function sortType)",
6495      "type": "function",
6496      "desc": "Sorts the data for this view and refreshes it."
6497     },
6498     {
6499      "name": "un",
6500      "sig": "(String eventName, Function handler, Object scope)",
6501      "type": "function",
6502      "desc": "Removes a listener (shorthand for removeListener)"
6503     },
6504     {
6505      "name": "unselect",
6506      "sig": "(Array/HTMLElement/String/Number nodeInfo, Boolean keepExisting, Boolean suppressEvent)",
6507      "type": "function",
6508      "desc": "Unselects nodes."
6509     }
6510    ]
6511   },
6512   "Roo.KeyMap": {
6513    "props": [],
6514    "events": [],
6515    "methods": [
6516     {
6517      "name": "addBinding",
6518      "sig": "(Object/Array config)",
6519      "type": "function",
6520      "desc": "Add a new binding to this KeyMap. The following config object properties are supported:\n<pre>\nProperty    Type             Description\n----------  ---------------  ----------------------------------------------------------------------\nkey         String/Array     A single keycode or an array of keycodes to handle\nshift       Boolean          True to handle key only when shift is pressed (defaults to false)\nctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)\nalt         Boolean          True to handle key only when alt is pressed (defaults to false)\nfn          Function         The function to call when KeyMap finds the expected key combination\nscope       Object           The scope of the callback function\n</pre>\n\nUsage:\n<pre><code>\n// Create a KeyMap\nvar map = new Roo.KeyMap(document, {\n    key: Roo.EventObject.ENTER,\n    fn: handleKey,\n    scope: this\n});\n\n//Add a new binding to the existing KeyMap later\nmap.addBinding({\n    key: 'abc',\n    shift: true,\n    fn: handleKey,\n    scope: this\n});\n</code></pre>"
6521     },
6522     {
6523      "name": "disable",
6524      "sig": "()",
6525      "type": "function",
6526      "desc": "Disable this KeyMap"
6527     },
6528     {
6529      "name": "enable",
6530      "sig": "()",
6531      "type": "function",
6532      "desc": "Enables this KeyMap"
6533     },
6534     {
6535      "name": "isEnabled",
6536      "sig": "()",
6537      "type": "function",
6538      "desc": "Returns true if this KeyMap is enabled"
6539     },
6540     {
6541      "name": "on",
6542      "sig": "(Number/Array/Object key, Function fn, Object scope)",
6543      "type": "function",
6544      "desc": "Shorthand for adding a single key listener"
6545     }
6546    ]
6547   },
6548   "Roo.KeyNav": {
6549    "props": [
6550     {
6551      "name": "disabled",
6552      "type": "Boolean",
6553      "desc": "True to disable this KeyNav instance (defaults to false)",
6554      "memberOf": ""
6555     },
6556     {
6557      "name": "defaultEventAction",
6558      "type": "String",
6559      "desc": "The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are\n{@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and\n{@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')",
6560      "memberOf": ""
6561     },
6562     {
6563      "name": "forceKeyDown",
6564      "type": "Boolean",
6565      "desc": "Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since\nIE does not propagate special keys on keypress, but setting this to true will force other browsers to also\nhandle keydown instead of keypress.",
6566      "memberOf": ""
6567     }
6568    ],
6569    "events": [],
6570    "methods": [
6571     {
6572      "name": "disable",
6573      "sig": "()",
6574      "type": "function",
6575      "desc": "Disable this KeyNav"
6576     },
6577     {
6578      "name": "enable",
6579      "sig": "()",
6580      "type": "function",
6581      "desc": "Enable this KeyNav"
6582     }
6583    ]
6584   },
6585   "Roo.Layer": {
6586    "props": [
6587     {
6588      "name": "shim",
6589      "type": "Boolean",
6590      "desc": "False to disable the iframe shim in browsers which need one (defaults to true)",
6591      "memberOf": ""
6592     },
6593     {
6594      "name": "shadow",
6595      "type": "String/Boolean",
6596      "desc": "True to create a shadow element with default class \"x-layer-shadow\", or\nyou can pass a string with a CSS class name. False turns off the shadow.",
6597      "memberOf": ""
6598     },
6599     {
6600      "name": "dh",
6601      "type": "Object",
6602      "desc": "DomHelper object config to create element with (defaults to {tag: \"div\", cls: \"x-layer\"}).",
6603      "memberOf": ""
6604     },
6605     {
6606      "name": "constrain",
6607      "type": "Boolean",
6608      "desc": "False to disable constrain to viewport (defaults to true)",
6609      "memberOf": ""
6610     },
6611     {
6612      "name": "cls",
6613      "type": "String",
6614      "desc": "CSS class to add to the element",
6615      "memberOf": ""
6616     },
6617     {
6618      "name": "zindex",
6619      "type": "Number",
6620      "desc": "Starting z-index (defaults to 11000)",
6621      "memberOf": ""
6622     },
6623     {
6624      "name": "shadowOffset",
6625      "type": "Number",
6626      "desc": "Number of pixels to offset the shadow (defaults to 3)",
6627      "memberOf": ""
6628     }
6629    ],
6630    "events": [],
6631    "methods": [
6632     {
6633      "name": "addClass",
6634      "sig": "(String/Array className)",
6635      "type": "function",
6636      "desc": "Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out."
6637     },
6638     {
6639      "name": "addClassOnClick",
6640      "sig": "(String className)",
6641      "type": "function",
6642      "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)"
6643     },
6644     {
6645      "name": "addClassOnFocus",
6646      "sig": "(String className)",
6647      "type": "function",
6648      "desc": "Sets up event handlers to add and remove a css class when this element has the focus"
6649     },
6650     {
6651      "name": "addClassOnOver",
6652      "sig": "(String className, Boolean preventFlicker)",
6653      "type": "function",
6654      "desc": "Sets up event handlers to add and remove a css class when the mouse is over this element"
6655     },
6656     {
6657      "name": "addKeyListener",
6658      "sig": "(Number/Array/Object/String key, Function fn, Object scope)",
6659      "type": "function",
6660      "desc": "Convenience method for constructing a KeyMap"
6661     },
6662     {
6663      "name": "addKeyMap",
6664      "sig": "(Object config)",
6665      "type": "function",
6666      "desc": "Creates a KeyMap for this element"
6667     },
6668     {
6669      "name": "addListener",
6670      "sig": "(String eventName, Function fn, Object scope, Object options)",
6671      "type": "function",
6672      "desc": "Appends an event handler"
6673     },
6674     {
6675      "name": "alignTo",
6676      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets, Boolean/Object animate)",
6677      "type": "function",
6678      "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>"
6679     },
6680     {
6681      "name": "anchorTo",
6682      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets, Boolean/Object animate, Boolean/Number monitorScroll, Function callback)",
6683      "type": "function",
6684      "desc": "Anchors an element to another element and realigns it when the window is resized."
6685     },
6686     {
6687      "name": "animate",
6688      "sig": "(Object args, Float duration, Function onComplete, String easing, String animType)",
6689      "type": "function",
6690      "desc": "Perform animation on this element."
6691     },
6692     {
6693      "name": "appendChild",
6694      "sig": "(String/HTMLElement/Array/Element/CompositeElement el)",
6695      "type": "function",
6696      "desc": "Appends the passed element(s) to this element"
6697     },
6698     {
6699      "name": "appendTo",
6700      "sig": "(String/HTMLElement/Element el)",
6701      "type": "function",
6702      "desc": "Appends this element to the passed element"
6703     },
6704     {
6705      "name": "applyStyles",
6706      "sig": "(String/Object/Function styles)",
6707      "type": "function",
6708      "desc": "More flexible version of {@link #setStyle} for setting style properties."
6709     },
6710     {
6711      "name": "attr",
6712      "sig": "(String|Object name, String value)",
6713      "type": "function",
6714      "desc": "Sets or Returns the value the dom attribute value"
6715     },
6716     {
6717      "name": "autoHeight",
6718      "sig": "(Boolean animate, Float duration, Function onComplete, String easing)",
6719      "type": "function",
6720      "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."
6721     },
6722     {
6723      "name": "beginMeasure",
6724      "sig": "()",
6725      "type": "function",
6726      "desc": "Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done."
6727     },
6728     {
6729      "name": "blur",
6730      "sig": "()",
6731      "type": "function",
6732      "desc": "Tries to blur the element. Any exceptions are caught and ignored."
6733     },
6734     {
6735      "name": "boxWrap",
6736      "sig": "(String class)",
6737      "type": "function",
6738      "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."
6739     },
6740     {
6741      "name": "center",
6742      "sig": "(String/HTMLElement/Roo.Element centerIn)",
6743      "type": "function",
6744      "desc": "Centers the Element in either the viewport, or another Element."
6745     },
6746     {
6747      "name": "child",
6748      "sig": "(String selector, Boolean returnDom)",
6749      "type": "function",
6750      "desc": "Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id)."
6751     },
6752     {
6753      "name": "clean",
6754      "sig": "(Boolean forceReclean)",
6755      "type": "function",
6756      "desc": "Removes worthless text nodes"
6757     },
6758     {
6759      "name": "clearOpacity",
6760      "sig": "()",
6761      "type": "function",
6762      "desc": "Clears any opacity settings from this element. Required in some cases for IE."
6763     },
6764     {
6765      "name": "clearPositioning",
6766      "sig": "(String value)",
6767      "type": "function",
6768      "desc": "Clear positioning back to the default when the document was loaded"
6769     },
6770     {
6771      "name": "clip",
6772      "sig": "()",
6773      "type": "function",
6774      "desc": "Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove"
6775     },
6776     {
6777      "name": "contains",
6778      "sig": "(HTMLElement/String el)",
6779      "type": "function",
6780      "desc": "Returns true if this element is an ancestor of the passed element"
6781     },
6782     {
6783      "name": "createChild",
6784      "sig": "(Object config, HTMLElement insertBefore, Boolean returnDom)",
6785      "type": "function",
6786      "desc": "Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element."
6787     },
6788     {
6789      "name": "createProxy",
6790      "sig": "(String/Object config, String/HTMLElement renderTo, Boolean matchBox)",
6791      "type": "function",
6792      "desc": "Creates a proxy element of this element"
6793     },
6794     {
6795      "name": "createShim",
6796      "sig": "()",
6797      "type": "function",
6798      "desc": "Creates an iframe shim for this element to keep selects and other windowed objects from\nshowing through."
6799     },
6800     {
6801      "name": "down",
6802      "sig": "(String selector, Boolean returnDom)",
6803      "type": "function",
6804      "desc": "Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id)."
6805     },
6806     {
6807      "name": "enableDisplayMode",
6808      "sig": "(String display)",
6809      "type": "function",
6810      "desc": "Convenience method for setVisibilityMode(Element.DISPLAY)"
6811     },
6812     {
6813      "name": "endMeasure",
6814      "sig": "()",
6815      "type": "function",
6816      "desc": "Restores displays to before beginMeasure was called"
6817     },
6818     {
6819      "name": "findParent",
6820      "sig": "(String selector, Number/String/HTMLElement/Element maxDepth, Boolean returnEl)",
6821      "type": "function",
6822      "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)"
6823     },
6824     {
6825      "name": "findParentNode",
6826      "sig": "(String selector, Number/String/HTMLElement/Element maxDepth, Boolean returnEl)",
6827      "type": "function",
6828      "desc": "Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)"
6829     },
6830     {
6831      "name": "fitToParent",
6832      "sig": "(Boolean monitorResize, String/HTMLElment/Element targetParent)",
6833      "type": "function",
6834      "desc": "Sizes this element to its parent element's dimensions performing\nneccessary box adjustments."
6835     },
6836     {
6837      "name": "fly",
6838      "sig": "(String/HTMLElement el, String named)",
6839      "type": "function",
6840      "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."
6841     },
6842     {
6843      "name": "focus",
6844      "sig": "()",
6845      "type": "function",
6846      "desc": "Tries to focus the element. Any exceptions are caught and ignored."
6847     },
6848     {
6849      "name": "get",
6850      "sig": "(String/HTMLElement/Element el)",
6851      "type": "function",
6852      "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."
6853     },
6854     {
6855      "name": "getAlignToXY",
6856      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets)",
6857      "type": "function",
6858      "desc": "Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the\nsupported position values."
6859     },
6860     {
6861      "name": "getAnchorXY",
6862      "sig": "(String anchor, Object size, Boolean local)",
6863      "type": "function",
6864      "desc": "Gets the x,y coordinates specified by the anchor position on the element."
6865     },
6866     {
6867      "name": "getAttributeNS",
6868      "sig": "(String namespace, String name)",
6869      "type": "function",
6870      "desc": "Returns the value of a namespaced attribute from the element's underlying DOM node."
6871     },
6872     {
6873      "name": "getBorderWidth",
6874      "sig": "(String side)",
6875      "type": "function",
6876      "desc": "Gets the width of the border(s) for the specified side(s)"
6877     },
6878     {
6879      "name": "getBottom",
6880      "sig": "(Boolean local)",
6881      "type": "function",
6882      "desc": "Gets the bottom Y coordinate of the element (element Y position + element height)"
6883     },
6884     {
6885      "name": "getBox",
6886      "sig": "(Boolean contentBox, Boolean local)",
6887      "type": "function",
6888      "desc": "Return a box {x, y, width, height} that can be used to set another elements\nsize/location to match this element."
6889     },
6890     {
6891      "name": "getCenterXY",
6892      "sig": "()",
6893      "type": "function",
6894      "desc": "Calculates the x, y to center this element on the screen"
6895     },
6896     {
6897      "name": "getColor",
6898      "sig": "(String attr, String defaultValue, String prefix)",
6899      "type": "function",
6900      "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."
6901     },
6902     {
6903      "name": "getComputedHeight",
6904      "sig": "()",
6905      "type": "function",
6906      "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."
6907     },
6908     {
6909      "name": "getComputedWidth",
6910      "sig": "()",
6911      "type": "function",
6912      "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."
6913     },
6914     {
6915      "name": "getFrameWidth",
6916      "sig": "(String sides)",
6917      "type": "function",
6918      "desc": "Returns the sum width of the padding and borders for the passed \"sides\". See getBorderWidth()\n         for more information about the sides."
6919     },
6920     {
6921      "name": "getHeight",
6922      "sig": "(Boolean contentHeight)",
6923      "type": "function",
6924      "desc": "Returns the offset height of the element"
6925     },
6926     {
6927      "name": "getLeft",
6928      "sig": "(Boolean local)",
6929      "type": "function",
6930      "desc": "Gets the left X coordinate"
6931     },
6932     {
6933      "name": "getMargins",
6934      "sig": "(String sides)",
6935      "type": "function",
6936      "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)"
6937     },
6938     {
6939      "name": "getNextSibling",
6940      "sig": "()",
6941      "type": "function",
6942      "desc": "Gets the next sibling, skipping text nodes"
6943     },
6944     {
6945      "name": "getPadding",
6946      "sig": "(String side)",
6947      "type": "function",
6948      "desc": "Gets the width of the padding(s) for the specified side(s)"
6949     },
6950     {
6951      "name": "getPositioning",
6952      "sig": "()",
6953      "type": "function",
6954      "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."
6955     },
6956     {
6957      "name": "getPrevSibling",
6958      "sig": "()",
6959      "type": "function",
6960      "desc": "Gets the previous sibling, skipping text nodes"
6961     },
6962     {
6963      "name": "getRegion",
6964      "sig": "()",
6965      "type": "function",
6966      "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)."
6967     },
6968     {
6969      "name": "getRight",
6970      "sig": "(Boolean local)",
6971      "type": "function",
6972      "desc": "Gets the right X coordinate of the element (element X position + element width)"
6973     },
6974     {
6975      "name": "getScroll",
6976      "sig": "()",
6977      "type": "function",
6978      "desc": "Returns the current scroll position of the element."
6979     },
6980     {
6981      "name": "getSize",
6982      "sig": "(Boolean contentSize)",
6983      "type": "function",
6984      "desc": "Returns the size of the element."
6985     },
6986     {
6987      "name": "getStyle",
6988      "sig": "(String property)",
6989      "type": "function",
6990      "desc": "Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version."
6991     },
6992     {
6993      "name": "getStyles",
6994      "sig": "(String style1, String style2)",
6995      "type": "function",
6996      "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'}."
6997     },
6998     {
6999      "name": "getTop",
7000      "sig": "(Boolean local)",
7001      "type": "function",
7002      "desc": "Gets the top Y coordinate"
7003     },
7004     {
7005      "name": "getUpdateManager",
7006      "sig": "()",
7007      "type": "function",
7008      "desc": "Gets this element's UpdateManager"
7009     },
7010     {
7011      "name": "getValue",
7012      "sig": "(Boolean asNumber)",
7013      "type": "function",
7014      "desc": "Returns the value of the \"value\" attribute"
7015     },
7016     {
7017      "name": "getViewSize",
7018      "sig": "()",
7019      "type": "function",
7020      "desc": "Returns the width and height of the viewport."
7021     },
7022     {
7023      "name": "getWidth",
7024      "sig": "(Boolean contentWidth)",
7025      "type": "function",
7026      "desc": "Returns the offset width of the element"
7027     },
7028     {
7029      "name": "getX",
7030      "sig": "()",
7031      "type": "function",
7032      "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)."
7033     },
7034     {
7035      "name": "getXY",
7036      "sig": "()",
7037      "type": "function",
7038      "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)."
7039     },
7040     {
7041      "name": "getY",
7042      "sig": "()",
7043      "type": "function",
7044      "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)."
7045     },
7046     {
7047      "name": "hasClass",
7048      "sig": "(String className)",
7049      "type": "function",
7050      "desc": "Checks if the specified CSS class exists on this element's DOM node."
7051     },
7052     {
7053      "name": "hide",
7054      "sig": "(Boolean/Object animate)",
7055      "type": "function",
7056      "desc": "Hide this element - Uses display mode to determine whether to use \"display\" or \"visibility\". See {@link #setVisible}."
7057     },
7058     {
7059      "name": "initDD",
7060      "sig": "(String group, Object config, Object overrides)",
7061      "type": "function",
7062      "desc": "Initializes a {@link Roo.dd.DD} drag drop object for this element."
7063     },
7064     {
7065      "name": "initDDProxy",
7066      "sig": "(String group, Object config, Object overrides)",
7067      "type": "function",
7068      "desc": "Initializes a {@link Roo.dd.DDProxy} object for this element."
7069     },
7070     {
7071      "name": "initDDTarget",
7072      "sig": "(String group, Object config, Object overrides)",
7073      "type": "function",
7074      "desc": "Initializes a {@link Roo.dd.DDTarget} object for this element."
7075     },
7076     {
7077      "name": "insertAfter",
7078      "sig": "(String/HTMLElement/Element el)",
7079      "type": "function",
7080      "desc": "Inserts this element after the passed element in the DOM"
7081     },
7082     {
7083      "name": "insertBefore",
7084      "sig": "(String/HTMLElement/Element el)",
7085      "type": "function",
7086      "desc": "Inserts this element before the passed element in the DOM"
7087     },
7088     {
7089      "name": "insertFirst",
7090      "sig": "(String/HTMLElement/Element/Object el)",
7091      "type": "function",
7092      "desc": "Inserts (or creates) an element (or DomHelper config) as the first child of the this element"
7093     },
7094     {
7095      "name": "insertHtml",
7096      "sig": "(String where, String html, Boolean returnEl)",
7097      "type": "function",
7098      "desc": "Inserts an html fragment into this element"
7099     },
7100     {
7101      "name": "insertSibling",
7102      "sig": "(String/HTMLElement/Element/Object el, String where, Boolean returnDom)",
7103      "type": "function",
7104      "desc": "Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element"
7105     },
7106     {
7107      "name": "is",
7108      "sig": "(String selector)",
7109      "type": "function",
7110      "desc": "Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)"
7111     },
7112     {
7113      "name": "isBorderBox",
7114      "sig": "()",
7115      "type": "function",
7116      "desc": "Tests various css rules/browsers to determine if this element uses a border box"
7117     },
7118     {
7119      "name": "isDisplayed",
7120      "sig": "()",
7121      "type": "function",
7122      "desc": "Returns true if display is not \"none\""
7123     },
7124     {
7125      "name": "isMasked",
7126      "sig": "()",
7127      "type": "function",
7128      "desc": "Returns true if this element is masked"
7129     },
7130     {
7131      "name": "isScrollable",
7132      "sig": "()",
7133      "type": "function",
7134      "desc": "Returns true if this element is scrollable."
7135     },
7136     {
7137      "name": "isVisible",
7138      "sig": "(Boolean deep)",
7139      "type": "function",
7140      "desc": "Checks whether the element is currently visible using both visibility and display properties."
7141     },
7142     {
7143      "name": "load",
7144      "sig": "(String/Function url, String/Object params, Function callback, Boolean discardUrl)",
7145      "type": "function",
7146      "desc": "Direct access to the UpdateManager update() method (takes the same parameters)."
7147     },
7148     {
7149      "name": "mask",
7150      "sig": "(String msg, String msgCls)",
7151      "type": "function",
7152      "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."
7153     },
7154     {
7155      "name": "move",
7156      "sig": "(String direction, Number distance, Boolean/Object animate)",
7157      "type": "function",
7158      "desc": "Move this element relative to its current position."
7159     },
7160     {
7161      "name": "moveTo",
7162      "sig": "(Number x, Number y, Boolean/Object animate)",
7163      "type": "function",
7164      "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)."
7165     },
7166     {
7167      "name": "on",
7168      "sig": "(String eventName, Function fn, Object scope, Object options)",
7169      "type": "function",
7170      "desc": "Appends an event handler (Shorthand for addListener)"
7171     },
7172     {
7173      "name": "position",
7174      "sig": "(String pos, Number zIndex, Number x, Number y)",
7175      "type": "function",
7176      "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."
7177     },
7178     {
7179      "name": "query",
7180      "sig": "(String selector)",
7181      "type": "function",
7182      "desc": "Selects child nodes based on the passed CSS selector (the selector should not contain an id)."
7183     },
7184     {
7185      "name": "radioClass",
7186      "sig": "(String/Array className)",
7187      "type": "function",
7188      "desc": "Adds one or more CSS classes to this element and removes the same class(es) from all siblings."
7189     },
7190     {
7191      "name": "remove",
7192      "sig": "()",
7193      "type": "function",
7194      "desc": "Removes this element from the DOM and deletes it from the cache"
7195     },
7196     {
7197      "name": "removeAllListeners",
7198      "sig": "()",
7199      "type": "function",
7200      "desc": "Removes all previous added listeners from this element"
7201     },
7202     {
7203      "name": "removeClass",
7204      "sig": "(String/Array className)",
7205      "type": "function",
7206      "desc": "Removes one or more CSS classes from the element."
7207     },
7208     {
7209      "name": "removeListener",
7210      "sig": "(String eventName, Function fn)",
7211      "type": "function",
7212      "desc": "Removes an event handler from this element"
7213     },
7214     {
7215      "name": "repaint",
7216      "sig": "()",
7217      "type": "function",
7218      "desc": "Forces the browser to repaint this element"
7219     },
7220     {
7221      "name": "replace",
7222      "sig": "(String/HTMLElement/Element el)",
7223      "type": "function",
7224      "desc": "Replaces the passed element with this element"
7225     },
7226     {
7227      "name": "replaceClass",
7228      "sig": "(String oldClassName, String newClassName)",
7229      "type": "function",
7230      "desc": "Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added."
7231     },
7232     {
7233      "name": "scroll",
7234      "sig": "(String direction, Number distance, Boolean/Object animate)",
7235      "type": "function",
7236      "desc": "Scrolls this element the specified direction. Does bounds checking to make sure the scroll is\nwithin this element's scrollable range."
7237     },
7238     {
7239      "name": "scrollIntoView",
7240      "sig": "(String/HTMLElement/Element container, Boolean hscroll)",
7241      "type": "function",
7242      "desc": "Scrolls this element into view within the passed container."
7243     },
7244     {
7245      "name": "scrollTo",
7246      "sig": "(String side, Number value, Boolean/Object animate)",
7247      "type": "function",
7248      "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()."
7249     },
7250     {
7251      "name": "select",
7252      "sig": "(String selector, Boolean unique)",
7253      "type": "function",
7254      "desc": "Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id)."
7255     },
7256     {
7257      "name": "set",
7258      "sig": "(Object o, Boolean useSet)",
7259      "type": "function",
7260      "desc": "Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)"
7261     },
7262     {
7263      "name": "setBottom",
7264      "sig": "(String bottom)",
7265      "type": "function",
7266      "desc": "Sets the element's CSS bottom style."
7267     },
7268     {
7269      "name": "setBounds",
7270      "sig": "(Number x, Number y, Number width, Number height, Boolean/Object animate)",
7271      "type": "function",
7272      "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."
7273     },
7274     {
7275      "name": "setBox",
7276      "sig": "(Object box, Boolean adjust, Boolean/Object animate)",
7277      "type": "function",
7278      "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."
7279     },
7280     {
7281      "name": "setDisplayed",
7282      "sig": "(Boolean value)",
7283      "type": "function",
7284      "desc": "Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true."
7285     },
7286     {
7287      "name": "setHeight",
7288      "sig": "(Number height, Boolean/Object animate)",
7289      "type": "function",
7290      "desc": "Set the height of the element"
7291     },
7292     {
7293      "name": "setLeft",
7294      "sig": "(String left)",
7295      "type": "function",
7296      "desc": "Sets the element's left position directly using CSS style (instead of {@link #setX})."
7297     },
7298     {
7299      "name": "setLeftTop",
7300      "sig": "(String left, String top)",
7301      "type": "function",
7302      "desc": "Quick set left and top adding default units"
7303     },
7304     {
7305      "name": "setLocation",
7306      "sig": "(Number x, Number y, Boolean/Object animate)",
7307      "type": "function",
7308      "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)."
7309     },
7310     {
7311      "name": "setOpacity",
7312      "sig": "(Float opacity, Boolean/Object animate)",
7313      "type": "function",
7314      "desc": "Set the opacity of the element"
7315     },
7316     {
7317      "name": "setPositioning",
7318      "sig": "(Object posCfg)",
7319      "type": "function",
7320      "desc": "Set positioning with an object returned by getPositioning()."
7321     },
7322     {
7323      "name": "setRegion",
7324      "sig": "(Roo.lib.Region region, Boolean/Object animate)",
7325      "type": "function",
7326      "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."
7327     },
7328     {
7329      "name": "setRight",
7330      "sig": "(String right)",
7331      "type": "function",
7332      "desc": "Sets the element's CSS right style."
7333     },
7334     {
7335      "name": "setSize",
7336      "sig": "(Number width, Number height, Boolean/Object animate)",
7337      "type": "function",
7338      "desc": "Set the size of the element. If animation is true, both width an height will be animated concurrently."
7339     },
7340     {
7341      "name": "setStyle",
7342      "sig": "(String/Object property, String value)",
7343      "type": "function",
7344      "desc": "Wrapper for setting style properties, also takes single object parameter of multiple styles."
7345     },
7346     {
7347      "name": "setTop",
7348      "sig": "(String top)",
7349      "type": "function",
7350      "desc": "Sets the element's top position directly using CSS style (instead of {@link #setY})."
7351     },
7352     {
7353      "name": "setVisibilityMode",
7354      "sig": "( visMode)",
7355      "type": "function",
7356      "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."
7357     },
7358     {
7359      "name": "setVisible",
7360      "sig": "(Boolean visible, Boolean/Object animate)",
7361      "type": "function",
7362      "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."
7363     },
7364     {
7365      "name": "setWidth",
7366      "sig": "(Number width, Boolean/Object animate)",
7367      "type": "function",
7368      "desc": "Set the width of the element"
7369     },
7370     {
7371      "name": "setX",
7372      "sig": "(Number The, Boolean/Object animate)",
7373      "type": "function",
7374      "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)."
7375     },
7376     {
7377      "name": "setXY",
7378      "sig": "(Array pos, Boolean/Object animate)",
7379      "type": "function",
7380      "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)."
7381     },
7382     {
7383      "name": "setY",
7384      "sig": "(Number The, Boolean/Object animate)",
7385      "type": "function",
7386      "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)."
7387     },
7388     {
7389      "name": "setZIndex",
7390      "sig": "(Number zindex)",
7391      "type": "function",
7392      "desc": "Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically\nincremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow\nelement, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index)."
7393     },
7394     {
7395      "name": "show",
7396      "sig": "(Boolean/Object animate)",
7397      "type": "function",
7398      "desc": "Show this element - Uses display mode to determine whether to use \"display\" or \"visibility\". See {@link #setVisible}."
7399     },
7400     {
7401      "name": "swallowEvent",
7402      "sig": "(String eventName, Boolean preventDefault)",
7403      "type": "function",
7404      "desc": "Stops the specified event from bubbling and optionally prevents the default action"
7405     },
7406     {
7407      "name": "toggle",
7408      "sig": "(Boolean/Object animate)",
7409      "type": "function",
7410      "desc": "Toggles the element's visibility or display, depending on visibility mode."
7411     },
7412     {
7413      "name": "toggleClass",
7414      "sig": "(String className)",
7415      "type": "function",
7416      "desc": "Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it)."
7417     },
7418     {
7419      "name": "translatePoints",
7420      "sig": "(Number/Array x, Number y)",
7421      "type": "function",
7422      "desc": "Translates the passed page coordinates into left/top css values for this element"
7423     },
7424     {
7425      "name": "un",
7426      "sig": "(String eventName, Function fn)",
7427      "type": "function",
7428      "desc": "Removes an event handler from this element (shorthand for removeListener)"
7429     },
7430     {
7431      "name": "unclip",
7432      "sig": "()",
7433      "type": "function",
7434      "desc": "Return clipping (overflow) to original clipping before clip() was called"
7435     },
7436     {
7437      "name": "unmask",
7438      "sig": "()",
7439      "type": "function",
7440      "desc": "Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise\nit is cached for reuse."
7441     },
7442     {
7443      "name": "unselectable",
7444      "sig": "()",
7445      "type": "function",
7446      "desc": "Disables text selection for this element (normalized across browsers)"
7447     },
7448     {
7449      "name": "up",
7450      "sig": "(String selector, Number/String/HTMLElement/Element maxDepth)",
7451      "type": "function",
7452      "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."
7453     },
7454     {
7455      "name": "update",
7456      "sig": "(String html, Boolean loadScripts, Function callback)",
7457      "type": "function",
7458      "desc": "Update the innerHTML of this element, optionally searching for and processing scripts"
7459     },
7460     {
7461      "name": "wrap",
7462      "sig": "(Object config, Boolean returnDom)",
7463      "type": "function",
7464      "desc": "Creates and wraps this element with another element"
7465     }
7466    ]
7467   },
7468   "Roo.LayoutDialog": {
7469    "props": [
7470     {
7471      "name": "autoCreate",
7472      "type": "Boolean/DomHelper",
7473      "desc": "True to auto create from scratch, or using a DomHelper Object (defaults to false)",
7474      "memberOf": "Roo.BasicDialog"
7475     },
7476     {
7477      "name": "title",
7478      "type": "String",
7479      "desc": "Default text to display in the title bar (defaults to null)",
7480      "memberOf": "Roo.BasicDialog"
7481     },
7482     {
7483      "name": "width",
7484      "type": "Number",
7485      "desc": "Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.",
7486      "memberOf": "Roo.BasicDialog"
7487     },
7488     {
7489      "name": "height",
7490      "type": "Number",
7491      "desc": "Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.",
7492      "memberOf": "Roo.BasicDialog"
7493     },
7494     {
7495      "name": "x",
7496      "type": "Number",
7497      "desc": "The default left page coordinate of the dialog (defaults to center screen)",
7498      "memberOf": "Roo.BasicDialog"
7499     },
7500     {
7501      "name": "y",
7502      "type": "Number",
7503      "desc": "The default top page coordinate of the dialog (defaults to center screen)",
7504      "memberOf": "Roo.BasicDialog"
7505     },
7506     {
7507      "name": "animateTarget",
7508      "type": "String/Element",
7509      "desc": "Id or element from which the dialog should animate while opening\n(defaults to null with no animation)",
7510      "memberOf": "Roo.BasicDialog"
7511     },
7512     {
7513      "name": "resizable",
7514      "type": "Boolean",
7515      "desc": "False to disable manual dialog resizing (defaults to true)",
7516      "memberOf": "Roo.BasicDialog"
7517     },
7518     {
7519      "name": "resizeHandles",
7520      "type": "String",
7521      "desc": "Which resize handles to display - see the {@link Roo.Resizable} handles config\nproperty for valid values (defaults to 'all')",
7522      "memberOf": "Roo.BasicDialog"
7523     },
7524     {
7525      "name": "minHeight",
7526      "type": "Number",
7527      "desc": "The minimum allowable height for a resizable dialog (defaults to 80)",
7528      "memberOf": "Roo.BasicDialog"
7529     },
7530     {
7531      "name": "minWidth",
7532      "type": "Number",
7533      "desc": "The minimum allowable width for a resizable dialog (defaults to 200)",
7534      "memberOf": "Roo.BasicDialog"
7535     },
7536     {
7537      "name": "modal",
7538      "type": "Boolean",
7539      "desc": "True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)",
7540      "memberOf": "Roo.BasicDialog"
7541     },
7542     {
7543      "name": "autoScroll",
7544      "type": "Boolean",
7545      "desc": "True to allow the dialog body contents to overflow and display scrollbars (defaults to false)",
7546      "memberOf": "Roo.BasicDialog"
7547     },
7548     {
7549      "name": "closable",
7550      "type": "Boolean",
7551      "desc": "False to remove the built-in top-right corner close button (defaults to true)",
7552      "memberOf": "Roo.BasicDialog"
7553     },
7554     {
7555      "name": "collapsible",
7556      "type": "Boolean",
7557      "desc": "False to remove the built-in top-right corner collapse button (defaults to true)",
7558      "memberOf": "Roo.BasicDialog"
7559     },
7560     {
7561      "name": "constraintoviewport",
7562      "type": "Boolean",
7563      "desc": "True to keep the dialog constrained within the visible viewport boundaries (defaults to true)",
7564      "memberOf": "Roo.BasicDialog"
7565     },
7566     {
7567      "name": "syncHeightBeforeShow",
7568      "type": "Boolean",
7569      "desc": "True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)",
7570      "memberOf": "Roo.BasicDialog"
7571     },
7572     {
7573      "name": "draggable",
7574      "type": "Boolean",
7575      "desc": "False to disable dragging of the dialog within the viewport (defaults to true)",
7576      "memberOf": "Roo.BasicDialog"
7577     },
7578     {
7579      "name": "autoTabs",
7580      "type": "Boolean",
7581      "desc": "If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)",
7582      "memberOf": "Roo.BasicDialog"
7583     },
7584     {
7585      "name": "tabTag",
7586      "type": "String",
7587      "desc": "The tag name of tab elements, used when autoTabs = true (defaults to 'div')",
7588      "memberOf": "Roo.BasicDialog"
7589     },
7590     {
7591      "name": "proxyDrag",
7592      "type": "Boolean",
7593      "desc": "True to drag a lightweight proxy element rather than the dialog itself, used when\ndraggable = true (defaults to false)",
7594      "memberOf": "Roo.BasicDialog"
7595     },
7596     {
7597      "name": "fixedcenter",
7598      "type": "Boolean",
7599      "desc": "True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)",
7600      "memberOf": "Roo.BasicDialog"
7601     },
7602     {
7603      "name": "shadow",
7604      "type": "Boolean/String",
7605      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\" for bottom-right\nshadow (defaults to false)",
7606      "memberOf": "Roo.BasicDialog"
7607     },
7608     {
7609      "name": "shadowOffset",
7610      "type": "Number",
7611      "desc": "The number of pixels to offset the shadow if displayed (defaults to 5)",
7612      "memberOf": "Roo.BasicDialog"
7613     },
7614     {
7615      "name": "buttonAlign",
7616      "type": "String",
7617      "desc": "Valid values are \"left,\" \"center\" and \"right\" (defaults to \"right\")",
7618      "memberOf": "Roo.BasicDialog"
7619     },
7620     {
7621      "name": "minButtonWidth",
7622      "type": "Number",
7623      "desc": "Minimum width of all dialog buttons (defaults to 75)",
7624      "memberOf": "Roo.BasicDialog"
7625     },
7626     {
7627      "name": "buttons",
7628      "type": "Array",
7629      "desc": "Array of buttons",
7630      "memberOf": "Roo.BasicDialog"
7631     },
7632     {
7633      "name": "shim",
7634      "type": "Boolean",
7635      "desc": "True to create an iframe shim that prevents selects from showing through (defaults to false)",
7636      "memberOf": "Roo.BasicDialog"
7637     },
7638     {
7639      "name": "listeners",
7640      "type": "Object",
7641      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
7642      "memberOf": "Roo.util.Observable"
7643     }
7644    ],
7645    "events": [
7646     {
7647      "name": "beforehide",
7648      "sig": "function (_self)\n{\n\n}",
7649      "type": "function",
7650      "desc": "Fires before this dialog is hidden."
7651     },
7652     {
7653      "name": "beforeshow",
7654      "sig": "function (_self)\n{\n\n}",
7655      "type": "function",
7656      "desc": "Fires before this dialog is shown."
7657     },
7658     {
7659      "name": "hide",
7660      "sig": "function (_self)\n{\n\n}",
7661      "type": "function",
7662      "desc": "Fires when this dialog is hidden."
7663     },
7664     {
7665      "name": "keydown",
7666      "sig": "function (_self, e)\n{\n\n}",
7667      "type": "function",
7668      "desc": "Fires when a key is pressed"
7669     },
7670     {
7671      "name": "move",
7672      "sig": "function (_self, x, y)\n{\n\n}",
7673      "type": "function",
7674      "desc": "Fires when this dialog is moved by the user."
7675     },
7676     {
7677      "name": "resize",
7678      "sig": "function (_self, width, height)\n{\n\n}",
7679      "type": "function",
7680      "desc": "Fires when this dialog is resized by the user."
7681     },
7682     {
7683      "name": "show",
7684      "sig": "function (_self)\n{\n\n}",
7685      "type": "function",
7686      "desc": "Fires when this dialog is shown."
7687     }
7688    ],
7689    "methods": [
7690     {
7691      "name": "addButton",
7692      "sig": "(String/Object config, Function handler, Object scope)",
7693      "type": "function",
7694      "desc": "Adds a button to the footer section of the dialog."
7695     },
7696     {
7697      "name": "addEvents",
7698      "sig": "(Object object)",
7699      "type": "function",
7700      "desc": "Used to define events on this Observable"
7701     },
7702     {
7703      "name": "addKeyListener",
7704      "sig": "(Number/Array/Object key, Function fn, Object scope)",
7705      "type": "function",
7706      "desc": "Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be\nexecuted in response to a particular key being pressed while the dialog is active."
7707     },
7708     {
7709      "name": "addListener",
7710      "sig": "(String eventName, Function handler, Object scope, Object options)",
7711      "type": "function",
7712      "desc": "Appends an event handler to this component"
7713     },
7714     {
7715      "name": "addxtype",
7716      "sig": "()",
7717      "type": "function",
7718      "desc": "Add an xtype element (actually adds to the layout.)"
7719     },
7720     {
7721      "name": "alignTo",
7722      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets)",
7723      "type": "function",
7724      "desc": "Aligns the dialog to the specified element"
7725     },
7726     {
7727      "name": "anchorTo",
7728      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets, Boolean/Number monitorScroll)",
7729      "type": "function",
7730      "desc": "Anchors an element to another element and realigns it when the window is resized."
7731     },
7732     {
7733      "name": "beginUpdate",
7734      "sig": "()",
7735      "type": "function",
7736      "desc": "Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout."
7737     },
7738     {
7739      "name": "capture",
7740      "sig": "(Observable o, Function fn, Object scope)",
7741      "type": "function",
7742      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
7743     },
7744     {
7745      "name": "center",
7746      "sig": "()",
7747      "type": "function",
7748      "desc": "Centers this dialog in the viewport"
7749     },
7750     {
7751      "name": "collapse",
7752      "sig": "()",
7753      "type": "function",
7754      "desc": "Collapses the dialog to its minimized state (only the title bar is visible).\nEquivalent to the user clicking the collapse dialog button."
7755     },
7756     {
7757      "name": "destroy",
7758      "sig": "(Boolean removeEl)",
7759      "type": "function",
7760      "desc": "Destroys this dialog and all its supporting elements (including any tabs, shim,\nshadow, proxy, mask, etc.)  Also removes all event listeners."
7761     },
7762     {
7763      "name": "endUpdate",
7764      "sig": "()",
7765      "type": "function",
7766      "desc": "Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout."
7767     },
7768     {
7769      "name": "expand",
7770      "sig": "()",
7771      "type": "function",
7772      "desc": "Expands a collapsed dialog back to its normal state.  Equivalent to the user\nclicking the expand dialog button."
7773     },
7774     {
7775      "name": "fireEvent",
7776      "sig": "(String eventName, Object... args)",
7777      "type": "function",
7778      "desc": "Fires the specified event with the passed parameters (minus the event name)."
7779     },
7780     {
7781      "name": "focus",
7782      "sig": "()",
7783      "type": "function",
7784      "desc": "Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the\ndialog itself will receive focus."
7785     },
7786     {
7787      "name": "getEl",
7788      "sig": "()",
7789      "type": "function",
7790      "desc": "Returns the element for this dialog"
7791     },
7792     {
7793      "name": "getLayout",
7794      "sig": "()",
7795      "type": "function",
7796      "desc": "Get the BorderLayout for this dialog"
7797     },
7798     {
7799      "name": "getTabs",
7800      "sig": "()",
7801      "type": "function",
7802      "desc": "Returns the TabPanel component (creates it if it doesn't exist).\nNote: If you wish to simply check for the existence of tabs without creating them,\ncheck for a null 'tabs' property."
7803     },
7804     {
7805      "name": "hasListener",
7806      "sig": "(String eventName)",
7807      "type": "function",
7808      "desc": "Checks to see if this object has any listeners for a specified event"
7809     },
7810     {
7811      "name": "hide",
7812      "sig": "(Function callback)",
7813      "type": "function",
7814      "desc": "Hides the dialog."
7815     },
7816     {
7817      "name": "initTabs",
7818      "sig": "()",
7819      "type": "function",
7820      "desc": "Reinitializes the tabs component, clearing out old tabs and finding new ones."
7821     },
7822     {
7823      "name": "isVisible",
7824      "sig": "()",
7825      "type": "function",
7826      "desc": "Returns true if the dialog is visible"
7827     },
7828     {
7829      "name": "moveTo",
7830      "sig": "(Number x, Number y)",
7831      "type": "function",
7832      "desc": "Moves the dialog's top-left corner to the specified point"
7833     },
7834     {
7835      "name": "on",
7836      "sig": "(String eventName, Function handler, Object scope, Object options)",
7837      "type": "function",
7838      "desc": "Appends an event handler to this element (shorthand for addListener)"
7839     },
7840     {
7841      "name": "purgeListeners",
7842      "sig": "()",
7843      "type": "function",
7844      "desc": "Removes all listeners for this object"
7845     },
7846     {
7847      "name": "releaseCapture",
7848      "sig": "(Observable o)",
7849      "type": "function",
7850      "desc": "Removes <b>all</b> added captures from the Observable."
7851     },
7852     {
7853      "name": "removeListener",
7854      "sig": "(String eventName, Function handler, Object scope)",
7855      "type": "function",
7856      "desc": "Removes a listener"
7857     },
7858     {
7859      "name": "resizeTo",
7860      "sig": "(Number width, Number height)",
7861      "type": "function",
7862      "desc": "Resizes the dialog."
7863     },
7864     {
7865      "name": "restoreState",
7866      "sig": "()",
7867      "type": "function",
7868      "desc": "Restores the previous state of the dialog if Roo.state is configured."
7869     },
7870     {
7871      "name": "setContentSize",
7872      "sig": "(Number width, Number height)",
7873      "type": "function",
7874      "desc": "Resizes the dialog to fit the specified content size."
7875     },
7876     {
7877      "name": "setDefaultButton",
7878      "sig": "(Roo.BasicDialog.Button btn)",
7879      "type": "function",
7880      "desc": "Sets the default button to be focused when the dialog is displayed."
7881     },
7882     {
7883      "name": "setTitle",
7884      "sig": "(String text)",
7885      "type": "function",
7886      "desc": "Sets the dialog title text"
7887     },
7888     {
7889      "name": "show",
7890      "sig": "(String/HTMLElement/Roo.Element animateTarget)",
7891      "type": "function",
7892      "desc": "Shows the dialog."
7893     },
7894     {
7895      "name": "toBack",
7896      "sig": "()",
7897      "type": "function",
7898      "desc": "Sends this dialog to the back (under) of any other visible dialogs"
7899     },
7900     {
7901      "name": "toFront",
7902      "sig": "()",
7903      "type": "function",
7904      "desc": "Brings this dialog to the front of any other visible dialogs"
7905     },
7906     {
7907      "name": "un",
7908      "sig": "(String eventName, Function handler, Object scope)",
7909      "type": "function",
7910      "desc": "Removes a listener (shorthand for removeListener)"
7911     }
7912    ]
7913   },
7914   "Roo.LayoutManager": {
7915    "props": [
7916     {
7917      "name": "listeners",
7918      "type": "Object",
7919      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
7920      "memberOf": "Roo.util.Observable"
7921     }
7922    ],
7923    "events": [
7924     {
7925      "name": "layout",
7926      "sig": "function (_self)\n{\n\n}",
7927      "type": "function",
7928      "desc": "Fires when a layout is performed."
7929     },
7930     {
7931      "name": "regioncollapsed",
7932      "sig": "function (region)\n{\n\n}",
7933      "type": "function",
7934      "desc": "Fires when a region is collapsed."
7935     },
7936     {
7937      "name": "regionexpanded",
7938      "sig": "function (region)\n{\n\n}",
7939      "type": "function",
7940      "desc": "Fires when a region is expanded."
7941     },
7942     {
7943      "name": "regionresized",
7944      "sig": "function (region, newSize)\n{\n\n}",
7945      "type": "function",
7946      "desc": "Fires when the user resizes a region."
7947     }
7948    ],
7949    "methods": [
7950     {
7951      "name": "addEvents",
7952      "sig": "(Object object)",
7953      "type": "function",
7954      "desc": "Used to define events on this Observable"
7955     },
7956     {
7957      "name": "addListener",
7958      "sig": "(String eventName, Function handler, Object scope, Object options)",
7959      "type": "function",
7960      "desc": "Appends an event handler to this component"
7961     },
7962     {
7963      "name": "beginUpdate",
7964      "sig": "()",
7965      "type": "function",
7966      "desc": "Suspend the LayoutManager from doing auto-layouts while\nmaking multiple add or remove calls"
7967     },
7968     {
7969      "name": "capture",
7970      "sig": "(Observable o, Function fn, Object scope)",
7971      "type": "function",
7972      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
7973     },
7974     {
7975      "name": "endUpdate",
7976      "sig": "(Boolean noLayout)",
7977      "type": "function",
7978      "desc": "Restore auto-layouts and optionally disable the manager from performing a layout"
7979     },
7980     {
7981      "name": "fireEvent",
7982      "sig": "(String eventName, Object... args)",
7983      "type": "function",
7984      "desc": "Fires the specified event with the passed parameters (minus the event name)."
7985     },
7986     {
7987      "name": "getEl",
7988      "sig": "()",
7989      "type": "function",
7990      "desc": "Returns the Element this layout is bound to."
7991     },
7992     {
7993      "name": "getRegion",
7994      "sig": "(String target)",
7995      "type": "function",
7996      "desc": "Returns the specified region."
7997     },
7998     {
7999      "name": "getViewSize",
8000      "sig": "()",
8001      "type": "function",
8002      "desc": "Returns the size of the current view. This method normalizes document.body and element embedded layouts and\nperforms box-model adjustments."
8003     },
8004     {
8005      "name": "hasListener",
8006      "sig": "(String eventName)",
8007      "type": "function",
8008      "desc": "Checks to see if this object has any listeners for a specified event"
8009     },
8010     {
8011      "name": "isUpdating",
8012      "sig": "()",
8013      "type": "function",
8014      "desc": "Returns true if this layout is currently being updated"
8015     },
8016     {
8017      "name": "on",
8018      "sig": "(String eventName, Function handler, Object scope, Object options)",
8019      "type": "function",
8020      "desc": "Appends an event handler to this element (shorthand for addListener)"
8021     },
8022     {
8023      "name": "purgeListeners",
8024      "sig": "()",
8025      "type": "function",
8026      "desc": "Removes all listeners for this object"
8027     },
8028     {
8029      "name": "releaseCapture",
8030      "sig": "(Observable o)",
8031      "type": "function",
8032      "desc": "Removes <b>all</b> added captures from the Observable."
8033     },
8034     {
8035      "name": "removeListener",
8036      "sig": "(String eventName, Function handler, Object scope)",
8037      "type": "function",
8038      "desc": "Removes a listener"
8039     },
8040     {
8041      "name": "un",
8042      "sig": "(String eventName, Function handler, Object scope)",
8043      "type": "function",
8044      "desc": "Removes a listener (shorthand for removeListener)"
8045     }
8046    ]
8047   },
8048   "Roo.LayoutRegion": {
8049    "props": [
8050     {
8051      "name": "collapsible",
8052      "type": "Boolean",
8053      "desc": "False to disable collapsing (defaults to true)",
8054      "memberOf": ""
8055     },
8056     {
8057      "name": "collapsed",
8058      "type": "Boolean",
8059      "desc": "True to set the initial display to collapsed (defaults to false)",
8060      "memberOf": ""
8061     },
8062     {
8063      "name": "floatable",
8064      "type": "Boolean",
8065      "desc": "False to disable floating (defaults to true)",
8066      "memberOf": ""
8067     },
8068     {
8069      "name": "margins",
8070      "type": "Object",
8071      "desc": "Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})",
8072      "memberOf": ""
8073     },
8074     {
8075      "name": "cmargins",
8076      "type": "Object",
8077      "desc": "Margins for the element when collapsed (defaults to: north/south {top: 2, left: 0, right:0, bottom: 2} or east/west {top: 0, left: 2, right:2, bottom: 0})",
8078      "memberOf": ""
8079     },
8080     {
8081      "name": "tabPosition",
8082      "type": "String",
8083      "desc": "\"top\" or \"bottom\" (defaults to \"bottom\")",
8084      "memberOf": "",
8085      "optvals": [
8086       "top",
8087       "bottom"
8088      ]
8089     },
8090     {
8091      "name": "collapsedTitle",
8092      "type": "String",
8093      "desc": "Optional string message to display in the collapsed block of a north or south region",
8094      "memberOf": ""
8095     },
8096     {
8097      "name": "alwaysShowTabs",
8098      "type": "Boolean",
8099      "desc": "True to always display tabs even when there is only 1 panel (defaults to false)",
8100      "memberOf": ""
8101     },
8102     {
8103      "name": "autoScroll",
8104      "type": "Boolean",
8105      "desc": "True to enable overflow scrolling (defaults to false)",
8106      "memberOf": ""
8107     },
8108     {
8109      "name": "titlebar",
8110      "type": "Boolean",
8111      "desc": "True to display a title bar (defaults to true)",
8112      "memberOf": ""
8113     },
8114     {
8115      "name": "title",
8116      "type": "String",
8117      "desc": "The title for the region (overrides panel titles)",
8118      "memberOf": ""
8119     },
8120     {
8121      "name": "animate",
8122      "type": "Boolean",
8123      "desc": "True to animate expand/collapse (defaults to false)",
8124      "memberOf": ""
8125     },
8126     {
8127      "name": "autoHide",
8128      "type": "Boolean",
8129      "desc": "False to disable auto hiding when the mouse leaves the \"floated\" region (defaults to true)",
8130      "memberOf": ""
8131     },
8132     {
8133      "name": "preservePanels",
8134      "type": "Boolean",
8135      "desc": "True to preserve removed panels so they can be readded later (defaults to false)",
8136      "memberOf": ""
8137     },
8138     {
8139      "name": "closeOnTab",
8140      "type": "Boolean",
8141      "desc": "True to place the close icon on the tabs instead of the region titlebar (defaults to false)",
8142      "memberOf": ""
8143     },
8144     {
8145      "name": "hideTabs",
8146      "type": "Boolean",
8147      "desc": "True to hide the tab strip (defaults to false)",
8148      "memberOf": ""
8149     },
8150     {
8151      "name": "resizeTabs",
8152      "type": "Boolean",
8153      "desc": "True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within\n                     the space available, similar to FireFox 1.5 tabs (defaults to false)",
8154      "memberOf": ""
8155     },
8156     {
8157      "name": "minTabWidth",
8158      "type": "Number",
8159      "desc": "The minimum tab width (defaults to 40)",
8160      "memberOf": ""
8161     },
8162     {
8163      "name": "preferredTabWidth",
8164      "type": "Number",
8165      "desc": "The preferred tab width (defaults to 150)",
8166      "memberOf": ""
8167     },
8168     {
8169      "name": "showPin",
8170      "type": "Boolean",
8171      "desc": "True to show a pin button",
8172      "memberOf": ""
8173     },
8174     {
8175      "name": "hidden",
8176      "type": "Boolean",
8177      "desc": "True to start the region hidden (defaults to false)",
8178      "memberOf": ""
8179     },
8180     {
8181      "name": "hideWhenEmpty",
8182      "type": "Boolean",
8183      "desc": "True to hide the region when it has no panels",
8184      "memberOf": ""
8185     },
8186     {
8187      "name": "disableTabTips",
8188      "type": "Boolean",
8189      "desc": "True to disable tab tooltips",
8190      "memberOf": ""
8191     },
8192     {
8193      "name": "width",
8194      "type": "Number",
8195      "desc": "For East/West panels",
8196      "memberOf": ""
8197     },
8198     {
8199      "name": "height",
8200      "type": "Number",
8201      "desc": "For North/South panels",
8202      "memberOf": ""
8203     },
8204     {
8205      "name": "split",
8206      "type": "Boolean",
8207      "desc": "To show the splitter",
8208      "memberOf": ""
8209     },
8210     {
8211      "name": "toolbar",
8212      "type": "Boolean",
8213      "desc": "xtype configuration for a toolbar - shows on right of tabbar",
8214      "memberOf": ""
8215     },
8216     {
8217      "name": "listeners",
8218      "type": "Object",
8219      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
8220      "memberOf": "Roo.util.Observable"
8221     }
8222    ],
8223    "events": [
8224     {
8225      "name": "beforecollapse",
8226      "sig": "function (_self)\n{\n\n}",
8227      "type": "function",
8228      "desc": "Fires when this region before collapse."
8229     },
8230     {
8231      "name": "beforeremove",
8232      "sig": "function (_self, panel, e)\n{\n\n}",
8233      "type": "function",
8234      "desc": "Fires before a panel is removed (or closed). To cancel the removal set \"e.cancel = true\" on the event argument."
8235     },
8236     {
8237      "name": "collapsed",
8238      "sig": "function (_self)\n{\n\n}",
8239      "type": "function",
8240      "desc": "Fires when this region is collapsed."
8241     },
8242     {
8243      "name": "expanded",
8244      "sig": "function (_self)\n{\n\n}",
8245      "type": "function",
8246      "desc": "Fires when this region is expanded."
8247     },
8248     {
8249      "name": "invalidated",
8250      "sig": "function (_self)\n{\n\n}",
8251      "type": "function",
8252      "desc": "Fires when the layout for this region is changed."
8253     },
8254     {
8255      "name": "panelactivated",
8256      "sig": "function (_self, panel)\n{\n\n}",
8257      "type": "function",
8258      "desc": "Fires when a panel is activated."
8259     },
8260     {
8261      "name": "paneladded",
8262      "sig": "function (_self, panel)\n{\n\n}",
8263      "type": "function",
8264      "desc": "Fires when a panel is added."
8265     },
8266     {
8267      "name": "panelremoved",
8268      "sig": "function (_self, panel)\n{\n\n}",
8269      "type": "function",
8270      "desc": "Fires when a panel is removed."
8271     },
8272     {
8273      "name": "resized",
8274      "sig": "function (_self, newSize)\n{\n\n}",
8275      "type": "function",
8276      "desc": "Fires when the user resizes this region."
8277     },
8278     {
8279      "name": "slidehide",
8280      "sig": "function (_self)\n{\n\n}",
8281      "type": "function",
8282      "desc": "Fires when this region slides out of view."
8283     },
8284     {
8285      "name": "slideshow",
8286      "sig": "function (_self)\n{\n\n}",
8287      "type": "function",
8288      "desc": "Fires when this region is slid into view."
8289     },
8290     {
8291      "name": "visibilitychange",
8292      "sig": "function (_self, visibility)\n{\n\n}",
8293      "type": "function",
8294      "desc": "Fires when this region is shown or hidden"
8295     }
8296    ],
8297    "methods": [
8298     {
8299      "name": "add",
8300      "sig": "(ContentPanel... panel)",
8301      "type": "function",
8302      "desc": "Adds the passed ContentPanel(s) to this region."
8303     },
8304     {
8305      "name": "addEvents",
8306      "sig": "(Object object)",
8307      "type": "function",
8308      "desc": "Used to define events on this Observable"
8309     },
8310     {
8311      "name": "addListener",
8312      "sig": "(String eventName, Function handler, Object scope, Object options)",
8313      "type": "function",
8314      "desc": "Appends an event handler to this component"
8315     },
8316     {
8317      "name": "capture",
8318      "sig": "(Observable o, Function fn, Object scope)",
8319      "type": "function",
8320      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
8321     },
8322     {
8323      "name": "collapse",
8324      "sig": "(Boolean skipAnim)",
8325      "type": "function",
8326      "desc": "Collapses this region."
8327     },
8328     {
8329      "name": "expand",
8330      "sig": "(Roo.EventObject e, Boolean skipAnim)",
8331      "type": "function",
8332      "desc": "Expands this region if it was previously collapsed."
8333     },
8334     {
8335      "name": "fireEvent",
8336      "sig": "(String eventName, Object... args)",
8337      "type": "function",
8338      "desc": "Fires the specified event with the passed parameters (minus the event name)."
8339     },
8340     {
8341      "name": "getActivePanel",
8342      "sig": "()",
8343      "type": "function",
8344      "desc": "Get the active panel for this region."
8345     },
8346     {
8347      "name": "getEl",
8348      "sig": "()",
8349      "type": "function",
8350      "desc": "Returns the container element for this region."
8351     },
8352     {
8353      "name": "getPanel",
8354      "sig": "(Number/String/ContentPanel panel)",
8355      "type": "function",
8356      "desc": "Returns the panel specified or null if it's not in this region."
8357     },
8358     {
8359      "name": "getPosition",
8360      "sig": "()",
8361      "type": "function",
8362      "desc": "Returns this regions position (north/south/east/west/center)."
8363     },
8364     {
8365      "name": "getTabs",
8366      "sig": "()",
8367      "type": "function",
8368      "desc": "Returns the TabPanel component used by this region"
8369     },
8370     {
8371      "name": "hasListener",
8372      "sig": "(String eventName)",
8373      "type": "function",
8374      "desc": "Checks to see if this object has any listeners for a specified event"
8375     },
8376     {
8377      "name": "hasPanel",
8378      "sig": "(Number/String/ContentPanel panel)",
8379      "type": "function",
8380      "desc": "Returns true if the panel is in this region."
8381     },
8382     {
8383      "name": "hide",
8384      "sig": "()",
8385      "type": "function",
8386      "desc": "Hides this region."
8387     },
8388     {
8389      "name": "hidePanel",
8390      "sig": "(Number/String/ContentPanel panel)",
8391      "type": "function",
8392      "desc": "Hides the tab for the specified panel."
8393     },
8394     {
8395      "name": "isVisible",
8396      "sig": "()",
8397      "type": "function",
8398      "desc": "Returns true if this region is currently visible."
8399     },
8400     {
8401      "name": "on",
8402      "sig": "(String eventName, Function handler, Object scope, Object options)",
8403      "type": "function",
8404      "desc": "Appends an event handler to this element (shorthand for addListener)"
8405     },
8406     {
8407      "name": "purgeListeners",
8408      "sig": "()",
8409      "type": "function",
8410      "desc": "Removes all listeners for this object"
8411     },
8412     {
8413      "name": "releaseCapture",
8414      "sig": "(Observable o)",
8415      "type": "function",
8416      "desc": "Removes <b>all</b> added captures from the Observable."
8417     },
8418     {
8419      "name": "remove",
8420      "sig": "(Number/String/ContentPanel panel, Boolean preservePanel)",
8421      "type": "function",
8422      "desc": "Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed."
8423     },
8424     {
8425      "name": "removeListener",
8426      "sig": "(String eventName, Function handler, Object scope)",
8427      "type": "function",
8428      "desc": "Removes a listener"
8429     },
8430     {
8431      "name": "resizeTo",
8432      "sig": "(Number newSize)",
8433      "type": "function",
8434      "desc": "Resizes the region to the specified size. For vertical regions (west, east) this adjusts \nthe width, for horizontal (north, south) the height."
8435     },
8436     {
8437      "name": "setCollapsedTitle",
8438      "sig": "(String title)",
8439      "type": "function",
8440      "desc": "Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)"
8441     },
8442     {
8443      "name": "show",
8444      "sig": "()",
8445      "type": "function",
8446      "desc": "Shows this region if it was previously hidden."
8447     },
8448     {
8449      "name": "showPanel",
8450      "sig": "(Number/String/ContentPanel panelId)",
8451      "type": "function",
8452      "desc": "Shows the specified panel."
8453     },
8454     {
8455      "name": "un",
8456      "sig": "(String eventName, Function handler, Object scope)",
8457      "type": "function",
8458      "desc": "Removes a listener (shorthand for removeListener)"
8459     },
8460     {
8461      "name": "unhidePanel",
8462      "sig": "(Number/String/ContentPanel panel)",
8463      "type": "function",
8464      "desc": "Unhides the tab for a previously hidden panel."
8465     }
8466    ]
8467   },
8468   "Roo.LoadMask": {
8469    "props": [
8470     {
8471      "name": "removeMask",
8472      "type": "Boolean",
8473      "desc": "True to create a single-use mask that is automatically destroyed after loading (useful for page loads),\nFalse to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.",
8474      "memberOf": "Roo"
8475     },
8476     {
8477      "name": "msg",
8478      "type": "String",
8479      "desc": "The text to display in a centered loading message box (defaults to 'Loading...')",
8480      "memberOf": ""
8481     },
8482     {
8483      "name": "msgCls",
8484      "type": "String",
8485      "desc": "The CSS class to apply to the loading message element (defaults to \"x-mask-loading\")",
8486      "memberOf": ""
8487     }
8488    ],
8489    "events": [],
8490    "methods": [
8491     {
8492      "name": "disable",
8493      "sig": "()",
8494      "type": "function",
8495      "desc": "Disables the mask to prevent it from being displayed"
8496     },
8497     {
8498      "name": "enable",
8499      "sig": "()",
8500      "type": "function",
8501      "desc": "Enables the mask so that it can be displayed"
8502     }
8503    ]
8504   },
8505   "Roo.Login": {
8506    "props": [
8507     {
8508      "name": "method",
8509      "type": "String",
8510      "desc": "Method used to query for login details.",
8511      "memberOf": ""
8512     },
8513     {
8514      "name": "url",
8515      "type": "String",
8516      "desc": "URL to query login data. - eg. baseURL + '/Login.php'",
8517      "memberOf": ""
8518     },
8519     {
8520      "name": "autoCreate",
8521      "type": "Boolean/DomHelper",
8522      "desc": "True to auto create from scratch, or using a DomHelper Object (defaults to false)",
8523      "memberOf": "Roo.BasicDialog"
8524     },
8525     {
8526      "name": "title",
8527      "type": "String",
8528      "desc": "Default text to display in the title bar (defaults to null)",
8529      "memberOf": "Roo.BasicDialog"
8530     },
8531     {
8532      "name": "width",
8533      "type": "Number",
8534      "desc": "Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.",
8535      "memberOf": "Roo.BasicDialog"
8536     },
8537     {
8538      "name": "height",
8539      "type": "Number",
8540      "desc": "Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.",
8541      "memberOf": "Roo.BasicDialog"
8542     },
8543     {
8544      "name": "x",
8545      "type": "Number",
8546      "desc": "The default left page coordinate of the dialog (defaults to center screen)",
8547      "memberOf": "Roo.BasicDialog"
8548     },
8549     {
8550      "name": "y",
8551      "type": "Number",
8552      "desc": "The default top page coordinate of the dialog (defaults to center screen)",
8553      "memberOf": "Roo.BasicDialog"
8554     },
8555     {
8556      "name": "animateTarget",
8557      "type": "String/Element",
8558      "desc": "Id or element from which the dialog should animate while opening\n(defaults to null with no animation)",
8559      "memberOf": "Roo.BasicDialog"
8560     },
8561     {
8562      "name": "resizable",
8563      "type": "Boolean",
8564      "desc": "False to disable manual dialog resizing (defaults to true)",
8565      "memberOf": "Roo.BasicDialog"
8566     },
8567     {
8568      "name": "resizeHandles",
8569      "type": "String",
8570      "desc": "Which resize handles to display - see the {@link Roo.Resizable} handles config\nproperty for valid values (defaults to 'all')",
8571      "memberOf": "Roo.BasicDialog"
8572     },
8573     {
8574      "name": "minHeight",
8575      "type": "Number",
8576      "desc": "The minimum allowable height for a resizable dialog (defaults to 80)",
8577      "memberOf": "Roo.BasicDialog"
8578     },
8579     {
8580      "name": "minWidth",
8581      "type": "Number",
8582      "desc": "The minimum allowable width for a resizable dialog (defaults to 200)",
8583      "memberOf": "Roo.BasicDialog"
8584     },
8585     {
8586      "name": "modal",
8587      "type": "Boolean",
8588      "desc": "True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)",
8589      "memberOf": "Roo.BasicDialog"
8590     },
8591     {
8592      "name": "autoScroll",
8593      "type": "Boolean",
8594      "desc": "True to allow the dialog body contents to overflow and display scrollbars (defaults to false)",
8595      "memberOf": "Roo.BasicDialog"
8596     },
8597     {
8598      "name": "closable",
8599      "type": "Boolean",
8600      "desc": "False to remove the built-in top-right corner close button (defaults to true)",
8601      "memberOf": "Roo.BasicDialog"
8602     },
8603     {
8604      "name": "collapsible",
8605      "type": "Boolean",
8606      "desc": "False to remove the built-in top-right corner collapse button (defaults to true)",
8607      "memberOf": "Roo.BasicDialog"
8608     },
8609     {
8610      "name": "constraintoviewport",
8611      "type": "Boolean",
8612      "desc": "True to keep the dialog constrained within the visible viewport boundaries (defaults to true)",
8613      "memberOf": "Roo.BasicDialog"
8614     },
8615     {
8616      "name": "syncHeightBeforeShow",
8617      "type": "Boolean",
8618      "desc": "True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)",
8619      "memberOf": "Roo.BasicDialog"
8620     },
8621     {
8622      "name": "draggable",
8623      "type": "Boolean",
8624      "desc": "False to disable dragging of the dialog within the viewport (defaults to true)",
8625      "memberOf": "Roo.BasicDialog"
8626     },
8627     {
8628      "name": "autoTabs",
8629      "type": "Boolean",
8630      "desc": "If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)",
8631      "memberOf": "Roo.BasicDialog"
8632     },
8633     {
8634      "name": "tabTag",
8635      "type": "String",
8636      "desc": "The tag name of tab elements, used when autoTabs = true (defaults to 'div')",
8637      "memberOf": "Roo.BasicDialog"
8638     },
8639     {
8640      "name": "proxyDrag",
8641      "type": "Boolean",
8642      "desc": "True to drag a lightweight proxy element rather than the dialog itself, used when\ndraggable = true (defaults to false)",
8643      "memberOf": "Roo.BasicDialog"
8644     },
8645     {
8646      "name": "fixedcenter",
8647      "type": "Boolean",
8648      "desc": "True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)",
8649      "memberOf": "Roo.BasicDialog"
8650     },
8651     {
8652      "name": "shadow",
8653      "type": "Boolean/String",
8654      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\" for bottom-right\nshadow (defaults to false)",
8655      "memberOf": "Roo.BasicDialog"
8656     },
8657     {
8658      "name": "shadowOffset",
8659      "type": "Number",
8660      "desc": "The number of pixels to offset the shadow if displayed (defaults to 5)",
8661      "memberOf": "Roo.BasicDialog"
8662     },
8663     {
8664      "name": "buttonAlign",
8665      "type": "String",
8666      "desc": "Valid values are \"left,\" \"center\" and \"right\" (defaults to \"right\")",
8667      "memberOf": "Roo.BasicDialog"
8668     },
8669     {
8670      "name": "minButtonWidth",
8671      "type": "Number",
8672      "desc": "Minimum width of all dialog buttons (defaults to 75)",
8673      "memberOf": "Roo.BasicDialog"
8674     },
8675     {
8676      "name": "buttons",
8677      "type": "Array",
8678      "desc": "Array of buttons",
8679      "memberOf": "Roo.BasicDialog"
8680     },
8681     {
8682      "name": "shim",
8683      "type": "Boolean",
8684      "desc": "True to create an iframe shim that prevents selects from showing through (defaults to false)",
8685      "memberOf": "Roo.BasicDialog"
8686     },
8687     {
8688      "name": "listeners",
8689      "type": "Object",
8690      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
8691      "memberOf": "Roo.util.Observable"
8692     }
8693    ],
8694    "events": [
8695     {
8696      "name": "beforehide",
8697      "sig": "function (_self)\n{\n\n}",
8698      "type": "function",
8699      "desc": "Fires before this dialog is hidden."
8700     },
8701     {
8702      "name": "beforeshow",
8703      "sig": "function (_self)\n{\n\n}",
8704      "type": "function",
8705      "desc": "Fires before this dialog is shown."
8706     },
8707     {
8708      "name": "hide",
8709      "sig": "function (_self)\n{\n\n}",
8710      "type": "function",
8711      "desc": "Fires when this dialog is hidden."
8712     },
8713     {
8714      "name": "keydown",
8715      "sig": "function (_self, e)\n{\n\n}",
8716      "type": "function",
8717      "desc": "Fires when a key is pressed"
8718     },
8719     {
8720      "name": "move",
8721      "sig": "function (_self, x, y)\n{\n\n}",
8722      "type": "function",
8723      "desc": "Fires when this dialog is moved by the user."
8724     },
8725     {
8726      "name": "resize",
8727      "sig": "function (_self, width, height)\n{\n\n}",
8728      "type": "function",
8729      "desc": "Fires when this dialog is resized by the user."
8730     },
8731     {
8732      "name": "show",
8733      "sig": "function (_self)\n{\n\n}",
8734      "type": "function",
8735      "desc": "Fires when this dialog is shown."
8736     }
8737    ],
8738    "methods": [
8739     {
8740      "name": "addButton",
8741      "sig": "(String/Object config, Function handler, Object scope)",
8742      "type": "function",
8743      "desc": "Adds a button to the footer section of the dialog."
8744     },
8745     {
8746      "name": "addEvents",
8747      "sig": "(Object object)",
8748      "type": "function",
8749      "desc": "Used to define events on this Observable"
8750     },
8751     {
8752      "name": "addKeyListener",
8753      "sig": "(Number/Array/Object key, Function fn, Object scope)",
8754      "type": "function",
8755      "desc": "Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be\nexecuted in response to a particular key being pressed while the dialog is active."
8756     },
8757     {
8758      "name": "addListener",
8759      "sig": "(String eventName, Function handler, Object scope, Object options)",
8760      "type": "function",
8761      "desc": "Appends an event handler to this component"
8762     },
8763     {
8764      "name": "addxtype",
8765      "sig": "()",
8766      "type": "function",
8767      "desc": "Add an xtype element (actually adds to the layout.)"
8768     },
8769     {
8770      "name": "alignTo",
8771      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets)",
8772      "type": "function",
8773      "desc": "Aligns the dialog to the specified element"
8774     },
8775     {
8776      "name": "anchorTo",
8777      "sig": "(String/HTMLElement/Roo.Element element, String position, Array offsets, Boolean/Number monitorScroll)",
8778      "type": "function",
8779      "desc": "Anchors an element to another element and realigns it when the window is resized."
8780     },
8781     {
8782      "name": "beginUpdate",
8783      "sig": "()",
8784      "type": "function",
8785      "desc": "Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout."
8786     },
8787     {
8788      "name": "capture",
8789      "sig": "(Observable o, Function fn, Object scope)",
8790      "type": "function",
8791      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
8792     },
8793     {
8794      "name": "center",
8795      "sig": "()",
8796      "type": "function",
8797      "desc": "Centers this dialog in the viewport"
8798     },
8799     {
8800      "name": "collapse",
8801      "sig": "()",
8802      "type": "function",
8803      "desc": "Collapses the dialog to its minimized state (only the title bar is visible).\nEquivalent to the user clicking the collapse dialog button."
8804     },
8805     {
8806      "name": "destroy",
8807      "sig": "(Boolean removeEl)",
8808      "type": "function",
8809      "desc": "Destroys this dialog and all its supporting elements (including any tabs, shim,\nshadow, proxy, mask, etc.)  Also removes all event listeners."
8810     },
8811     {
8812      "name": "endUpdate",
8813      "sig": "()",
8814      "type": "function",
8815      "desc": "Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout."
8816     },
8817     {
8818      "name": "expand",
8819      "sig": "()",
8820      "type": "function",
8821      "desc": "Expands a collapsed dialog back to its normal state.  Equivalent to the user\nclicking the expand dialog button."
8822     },
8823     {
8824      "name": "fireEvent",
8825      "sig": "(String eventName, Object... args)",
8826      "type": "function",
8827      "desc": "Fires the specified event with the passed parameters (minus the event name)."
8828     },
8829     {
8830      "name": "focus",
8831      "sig": "()",
8832      "type": "function",
8833      "desc": "Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the\ndialog itself will receive focus."
8834     },
8835     {
8836      "name": "getEl",
8837      "sig": "()",
8838      "type": "function",
8839      "desc": "Returns the element for this dialog"
8840     },
8841     {
8842      "name": "getLayout",
8843      "sig": "()",
8844      "type": "function",
8845      "desc": "Get the BorderLayout for this dialog"
8846     },
8847     {
8848      "name": "getTabs",
8849      "sig": "()",
8850      "type": "function",
8851      "desc": "Returns the TabPanel component (creates it if it doesn't exist).\nNote: If you wish to simply check for the existence of tabs without creating them,\ncheck for a null 'tabs' property."
8852     },
8853     {
8854      "name": "hasListener",
8855      "sig": "(String eventName)",
8856      "type": "function",
8857      "desc": "Checks to see if this object has any listeners for a specified event"
8858     },
8859     {
8860      "name": "hide",
8861      "sig": "(Function callback)",
8862      "type": "function",
8863      "desc": "Hides the dialog."
8864     },
8865     {
8866      "name": "initTabs",
8867      "sig": "()",
8868      "type": "function",
8869      "desc": "Reinitializes the tabs component, clearing out old tabs and finding new ones."
8870     },
8871     {
8872      "name": "isVisible",
8873      "sig": "()",
8874      "type": "function",
8875      "desc": "Returns true if the dialog is visible"
8876     },
8877     {
8878      "name": "moveTo",
8879      "sig": "(Number x, Number y)",
8880      "type": "function",
8881      "desc": "Moves the dialog's top-left corner to the specified point"
8882     },
8883     {
8884      "name": "on",
8885      "sig": "(String eventName, Function handler, Object scope, Object options)",
8886      "type": "function",
8887      "desc": "Appends an event handler to this element (shorthand for addListener)"
8888     },
8889     {
8890      "name": "purgeListeners",
8891      "sig": "()",
8892      "type": "function",
8893      "desc": "Removes all listeners for this object"
8894     },
8895     {
8896      "name": "releaseCapture",
8897      "sig": "(Observable o)",
8898      "type": "function",
8899      "desc": "Removes <b>all</b> added captures from the Observable."
8900     },
8901     {
8902      "name": "removeListener",
8903      "sig": "(String eventName, Function handler, Object scope)",
8904      "type": "function",
8905      "desc": "Removes a listener"
8906     },
8907     {
8908      "name": "resizeTo",
8909      "sig": "(Number width, Number height)",
8910      "type": "function",
8911      "desc": "Resizes the dialog."
8912     },
8913     {
8914      "name": "restoreState",
8915      "sig": "()",
8916      "type": "function",
8917      "desc": "Restores the previous state of the dialog if Roo.state is configured."
8918     },
8919     {
8920      "name": "setContentSize",
8921      "sig": "(Number width, Number height)",
8922      "type": "function",
8923      "desc": "Resizes the dialog to fit the specified content size."
8924     },
8925     {
8926      "name": "setDefaultButton",
8927      "sig": "(Roo.BasicDialog.Button btn)",
8928      "type": "function",
8929      "desc": "Sets the default button to be focused when the dialog is displayed."
8930     },
8931     {
8932      "name": "setTitle",
8933      "sig": "(String text)",
8934      "type": "function",
8935      "desc": "Sets the dialog title text"
8936     },
8937     {
8938      "name": "show",
8939      "sig": "(String/HTMLElement/Roo.Element animateTarget)",
8940      "type": "function",
8941      "desc": "Shows the dialog."
8942     },
8943     {
8944      "name": "toBack",
8945      "sig": "()",
8946      "type": "function",
8947      "desc": "Sends this dialog to the back (under) of any other visible dialogs"
8948     },
8949     {
8950      "name": "toFront",
8951      "sig": "()",
8952      "type": "function",
8953      "desc": "Brings this dialog to the front of any other visible dialogs"
8954     },
8955     {
8956      "name": "un",
8957      "sig": "(String eventName, Function handler, Object scope)",
8958      "type": "function",
8959      "desc": "Removes a listener (shorthand for removeListener)"
8960     }
8961    ]
8962   },
8963   "Roo.MasterTemplate": {
8964    "props": [
8965     {
8966      "name": "url",
8967      "type": "String",
8968      "desc": "The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..\n                   it should be fixed so that template is observable...",
8969      "memberOf": "Roo.Template"
8970     },
8971     {
8972      "name": "html",
8973      "type": "String",
8974      "desc": "The HTML fragment or an array of fragments to join(\"\") or multiple arguments to join(\"\")",
8975      "memberOf": "Roo.Template"
8976     }
8977    ],
8978    "events": [],
8979    "methods": [
8980     {
8981      "name": "add",
8982      "sig": "(String/Number name, Array/Object values)",
8983      "type": "function",
8984      "desc": "Applies the passed values to a child template."
8985     },
8986     {
8987      "name": "addAll",
8988      "sig": "()",
8989      "type": "function",
8990      "desc": "Alias for fill()."
8991     },
8992     {
8993      "name": "append",
8994      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
8995      "type": "function",
8996      "desc": "Applies the supplied values to the template and appends the new node(s) to el."
8997     },
8998     {
8999      "name": "apply",
9000      "sig": "()",
9001      "type": "function",
9002      "desc": "Alias for {@link #applyTemplate}"
9003     },
9004     {
9005      "name": "applyTemplate",
9006      "sig": "(Object values)",
9007      "type": "function",
9008      "desc": "Returns an HTML fragment of this template with the specified values applied."
9009     },
9010     {
9011      "name": "compile",
9012      "sig": "()",
9013      "type": "function",
9014      "desc": "Compiles the template into an internal function, eliminating the RegEx overhead."
9015     },
9016     {
9017      "name": "fill",
9018      "sig": "(String/Number name, Array values, Boolean reset)",
9019      "type": "function",
9020      "desc": "Applies all the passed values to a child template."
9021     },
9022     {
9023      "name": "from",
9024      "sig": "(String/HTMLElement el, Object config)",
9025      "type": "function",
9026      "desc": "Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.\nvar tpl = Roo.MasterTemplate.from('element-id');"
9027     },
9028     {
9029      "name": "insertAfter",
9030      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
9031      "type": "function",
9032      "desc": "Applies the supplied values to the template and inserts the new node(s) after el."
9033     },
9034     {
9035      "name": "insertBefore",
9036      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
9037      "type": "function",
9038      "desc": "Applies the supplied values to the template and inserts the new node(s) before el."
9039     },
9040     {
9041      "name": "insertFirst",
9042      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
9043      "type": "function",
9044      "desc": "Applies the supplied values to the template and inserts the new node(s) as the first child of el."
9045     },
9046     {
9047      "name": "overwrite",
9048      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
9049      "type": "function",
9050      "desc": "Applies the supplied values to the template and overwrites the content of el with the new node(s)."
9051     },
9052     {
9053      "name": "reset",
9054      "sig": "()",
9055      "type": "function",
9056      "desc": "Resets the template for reuse"
9057     },
9058     {
9059      "name": "set",
9060      "sig": "(String html, Boolean compile)",
9061      "type": "function",
9062      "desc": "Sets the HTML used as the template and optionally compiles it."
9063     }
9064    ]
9065   },
9066   "Roo.NestedLayoutPanel": {
9067    "props": [
9068     {
9069      "name": "fitToFrame",
9070      "type": "Boolean",
9071      "desc": "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
9072      "memberOf": "Roo.ContentPanel"
9073     },
9074     {
9075      "name": "fitContainer",
9076      "type": "Boolean",
9077      "desc": "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
9078      "memberOf": "Roo.ContentPanel"
9079     },
9080     {
9081      "name": "autoCreate",
9082      "type": "Boolean/Object",
9083      "desc": "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
9084      "memberOf": "Roo.ContentPanel"
9085     },
9086     {
9087      "name": "closable",
9088      "type": "Boolean",
9089      "desc": "True if the panel can be closed/removed",
9090      "memberOf": "Roo.ContentPanel"
9091     },
9092     {
9093      "name": "background",
9094      "type": "Boolean",
9095      "desc": "True if the panel should not be activated when it is added (defaults to false)",
9096      "memberOf": "Roo.ContentPanel"
9097     },
9098     {
9099      "name": "resizeEl",
9100      "type": "String/HTMLElement/Element",
9101      "desc": "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
9102      "memberOf": "Roo.ContentPanel"
9103     },
9104     {
9105      "name": "toolbar",
9106      "type": "Toolbar",
9107      "desc": "A toolbar for this panel",
9108      "memberOf": "Roo.ContentPanel"
9109     },
9110     {
9111      "name": "autoScroll",
9112      "type": "Boolean",
9113      "desc": "True to scroll overflow in this panel (use with {@link #fitToFrame})",
9114      "memberOf": "Roo.ContentPanel"
9115     },
9116     {
9117      "name": "title",
9118      "type": "String",
9119      "desc": "The title for this panel",
9120      "memberOf": "Roo.ContentPanel"
9121     },
9122     {
9123      "name": "adjustments",
9124      "type": "Array",
9125      "desc": "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
9126      "memberOf": "Roo.ContentPanel"
9127     },
9128     {
9129      "name": "url",
9130      "type": "String",
9131      "desc": "Calls {@link #setUrl} with this value",
9132      "memberOf": "Roo.ContentPanel"
9133     },
9134     {
9135      "name": "region",
9136      "type": "String",
9137      "desc": "which region to put this panel on (when used with xtype constructors)",
9138      "memberOf": "Roo.ContentPanel",
9139      "optvals": [
9140       "center",
9141       "north",
9142       "south",
9143       "east",
9144       "west"
9145      ]
9146     },
9147     {
9148      "name": "params",
9149      "type": "String/Object",
9150      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
9151      "memberOf": "Roo.ContentPanel"
9152     },
9153     {
9154      "name": "loadOnce",
9155      "type": "Boolean",
9156      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
9157      "memberOf": "Roo.ContentPanel"
9158     },
9159     {
9160      "name": "content",
9161      "type": "String",
9162      "desc": "Raw content to fill content panel with (uses setContent on construction.)",
9163      "memberOf": "Roo.ContentPanel"
9164     },
9165     {
9166      "name": "listeners",
9167      "type": "Object",
9168      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
9169      "memberOf": "Roo.util.Observable"
9170     }
9171    ],
9172    "events": [
9173     {
9174      "name": "activate",
9175      "sig": "function (_self)\n{\n\n}",
9176      "type": "function",
9177      "desc": "Fires when this panel is activated."
9178     },
9179     {
9180      "name": "deactivate",
9181      "sig": "function (_self)\n{\n\n}",
9182      "type": "function",
9183      "desc": "Fires when this panel is activated."
9184     },
9185     {
9186      "name": "render",
9187      "sig": "function (_self)\n{\n\n}",
9188      "type": "function",
9189      "desc": "Fires when this tab is created"
9190     },
9191     {
9192      "name": "resize",
9193      "sig": "function (_self, width, height)\n{\n\n}",
9194      "type": "function",
9195      "desc": "Fires when this panel is resized if fitToFrame is true."
9196     }
9197    ],
9198    "methods": [
9199     {
9200      "name": "addEvents",
9201      "sig": "(Object object)",
9202      "type": "function",
9203      "desc": "Used to define events on this Observable"
9204     },
9205     {
9206      "name": "addListener",
9207      "sig": "(String eventName, Function handler, Object scope, Object options)",
9208      "type": "function",
9209      "desc": "Appends an event handler to this component"
9210     },
9211     {
9212      "name": "addxtype",
9213      "sig": "(Object cfg)",
9214      "type": "function",
9215      "desc": "Adds a xtype elements to the layout of the nested panel\n<pre><code>\n\npanel.addxtype({\n       xtype : 'ContentPanel',\n       region: 'west',\n       items: [ .... ]\n   }\n);\n\npanel.addxtype({\n        xtype : 'NestedLayoutPanel',\n        region: 'west',\n        layout: {\n           center: { },\n           west: { }   \n        },\n        items : [ ... list of content panels or nested layout panels.. ]\n   }\n);\n</code></pre>"
9216     },
9217     {
9218      "name": "capture",
9219      "sig": "(Observable o, Function fn, Object scope)",
9220      "type": "function",
9221      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
9222     },
9223     {
9224      "name": "destroy",
9225      "sig": "()",
9226      "type": "function",
9227      "desc": "Destroys this panel"
9228     },
9229     {
9230      "name": "fireEvent",
9231      "sig": "(String eventName, Object... args)",
9232      "type": "function",
9233      "desc": "Fires the specified event with the passed parameters (minus the event name)."
9234     },
9235     {
9236      "name": "getEl",
9237      "sig": "()",
9238      "type": "function",
9239      "desc": "Returns this panel's element - used by regiosn to add."
9240     },
9241     {
9242      "name": "getId",
9243      "sig": "()",
9244      "type": "function",
9245      "desc": "Returns this panel's id"
9246     },
9247     {
9248      "name": "getLayout",
9249      "sig": "()",
9250      "type": "function",
9251      "desc": "Returns the nested BorderLayout for this panel"
9252     },
9253     {
9254      "name": "getTitle",
9255      "sig": "()",
9256      "type": "function",
9257      "desc": "Returns this panel's title"
9258     },
9259     {
9260      "name": "getToolbar",
9261      "sig": "()",
9262      "type": "function",
9263      "desc": "Returns the toolbar for this Panel if one was configured."
9264     },
9265     {
9266      "name": "getUpdateManager",
9267      "sig": "()",
9268      "type": "function",
9269      "desc": "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates."
9270     },
9271     {
9272      "name": "hasListener",
9273      "sig": "(String eventName)",
9274      "type": "function",
9275      "desc": "Checks to see if this object has any listeners for a specified event"
9276     },
9277     {
9278      "name": "isClosable",
9279      "sig": "()",
9280      "type": "function",
9281      "desc": "Returns true is this panel was configured to be closable"
9282     },
9283     {
9284      "name": "load",
9285      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
9286      "type": "function",
9287      "desc": "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}."
9288     },
9289     {
9290      "name": "on",
9291      "sig": "(String eventName, Function handler, Object scope, Object options)",
9292      "type": "function",
9293      "desc": "Appends an event handler to this element (shorthand for addListener)"
9294     },
9295     {
9296      "name": "purgeListeners",
9297      "sig": "()",
9298      "type": "function",
9299      "desc": "Removes all listeners for this object"
9300     },
9301     {
9302      "name": "refresh",
9303      "sig": "()",
9304      "type": "function",
9305      "desc": "Force a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the {@link #setUrl} method has not been called.\n  This does not activate the panel, just updates its content."
9306     },
9307     {
9308      "name": "releaseCapture",
9309      "sig": "(Observable o)",
9310      "type": "function",
9311      "desc": "Removes <b>all</b> added captures from the Observable."
9312     },
9313     {
9314      "name": "removeListener",
9315      "sig": "(String eventName, Function handler, Object scope)",
9316      "type": "function",
9317      "desc": "Removes a listener"
9318     },
9319     {
9320      "name": "setContent",
9321      "sig": "(String content, Boolean loadScripts)",
9322      "type": "function",
9323      "desc": "Updates this panel's element"
9324     },
9325     {
9326      "name": "setTitle",
9327      "sig": "(String title)",
9328      "type": "function",
9329      "desc": "Set this panel's title"
9330     },
9331     {
9332      "name": "setUrl",
9333      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
9334      "type": "function",
9335      "desc": "Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL."
9336     },
9337     {
9338      "name": "un",
9339      "sig": "(String eventName, Function handler, Object scope)",
9340      "type": "function",
9341      "desc": "Removes a listener (shorthand for removeListener)"
9342     }
9343    ]
9344   },
9345   "Roo.PagingToolbar": {
9346    "props": [
9347     {
9348      "name": "dataSource",
9349      "type": "Roo.data.Store",
9350      "desc": "The underlying data store providing the paged data",
9351      "memberOf": ""
9352     },
9353     {
9354      "name": "container",
9355      "type": "String/HTMLElement/Element",
9356      "desc": "container The id or element that will contain the toolbar",
9357      "memberOf": ""
9358     },
9359     {
9360      "name": "displayInfo",
9361      "type": "Boolean",
9362      "desc": "True to display the displayMsg (defaults to false)",
9363      "memberOf": ""
9364     },
9365     {
9366      "name": "pageSize",
9367      "type": "Number",
9368      "desc": "The number of records to display per page (defaults to 20)",
9369      "memberOf": ""
9370     },
9371     {
9372      "name": "displayMsg",
9373      "type": "String",
9374      "desc": "The paging status message to display (defaults to \"Displaying {start} - {end} of {total}\")",
9375      "memberOf": ""
9376     },
9377     {
9378      "name": "emptyMsg",
9379      "type": "String",
9380      "desc": "The message to display when no records are found (defaults to \"No data to display\")",
9381      "memberOf": ""
9382     },
9383     {
9384      "name": "items",
9385      "type": "Array",
9386      "desc": "array of button configs or elements to add (will be converted to a MixedCollection)",
9387      "memberOf": "Roo"
9388     }
9389    ],
9390    "events": [],
9391    "methods": [
9392     {
9393      "name": "add",
9394      "sig": "(Mixed arg1, Mixed arg2)",
9395      "type": "function",
9396      "desc": "Adds element(s) to the toolbar -- this function takes a variable number of \narguments of mixed type and adds them to the toolbar."
9397     },
9398     {
9399      "name": "addButton",
9400      "sig": "(Object/Array config)",
9401      "type": "function",
9402      "desc": "Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config."
9403     },
9404     {
9405      "name": "addDom",
9406      "sig": "(Object config)",
9407      "type": "function",
9408      "desc": "Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config."
9409     },
9410     {
9411      "name": "addElement",
9412      "sig": "(String/HTMLElement/Element el)",
9413      "type": "function",
9414      "desc": "Adds any standard HTML element to the toolbar"
9415     },
9416     {
9417      "name": "addField",
9418      "sig": "(Roo.form.Field field)",
9419      "type": "function",
9420      "desc": "Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).\nNote: the field should not have been rendered yet. For a field that has already been\nrendered, use {@link #addElement}."
9421     },
9422     {
9423      "name": "addFill",
9424      "sig": "()",
9425      "type": "function",
9426      "desc": "Adds a fill element that forces subsequent additions to the right side of the toolbar"
9427     },
9428     {
9429      "name": "addItem",
9430      "sig": "(Roo.Toolbar.Item item)",
9431      "type": "function",
9432      "desc": "Adds any Toolbar.Item or subclass"
9433     },
9434     {
9435      "name": "addSeparator",
9436      "sig": "()",
9437      "type": "function",
9438      "desc": "Adds a separator"
9439     },
9440     {
9441      "name": "addSpacer",
9442      "sig": "()",
9443      "type": "function",
9444      "desc": "Adds a spacer element"
9445     },
9446     {
9447      "name": "addText",
9448      "sig": "(String text)",
9449      "type": "function",
9450      "desc": "Adds text to the toolbar"
9451     },
9452     {
9453      "name": "addxtype",
9454      "sig": "(Object xtype)",
9455      "type": "function",
9456      "desc": "Add an Xtype element"
9457     },
9458     {
9459      "name": "bind",
9460      "sig": "(Roo.data.Store store)",
9461      "type": "function",
9462      "desc": "Binds the paging toolbar to the specified {@link Roo.data.Store}"
9463     },
9464     {
9465      "name": "getEl",
9466      "sig": "()",
9467      "type": "function",
9468      "desc": "Returns the Element for this toolbar."
9469     },
9470     {
9471      "name": "hide",
9472      "sig": "()",
9473      "type": "function",
9474      "desc": "Hide the toolbar"
9475     },
9476     {
9477      "name": "insertButton",
9478      "sig": "(Number index, Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array) item)",
9479      "type": "function",
9480      "desc": "Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index."
9481     },
9482     {
9483      "name": "show",
9484      "sig": "()",
9485      "type": "function",
9486      "desc": "Show the toolbar"
9487     },
9488     {
9489      "name": "unbind",
9490      "sig": "(Roo.data.Store store)",
9491      "type": "function",
9492      "desc": "Unbinds the paging toolbar from the specified {@link Roo.data.Store}"
9493     }
9494    ]
9495   },
9496   "Roo.QuickTips": {
9497    "props": [],
9498    "events": [],
9499    "methods": [
9500     {
9501      "name": "disable",
9502      "sig": "()",
9503      "type": "function",
9504      "desc": "Disable this quick tip."
9505     },
9506     {
9507      "name": "enable",
9508      "sig": "()",
9509      "type": "function",
9510      "desc": "Enable this quick tip."
9511     },
9512     {
9513      "name": "init",
9514      "sig": "()",
9515      "type": "function",
9516      "desc": "Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access\nor display QuickTips in a page."
9517     },
9518     {
9519      "name": "isEnabled",
9520      "sig": "()",
9521      "type": "function",
9522      "desc": "Returns true if the quick tip is enabled, else false."
9523     },
9524     {
9525      "name": "register",
9526      "sig": "(Object config)",
9527      "type": "function",
9528      "desc": "Configures a new quick tip instance and assigns it to a target element.  The following config options\nare supported:\n<pre>\nProperty    Type                   Description\n----------  ---------------------  ------------------------------------------------------------------------\ntarget      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to\n</ul>"
9529     },
9530     {
9531      "name": "unregister",
9532      "sig": "(String/HTMLElement/Element el)",
9533      "type": "function",
9534      "desc": "Removes this quick tip from its element and destroys it."
9535     }
9536    ]
9537   },
9538   "Roo.ReaderLayout": {
9539    "props": [
9540     {
9541      "name": "listeners",
9542      "type": "Object",
9543      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
9544      "memberOf": "Roo.util.Observable"
9545     }
9546    ],
9547    "events": [
9548     {
9549      "name": "layout",
9550      "sig": "function (_self)\n{\n\n}",
9551      "type": "function",
9552      "desc": "Fires when a layout is performed."
9553     },
9554     {
9555      "name": "regioncollapsed",
9556      "sig": "function (region)\n{\n\n}",
9557      "type": "function",
9558      "desc": "Fires when a region is collapsed."
9559     },
9560     {
9561      "name": "regionexpanded",
9562      "sig": "function (region)\n{\n\n}",
9563      "type": "function",
9564      "desc": "Fires when a region is expanded."
9565     },
9566     {
9567      "name": "regionresized",
9568      "sig": "function (region, newSize)\n{\n\n}",
9569      "type": "function",
9570      "desc": "Fires when the user resizes a region."
9571     }
9572    ],
9573    "methods": [
9574     {
9575      "name": "add",
9576      "sig": "(String target, Roo.ContentPanel panel)",
9577      "type": "function",
9578      "desc": "Adds a ContentPanel (or subclass) to this layout."
9579     },
9580     {
9581      "name": "addEvents",
9582      "sig": "(Object object)",
9583      "type": "function",
9584      "desc": "Used to define events on this Observable"
9585     },
9586     {
9587      "name": "addListener",
9588      "sig": "(String eventName, Function handler, Object scope, Object options)",
9589      "type": "function",
9590      "desc": "Appends an event handler to this component"
9591     },
9592     {
9593      "name": "addRegion",
9594      "sig": "(String target, Object config)",
9595      "type": "function",
9596      "desc": "Creates and adds a new region if it doesn't already exist."
9597     },
9598     {
9599      "name": "addxtype",
9600      "sig": "(Object cfg)",
9601      "type": "function",
9602      "desc": "Adds a xtype elements to the layout.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'ContentPanel',\n       region: 'west',\n       items: [ .... ]\n   }\n);\n\nlayout.addxtype({\n        xtype : 'NestedLayoutPanel',\n        region: 'west',\n        layout: {\n           center: { },\n           west: { }   \n        },\n        items : [ ... list of content panels or nested layout panels.. ]\n   }\n);\n</code></pre>"
9603     },
9604     {
9605      "name": "batchAdd",
9606      "sig": "(Object regions)",
9607      "type": "function",
9608      "desc": "Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config\nobject should contain properties for each region to add ContentPanels to, and each property's value should be\na valid ContentPanel config object.  Example:\n<pre><code>\n// Create the main layout\nvar layout = new Roo.BorderLayout('main-ct', {\n    west: {\n        split:true,\n        minSize: 175,\n        titlebar: true\n    },\n    center: {\n        title:'Components'\n    }\n}, 'main-ct');\n\n// Create and add multiple ContentPanels at once via configs\nlayout.batchAdd({\n   west: {\n       id: 'source-files',\n       autoCreate:true,\n       title:'Ext Source Files',\n       autoScroll:true,\n       fitToFrame:true\n   },\n   center : {\n       el: cview,\n       autoScroll:true,\n       fitToFrame:true,\n       toolbar: tb,\n       resizeEl:'cbody'\n   }\n});\n</code></pre>"
9609     },
9610     {
9611      "name": "beginUpdate",
9612      "sig": "()",
9613      "type": "function",
9614      "desc": "Suspend the LayoutManager from doing auto-layouts while\nmaking multiple add or remove calls"
9615     },
9616     {
9617      "name": "capture",
9618      "sig": "(Observable o, Function fn, Object scope)",
9619      "type": "function",
9620      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
9621     },
9622     {
9623      "name": "create",
9624      "sig": "( config,  targetEl)",
9625      "type": "function",
9626      "desc": "Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling\nthe beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be\nprovided with each region config, which allows you to add ContentPanel configs in addition to the region configs\nduring creation.  The following code is equivalent to the constructor-based example at the beginning of this class:\n<pre><code>\n// shorthand\nvar CP = Roo.ContentPanel;\n\nvar layout = Roo.BorderLayout.create({\n    north: {\n        initialSize: 25,\n        titlebar: false,\n        panels: [new CP(\"north\", \"North\")]\n    },\n    west: {\n        split:true,\n        initialSize: 200,\n        minSize: 175,\n        maxSize: 400,\n        titlebar: true,\n        collapsible: true,\n        panels: [new CP(\"west\", {title: \"West\"})]\n    },\n    east: {\n        split:true,\n        initialSize: 202,\n        minSize: 175,\n        maxSize: 400,\n        titlebar: true,\n        collapsible: true,\n        panels: [new CP(\"autoTabs\", {title: \"Auto Tabs\", closable: true})]\n    },\n    south: {\n        split:true,\n        initialSize: 100,\n        minSize: 100,\n        maxSize: 200,\n        titlebar: true,\n        collapsible: true,\n        panels: [new CP(\"south\", {title: \"South\", closable: true})]\n    },\n    center: {\n        titlebar: true,\n        autoScroll:true,\n        resizeTabs: true,\n        minTabWidth: 50,\n        preferredTabWidth: 150,\n        panels: [\n            new CP(\"center1\", {title: \"Close Me\", closable: true}),\n            new CP(\"center2\", {title: \"Center Panel\", closable: false})\n        ]\n    }\n}, document.body);\n\nlayout.getRegion(\"center\").showPanel(\"center1\");\n</code></pre>"
9627     },
9628     {
9629      "name": "endUpdate",
9630      "sig": "(Boolean noLayout)",
9631      "type": "function",
9632      "desc": "Restore auto-layouts and optionally disable the manager from performing a layout"
9633     },
9634     {
9635      "name": "findPanel",
9636      "sig": "(String panelId)",
9637      "type": "function",
9638      "desc": "Searches all regions for a panel with the specified id"
9639     },
9640     {
9641      "name": "fireEvent",
9642      "sig": "(String eventName, Object... args)",
9643      "type": "function",
9644      "desc": "Fires the specified event with the passed parameters (minus the event name)."
9645     },
9646     {
9647      "name": "getEl",
9648      "sig": "()",
9649      "type": "function",
9650      "desc": "Returns the Element this layout is bound to."
9651     },
9652     {
9653      "name": "getRegion",
9654      "sig": "(String target)",
9655      "type": "function",
9656      "desc": "Returns the specified region."
9657     },
9658     {
9659      "name": "getViewSize",
9660      "sig": "()",
9661      "type": "function",
9662      "desc": "Returns the size of the current view. This method normalizes document.body and element embedded layouts and\nperforms box-model adjustments."
9663     },
9664     {
9665      "name": "hasListener",
9666      "sig": "(String eventName)",
9667      "type": "function",
9668      "desc": "Checks to see if this object has any listeners for a specified event"
9669     },
9670     {
9671      "name": "isUpdating",
9672      "sig": "()",
9673      "type": "function",
9674      "desc": "Returns true if this layout is currently being updated"
9675     },
9676     {
9677      "name": "layout",
9678      "sig": "()",
9679      "type": "function",
9680      "desc": "Performs a layout update."
9681     },
9682     {
9683      "name": "on",
9684      "sig": "(String eventName, Function handler, Object scope, Object options)",
9685      "type": "function",
9686      "desc": "Appends an event handler to this element (shorthand for addListener)"
9687     },
9688     {
9689      "name": "purgeListeners",
9690      "sig": "()",
9691      "type": "function",
9692      "desc": "Removes all listeners for this object"
9693     },
9694     {
9695      "name": "releaseCapture",
9696      "sig": "(Observable o)",
9697      "type": "function",
9698      "desc": "Removes <b>all</b> added captures from the Observable."
9699     },
9700     {
9701      "name": "remove",
9702      "sig": "(String target, Number/String/Roo.ContentPanel panel)",
9703      "type": "function",
9704      "desc": "Remove a ContentPanel (or subclass) to this layout."
9705     },
9706     {
9707      "name": "removeListener",
9708      "sig": "(String eventName, Function handler, Object scope)",
9709      "type": "function",
9710      "desc": "Removes a listener"
9711     },
9712     {
9713      "name": "restoreState",
9714      "sig": "(Roo.state.Provider provider)",
9715      "type": "function",
9716      "desc": "Restores this layout's state using Roo.state.Manager or the state provided by the passed provider."
9717     },
9718     {
9719      "name": "showPanel",
9720      "sig": "(String/ContentPanel panelId)",
9721      "type": "function",
9722      "desc": "Searches all regions for a panel with the specified id and activates (shows) it."
9723     },
9724     {
9725      "name": "un",
9726      "sig": "(String eventName, Function handler, Object scope)",
9727      "type": "function",
9728      "desc": "Removes a listener (shorthand for removeListener)"
9729     }
9730    ]
9731   },
9732   "Roo.Resizable": {
9733    "props": [
9734     {
9735      "name": "resizeChild",
9736      "type": "Boolean/String/Element",
9737      "desc": "True to resize the first child, or id/element to resize (defaults to false)",
9738      "memberOf": ""
9739     },
9740     {
9741      "name": "adjustments",
9742      "type": "Array/String",
9743      "desc": "String \"auto\" or an array [width, height] with values to be <b>added</b> to the\nresize operation's new size (defaults to [0, 0])",
9744      "memberOf": ""
9745     },
9746     {
9747      "name": "minWidth",
9748      "type": "Number",
9749      "desc": "The minimum width for the element (defaults to 5)",
9750      "memberOf": ""
9751     },
9752     {
9753      "name": "minHeight",
9754      "type": "Number",
9755      "desc": "The minimum height for the element (defaults to 5)",
9756      "memberOf": ""
9757     },
9758     {
9759      "name": "maxWidth",
9760      "type": "Number",
9761      "desc": "The maximum width for the element (defaults to 10000)",
9762      "memberOf": ""
9763     },
9764     {
9765      "name": "maxHeight",
9766      "type": "Number",
9767      "desc": "The maximum height for the element (defaults to 10000)",
9768      "memberOf": ""
9769     },
9770     {
9771      "name": "enabled",
9772      "type": "Boolean",
9773      "desc": "False to disable resizing (defaults to true)",
9774      "memberOf": ""
9775     },
9776     {
9777      "name": "wrap",
9778      "type": "Boolean",
9779      "desc": "True to wrap an element with a div if needed (required for textareas and images, defaults to false)",
9780      "memberOf": ""
9781     },
9782     {
9783      "name": "width",
9784      "type": "Number",
9785      "desc": "The width of the element in pixels (defaults to null)",
9786      "memberOf": ""
9787     },
9788     {
9789      "name": "height",
9790      "type": "Number",
9791      "desc": "The height of the element in pixels (defaults to null)",
9792      "memberOf": ""
9793     },
9794     {
9795      "name": "animate",
9796      "type": "Boolean",
9797      "desc": "True to animate the resize (not compatible with dynamic sizing, defaults to false)",
9798      "memberOf": ""
9799     },
9800     {
9801      "name": "duration",
9802      "type": "Number",
9803      "desc": "Animation duration if animate = true (defaults to .35)",
9804      "memberOf": ""
9805     },
9806     {
9807      "name": "dynamic",
9808      "type": "Boolean",
9809      "desc": "True to resize the element while dragging instead of using a proxy (defaults to false)",
9810      "memberOf": ""
9811     },
9812     {
9813      "name": "handles",
9814      "type": "String",
9815      "desc": "String consisting of the resize handles to display (defaults to undefined)",
9816      "memberOf": ""
9817     },
9818     {
9819      "name": "multiDirectional",
9820      "type": "Boolean",
9821      "desc": "<b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated\nin favor of the handles config option (defaults to false)",
9822      "memberOf": ""
9823     },
9824     {
9825      "name": "disableTrackOver",
9826      "type": "Boolean",
9827      "desc": "True to disable mouse tracking. This is only applied at config time. (defaults to false)",
9828      "memberOf": ""
9829     },
9830     {
9831      "name": "easing",
9832      "type": "String",
9833      "desc": "Animation easing if animate = true (defaults to 'easingOutStrong')",
9834      "memberOf": ""
9835     },
9836     {
9837      "name": "widthIncrement",
9838      "type": "Number",
9839      "desc": "The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)",
9840      "memberOf": ""
9841     },
9842     {
9843      "name": "heightIncrement",
9844      "type": "Number",
9845      "desc": "The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)",
9846      "memberOf": ""
9847     },
9848     {
9849      "name": "pinned",
9850      "type": "Boolean",
9851      "desc": "True to ensure that the resize handles are always visible, false to display them only when the\nuser mouses over the resizable borders. This is only applied at config time. (defaults to false)",
9852      "memberOf": ""
9853     },
9854     {
9855      "name": "preserveRatio",
9856      "type": "Boolean",
9857      "desc": "True to preserve the original ratio between height and width during resize (defaults to false)",
9858      "memberOf": ""
9859     },
9860     {
9861      "name": "transparent",
9862      "type": "Boolean",
9863      "desc": "True for transparent handles. This is only applied at config time. (defaults to false)",
9864      "memberOf": ""
9865     },
9866     {
9867      "name": "minX",
9868      "type": "Number",
9869      "desc": "The minimum allowed page X for the element (only used for west resizing, defaults to 0)",
9870      "memberOf": ""
9871     },
9872     {
9873      "name": "minY",
9874      "type": "Number",
9875      "desc": "The minimum allowed page Y for the element (only used for north resizing, defaults to 0)",
9876      "memberOf": ""
9877     },
9878     {
9879      "name": "draggable",
9880      "type": "Boolean",
9881      "desc": "Convenience to initialize drag drop (defaults to false)",
9882      "memberOf": ""
9883     },
9884     {
9885      "name": "constrainTo",
9886      "type": "String/HTMLElement/Element",
9887      "desc": "Constrain the resize to a particular element",
9888      "memberOf": ""
9889     },
9890     {
9891      "name": "resizeRegion",
9892      "type": "Roo.lib.Region",
9893      "desc": "Constrain the resize to a particular region",
9894      "memberOf": ""
9895     },
9896     {
9897      "name": "listeners",
9898      "type": "Object",
9899      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
9900      "memberOf": "Roo.util.Observable"
9901     }
9902    ],
9903    "events": [
9904     {
9905      "name": "beforeresize",
9906      "sig": "function (_self, e)\n{\n\n}",
9907      "type": "function",
9908      "desc": "Fired before resize is allowed. Set enabled to false to cancel resize."
9909     },
9910     {
9911      "name": "resize",
9912      "sig": "function (_self, width, height, e)\n{\n\n}",
9913      "type": "function",
9914      "desc": "Fired after a resize."
9915     },
9916     {
9917      "name": "resizing",
9918      "sig": "function (_self, x, y, w, h, e)\n{\n\n}",
9919      "type": "function",
9920      "desc": "Fired a resizing."
9921     }
9922    ],
9923    "methods": [
9924     {
9925      "name": "addEvents",
9926      "sig": "(Object object)",
9927      "type": "function",
9928      "desc": "Used to define events on this Observable"
9929     },
9930     {
9931      "name": "addListener",
9932      "sig": "(String eventName, Function handler, Object scope, Object options)",
9933      "type": "function",
9934      "desc": "Appends an event handler to this component"
9935     },
9936     {
9937      "name": "capture",
9938      "sig": "(Observable o, Function fn, Object scope)",
9939      "type": "function",
9940      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
9941     },
9942     {
9943      "name": "destroy",
9944      "sig": "(Boolean removeEl)",
9945      "type": "function",
9946      "desc": "Destroys this resizable. If the element was wrapped and\nremoveEl is not true then the element remains."
9947     },
9948     {
9949      "name": "fireEvent",
9950      "sig": "(String eventName, Object... args)",
9951      "type": "function",
9952      "desc": "Fires the specified event with the passed parameters (minus the event name)."
9953     },
9954     {
9955      "name": "getEl",
9956      "sig": "()",
9957      "type": "function",
9958      "desc": "Returns the element this component is bound to."
9959     },
9960     {
9961      "name": "getResizeChild",
9962      "sig": "()",
9963      "type": "function",
9964      "desc": "Returns the resizeChild element (or null)."
9965     },
9966     {
9967      "name": "hasListener",
9968      "sig": "(String eventName)",
9969      "type": "function",
9970      "desc": "Checks to see if this object has any listeners for a specified event"
9971     },
9972     {
9973      "name": "on",
9974      "sig": "(String eventName, Function handler, Object scope, Object options)",
9975      "type": "function",
9976      "desc": "Appends an event handler to this element (shorthand for addListener)"
9977     },
9978     {
9979      "name": "purgeListeners",
9980      "sig": "()",
9981      "type": "function",
9982      "desc": "Removes all listeners for this object"
9983     },
9984     {
9985      "name": "releaseCapture",
9986      "sig": "(Observable o)",
9987      "type": "function",
9988      "desc": "Removes <b>all</b> added captures from the Observable."
9989     },
9990     {
9991      "name": "removeListener",
9992      "sig": "(String eventName, Function handler, Object scope)",
9993      "type": "function",
9994      "desc": "Removes a listener"
9995     },
9996     {
9997      "name": "resizeTo",
9998      "sig": "(Number width, Number height)",
9999      "type": "function",
10000      "desc": "Perform a manual resize"
10001     },
10002     {
10003      "name": "un",
10004      "sig": "(String eventName, Function handler, Object scope)",
10005      "type": "function",
10006      "desc": "Removes a listener (shorthand for removeListener)"
10007     }
10008    ]
10009   },
10010   "Roo.Shadow": {
10011    "props": [
10012     {
10013      "name": "mode",
10014      "type": "String",
10015      "desc": "The shadow display mode.  Supports the following options:<br />\nsides: Shadow displays on both sides and bottom only<br />\nframe: Shadow displays equally on all four sides<br />\ndrop: Traditional bottom-right drop shadow (default)",
10016      "memberOf": "Roo"
10017     },
10018     {
10019      "name": "offset",
10020      "type": "String",
10021      "desc": "The number of pixels to offset the shadow from the element (defaults to 4)",
10022      "memberOf": ""
10023     }
10024    ],
10025    "events": [],
10026    "methods": [
10027     {
10028      "name": "hide",
10029      "sig": "()",
10030      "type": "function",
10031      "desc": "Hides this shadow"
10032     },
10033     {
10034      "name": "isVisible",
10035      "sig": "()",
10036      "type": "function",
10037      "desc": "Returns true if the shadow is visible, else false"
10038     },
10039     {
10040      "name": "realign",
10041      "sig": "(Number left, Number top, Number width, Number height)",
10042      "type": "function",
10043      "desc": "Direct alignment when values are already available. Show must be called at least once before\ncalling this method to ensure it is initialized."
10044     },
10045     {
10046      "name": "setZIndex",
10047      "sig": "(Number zindex)",
10048      "type": "function",
10049      "desc": "Adjust the z-index of this shadow"
10050     },
10051     {
10052      "name": "show",
10053      "sig": "(String/HTMLElement/Element targetEl)",
10054      "type": "function",
10055      "desc": "Displays the shadow under the target element"
10056     }
10057    ]
10058   },
10059   "Roo.SplitBar": {
10060    "props": [
10061     {
10062      "name": "listeners",
10063      "type": "Object",
10064      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
10065      "memberOf": "Roo.util.Observable"
10066     }
10067    ],
10068    "events": [
10069     {
10070      "name": "beforeresize",
10071      "sig": "function (_self)\n{\n\n}",
10072      "type": "function",
10073      "desc": "Fires before the splitter is dragged"
10074     },
10075     {
10076      "name": "moved",
10077      "sig": "function (_self, newSize)\n{\n\n}",
10078      "type": "function",
10079      "desc": "Fires when the splitter is moved"
10080     },
10081     {
10082      "name": "resize",
10083      "sig": "function (_self, newSize)\n{\n\n}",
10084      "type": "function",
10085      "desc": "Fires when the splitter is moved (alias for {@link #event-moved})"
10086     }
10087    ],
10088    "methods": [
10089     {
10090      "name": "addEvents",
10091      "sig": "(Object object)",
10092      "type": "function",
10093      "desc": "Used to define events on this Observable"
10094     },
10095     {
10096      "name": "addListener",
10097      "sig": "(String eventName, Function handler, Object scope, Object options)",
10098      "type": "function",
10099      "desc": "Appends an event handler to this component"
10100     },
10101     {
10102      "name": "capture",
10103      "sig": "(Observable o, Function fn, Object scope)",
10104      "type": "function",
10105      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
10106     },
10107     {
10108      "name": "destroy",
10109      "sig": "(Boolean removeEl)",
10110      "type": "function",
10111      "desc": "Destroy this splitbar."
10112     },
10113     {
10114      "name": "fireEvent",
10115      "sig": "(String eventName, Object... args)",
10116      "type": "function",
10117      "desc": "Fires the specified event with the passed parameters (minus the event name)."
10118     },
10119     {
10120      "name": "getAdapter",
10121      "sig": "()",
10122      "type": "function",
10123      "desc": "Get the adapter this SplitBar uses"
10124     },
10125     {
10126      "name": "getMaximumSize",
10127      "sig": "()",
10128      "type": "function",
10129      "desc": "Gets the maximum size for the resizing element"
10130     },
10131     {
10132      "name": "getMinimumSize",
10133      "sig": "()",
10134      "type": "function",
10135      "desc": "Gets the minimum size for the resizing element"
10136     },
10137     {
10138      "name": "hasListener",
10139      "sig": "(String eventName)",
10140      "type": "function",
10141      "desc": "Checks to see if this object has any listeners for a specified event"
10142     },
10143     {
10144      "name": "on",
10145      "sig": "(String eventName, Function handler, Object scope, Object options)",
10146      "type": "function",
10147      "desc": "Appends an event handler to this element (shorthand for addListener)"
10148     },
10149     {
10150      "name": "purgeListeners",
10151      "sig": "()",
10152      "type": "function",
10153      "desc": "Removes all listeners for this object"
10154     },
10155     {
10156      "name": "releaseCapture",
10157      "sig": "(Observable o)",
10158      "type": "function",
10159      "desc": "Removes <b>all</b> added captures from the Observable."
10160     },
10161     {
10162      "name": "removeListener",
10163      "sig": "(String eventName, Function handler, Object scope)",
10164      "type": "function",
10165      "desc": "Removes a listener"
10166     },
10167     {
10168      "name": "setAdapter",
10169      "sig": "(Object adapter)",
10170      "type": "function",
10171      "desc": "Set the adapter this SplitBar uses"
10172     },
10173     {
10174      "name": "setCurrentSize",
10175      "sig": "(Number size)",
10176      "type": "function",
10177      "desc": "Sets the initialize size for the resizing element"
10178     },
10179     {
10180      "name": "setMaximumSize",
10181      "sig": "(Number maxSize)",
10182      "type": "function",
10183      "desc": "Sets the maximum size for the resizing element"
10184     },
10185     {
10186      "name": "setMinimumSize",
10187      "sig": "(Number minSize)",
10188      "type": "function",
10189      "desc": "Sets the minimum size for the resizing element"
10190     },
10191     {
10192      "name": "un",
10193      "sig": "(String eventName, Function handler, Object scope)",
10194      "type": "function",
10195      "desc": "Removes a listener (shorthand for removeListener)"
10196     }
10197    ]
10198   },
10199   "Roo.SplitBar.AbsoluteLayoutAdapter": {
10200    "props": [],
10201    "events": [],
10202    "methods": [
10203     {
10204      "name": "getElementSize",
10205      "sig": "(Roo.SplitBar s)",
10206      "type": "function",
10207      "desc": "Called before drag operations to get the current size of the resizing element."
10208     },
10209     {
10210      "name": "setElementSize",
10211      "sig": "(Roo.SplitBar s, Number newSize, Function onComplete)",
10212      "type": "function",
10213      "desc": "Called after drag operations to set the size of the resizing element."
10214     }
10215    ]
10216   },
10217   "Roo.SplitBar.BasicLayoutAdapter": {
10218    "props": [],
10219    "events": [],
10220    "methods": [
10221     {
10222      "name": "getElementSize",
10223      "sig": "(Roo.SplitBar s)",
10224      "type": "function",
10225      "desc": "Called before drag operations to get the current size of the resizing element."
10226     },
10227     {
10228      "name": "setElementSize",
10229      "sig": "(Roo.SplitBar s, Number newSize, Function onComplete)",
10230      "type": "function",
10231      "desc": "Called after drag operations to set the size of the resizing element."
10232     }
10233    ]
10234   },
10235   "Roo.SplitButton": {
10236    "props": [
10237     {
10238      "name": "arrowHandler",
10239      "type": "Function",
10240      "desc": "A function called when the arrow button is clicked (can be used instead of click event)",
10241      "memberOf": ""
10242     },
10243     {
10244      "name": "arrowTooltip",
10245      "type": "String",
10246      "desc": "The title attribute of the arrow",
10247      "memberOf": ""
10248     },
10249     {
10250      "name": "text",
10251      "type": "String",
10252      "desc": "The button text",
10253      "memberOf": "Roo.Button"
10254     },
10255     {
10256      "name": "icon",
10257      "type": "String",
10258      "desc": "The path to an image to display in the button (the image will be set as the background-image\nCSS property of the button by default, so if you want a mixed icon/text button, set cls:\"x-btn-text-icon\")",
10259      "memberOf": "Roo.Button"
10260     },
10261     {
10262      "name": "handler",
10263      "type": "Function",
10264      "desc": "A function called when the button is clicked (can be used instead of click event)",
10265      "memberOf": "Roo.Button"
10266     },
10267     {
10268      "name": "scope",
10269      "type": "Object",
10270      "desc": "The scope of the handler",
10271      "memberOf": "Roo.Button"
10272     },
10273     {
10274      "name": "minWidth",
10275      "type": "Number",
10276      "desc": "The minimum width for this button (used to give a set of buttons a common width)",
10277      "memberOf": "Roo.Button"
10278     },
10279     {
10280      "name": "tooltip",
10281      "type": "String/Object",
10282      "desc": "The tooltip for the button - can be a string or QuickTips config object",
10283      "memberOf": "Roo.Button"
10284     },
10285     {
10286      "name": "hidden",
10287      "type": "Boolean",
10288      "desc": "True to start hidden (defaults to false)",
10289      "memberOf": "Roo.Button"
10290     },
10291     {
10292      "name": "disabled",
10293      "type": "Boolean",
10294      "desc": "True to start disabled (defaults to false)",
10295      "memberOf": "Roo.Button"
10296     },
10297     {
10298      "name": "pressed",
10299      "type": "Boolean",
10300      "desc": "True to start pressed (only if enableToggle = true)",
10301      "memberOf": "Roo.Button"
10302     },
10303     {
10304      "name": "toggleGroup",
10305      "type": "String",
10306      "desc": "The group this toggle button is a member of (only 1 per group can be pressed, only\n   applies if enableToggle = true)",
10307      "memberOf": "Roo.Button"
10308     },
10309     {
10310      "name": "renderTo",
10311      "type": "String/HTMLElement/Element",
10312      "desc": "The element to append the button to",
10313      "memberOf": "Roo.Button"
10314     },
10315     {
10316      "name": "repeat",
10317      "type": "Boolean/Object",
10318      "desc": "True to repeat fire the click event while the mouse is down. This can also be\n  an {@link Roo.util.ClickRepeater} config object (defaults to false).",
10319      "memberOf": "Roo.Button"
10320     },
10321     {
10322      "name": "cls",
10323      "type": "String",
10324      "desc": "A CSS class to apply to the button's main element.",
10325      "memberOf": "Roo.Button"
10326     },
10327     {
10328      "name": "tabIndex",
10329      "type": "Number",
10330      "desc": "The DOM tabIndex for this button (defaults to undefined)",
10331      "memberOf": "Roo.Button"
10332     },
10333     {
10334      "name": "enableToggle",
10335      "type": "Boolean",
10336      "desc": "True to enable pressed/not pressed toggling (defaults to false)",
10337      "memberOf": "Roo.Button"
10338     },
10339     {
10340      "name": "menu",
10341      "type": "Mixed",
10342      "desc": "Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).",
10343      "memberOf": "Roo.Button"
10344     },
10345     {
10346      "name": "menuAlign",
10347      "type": "String",
10348      "desc": "The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').",
10349      "memberOf": "Roo.Button"
10350     },
10351     {
10352      "name": "iconCls",
10353      "type": "String",
10354      "desc": "A css class which sets a background image to be used as the icon for this button (defaults to undefined).",
10355      "memberOf": "Roo.Button"
10356     },
10357     {
10358      "name": "type",
10359      "type": "String",
10360      "desc": "The button's type, corresponding to the DOM input element type attribute.  Either \"submit,\" \"reset\" or \"button\" (default).",
10361      "memberOf": "Roo.Button"
10362     },
10363     {
10364      "name": "clickEvent",
10365      "type": "String",
10366      "desc": "The type of event to map to the button's event handler (defaults to 'click')",
10367      "memberOf": "Roo.Button"
10368     },
10369     {
10370      "name": "handleMouseEvents",
10371      "type": "Boolean",
10372      "desc": "False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)",
10373      "memberOf": "Roo.Button"
10374     },
10375     {
10376      "name": "tooltipType",
10377      "type": "String",
10378      "desc": "The type of tooltip to use. Either \"qtip\" (default) for QuickTips or \"title\" for title attribute.",
10379      "memberOf": "Roo.Button"
10380     },
10381     {
10382      "name": "template",
10383      "type": "Roo.Template",
10384      "desc": "(Optional)\nAn {@link Roo.Template} with which to create the Button's main element. This Template must\ncontain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could\nrequire code modifications if required elements (e.g. a button) aren't present.",
10385      "memberOf": "Roo.Button"
10386     },
10387     {
10388      "name": "listeners",
10389      "type": "Object",
10390      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
10391      "memberOf": "Roo.util.Observable"
10392     }
10393    ],
10394    "events": [
10395     {
10396      "name": "arrowclick",
10397      "sig": "function (_self, e)\n{\n\n}",
10398      "type": "function",
10399      "desc": "Fires when this button's arrow is clicked"
10400     },
10401     {
10402      "name": "click",
10403      "sig": "function (_self, e)\n{\n\n}",
10404      "type": "function",
10405      "desc": "Fires when this button is clicked"
10406     },
10407     {
10408      "name": "mouseout",
10409      "sig": "function (_self, e)\n{\n\n}",
10410      "type": "function",
10411      "desc": "Fires when the mouse exits the button"
10412     },
10413     {
10414      "name": "mouseover",
10415      "sig": "function (_self, e)\n{\n\n}",
10416      "type": "function",
10417      "desc": "Fires when the mouse hovers over the button"
10418     },
10419     {
10420      "name": "render",
10421      "sig": "function (_self)\n{\n\n}",
10422      "type": "function",
10423      "desc": "Fires when the button is rendered"
10424     },
10425     {
10426      "name": "toggle",
10427      "sig": "function (_self, pressed)\n{\n\n}",
10428      "type": "function",
10429      "desc": "Fires when the \"pressed\" state of this button changes (only if enableToggle = true)"
10430     }
10431    ],
10432    "methods": [
10433     {
10434      "name": "addEvents",
10435      "sig": "(Object object)",
10436      "type": "function",
10437      "desc": "Used to define events on this Observable"
10438     },
10439     {
10440      "name": "addListener",
10441      "sig": "(String eventName, Function handler, Object scope, Object options)",
10442      "type": "function",
10443      "desc": "Appends an event handler to this component"
10444     },
10445     {
10446      "name": "capture",
10447      "sig": "(Observable o, Function fn, Object scope)",
10448      "type": "function",
10449      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
10450     },
10451     {
10452      "name": "destroy",
10453      "sig": "()",
10454      "type": "function",
10455      "desc": "Destroys this Button and removes any listeners."
10456     },
10457     {
10458      "name": "disable",
10459      "sig": "()",
10460      "type": "function",
10461      "desc": "Disable this button"
10462     },
10463     {
10464      "name": "enable",
10465      "sig": "()",
10466      "type": "function",
10467      "desc": "Enable this button"
10468     },
10469     {
10470      "name": "fireEvent",
10471      "sig": "(String eventName, Object... args)",
10472      "type": "function",
10473      "desc": "Fires the specified event with the passed parameters (minus the event name)."
10474     },
10475     {
10476      "name": "focus",
10477      "sig": "()",
10478      "type": "function",
10479      "desc": "Focus the button"
10480     },
10481     {
10482      "name": "getEl",
10483      "sig": "()",
10484      "type": "function",
10485      "desc": "Returns the button's underlying element"
10486     },
10487     {
10488      "name": "getText",
10489      "sig": "()",
10490      "type": "function",
10491      "desc": "Gets the text for this button"
10492     },
10493     {
10494      "name": "hasListener",
10495      "sig": "(String eventName)",
10496      "type": "function",
10497      "desc": "Checks to see if this object has any listeners for a specified event"
10498     },
10499     {
10500      "name": "hide",
10501      "sig": "()",
10502      "type": "function",
10503      "desc": "Hide this button"
10504     },
10505     {
10506      "name": "on",
10507      "sig": "(String eventName, Function handler, Object scope, Object options)",
10508      "type": "function",
10509      "desc": "Appends an event handler to this element (shorthand for addListener)"
10510     },
10511     {
10512      "name": "purgeListeners",
10513      "sig": "()",
10514      "type": "function",
10515      "desc": "Removes all listeners for this object"
10516     },
10517     {
10518      "name": "releaseCapture",
10519      "sig": "(Observable o)",
10520      "type": "function",
10521      "desc": "Removes <b>all</b> added captures from the Observable."
10522     },
10523     {
10524      "name": "removeListener",
10525      "sig": "(String eventName, Function handler, Object scope)",
10526      "type": "function",
10527      "desc": "Removes a listener"
10528     },
10529     {
10530      "name": "setArrowHandler",
10531      "sig": "(Function handler, Object scope)",
10532      "type": "function",
10533      "desc": "Sets this button's arrow click handler"
10534     },
10535     {
10536      "name": "setDisabled",
10537      "sig": "(Boolean enabled)",
10538      "type": "function",
10539      "desc": "Convenience function for boolean enable/disable"
10540     },
10541     {
10542      "name": "setHandler",
10543      "sig": "(Function handler, Object scope)",
10544      "type": "function",
10545      "desc": "Sets this button's click handler"
10546     },
10547     {
10548      "name": "setText",
10549      "sig": "(String text)",
10550      "type": "function",
10551      "desc": "Sets this button's text"
10552     },
10553     {
10554      "name": "setVisible",
10555      "sig": "(Boolean visible)",
10556      "type": "function",
10557      "desc": "Convenience function for boolean show/hide"
10558     },
10559     {
10560      "name": "show",
10561      "sig": "()",
10562      "type": "function",
10563      "desc": "Show this button"
10564     },
10565     {
10566      "name": "toggle",
10567      "sig": "(Boolean state)",
10568      "type": "function",
10569      "desc": "If a state it passed, it becomes the pressed state otherwise the current state is toggled."
10570     },
10571     {
10572      "name": "un",
10573      "sig": "(String eventName, Function handler, Object scope)",
10574      "type": "function",
10575      "desc": "Removes a listener (shorthand for removeListener)"
10576     }
10577    ]
10578   },
10579   "Roo.SplitLayoutRegion": {
10580    "props": [
10581     {
10582      "name": "collapsible",
10583      "type": "Boolean",
10584      "desc": "False to disable collapsing (defaults to true)",
10585      "memberOf": "Roo.LayoutRegion"
10586     },
10587     {
10588      "name": "collapsed",
10589      "type": "Boolean",
10590      "desc": "True to set the initial display to collapsed (defaults to false)",
10591      "memberOf": "Roo.LayoutRegion"
10592     },
10593     {
10594      "name": "floatable",
10595      "type": "Boolean",
10596      "desc": "False to disable floating (defaults to true)",
10597      "memberOf": "Roo.LayoutRegion"
10598     },
10599     {
10600      "name": "margins",
10601      "type": "Object",
10602      "desc": "Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})",
10603      "memberOf": "Roo.LayoutRegion"
10604     },
10605     {
10606      "name": "cmargins",
10607      "type": "Object",
10608      "desc": "Margins for the element when collapsed (defaults to: north/south {top: 2, left: 0, right:0, bottom: 2} or east/west {top: 0, left: 2, right:2, bottom: 0})",
10609      "memberOf": "Roo.LayoutRegion"
10610     },
10611     {
10612      "name": "tabPosition",
10613      "type": "String",
10614      "desc": "\"top\" or \"bottom\" (defaults to \"bottom\")",
10615      "memberOf": "Roo.LayoutRegion",
10616      "optvals": [
10617       "top",
10618       "bottom"
10619      ]
10620     },
10621     {
10622      "name": "collapsedTitle",
10623      "type": "String",
10624      "desc": "Optional string message to display in the collapsed block of a north or south region",
10625      "memberOf": "Roo.LayoutRegion"
10626     },
10627     {
10628      "name": "alwaysShowTabs",
10629      "type": "Boolean",
10630      "desc": "True to always display tabs even when there is only 1 panel (defaults to false)",
10631      "memberOf": "Roo.LayoutRegion"
10632     },
10633     {
10634      "name": "autoScroll",
10635      "type": "Boolean",
10636      "desc": "True to enable overflow scrolling (defaults to false)",
10637      "memberOf": "Roo.LayoutRegion"
10638     },
10639     {
10640      "name": "titlebar",
10641      "type": "Boolean",
10642      "desc": "True to display a title bar (defaults to true)",
10643      "memberOf": "Roo.LayoutRegion"
10644     },
10645     {
10646      "name": "title",
10647      "type": "String",
10648      "desc": "The title for the region (overrides panel titles)",
10649      "memberOf": "Roo.LayoutRegion"
10650     },
10651     {
10652      "name": "animate",
10653      "type": "Boolean",
10654      "desc": "True to animate expand/collapse (defaults to false)",
10655      "memberOf": "Roo.LayoutRegion"
10656     },
10657     {
10658      "name": "autoHide",
10659      "type": "Boolean",
10660      "desc": "False to disable auto hiding when the mouse leaves the \"floated\" region (defaults to true)",
10661      "memberOf": "Roo.LayoutRegion"
10662     },
10663     {
10664      "name": "preservePanels",
10665      "type": "Boolean",
10666      "desc": "True to preserve removed panels so they can be readded later (defaults to false)",
10667      "memberOf": "Roo.LayoutRegion"
10668     },
10669     {
10670      "name": "closeOnTab",
10671      "type": "Boolean",
10672      "desc": "True to place the close icon on the tabs instead of the region titlebar (defaults to false)",
10673      "memberOf": "Roo.LayoutRegion"
10674     },
10675     {
10676      "name": "hideTabs",
10677      "type": "Boolean",
10678      "desc": "True to hide the tab strip (defaults to false)",
10679      "memberOf": "Roo.LayoutRegion"
10680     },
10681     {
10682      "name": "resizeTabs",
10683      "type": "Boolean",
10684      "desc": "True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within\n                     the space available, similar to FireFox 1.5 tabs (defaults to false)",
10685      "memberOf": "Roo.LayoutRegion"
10686     },
10687     {
10688      "name": "minTabWidth",
10689      "type": "Number",
10690      "desc": "The minimum tab width (defaults to 40)",
10691      "memberOf": "Roo.LayoutRegion"
10692     },
10693     {
10694      "name": "preferredTabWidth",
10695      "type": "Number",
10696      "desc": "The preferred tab width (defaults to 150)",
10697      "memberOf": "Roo.LayoutRegion"
10698     },
10699     {
10700      "name": "showPin",
10701      "type": "Boolean",
10702      "desc": "True to show a pin button",
10703      "memberOf": "Roo.LayoutRegion"
10704     },
10705     {
10706      "name": "hidden",
10707      "type": "Boolean",
10708      "desc": "True to start the region hidden (defaults to false)",
10709      "memberOf": "Roo.LayoutRegion"
10710     },
10711     {
10712      "name": "hideWhenEmpty",
10713      "type": "Boolean",
10714      "desc": "True to hide the region when it has no panels",
10715      "memberOf": "Roo.LayoutRegion"
10716     },
10717     {
10718      "name": "disableTabTips",
10719      "type": "Boolean",
10720      "desc": "True to disable tab tooltips",
10721      "memberOf": "Roo.LayoutRegion"
10722     },
10723     {
10724      "name": "width",
10725      "type": "Number",
10726      "desc": "For East/West panels",
10727      "memberOf": "Roo.LayoutRegion"
10728     },
10729     {
10730      "name": "height",
10731      "type": "Number",
10732      "desc": "For North/South panels",
10733      "memberOf": "Roo.LayoutRegion"
10734     },
10735     {
10736      "name": "split",
10737      "type": "Boolean",
10738      "desc": "To show the splitter",
10739      "memberOf": "Roo.LayoutRegion"
10740     },
10741     {
10742      "name": "toolbar",
10743      "type": "Boolean",
10744      "desc": "xtype configuration for a toolbar - shows on right of tabbar",
10745      "memberOf": "Roo.LayoutRegion"
10746     },
10747     {
10748      "name": "listeners",
10749      "type": "Object",
10750      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
10751      "memberOf": "Roo.util.Observable"
10752     }
10753    ],
10754    "events": [
10755     {
10756      "name": "beforecollapse",
10757      "sig": "function (_self)\n{\n\n}",
10758      "type": "function",
10759      "desc": "Fires when this region before collapse."
10760     },
10761     {
10762      "name": "beforeremove",
10763      "sig": "function (_self, panel, e)\n{\n\n}",
10764      "type": "function",
10765      "desc": "Fires before a panel is removed (or closed). To cancel the removal set \"e.cancel = true\" on the event argument."
10766     },
10767     {
10768      "name": "collapsed",
10769      "sig": "function (_self)\n{\n\n}",
10770      "type": "function",
10771      "desc": "Fires when this region is collapsed."
10772     },
10773     {
10774      "name": "expanded",
10775      "sig": "function (_self)\n{\n\n}",
10776      "type": "function",
10777      "desc": "Fires when this region is expanded."
10778     },
10779     {
10780      "name": "invalidated",
10781      "sig": "function (_self)\n{\n\n}",
10782      "type": "function",
10783      "desc": "Fires when the layout for this region is changed."
10784     },
10785     {
10786      "name": "panelactivated",
10787      "sig": "function (_self, panel)\n{\n\n}",
10788      "type": "function",
10789      "desc": "Fires when a panel is activated."
10790     },
10791     {
10792      "name": "paneladded",
10793      "sig": "function (_self, panel)\n{\n\n}",
10794      "type": "function",
10795      "desc": "Fires when a panel is added."
10796     },
10797     {
10798      "name": "panelremoved",
10799      "sig": "function (_self, panel)\n{\n\n}",
10800      "type": "function",
10801      "desc": "Fires when a panel is removed."
10802     },
10803     {
10804      "name": "resized",
10805      "sig": "function (_self, newSize)\n{\n\n}",
10806      "type": "function",
10807      "desc": "Fires when the user resizes this region."
10808     },
10809     {
10810      "name": "slidehide",
10811      "sig": "function (_self)\n{\n\n}",
10812      "type": "function",
10813      "desc": "Fires when this region slides out of view."
10814     },
10815     {
10816      "name": "slideshow",
10817      "sig": "function (_self)\n{\n\n}",
10818      "type": "function",
10819      "desc": "Fires when this region is slid into view."
10820     },
10821     {
10822      "name": "visibilitychange",
10823      "sig": "function (_self, visibility)\n{\n\n}",
10824      "type": "function",
10825      "desc": "Fires when this region is shown or hidden"
10826     }
10827    ],
10828    "methods": [
10829     {
10830      "name": "add",
10831      "sig": "(ContentPanel... panel)",
10832      "type": "function",
10833      "desc": "Adds the passed ContentPanel(s) to this region."
10834     },
10835     {
10836      "name": "addEvents",
10837      "sig": "(Object object)",
10838      "type": "function",
10839      "desc": "Used to define events on this Observable"
10840     },
10841     {
10842      "name": "addListener",
10843      "sig": "(String eventName, Function handler, Object scope, Object options)",
10844      "type": "function",
10845      "desc": "Appends an event handler to this component"
10846     },
10847     {
10848      "name": "capture",
10849      "sig": "(Observable o, Function fn, Object scope)",
10850      "type": "function",
10851      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
10852     },
10853     {
10854      "name": "collapse",
10855      "sig": "(Boolean skipAnim)",
10856      "type": "function",
10857      "desc": "Collapses this region."
10858     },
10859     {
10860      "name": "expand",
10861      "sig": "(Roo.EventObject e, Boolean skipAnim)",
10862      "type": "function",
10863      "desc": "Expands this region if it was previously collapsed."
10864     },
10865     {
10866      "name": "fireEvent",
10867      "sig": "(String eventName, Object... args)",
10868      "type": "function",
10869      "desc": "Fires the specified event with the passed parameters (minus the event name)."
10870     },
10871     {
10872      "name": "getActivePanel",
10873      "sig": "()",
10874      "type": "function",
10875      "desc": "Get the active panel for this region."
10876     },
10877     {
10878      "name": "getEl",
10879      "sig": "()",
10880      "type": "function",
10881      "desc": "Returns the container element for this region."
10882     },
10883     {
10884      "name": "getPanel",
10885      "sig": "(Number/String/ContentPanel panel)",
10886      "type": "function",
10887      "desc": "Returns the panel specified or null if it's not in this region."
10888     },
10889     {
10890      "name": "getPosition",
10891      "sig": "()",
10892      "type": "function",
10893      "desc": "Returns this regions position (north/south/east/west/center)."
10894     },
10895     {
10896      "name": "getSplitBar",
10897      "sig": "()",
10898      "type": "function",
10899      "desc": "Returns the {@link Roo.SplitBar} for this region."
10900     },
10901     {
10902      "name": "getTabs",
10903      "sig": "()",
10904      "type": "function",
10905      "desc": "Returns the TabPanel component used by this region"
10906     },
10907     {
10908      "name": "hasListener",
10909      "sig": "(String eventName)",
10910      "type": "function",
10911      "desc": "Checks to see if this object has any listeners for a specified event"
10912     },
10913     {
10914      "name": "hasPanel",
10915      "sig": "(Number/String/ContentPanel panel)",
10916      "type": "function",
10917      "desc": "Returns true if the panel is in this region."
10918     },
10919     {
10920      "name": "hide",
10921      "sig": "()",
10922      "type": "function",
10923      "desc": "Hides this region."
10924     },
10925     {
10926      "name": "hidePanel",
10927      "sig": "(Number/String/ContentPanel panel)",
10928      "type": "function",
10929      "desc": "Hides the tab for the specified panel."
10930     },
10931     {
10932      "name": "isVisible",
10933      "sig": "()",
10934      "type": "function",
10935      "desc": "Returns true if this region is currently visible."
10936     },
10937     {
10938      "name": "on",
10939      "sig": "(String eventName, Function handler, Object scope, Object options)",
10940      "type": "function",
10941      "desc": "Appends an event handler to this element (shorthand for addListener)"
10942     },
10943     {
10944      "name": "purgeListeners",
10945      "sig": "()",
10946      "type": "function",
10947      "desc": "Removes all listeners for this object"
10948     },
10949     {
10950      "name": "releaseCapture",
10951      "sig": "(Observable o)",
10952      "type": "function",
10953      "desc": "Removes <b>all</b> added captures from the Observable."
10954     },
10955     {
10956      "name": "remove",
10957      "sig": "(Number/String/ContentPanel panel, Boolean preservePanel)",
10958      "type": "function",
10959      "desc": "Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed."
10960     },
10961     {
10962      "name": "removeListener",
10963      "sig": "(String eventName, Function handler, Object scope)",
10964      "type": "function",
10965      "desc": "Removes a listener"
10966     },
10967     {
10968      "name": "resizeTo",
10969      "sig": "(Number newSize)",
10970      "type": "function",
10971      "desc": "Resizes the region to the specified size. For vertical regions (west, east) this adjusts \nthe width, for horizontal (north, south) the height."
10972     },
10973     {
10974      "name": "setCollapsedTitle",
10975      "sig": "(String title)",
10976      "type": "function",
10977      "desc": "Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)"
10978     },
10979     {
10980      "name": "show",
10981      "sig": "()",
10982      "type": "function",
10983      "desc": "Shows this region if it was previously hidden."
10984     },
10985     {
10986      "name": "showPanel",
10987      "sig": "(Number/String/ContentPanel panelId)",
10988      "type": "function",
10989      "desc": "Shows the specified panel."
10990     },
10991     {
10992      "name": "un",
10993      "sig": "(String eventName, Function handler, Object scope)",
10994      "type": "function",
10995      "desc": "Removes a listener (shorthand for removeListener)"
10996     },
10997     {
10998      "name": "unhidePanel",
10999      "sig": "(Number/String/ContentPanel panel)",
11000      "type": "function",
11001      "desc": "Unhides the tab for a previously hidden panel."
11002     }
11003    ]
11004   },
11005   "Roo.TabPanel": {
11006    "props": [
11007     {
11008      "name": "listeners",
11009      "type": "Object",
11010      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
11011      "memberOf": "Roo.util.Observable"
11012     }
11013    ],
11014    "events": [
11015     {
11016      "name": "beforetabchange",
11017      "sig": "function (_self, e, tab)\n{\n\n}",
11018      "type": "function",
11019      "desc": "Fires before the active tab changes, set cancel to true on the \"e\" parameter to cancel the change"
11020     },
11021     {
11022      "name": "tabchange",
11023      "sig": "function (_self, activePanel)\n{\n\n}",
11024      "type": "function",
11025      "desc": "Fires when the active tab changes"
11026     }
11027    ],
11028    "methods": [
11029     {
11030      "name": "activate",
11031      "sig": "(String/Number id)",
11032      "type": "function",
11033      "desc": "Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated."
11034     },
11035     {
11036      "name": "addEvents",
11037      "sig": "(Object object)",
11038      "type": "function",
11039      "desc": "Used to define events on this Observable"
11040     },
11041     {
11042      "name": "addListener",
11043      "sig": "(String eventName, Function handler, Object scope, Object options)",
11044      "type": "function",
11045      "desc": "Appends an event handler to this component"
11046     },
11047     {
11048      "name": "addTab",
11049      "sig": "(String id, String text, String content, Boolean closable)",
11050      "type": "function",
11051      "desc": "Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one."
11052     },
11053     {
11054      "name": "addTabItem",
11055      "sig": "(Roo.TabPanelItem item)",
11056      "type": "function",
11057      "desc": "Adds an existing {@link Roo.TabPanelItem}."
11058     },
11059     {
11060      "name": "autoSizeTabs",
11061      "sig": "()",
11062      "type": "function",
11063      "desc": "Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)"
11064     },
11065     {
11066      "name": "beginUpdate",
11067      "sig": "()",
11068      "type": "function",
11069      "desc": "Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)"
11070     },
11071     {
11072      "name": "capture",
11073      "sig": "(Observable o, Function fn, Object scope)",
11074      "type": "function",
11075      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
11076     },
11077     {
11078      "name": "destroy",
11079      "sig": "(Boolean removeEl)",
11080      "type": "function",
11081      "desc": "Destroys this TabPanel"
11082     },
11083     {
11084      "name": "disableTab",
11085      "sig": "(String/Number id)",
11086      "type": "function",
11087      "desc": "Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored."
11088     },
11089     {
11090      "name": "enableTab",
11091      "sig": "(String/Number id)",
11092      "type": "function",
11093      "desc": "Enables a {@link Roo.TabPanelItem} that is disabled."
11094     },
11095     {
11096      "name": "endUpdate",
11097      "sig": "()",
11098      "type": "function",
11099      "desc": "Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)"
11100     },
11101     {
11102      "name": "fireEvent",
11103      "sig": "(String eventName, Object... args)",
11104      "type": "function",
11105      "desc": "Fires the specified event with the passed parameters (minus the event name)."
11106     },
11107     {
11108      "name": "getActiveTab",
11109      "sig": "()",
11110      "type": "function",
11111      "desc": "Gets the active {@link Roo.TabPanelItem}."
11112     },
11113     {
11114      "name": "getCount",
11115      "sig": "()",
11116      "type": "function",
11117      "desc": "Returns the number of tabs in this TabPanel."
11118     },
11119     {
11120      "name": "getTab",
11121      "sig": "(String/Number id)",
11122      "type": "function",
11123      "desc": "Returns the {@link Roo.TabPanelItem} with the specified id/index"
11124     },
11125     {
11126      "name": "hasListener",
11127      "sig": "(String eventName)",
11128      "type": "function",
11129      "desc": "Checks to see if this object has any listeners for a specified event"
11130     },
11131     {
11132      "name": "hideTab",
11133      "sig": "(String/Number id)",
11134      "type": "function",
11135      "desc": "Hides the {@link Roo.TabPanelItem} with the specified id/index"
11136     },
11137     {
11138      "name": "on",
11139      "sig": "(String eventName, Function handler, Object scope, Object options)",
11140      "type": "function",
11141      "desc": "Appends an event handler to this element (shorthand for addListener)"
11142     },
11143     {
11144      "name": "purgeListeners",
11145      "sig": "()",
11146      "type": "function",
11147      "desc": "Removes all listeners for this object"
11148     },
11149     {
11150      "name": "releaseCapture",
11151      "sig": "(Observable o)",
11152      "type": "function",
11153      "desc": "Removes <b>all</b> added captures from the Observable."
11154     },
11155     {
11156      "name": "removeListener",
11157      "sig": "(String eventName, Function handler, Object scope)",
11158      "type": "function",
11159      "desc": "Removes a listener"
11160     },
11161     {
11162      "name": "removeTab",
11163      "sig": "(String/Number id)",
11164      "type": "function",
11165      "desc": "Removes a {@link Roo.TabPanelItem}."
11166     },
11167     {
11168      "name": "setTabWidth",
11169      "sig": "(Number The)",
11170      "type": "function",
11171      "desc": "Resizes all the tabs to the passed width"
11172     },
11173     {
11174      "name": "syncHeight",
11175      "sig": "(Number targetHeight)",
11176      "type": "function",
11177      "desc": "Updates the tab body element to fit the height of the container element\nfor overflow scrolling"
11178     },
11179     {
11180      "name": "un",
11181      "sig": "(String eventName, Function handler, Object scope)",
11182      "type": "function",
11183      "desc": "Removes a listener (shorthand for removeListener)"
11184     },
11185     {
11186      "name": "unhideTab",
11187      "sig": "(String/Number id)",
11188      "type": "function",
11189      "desc": "\"Unhides\" the {@link Roo.TabPanelItem} with the specified id/index."
11190     }
11191    ]
11192   },
11193   "Roo.TabPanelItem": {
11194    "props": [
11195     {
11196      "name": "listeners",
11197      "type": "Object",
11198      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
11199      "memberOf": "Roo.util.Observable"
11200     }
11201    ],
11202    "events": [
11203     {
11204      "name": "activate",
11205      "sig": "function (tabPanel, _self)\n{\n\n}",
11206      "type": "function",
11207      "desc": "Fires when this tab becomes the active tab."
11208     },
11209     {
11210      "name": "beforeclose",
11211      "sig": "function (_self, e)\n{\n\n}",
11212      "type": "function",
11213      "desc": "Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true)."
11214     },
11215     {
11216      "name": "close",
11217      "sig": "function (_self)\n{\n\n}",
11218      "type": "function",
11219      "desc": "Fires when this tab is closed."
11220     },
11221     {
11222      "name": "deactivate",
11223      "sig": "function (tabPanel, _self)\n{\n\n}",
11224      "type": "function",
11225      "desc": "Fires when this tab is no longer the active tab."
11226     }
11227    ],
11228    "methods": [
11229     {
11230      "name": "activate",
11231      "sig": "()",
11232      "type": "function",
11233      "desc": "Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem."
11234     },
11235     {
11236      "name": "addEvents",
11237      "sig": "(Object object)",
11238      "type": "function",
11239      "desc": "Used to define events on this Observable"
11240     },
11241     {
11242      "name": "addListener",
11243      "sig": "(String eventName, Function handler, Object scope, Object options)",
11244      "type": "function",
11245      "desc": "Appends an event handler to this component"
11246     },
11247     {
11248      "name": "capture",
11249      "sig": "(Observable o, Function fn, Object scope)",
11250      "type": "function",
11251      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
11252     },
11253     {
11254      "name": "disable",
11255      "sig": "()",
11256      "type": "function",
11257      "desc": "Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem."
11258     },
11259     {
11260      "name": "enable",
11261      "sig": "()",
11262      "type": "function",
11263      "desc": "Enables this TabPanelItem if it was previously disabled."
11264     },
11265     {
11266      "name": "fireEvent",
11267      "sig": "(String eventName, Object... args)",
11268      "type": "function",
11269      "desc": "Fires the specified event with the passed parameters (minus the event name)."
11270     },
11271     {
11272      "name": "getText",
11273      "sig": "()",
11274      "type": "function",
11275      "desc": "Returns the text for this tab"
11276     },
11277     {
11278      "name": "getUpdateManager",
11279      "sig": "()",
11280      "type": "function",
11281      "desc": "Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates."
11282     },
11283     {
11284      "name": "hasListener",
11285      "sig": "(String eventName)",
11286      "type": "function",
11287      "desc": "Checks to see if this object has any listeners for a specified event"
11288     },
11289     {
11290      "name": "hide",
11291      "sig": "()",
11292      "type": "function",
11293      "desc": "Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd."
11294     },
11295     {
11296      "name": "isActive",
11297      "sig": "()",
11298      "type": "function",
11299      "desc": "Returns true if this tab is the active tab."
11300     },
11301     {
11302      "name": "isHidden",
11303      "sig": "()",
11304      "type": "function",
11305      "desc": "Returns true if this tab is \"hidden\""
11306     },
11307     {
11308      "name": "on",
11309      "sig": "(String eventName, Function handler, Object scope, Object options)",
11310      "type": "function",
11311      "desc": "Appends an event handler to this element (shorthand for addListener)"
11312     },
11313     {
11314      "name": "purgeListeners",
11315      "sig": "()",
11316      "type": "function",
11317      "desc": "Removes all listeners for this object"
11318     },
11319     {
11320      "name": "refresh",
11321      "sig": "()",
11322      "type": "function",
11323      "desc": "Forces a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the setUrl method has not been called.\n  This does not activate the panel, just updates its content."
11324     },
11325     {
11326      "name": "releaseCapture",
11327      "sig": "(Observable o)",
11328      "type": "function",
11329      "desc": "Removes <b>all</b> added captures from the Observable."
11330     },
11331     {
11332      "name": "removeListener",
11333      "sig": "(String eventName, Function handler, Object scope)",
11334      "type": "function",
11335      "desc": "Removes a listener"
11336     },
11337     {
11338      "name": "setContent",
11339      "sig": "(String content, Boolean loadScripts)",
11340      "type": "function",
11341      "desc": "Sets the content for this TabPanelItem."
11342     },
11343     {
11344      "name": "setHidden",
11345      "sig": "(Boolean hidden)",
11346      "type": "function",
11347      "desc": "Show or hide the tab"
11348     },
11349     {
11350      "name": "setText",
11351      "sig": "(String text)",
11352      "type": "function",
11353      "desc": "Sets the text for the tab (Note: this also sets the tooltip text)"
11354     },
11355     {
11356      "name": "setTooltip",
11357      "sig": "(String tooltip)",
11358      "type": "function",
11359      "desc": "Set the tooltip for the tab."
11360     },
11361     {
11362      "name": "setUrl",
11363      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
11364      "type": "function",
11365      "desc": "Set a URL to be used to load the content for this TabPanelItem."
11366     },
11367     {
11368      "name": "show",
11369      "sig": "()",
11370      "type": "function",
11371      "desc": "Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem."
11372     },
11373     {
11374      "name": "un",
11375      "sig": "(String eventName, Function handler, Object scope)",
11376      "type": "function",
11377      "desc": "Removes a listener (shorthand for removeListener)"
11378     }
11379    ]
11380   },
11381   "Roo.Template": {
11382    "props": [
11383     {
11384      "name": "url",
11385      "type": "String",
11386      "desc": "The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..\n                   it should be fixed so that template is observable...",
11387      "memberOf": ""
11388     },
11389     {
11390      "name": "html",
11391      "type": "String",
11392      "desc": "The HTML fragment or an array of fragments to join(\"\") or multiple arguments to join(\"\")",
11393      "memberOf": ""
11394     }
11395    ],
11396    "events": [],
11397    "methods": [
11398     {
11399      "name": "append",
11400      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
11401      "type": "function",
11402      "desc": "Applies the supplied values to the template and appends the new node(s) to el."
11403     },
11404     {
11405      "name": "apply",
11406      "sig": "()",
11407      "type": "function",
11408      "desc": "Alias for {@link #applyTemplate}"
11409     },
11410     {
11411      "name": "applyTemplate",
11412      "sig": "(Object values)",
11413      "type": "function",
11414      "desc": "Returns an HTML fragment of this template with the specified values applied."
11415     },
11416     {
11417      "name": "compile",
11418      "sig": "()",
11419      "type": "function",
11420      "desc": "Compiles the template into an internal function, eliminating the RegEx overhead."
11421     },
11422     {
11423      "name": "from",
11424      "sig": "(String/HTMLElement el)",
11425      "type": "function",
11426      "desc": "Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML."
11427     },
11428     {
11429      "name": "insertAfter",
11430      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
11431      "type": "function",
11432      "desc": "Applies the supplied values to the template and inserts the new node(s) after el."
11433     },
11434     {
11435      "name": "insertBefore",
11436      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
11437      "type": "function",
11438      "desc": "Applies the supplied values to the template and inserts the new node(s) before el."
11439     },
11440     {
11441      "name": "insertFirst",
11442      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
11443      "type": "function",
11444      "desc": "Applies the supplied values to the template and inserts the new node(s) as the first child of el."
11445     },
11446     {
11447      "name": "overwrite",
11448      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
11449      "type": "function",
11450      "desc": "Applies the supplied values to the template and overwrites the content of el with the new node(s)."
11451     },
11452     {
11453      "name": "set",
11454      "sig": "(String html, Boolean compile)",
11455      "type": "function",
11456      "desc": "Sets the HTML used as the template and optionally compiles it."
11457     }
11458    ]
11459   },
11460   "Roo.Toolbar": {
11461    "props": [
11462     {
11463      "name": "items",
11464      "type": "Array",
11465      "desc": "array of button configs or elements to add (will be converted to a MixedCollection)",
11466      "memberOf": "Roo"
11467     },
11468     {
11469      "name": "container",
11470      "type": "String/HTMLElement/Element",
11471      "desc": "The id or element that will contain the toolbar",
11472      "memberOf": ""
11473     }
11474    ],
11475    "events": [],
11476    "methods": [
11477     {
11478      "name": "add",
11479      "sig": "(Mixed arg1, Mixed arg2)",
11480      "type": "function",
11481      "desc": "Adds element(s) to the toolbar -- this function takes a variable number of \narguments of mixed type and adds them to the toolbar."
11482     },
11483     {
11484      "name": "addButton",
11485      "sig": "(Object/Array config)",
11486      "type": "function",
11487      "desc": "Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config."
11488     },
11489     {
11490      "name": "addDom",
11491      "sig": "(Object config)",
11492      "type": "function",
11493      "desc": "Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config."
11494     },
11495     {
11496      "name": "addElement",
11497      "sig": "(String/HTMLElement/Element el)",
11498      "type": "function",
11499      "desc": "Adds any standard HTML element to the toolbar"
11500     },
11501     {
11502      "name": "addField",
11503      "sig": "(Roo.form.Field field)",
11504      "type": "function",
11505      "desc": "Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).\nNote: the field should not have been rendered yet. For a field that has already been\nrendered, use {@link #addElement}."
11506     },
11507     {
11508      "name": "addFill",
11509      "sig": "()",
11510      "type": "function",
11511      "desc": "Adds a fill element that forces subsequent additions to the right side of the toolbar"
11512     },
11513     {
11514      "name": "addItem",
11515      "sig": "(Roo.Toolbar.Item item)",
11516      "type": "function",
11517      "desc": "Adds any Toolbar.Item or subclass"
11518     },
11519     {
11520      "name": "addSeparator",
11521      "sig": "()",
11522      "type": "function",
11523      "desc": "Adds a separator"
11524     },
11525     {
11526      "name": "addSpacer",
11527      "sig": "()",
11528      "type": "function",
11529      "desc": "Adds a spacer element"
11530     },
11531     {
11532      "name": "addText",
11533      "sig": "(String text)",
11534      "type": "function",
11535      "desc": "Adds text to the toolbar"
11536     },
11537     {
11538      "name": "addxtype",
11539      "sig": "(Object xtype)",
11540      "type": "function",
11541      "desc": "Add an Xtype element"
11542     },
11543     {
11544      "name": "getEl",
11545      "sig": "()",
11546      "type": "function",
11547      "desc": "Returns the Element for this toolbar."
11548     },
11549     {
11550      "name": "hide",
11551      "sig": "()",
11552      "type": "function",
11553      "desc": "Hide the toolbar"
11554     },
11555     {
11556      "name": "insertButton",
11557      "sig": "(Number index, Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array) item)",
11558      "type": "function",
11559      "desc": "Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index."
11560     },
11561     {
11562      "name": "show",
11563      "sig": "()",
11564      "type": "function",
11565      "desc": "Show the toolbar"
11566     }
11567    ]
11568   },
11569   "Roo.Toolbar.Button": {
11570    "props": [
11571     {
11572      "name": "text",
11573      "type": "String",
11574      "desc": "The button text",
11575      "memberOf": "Roo.Button"
11576     },
11577     {
11578      "name": "icon",
11579      "type": "String",
11580      "desc": "The path to an image to display in the button (the image will be set as the background-image\nCSS property of the button by default, so if you want a mixed icon/text button, set cls:\"x-btn-text-icon\")",
11581      "memberOf": "Roo.Button"
11582     },
11583     {
11584      "name": "handler",
11585      "type": "Function",
11586      "desc": "A function called when the button is clicked (can be used instead of click event)",
11587      "memberOf": "Roo.Button"
11588     },
11589     {
11590      "name": "scope",
11591      "type": "Object",
11592      "desc": "The scope of the handler",
11593      "memberOf": "Roo.Button"
11594     },
11595     {
11596      "name": "minWidth",
11597      "type": "Number",
11598      "desc": "The minimum width for this button (used to give a set of buttons a common width)",
11599      "memberOf": "Roo.Button"
11600     },
11601     {
11602      "name": "tooltip",
11603      "type": "String/Object",
11604      "desc": "The tooltip for the button - can be a string or QuickTips config object",
11605      "memberOf": "Roo.Button"
11606     },
11607     {
11608      "name": "hidden",
11609      "type": "Boolean",
11610      "desc": "True to start hidden (defaults to false)",
11611      "memberOf": "Roo.Button"
11612     },
11613     {
11614      "name": "disabled",
11615      "type": "Boolean",
11616      "desc": "True to start disabled (defaults to false)",
11617      "memberOf": "Roo.Button"
11618     },
11619     {
11620      "name": "pressed",
11621      "type": "Boolean",
11622      "desc": "True to start pressed (only if enableToggle = true)",
11623      "memberOf": "Roo.Button"
11624     },
11625     {
11626      "name": "toggleGroup",
11627      "type": "String",
11628      "desc": "The group this toggle button is a member of (only 1 per group can be pressed, only\n   applies if enableToggle = true)",
11629      "memberOf": "Roo.Button"
11630     },
11631     {
11632      "name": "renderTo",
11633      "type": "String/HTMLElement/Element",
11634      "desc": "The element to append the button to",
11635      "memberOf": "Roo.Button"
11636     },
11637     {
11638      "name": "repeat",
11639      "type": "Boolean/Object",
11640      "desc": "True to repeat fire the click event while the mouse is down. This can also be\n  an {@link Roo.util.ClickRepeater} config object (defaults to false).",
11641      "memberOf": "Roo.Button"
11642     },
11643     {
11644      "name": "cls",
11645      "type": "String",
11646      "desc": "A CSS class to apply to the button's main element.",
11647      "memberOf": "Roo.Button"
11648     },
11649     {
11650      "name": "tabIndex",
11651      "type": "Number",
11652      "desc": "The DOM tabIndex for this button (defaults to undefined)",
11653      "memberOf": "Roo.Button"
11654     },
11655     {
11656      "name": "enableToggle",
11657      "type": "Boolean",
11658      "desc": "True to enable pressed/not pressed toggling (defaults to false)",
11659      "memberOf": "Roo.Button"
11660     },
11661     {
11662      "name": "menu",
11663      "type": "Mixed",
11664      "desc": "Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).",
11665      "memberOf": "Roo.Button"
11666     },
11667     {
11668      "name": "menuAlign",
11669      "type": "String",
11670      "desc": "The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').",
11671      "memberOf": "Roo.Button"
11672     },
11673     {
11674      "name": "iconCls",
11675      "type": "String",
11676      "desc": "A css class which sets a background image to be used as the icon for this button (defaults to undefined).",
11677      "memberOf": "Roo.Button"
11678     },
11679     {
11680      "name": "type",
11681      "type": "String",
11682      "desc": "The button's type, corresponding to the DOM input element type attribute.  Either \"submit,\" \"reset\" or \"button\" (default).",
11683      "memberOf": "Roo.Button"
11684     },
11685     {
11686      "name": "clickEvent",
11687      "type": "String",
11688      "desc": "The type of event to map to the button's event handler (defaults to 'click')",
11689      "memberOf": "Roo.Button"
11690     },
11691     {
11692      "name": "handleMouseEvents",
11693      "type": "Boolean",
11694      "desc": "False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)",
11695      "memberOf": "Roo.Button"
11696     },
11697     {
11698      "name": "tooltipType",
11699      "type": "String",
11700      "desc": "The type of tooltip to use. Either \"qtip\" (default) for QuickTips or \"title\" for title attribute.",
11701      "memberOf": "Roo.Button"
11702     },
11703     {
11704      "name": "template",
11705      "type": "Roo.Template",
11706      "desc": "(Optional)\nAn {@link Roo.Template} with which to create the Button's main element. This Template must\ncontain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could\nrequire code modifications if required elements (e.g. a button) aren't present.",
11707      "memberOf": "Roo.Button"
11708     },
11709     {
11710      "name": "listeners",
11711      "type": "Object",
11712      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
11713      "memberOf": "Roo.util.Observable"
11714     }
11715    ],
11716    "events": [
11717     {
11718      "name": "click",
11719      "sig": "function (_self, e)\n{\n\n}",
11720      "type": "function",
11721      "desc": "Fires when this button is clicked"
11722     },
11723     {
11724      "name": "mouseout",
11725      "sig": "function (_self, e)\n{\n\n}",
11726      "type": "function",
11727      "desc": "Fires when the mouse exits the button"
11728     },
11729     {
11730      "name": "mouseover",
11731      "sig": "function (_self, e)\n{\n\n}",
11732      "type": "function",
11733      "desc": "Fires when the mouse hovers over the button"
11734     },
11735     {
11736      "name": "render",
11737      "sig": "function (_self)\n{\n\n}",
11738      "type": "function",
11739      "desc": "Fires when the button is rendered"
11740     },
11741     {
11742      "name": "toggle",
11743      "sig": "function (_self, pressed)\n{\n\n}",
11744      "type": "function",
11745      "desc": "Fires when the \"pressed\" state of this button changes (only if enableToggle = true)"
11746     }
11747    ],
11748    "methods": [
11749     {
11750      "name": "addEvents",
11751      "sig": "(Object object)",
11752      "type": "function",
11753      "desc": "Used to define events on this Observable"
11754     },
11755     {
11756      "name": "addListener",
11757      "sig": "(String eventName, Function handler, Object scope, Object options)",
11758      "type": "function",
11759      "desc": "Appends an event handler to this component"
11760     },
11761     {
11762      "name": "capture",
11763      "sig": "(Observable o, Function fn, Object scope)",
11764      "type": "function",
11765      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
11766     },
11767     {
11768      "name": "destroy",
11769      "sig": "()",
11770      "type": "function",
11771      "desc": "Removes and destroys this button"
11772     },
11773     {
11774      "name": "disable",
11775      "sig": "()",
11776      "type": "function",
11777      "desc": "Disables this item"
11778     },
11779     {
11780      "name": "enable",
11781      "sig": "()",
11782      "type": "function",
11783      "desc": "Enables this item"
11784     },
11785     {
11786      "name": "fireEvent",
11787      "sig": "(String eventName, Object... args)",
11788      "type": "function",
11789      "desc": "Fires the specified event with the passed parameters (minus the event name)."
11790     },
11791     {
11792      "name": "focus",
11793      "sig": "()",
11794      "type": "function",
11795      "desc": "Focus the button"
11796     },
11797     {
11798      "name": "getEl",
11799      "sig": "()",
11800      "type": "function",
11801      "desc": "Returns the button's underlying element"
11802     },
11803     {
11804      "name": "getText",
11805      "sig": "()",
11806      "type": "function",
11807      "desc": "Gets the text for this button"
11808     },
11809     {
11810      "name": "hasListener",
11811      "sig": "(String eventName)",
11812      "type": "function",
11813      "desc": "Checks to see if this object has any listeners for a specified event"
11814     },
11815     {
11816      "name": "hide",
11817      "sig": "()",
11818      "type": "function",
11819      "desc": "Hides this button"
11820     },
11821     {
11822      "name": "on",
11823      "sig": "(String eventName, Function handler, Object scope, Object options)",
11824      "type": "function",
11825      "desc": "Appends an event handler to this element (shorthand for addListener)"
11826     },
11827     {
11828      "name": "purgeListeners",
11829      "sig": "()",
11830      "type": "function",
11831      "desc": "Removes all listeners for this object"
11832     },
11833     {
11834      "name": "releaseCapture",
11835      "sig": "(Observable o)",
11836      "type": "function",
11837      "desc": "Removes <b>all</b> added captures from the Observable."
11838     },
11839     {
11840      "name": "removeListener",
11841      "sig": "(String eventName, Function handler, Object scope)",
11842      "type": "function",
11843      "desc": "Removes a listener"
11844     },
11845     {
11846      "name": "setDisabled",
11847      "sig": "(Boolean enabled)",
11848      "type": "function",
11849      "desc": "Convenience function for boolean enable/disable"
11850     },
11851     {
11852      "name": "setHandler",
11853      "sig": "(Function handler, Object scope)",
11854      "type": "function",
11855      "desc": "Assigns this button's click handler"
11856     },
11857     {
11858      "name": "setText",
11859      "sig": "(String text)",
11860      "type": "function",
11861      "desc": "Sets this button's text"
11862     },
11863     {
11864      "name": "setVisible",
11865      "sig": "(Boolean visible)",
11866      "type": "function",
11867      "desc": "Convenience function for boolean show/hide"
11868     },
11869     {
11870      "name": "show",
11871      "sig": "()",
11872      "type": "function",
11873      "desc": "Shows this button"
11874     },
11875     {
11876      "name": "toggle",
11877      "sig": "(Boolean state)",
11878      "type": "function",
11879      "desc": "If a state it passed, it becomes the pressed state otherwise the current state is toggled."
11880     },
11881     {
11882      "name": "un",
11883      "sig": "(String eventName, Function handler, Object scope)",
11884      "type": "function",
11885      "desc": "Removes a listener (shorthand for removeListener)"
11886     }
11887    ]
11888   },
11889   "Roo.Toolbar.Fill": {
11890    "props": [],
11891    "events": [
11892     {
11893      "name": "render",
11894      "sig": "function (_self)\n{\n\n}",
11895      "type": "function",
11896      "desc": "Fires when the button is rendered"
11897     }
11898    ],
11899    "methods": [
11900     {
11901      "name": "destroy",
11902      "sig": "()",
11903      "type": "function",
11904      "desc": "Removes and destroys this item."
11905     },
11906     {
11907      "name": "disable",
11908      "sig": "()",
11909      "type": "function",
11910      "desc": "Disables this item."
11911     },
11912     {
11913      "name": "enable",
11914      "sig": "()",
11915      "type": "function",
11916      "desc": "Enables this item."
11917     },
11918     {
11919      "name": "focus",
11920      "sig": "()",
11921      "type": "function",
11922      "desc": "Try to focus this item."
11923     },
11924     {
11925      "name": "getEl",
11926      "sig": "()",
11927      "type": "function",
11928      "desc": "Get this item's HTML Element"
11929     },
11930     {
11931      "name": "hide",
11932      "sig": "()",
11933      "type": "function",
11934      "desc": "Hides this item."
11935     },
11936     {
11937      "name": "setVisible",
11938      "sig": "(Boolean visible)",
11939      "type": "function",
11940      "desc": "Convenience function for boolean show/hide."
11941     },
11942     {
11943      "name": "show",
11944      "sig": "()",
11945      "type": "function",
11946      "desc": "Shows this item."
11947     }
11948    ]
11949   },
11950   "Roo.Toolbar.Item": {
11951    "props": [],
11952    "events": [
11953     {
11954      "name": "render",
11955      "sig": "function (_self)\n{\n\n}",
11956      "type": "function",
11957      "desc": "Fires when the button is rendered"
11958     }
11959    ],
11960    "methods": [
11961     {
11962      "name": "destroy",
11963      "sig": "()",
11964      "type": "function",
11965      "desc": "Removes and destroys this item."
11966     },
11967     {
11968      "name": "disable",
11969      "sig": "()",
11970      "type": "function",
11971      "desc": "Disables this item."
11972     },
11973     {
11974      "name": "enable",
11975      "sig": "()",
11976      "type": "function",
11977      "desc": "Enables this item."
11978     },
11979     {
11980      "name": "focus",
11981      "sig": "()",
11982      "type": "function",
11983      "desc": "Try to focus this item."
11984     },
11985     {
11986      "name": "getEl",
11987      "sig": "()",
11988      "type": "function",
11989      "desc": "Get this item's HTML Element"
11990     },
11991     {
11992      "name": "hide",
11993      "sig": "()",
11994      "type": "function",
11995      "desc": "Hides this item."
11996     },
11997     {
11998      "name": "setVisible",
11999      "sig": "(Boolean visible)",
12000      "type": "function",
12001      "desc": "Convenience function for boolean show/hide."
12002     },
12003     {
12004      "name": "show",
12005      "sig": "()",
12006      "type": "function",
12007      "desc": "Shows this item."
12008     }
12009    ]
12010   },
12011   "Roo.Toolbar.Separator": {
12012    "props": [],
12013    "events": [
12014     {
12015      "name": "render",
12016      "sig": "function (_self)\n{\n\n}",
12017      "type": "function",
12018      "desc": "Fires when the button is rendered"
12019     }
12020    ],
12021    "methods": [
12022     {
12023      "name": "destroy",
12024      "sig": "()",
12025      "type": "function",
12026      "desc": "Removes and destroys this item."
12027     },
12028     {
12029      "name": "disable",
12030      "sig": "()",
12031      "type": "function",
12032      "desc": "Disables this item."
12033     },
12034     {
12035      "name": "enable",
12036      "sig": "()",
12037      "type": "function",
12038      "desc": "Enables this item."
12039     },
12040     {
12041      "name": "focus",
12042      "sig": "()",
12043      "type": "function",
12044      "desc": "Try to focus this item."
12045     },
12046     {
12047      "name": "getEl",
12048      "sig": "()",
12049      "type": "function",
12050      "desc": "Get this item's HTML Element"
12051     },
12052     {
12053      "name": "hide",
12054      "sig": "()",
12055      "type": "function",
12056      "desc": "Hides this item."
12057     },
12058     {
12059      "name": "setVisible",
12060      "sig": "(Boolean visible)",
12061      "type": "function",
12062      "desc": "Convenience function for boolean show/hide."
12063     },
12064     {
12065      "name": "show",
12066      "sig": "()",
12067      "type": "function",
12068      "desc": "Shows this item."
12069     }
12070    ]
12071   },
12072   "Roo.Toolbar.Spacer": {
12073    "props": [],
12074    "events": [
12075     {
12076      "name": "render",
12077      "sig": "function (_self)\n{\n\n}",
12078      "type": "function",
12079      "desc": "Fires when the button is rendered"
12080     }
12081    ],
12082    "methods": [
12083     {
12084      "name": "destroy",
12085      "sig": "()",
12086      "type": "function",
12087      "desc": "Removes and destroys this item."
12088     },
12089     {
12090      "name": "disable",
12091      "sig": "()",
12092      "type": "function",
12093      "desc": "Disables this item."
12094     },
12095     {
12096      "name": "enable",
12097      "sig": "()",
12098      "type": "function",
12099      "desc": "Enables this item."
12100     },
12101     {
12102      "name": "focus",
12103      "sig": "()",
12104      "type": "function",
12105      "desc": "Try to focus this item."
12106     },
12107     {
12108      "name": "getEl",
12109      "sig": "()",
12110      "type": "function",
12111      "desc": "Get this item's HTML Element"
12112     },
12113     {
12114      "name": "hide",
12115      "sig": "()",
12116      "type": "function",
12117      "desc": "Hides this item."
12118     },
12119     {
12120      "name": "setVisible",
12121      "sig": "(Boolean visible)",
12122      "type": "function",
12123      "desc": "Convenience function for boolean show/hide."
12124     },
12125     {
12126      "name": "show",
12127      "sig": "()",
12128      "type": "function",
12129      "desc": "Shows this item."
12130     }
12131    ]
12132   },
12133   "Roo.Toolbar.SplitButton": {
12134    "props": [
12135     {
12136      "name": "arrowHandler",
12137      "type": "Function",
12138      "desc": "A function called when the arrow button is clicked (can be used instead of click event)",
12139      "memberOf": "Roo.SplitButton"
12140     },
12141     {
12142      "name": "arrowTooltip",
12143      "type": "String",
12144      "desc": "The title attribute of the arrow",
12145      "memberOf": "Roo.SplitButton"
12146     },
12147     {
12148      "name": "text",
12149      "type": "String",
12150      "desc": "The button text",
12151      "memberOf": "Roo.Button"
12152     },
12153     {
12154      "name": "icon",
12155      "type": "String",
12156      "desc": "The path to an image to display in the button (the image will be set as the background-image\nCSS property of the button by default, so if you want a mixed icon/text button, set cls:\"x-btn-text-icon\")",
12157      "memberOf": "Roo.Button"
12158     },
12159     {
12160      "name": "handler",
12161      "type": "Function",
12162      "desc": "A function called when the button is clicked (can be used instead of click event)",
12163      "memberOf": "Roo.Button"
12164     },
12165     {
12166      "name": "scope",
12167      "type": "Object",
12168      "desc": "The scope of the handler",
12169      "memberOf": "Roo.Button"
12170     },
12171     {
12172      "name": "minWidth",
12173      "type": "Number",
12174      "desc": "The minimum width for this button (used to give a set of buttons a common width)",
12175      "memberOf": "Roo.Button"
12176     },
12177     {
12178      "name": "tooltip",
12179      "type": "String/Object",
12180      "desc": "The tooltip for the button - can be a string or QuickTips config object",
12181      "memberOf": "Roo.Button"
12182     },
12183     {
12184      "name": "hidden",
12185      "type": "Boolean",
12186      "desc": "True to start hidden (defaults to false)",
12187      "memberOf": "Roo.Button"
12188     },
12189     {
12190      "name": "disabled",
12191      "type": "Boolean",
12192      "desc": "True to start disabled (defaults to false)",
12193      "memberOf": "Roo.Button"
12194     },
12195     {
12196      "name": "pressed",
12197      "type": "Boolean",
12198      "desc": "True to start pressed (only if enableToggle = true)",
12199      "memberOf": "Roo.Button"
12200     },
12201     {
12202      "name": "toggleGroup",
12203      "type": "String",
12204      "desc": "The group this toggle button is a member of (only 1 per group can be pressed, only\n   applies if enableToggle = true)",
12205      "memberOf": "Roo.Button"
12206     },
12207     {
12208      "name": "renderTo",
12209      "type": "String/HTMLElement/Element",
12210      "desc": "The element to append the button to",
12211      "memberOf": "Roo.Button"
12212     },
12213     {
12214      "name": "repeat",
12215      "type": "Boolean/Object",
12216      "desc": "True to repeat fire the click event while the mouse is down. This can also be\n  an {@link Roo.util.ClickRepeater} config object (defaults to false).",
12217      "memberOf": "Roo.Button"
12218     },
12219     {
12220      "name": "cls",
12221      "type": "String",
12222      "desc": "A CSS class to apply to the button's main element.",
12223      "memberOf": "Roo.Button"
12224     },
12225     {
12226      "name": "tabIndex",
12227      "type": "Number",
12228      "desc": "The DOM tabIndex for this button (defaults to undefined)",
12229      "memberOf": "Roo.Button"
12230     },
12231     {
12232      "name": "enableToggle",
12233      "type": "Boolean",
12234      "desc": "True to enable pressed/not pressed toggling (defaults to false)",
12235      "memberOf": "Roo.Button"
12236     },
12237     {
12238      "name": "menu",
12239      "type": "Mixed",
12240      "desc": "Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).",
12241      "memberOf": "Roo.Button"
12242     },
12243     {
12244      "name": "menuAlign",
12245      "type": "String",
12246      "desc": "The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').",
12247      "memberOf": "Roo.Button"
12248     },
12249     {
12250      "name": "iconCls",
12251      "type": "String",
12252      "desc": "A css class which sets a background image to be used as the icon for this button (defaults to undefined).",
12253      "memberOf": "Roo.Button"
12254     },
12255     {
12256      "name": "type",
12257      "type": "String",
12258      "desc": "The button's type, corresponding to the DOM input element type attribute.  Either \"submit,\" \"reset\" or \"button\" (default).",
12259      "memberOf": "Roo.Button"
12260     },
12261     {
12262      "name": "clickEvent",
12263      "type": "String",
12264      "desc": "The type of event to map to the button's event handler (defaults to 'click')",
12265      "memberOf": "Roo.Button"
12266     },
12267     {
12268      "name": "handleMouseEvents",
12269      "type": "Boolean",
12270      "desc": "False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)",
12271      "memberOf": "Roo.Button"
12272     },
12273     {
12274      "name": "tooltipType",
12275      "type": "String",
12276      "desc": "The type of tooltip to use. Either \"qtip\" (default) for QuickTips or \"title\" for title attribute.",
12277      "memberOf": "Roo.Button"
12278     },
12279     {
12280      "name": "template",
12281      "type": "Roo.Template",
12282      "desc": "(Optional)\nAn {@link Roo.Template} with which to create the Button's main element. This Template must\ncontain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could\nrequire code modifications if required elements (e.g. a button) aren't present.",
12283      "memberOf": "Roo.Button"
12284     },
12285     {
12286      "name": "listeners",
12287      "type": "Object",
12288      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
12289      "memberOf": "Roo.util.Observable"
12290     }
12291    ],
12292    "events": [
12293     {
12294      "name": "arrowclick",
12295      "sig": "function (_self, e)\n{\n\n}",
12296      "type": "function",
12297      "desc": "Fires when this button's arrow is clicked"
12298     },
12299     {
12300      "name": "click",
12301      "sig": "function (_self, e)\n{\n\n}",
12302      "type": "function",
12303      "desc": "Fires when this button is clicked"
12304     },
12305     {
12306      "name": "mouseout",
12307      "sig": "function (_self, e)\n{\n\n}",
12308      "type": "function",
12309      "desc": "Fires when the mouse exits the button"
12310     },
12311     {
12312      "name": "mouseover",
12313      "sig": "function (_self, e)\n{\n\n}",
12314      "type": "function",
12315      "desc": "Fires when the mouse hovers over the button"
12316     },
12317     {
12318      "name": "render",
12319      "sig": "function (_self)\n{\n\n}",
12320      "type": "function",
12321      "desc": "Fires when the button is rendered"
12322     },
12323     {
12324      "name": "toggle",
12325      "sig": "function (_self, pressed)\n{\n\n}",
12326      "type": "function",
12327      "desc": "Fires when the \"pressed\" state of this button changes (only if enableToggle = true)"
12328     }
12329    ],
12330    "methods": [
12331     {
12332      "name": "addEvents",
12333      "sig": "(Object object)",
12334      "type": "function",
12335      "desc": "Used to define events on this Observable"
12336     },
12337     {
12338      "name": "addListener",
12339      "sig": "(String eventName, Function handler, Object scope, Object options)",
12340      "type": "function",
12341      "desc": "Appends an event handler to this component"
12342     },
12343     {
12344      "name": "capture",
12345      "sig": "(Observable o, Function fn, Object scope)",
12346      "type": "function",
12347      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
12348     },
12349     {
12350      "name": "destroy",
12351      "sig": "()",
12352      "type": "function",
12353      "desc": "Removes and destroys this button"
12354     },
12355     {
12356      "name": "disable",
12357      "sig": "()",
12358      "type": "function",
12359      "desc": "Disable this button"
12360     },
12361     {
12362      "name": "enable",
12363      "sig": "()",
12364      "type": "function",
12365      "desc": "Enable this button"
12366     },
12367     {
12368      "name": "fireEvent",
12369      "sig": "(String eventName, Object... args)",
12370      "type": "function",
12371      "desc": "Fires the specified event with the passed parameters (minus the event name)."
12372     },
12373     {
12374      "name": "focus",
12375      "sig": "()",
12376      "type": "function",
12377      "desc": "Focus the button"
12378     },
12379     {
12380      "name": "getEl",
12381      "sig": "()",
12382      "type": "function",
12383      "desc": "Returns the button's underlying element"
12384     },
12385     {
12386      "name": "getText",
12387      "sig": "()",
12388      "type": "function",
12389      "desc": "Gets the text for this button"
12390     },
12391     {
12392      "name": "hasListener",
12393      "sig": "(String eventName)",
12394      "type": "function",
12395      "desc": "Checks to see if this object has any listeners for a specified event"
12396     },
12397     {
12398      "name": "hide",
12399      "sig": "()",
12400      "type": "function",
12401      "desc": "Hides this button"
12402     },
12403     {
12404      "name": "on",
12405      "sig": "(String eventName, Function handler, Object scope, Object options)",
12406      "type": "function",
12407      "desc": "Appends an event handler to this element (shorthand for addListener)"
12408     },
12409     {
12410      "name": "purgeListeners",
12411      "sig": "()",
12412      "type": "function",
12413      "desc": "Removes all listeners for this object"
12414     },
12415     {
12416      "name": "releaseCapture",
12417      "sig": "(Observable o)",
12418      "type": "function",
12419      "desc": "Removes <b>all</b> added captures from the Observable."
12420     },
12421     {
12422      "name": "removeListener",
12423      "sig": "(String eventName, Function handler, Object scope)",
12424      "type": "function",
12425      "desc": "Removes a listener"
12426     },
12427     {
12428      "name": "setArrowHandler",
12429      "sig": "(Function handler, Object scope)",
12430      "type": "function",
12431      "desc": "Sets this button's arrow click handler"
12432     },
12433     {
12434      "name": "setDisabled",
12435      "sig": "(Boolean enabled)",
12436      "type": "function",
12437      "desc": "Convenience function for boolean enable/disable"
12438     },
12439     {
12440      "name": "setHandler",
12441      "sig": "(Function handler, Object scope)",
12442      "type": "function",
12443      "desc": "Sets this button's click handler"
12444     },
12445     {
12446      "name": "setText",
12447      "sig": "(String text)",
12448      "type": "function",
12449      "desc": "Sets this button's text"
12450     },
12451     {
12452      "name": "setVisible",
12453      "sig": "(Boolean visible)",
12454      "type": "function",
12455      "desc": "Convenience function for boolean show/hide"
12456     },
12457     {
12458      "name": "show",
12459      "sig": "()",
12460      "type": "function",
12461      "desc": "Shows this button"
12462     },
12463     {
12464      "name": "toggle",
12465      "sig": "(Boolean state)",
12466      "type": "function",
12467      "desc": "If a state it passed, it becomes the pressed state otherwise the current state is toggled."
12468     },
12469     {
12470      "name": "un",
12471      "sig": "(String eventName, Function handler, Object scope)",
12472      "type": "function",
12473      "desc": "Removes a listener (shorthand for removeListener)"
12474     }
12475    ]
12476   },
12477   "Roo.Toolbar.TextItem": {
12478    "props": [],
12479    "events": [
12480     {
12481      "name": "render",
12482      "sig": "function (_self)\n{\n\n}",
12483      "type": "function",
12484      "desc": "Fires when the button is rendered"
12485     }
12486    ],
12487    "methods": [
12488     {
12489      "name": "destroy",
12490      "sig": "()",
12491      "type": "function",
12492      "desc": "Removes and destroys this item."
12493     },
12494     {
12495      "name": "disable",
12496      "sig": "()",
12497      "type": "function",
12498      "desc": "Disables this item."
12499     },
12500     {
12501      "name": "enable",
12502      "sig": "()",
12503      "type": "function",
12504      "desc": "Enables this item."
12505     },
12506     {
12507      "name": "focus",
12508      "sig": "()",
12509      "type": "function",
12510      "desc": "Try to focus this item."
12511     },
12512     {
12513      "name": "getEl",
12514      "sig": "()",
12515      "type": "function",
12516      "desc": "Get this item's HTML Element"
12517     },
12518     {
12519      "name": "hide",
12520      "sig": "()",
12521      "type": "function",
12522      "desc": "Hides this item."
12523     },
12524     {
12525      "name": "setVisible",
12526      "sig": "(Boolean visible)",
12527      "type": "function",
12528      "desc": "Convenience function for boolean show/hide."
12529     },
12530     {
12531      "name": "show",
12532      "sig": "()",
12533      "type": "function",
12534      "desc": "Shows this item."
12535     }
12536    ]
12537   },
12538   "Roo.TreePanel": {
12539    "props": [
12540     {
12541      "name": "tree",
12542      "type": "Roo.tree.TreePanel",
12543      "desc": "The tree TreePanel, with config etc.",
12544      "memberOf": "Roo"
12545     },
12546     {
12547      "name": "fitToFrame",
12548      "type": "Boolean",
12549      "desc": "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
12550      "memberOf": "Roo.ContentPanel"
12551     },
12552     {
12553      "name": "fitContainer",
12554      "type": "Boolean",
12555      "desc": "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
12556      "memberOf": "Roo.ContentPanel"
12557     },
12558     {
12559      "name": "autoCreate",
12560      "type": "Boolean/Object",
12561      "desc": "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
12562      "memberOf": "Roo.ContentPanel"
12563     },
12564     {
12565      "name": "closable",
12566      "type": "Boolean",
12567      "desc": "True if the panel can be closed/removed",
12568      "memberOf": "Roo.ContentPanel"
12569     },
12570     {
12571      "name": "background",
12572      "type": "Boolean",
12573      "desc": "True if the panel should not be activated when it is added (defaults to false)",
12574      "memberOf": "Roo.ContentPanel"
12575     },
12576     {
12577      "name": "resizeEl",
12578      "type": "String/HTMLElement/Element",
12579      "desc": "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
12580      "memberOf": "Roo.ContentPanel"
12581     },
12582     {
12583      "name": "toolbar",
12584      "type": "Toolbar",
12585      "desc": "A toolbar for this panel",
12586      "memberOf": "Roo.ContentPanel"
12587     },
12588     {
12589      "name": "autoScroll",
12590      "type": "Boolean",
12591      "desc": "True to scroll overflow in this panel (use with {@link #fitToFrame})",
12592      "memberOf": "Roo.ContentPanel"
12593     },
12594     {
12595      "name": "title",
12596      "type": "String",
12597      "desc": "The title for this panel",
12598      "memberOf": "Roo.ContentPanel"
12599     },
12600     {
12601      "name": "adjustments",
12602      "type": "Array",
12603      "desc": "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
12604      "memberOf": "Roo.ContentPanel"
12605     },
12606     {
12607      "name": "url",
12608      "type": "String",
12609      "desc": "Calls {@link #setUrl} with this value",
12610      "memberOf": "Roo.ContentPanel"
12611     },
12612     {
12613      "name": "region",
12614      "type": "String",
12615      "desc": "which region to put this panel on (when used with xtype constructors)",
12616      "memberOf": "Roo.ContentPanel",
12617      "optvals": [
12618       "center",
12619       "north",
12620       "south",
12621       "east",
12622       "west"
12623      ]
12624     },
12625     {
12626      "name": "params",
12627      "type": "String/Object",
12628      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
12629      "memberOf": "Roo.ContentPanel"
12630     },
12631     {
12632      "name": "loadOnce",
12633      "type": "Boolean",
12634      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
12635      "memberOf": "Roo.ContentPanel"
12636     },
12637     {
12638      "name": "content",
12639      "type": "String",
12640      "desc": "Raw content to fill content panel with (uses setContent on construction.)",
12641      "memberOf": "Roo.ContentPanel"
12642     },
12643     {
12644      "name": "listeners",
12645      "type": "Object",
12646      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
12647      "memberOf": "Roo.util.Observable"
12648     }
12649    ],
12650    "events": [
12651     {
12652      "name": "activate",
12653      "sig": "function (_self)\n{\n\n}",
12654      "type": "function",
12655      "desc": "Fires when this panel is activated."
12656     },
12657     {
12658      "name": "deactivate",
12659      "sig": "function (_self)\n{\n\n}",
12660      "type": "function",
12661      "desc": "Fires when this panel is activated."
12662     },
12663     {
12664      "name": "render",
12665      "sig": "function (_self)\n{\n\n}",
12666      "type": "function",
12667      "desc": "Fires when this tab is created"
12668     },
12669     {
12670      "name": "resize",
12671      "sig": "function (_self, width, height)\n{\n\n}",
12672      "type": "function",
12673      "desc": "Fires when this panel is resized if fitToFrame is true."
12674     }
12675    ],
12676    "methods": [
12677     {
12678      "name": "addEvents",
12679      "sig": "(Object object)",
12680      "type": "function",
12681      "desc": "Used to define events on this Observable"
12682     },
12683     {
12684      "name": "addListener",
12685      "sig": "(String eventName, Function handler, Object scope, Object options)",
12686      "type": "function",
12687      "desc": "Appends an event handler to this component"
12688     },
12689     {
12690      "name": "addxtype",
12691      "sig": "(Object cfg)",
12692      "type": "function",
12693      "desc": "Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'Form',\n       items: [ .... ]\n   }\n);\n\n</code></pre>"
12694     },
12695     {
12696      "name": "capture",
12697      "sig": "(Observable o, Function fn, Object scope)",
12698      "type": "function",
12699      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
12700     },
12701     {
12702      "name": "destroy",
12703      "sig": "()",
12704      "type": "function",
12705      "desc": "Destroys this panel"
12706     },
12707     {
12708      "name": "fireEvent",
12709      "sig": "(String eventName, Object... args)",
12710      "type": "function",
12711      "desc": "Fires the specified event with the passed parameters (minus the event name)."
12712     },
12713     {
12714      "name": "getEl",
12715      "sig": "()",
12716      "type": "function",
12717      "desc": "Returns this panel's element - used by regiosn to add."
12718     },
12719     {
12720      "name": "getId",
12721      "sig": "()",
12722      "type": "function",
12723      "desc": "Returns this panel's id"
12724     },
12725     {
12726      "name": "getTitle",
12727      "sig": "()",
12728      "type": "function",
12729      "desc": "Returns this panel's title"
12730     },
12731     {
12732      "name": "getToolbar",
12733      "sig": "()",
12734      "type": "function",
12735      "desc": "Returns the toolbar for this Panel if one was configured."
12736     },
12737     {
12738      "name": "getUpdateManager",
12739      "sig": "()",
12740      "type": "function",
12741      "desc": "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates."
12742     },
12743     {
12744      "name": "hasListener",
12745      "sig": "(String eventName)",
12746      "type": "function",
12747      "desc": "Checks to see if this object has any listeners for a specified event"
12748     },
12749     {
12750      "name": "isClosable",
12751      "sig": "()",
12752      "type": "function",
12753      "desc": "Returns true is this panel was configured to be closable"
12754     },
12755     {
12756      "name": "load",
12757      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
12758      "type": "function",
12759      "desc": "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}."
12760     },
12761     {
12762      "name": "on",
12763      "sig": "(String eventName, Function handler, Object scope, Object options)",
12764      "type": "function",
12765      "desc": "Appends an event handler to this element (shorthand for addListener)"
12766     },
12767     {
12768      "name": "purgeListeners",
12769      "sig": "()",
12770      "type": "function",
12771      "desc": "Removes all listeners for this object"
12772     },
12773     {
12774      "name": "refresh",
12775      "sig": "()",
12776      "type": "function",
12777      "desc": "Force a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the {@link #setUrl} method has not been called.\n  This does not activate the panel, just updates its content."
12778     },
12779     {
12780      "name": "releaseCapture",
12781      "sig": "(Observable o)",
12782      "type": "function",
12783      "desc": "Removes <b>all</b> added captures from the Observable."
12784     },
12785     {
12786      "name": "removeListener",
12787      "sig": "(String eventName, Function handler, Object scope)",
12788      "type": "function",
12789      "desc": "Removes a listener"
12790     },
12791     {
12792      "name": "setContent",
12793      "sig": "(String content, Boolean loadScripts)",
12794      "type": "function",
12795      "desc": "Updates this panel's element"
12796     },
12797     {
12798      "name": "setTitle",
12799      "sig": "(String title)",
12800      "type": "function",
12801      "desc": "Set this panel's title"
12802     },
12803     {
12804      "name": "setUrl",
12805      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
12806      "type": "function",
12807      "desc": "Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL."
12808     },
12809     {
12810      "name": "un",
12811      "sig": "(String eventName, Function handler, Object scope)",
12812      "type": "function",
12813      "desc": "Removes a listener (shorthand for removeListener)"
12814     }
12815    ]
12816   },
12817   "Roo.UpdateManager": {
12818    "props": [
12819     {
12820      "name": "listeners",
12821      "type": "Object",
12822      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
12823      "memberOf": "Roo.util.Observable"
12824     }
12825    ],
12826    "events": [
12827     {
12828      "name": "beforeupdate",
12829      "sig": "function (el, url, params)\n{\n\n}",
12830      "type": "function",
12831      "desc": "Fired before an update is made, return false from your handler and the update is cancelled."
12832     },
12833     {
12834      "name": "failure",
12835      "sig": "function (el, oResponseObject)\n{\n\n}",
12836      "type": "function",
12837      "desc": "Fired on update failure."
12838     },
12839     {
12840      "name": "update",
12841      "sig": "function (el, oResponseObject)\n{\n\n}",
12842      "type": "function",
12843      "desc": "Fired after successful update is made."
12844     }
12845    ],
12846    "methods": [
12847     {
12848      "name": "abort",
12849      "sig": "()",
12850      "type": "function",
12851      "desc": "Aborts the executing transaction"
12852     },
12853     {
12854      "name": "addEvents",
12855      "sig": "(Object object)",
12856      "type": "function",
12857      "desc": "Used to define events on this Observable"
12858     },
12859     {
12860      "name": "addListener",
12861      "sig": "(String eventName, Function handler, Object scope, Object options)",
12862      "type": "function",
12863      "desc": "Appends an event handler to this component"
12864     },
12865     {
12866      "name": "capture",
12867      "sig": "(Observable o, Function fn, Object scope)",
12868      "type": "function",
12869      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
12870     },
12871     {
12872      "name": "fireEvent",
12873      "sig": "(String eventName, Object... args)",
12874      "type": "function",
12875      "desc": "Fires the specified event with the passed parameters (minus the event name)."
12876     },
12877     {
12878      "name": "formUpdate",
12879      "sig": "(String/HTMLElement form, String url, Boolean reset, Function callback)",
12880      "type": "function",
12881      "desc": "Performs an async form post, updating this element with the response. If the form has the attribute enctype=\"multipart/form-data\", it assumes it's a file upload.\nUses this.sslBlankUrl for SSL file uploads to prevent IE security warning."
12882     },
12883     {
12884      "name": "getEl",
12885      "sig": "()",
12886      "type": "function",
12887      "desc": "Get the Element this UpdateManager is bound to"
12888     },
12889     {
12890      "name": "hasListener",
12891      "sig": "(String eventName)",
12892      "type": "function",
12893      "desc": "Checks to see if this object has any listeners for a specified event"
12894     },
12895     {
12896      "name": "isUpdating",
12897      "sig": "()",
12898      "type": "function",
12899      "desc": "Returns true if an update is in progress"
12900     },
12901     {
12902      "name": "on",
12903      "sig": "(String eventName, Function handler, Object scope, Object options)",
12904      "type": "function",
12905      "desc": "Appends an event handler to this element (shorthand for addListener)"
12906     },
12907     {
12908      "name": "purgeListeners",
12909      "sig": "()",
12910      "type": "function",
12911      "desc": "Removes all listeners for this object"
12912     },
12913     {
12914      "name": "refresh",
12915      "sig": "(Function callback)",
12916      "type": "function",
12917      "desc": "Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately"
12918     },
12919     {
12920      "name": "releaseCapture",
12921      "sig": "(Observable o)",
12922      "type": "function",
12923      "desc": "Removes <b>all</b> added captures from the Observable."
12924     },
12925     {
12926      "name": "removeListener",
12927      "sig": "(String eventName, Function handler, Object scope)",
12928      "type": "function",
12929      "desc": "Removes a listener"
12930     },
12931     {
12932      "name": "setDefaultUrl",
12933      "sig": "(String/Function defaultUrl)",
12934      "type": "function",
12935      "desc": "Set the defaultUrl used for updates"
12936     },
12937     {
12938      "name": "setRenderer",
12939      "sig": "(Object renderer)",
12940      "type": "function",
12941      "desc": "Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details."
12942     },
12943     {
12944      "name": "showLoading",
12945      "sig": "()",
12946      "type": "function",
12947      "desc": "Called to update the element to \"Loading\" state. Override to perform custom action."
12948     },
12949     {
12950      "name": "startAutoRefresh",
12951      "sig": "(Number interval, String/Function url, String/Object params, Function callback, Boolean refreshNow)",
12952      "type": "function",
12953      "desc": "Set this element to auto refresh."
12954     },
12955     {
12956      "name": "stopAutoRefresh",
12957      "sig": "()",
12958      "type": "function",
12959      "desc": "Stop auto refresh on this element."
12960     },
12961     {
12962      "name": "un",
12963      "sig": "(String eventName, Function handler, Object scope)",
12964      "type": "function",
12965      "desc": "Removes a listener (shorthand for removeListener)"
12966     },
12967     {
12968      "name": "update",
12969      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
12970      "type": "function",
12971      "desc": "Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET."
12972     },
12973     {
12974      "name": "updateElement",
12975      "sig": "(String/HTMLElement/Roo.Element el, String url, String/Object params, Object options)",
12976      "type": "function",
12977      "desc": "Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).\nUsage:\n<pre><code>Roo.UpdateManager.updateElement(\"my-div\", \"stuff.php\");</code></pre>"
12978     }
12979    ]
12980   },
12981   "Roo.UpdateManager.BasicRenderer": {
12982    "props": [],
12983    "events": [],
12984    "methods": [
12985     {
12986      "name": "render",
12987      "sig": "(Roo.Element el, Object response, UpdateManager updateManager, Function callback)",
12988      "type": "function",
12989      "desc": "This is called when the transaction is completed and it's time to update the element - The BasicRenderer\nupdates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),\ncreate an object with a \"render(el, response)\" method and pass it to setRenderer on the UpdateManager."
12990     }
12991    ]
12992   },
12993   "Roo.UpdateManager.defaults": {
12994    "props": [],
12995    "events": [],
12996    "methods": []
12997   },
12998   "Roo.View": {
12999    "props": [
13000     {
13001      "name": "store",
13002      "type": "Roo.data.Store",
13003      "desc": "Data store to load data from.",
13004      "memberOf": ""
13005     },
13006     {
13007      "name": "el",
13008      "type": "String|Roo.Element",
13009      "desc": "The container element.",
13010      "memberOf": ""
13011     },
13012     {
13013      "name": "tpl",
13014      "type": "String|Roo.Template",
13015      "desc": "The template used by this View",
13016      "memberOf": ""
13017     },
13018     {
13019      "name": "dataName",
13020      "type": "String",
13021      "desc": "the named area of the template to use as the data area\n                         Works with domtemplates roo-name=\"name\"",
13022      "memberOf": ""
13023     },
13024     {
13025      "name": "selectedClass",
13026      "type": "String",
13027      "desc": "The css class to add to selected nodes",
13028      "memberOf": ""
13029     },
13030     {
13031      "name": "emptyText",
13032      "type": "String",
13033      "desc": "The empty text to show when nothing is loaded.",
13034      "memberOf": ""
13035     },
13036     {
13037      "name": "text",
13038      "type": "String",
13039      "desc": "to display on mask (default Loading)",
13040      "memberOf": ""
13041     },
13042     {
13043      "name": "multiSelect",
13044      "type": "Boolean",
13045      "desc": "Allow multiple selection",
13046      "memberOf": ""
13047     },
13048     {
13049      "name": "singleSelect",
13050      "type": "Boolean",
13051      "desc": "Allow single selection",
13052      "memberOf": ""
13053     },
13054     {
13055      "name": "toggleSelect",
13056      "type": "Boolean",
13057      "desc": "- selecting",
13058      "memberOf": ""
13059     },
13060     {
13061      "name": "tickable",
13062      "type": "Boolean",
13063      "desc": "- selecting",
13064      "memberOf": ""
13065     },
13066     {
13067      "name": "listeners",
13068      "type": "Object",
13069      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
13070      "memberOf": "Roo.util.Observable"
13071     }
13072    ],
13073    "events": [
13074     {
13075      "name": "beforeclick",
13076      "sig": "function (_self, index, node, e)\n{\n\n}",
13077      "type": "function",
13078      "desc": "Fires before a click is processed. Returns false to cancel the default action."
13079     },
13080     {
13081      "name": "beforeselect",
13082      "sig": "function (_self, node, selections)\n{\n\n}",
13083      "type": "function",
13084      "desc": "Fires before a selection is made. If any handlers return false, the selection is cancelled."
13085     },
13086     {
13087      "name": "click",
13088      "sig": "function (_self, index, node, e)\n{\n\n}",
13089      "type": "function",
13090      "desc": "Fires when a template node is clicked."
13091     },
13092     {
13093      "name": "contextmenu",
13094      "sig": "function (_self, index, node, e)\n{\n\n}",
13095      "type": "function",
13096      "desc": "Fires when a template node is right clicked."
13097     },
13098     {
13099      "name": "dblclick",
13100      "sig": "function (_self, index, node, e)\n{\n\n}",
13101      "type": "function",
13102      "desc": "Fires when a template node is double clicked."
13103     },
13104     {
13105      "name": "preparedata",
13106      "sig": "function (_self, data)\n{\n\n}",
13107      "type": "function",
13108      "desc": "Fires on every row to render, to allow you to change the data."
13109     },
13110     {
13111      "name": "selectionchange",
13112      "sig": "function (_self, selections)\n{\n\n}",
13113      "type": "function",
13114      "desc": "Fires when the selected nodes change."
13115     }
13116    ],
13117    "methods": [
13118     {
13119      "name": "addEvents",
13120      "sig": "(Object object)",
13121      "type": "function",
13122      "desc": "Used to define events on this Observable"
13123     },
13124     {
13125      "name": "addListener",
13126      "sig": "(String eventName, Function handler, Object scope, Object options)",
13127      "type": "function",
13128      "desc": "Appends an event handler to this component"
13129     },
13130     {
13131      "name": "capture",
13132      "sig": "(Observable o, Function fn, Object scope)",
13133      "type": "function",
13134      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
13135     },
13136     {
13137      "name": "clearSelections",
13138      "sig": "(Boolean suppressEvent)",
13139      "type": "function",
13140      "desc": "Clear all selections"
13141     },
13142     {
13143      "name": "findItemFromChild",
13144      "sig": "(HTMLElement node)",
13145      "type": "function",
13146      "desc": "Returns the template node the passed child belongs to or null if it doesn't belong to one."
13147     },
13148     {
13149      "name": "fireEvent",
13150      "sig": "(String eventName, Object... args)",
13151      "type": "function",
13152      "desc": "Fires the specified event with the passed parameters (minus the event name)."
13153     },
13154     {
13155      "name": "getEl",
13156      "sig": "()",
13157      "type": "function",
13158      "desc": "Returns the element this view is bound to."
13159     },
13160     {
13161      "name": "getNode",
13162      "sig": "(HTMLElement/String/Number nodeInfo)",
13163      "type": "function",
13164      "desc": "Gets a template node."
13165     },
13166     {
13167      "name": "getNodes",
13168      "sig": "(Number startIndex, Number endIndex)",
13169      "type": "function",
13170      "desc": "Gets a range template nodes."
13171     },
13172     {
13173      "name": "getSelectedIndexes",
13174      "sig": "()",
13175      "type": "function",
13176      "desc": "Get the indexes of the selected nodes."
13177     },
13178     {
13179      "name": "getSelectedNodes",
13180      "sig": "()",
13181      "type": "function",
13182      "desc": "Get the currently selected nodes."
13183     },
13184     {
13185      "name": "getSelectionCount",
13186      "sig": "()",
13187      "type": "function",
13188      "desc": "Get the number of selected nodes."
13189     },
13190     {
13191      "name": "hasListener",
13192      "sig": "(String eventName)",
13193      "type": "function",
13194      "desc": "Checks to see if this object has any listeners for a specified event"
13195     },
13196     {
13197      "name": "indexOf",
13198      "sig": "(HTMLElement/String/Number nodeInfo)",
13199      "type": "function",
13200      "desc": "Finds the index of the passed node"
13201     },
13202     {
13203      "name": "isSelected",
13204      "sig": "(HTMLElement/Number node)",
13205      "type": "function",
13206      "desc": "Returns true if the passed node is selected"
13207     },
13208     {
13209      "name": "on",
13210      "sig": "(String eventName, Function handler, Object scope, Object options)",
13211      "type": "function",
13212      "desc": "Appends an event handler to this element (shorthand for addListener)"
13213     },
13214     {
13215      "name": "onBeforeLoad",
13216      "sig": "()",
13217      "type": "function",
13218      "desc": "onbeforeLoad - masks the loading area."
13219     },
13220     {
13221      "name": "prepareData",
13222      "sig": "(Array/Object data)",
13223      "type": "function",
13224      "desc": "Function to override to reformat the data that is sent to\nthe template for each node.\nDEPRICATED - use the preparedata event handler."
13225     },
13226     {
13227      "name": "purgeListeners",
13228      "sig": "()",
13229      "type": "function",
13230      "desc": "Removes all listeners for this object"
13231     },
13232     {
13233      "name": "refresh",
13234      "sig": "()",
13235      "type": "function",
13236      "desc": "Refreshes the view. - called by datachanged on the store. - do not call directly."
13237     },
13238     {
13239      "name": "refreshNode",
13240      "sig": "(Number index)",
13241      "type": "function",
13242      "desc": "Refresh an individual node."
13243     },
13244     {
13245      "name": "releaseCapture",
13246      "sig": "(Observable o)",
13247      "type": "function",
13248      "desc": "Removes <b>all</b> added captures from the Observable."
13249     },
13250     {
13251      "name": "removeListener",
13252      "sig": "(String eventName, Function handler, Object scope)",
13253      "type": "function",
13254      "desc": "Removes a listener"
13255     },
13256     {
13257      "name": "select",
13258      "sig": "(Array/HTMLElement/String/Number nodeInfo, Boolean keepExisting, Boolean suppressEvent)",
13259      "type": "function",
13260      "desc": "Selects nodes."
13261     },
13262     {
13263      "name": "setStore",
13264      "sig": "(Store store)",
13265      "type": "function",
13266      "desc": "Changes the data store this view uses and refresh the view."
13267     },
13268     {
13269      "name": "un",
13270      "sig": "(String eventName, Function handler, Object scope)",
13271      "type": "function",
13272      "desc": "Removes a listener (shorthand for removeListener)"
13273     },
13274     {
13275      "name": "unselect",
13276      "sig": "(Array/HTMLElement/String/Number nodeInfo, Boolean keepExisting, Boolean suppressEvent)",
13277      "type": "function",
13278      "desc": "Unselects nodes."
13279     }
13280    ]
13281   },
13282   "Roo.ViewPanel": {
13283    "props": [
13284     {
13285      "name": "fitToFrame",
13286      "type": "Boolean",
13287      "desc": "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
13288      "memberOf": "Roo.ContentPanel"
13289     },
13290     {
13291      "name": "fitContainer",
13292      "type": "Boolean",
13293      "desc": "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
13294      "memberOf": "Roo.ContentPanel"
13295     },
13296     {
13297      "name": "autoCreate",
13298      "type": "Boolean/Object",
13299      "desc": "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
13300      "memberOf": "Roo.ContentPanel"
13301     },
13302     {
13303      "name": "closable",
13304      "type": "Boolean",
13305      "desc": "True if the panel can be closed/removed",
13306      "memberOf": "Roo.ContentPanel"
13307     },
13308     {
13309      "name": "background",
13310      "type": "Boolean",
13311      "desc": "True if the panel should not be activated when it is added (defaults to false)",
13312      "memberOf": "Roo.ContentPanel"
13313     },
13314     {
13315      "name": "resizeEl",
13316      "type": "String/HTMLElement/Element",
13317      "desc": "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
13318      "memberOf": "Roo.ContentPanel"
13319     },
13320     {
13321      "name": "toolbar",
13322      "type": "Toolbar",
13323      "desc": "A toolbar for this panel",
13324      "memberOf": "Roo.ContentPanel"
13325     },
13326     {
13327      "name": "autoScroll",
13328      "type": "Boolean",
13329      "desc": "True to scroll overflow in this panel (use with {@link #fitToFrame})",
13330      "memberOf": "Roo.ContentPanel"
13331     },
13332     {
13333      "name": "title",
13334      "type": "String",
13335      "desc": "The title for this panel",
13336      "memberOf": "Roo.ContentPanel"
13337     },
13338     {
13339      "name": "adjustments",
13340      "type": "Array",
13341      "desc": "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
13342      "memberOf": "Roo.ContentPanel"
13343     },
13344     {
13345      "name": "url",
13346      "type": "String",
13347      "desc": "Calls {@link #setUrl} with this value",
13348      "memberOf": "Roo.ContentPanel"
13349     },
13350     {
13351      "name": "region",
13352      "type": "String",
13353      "desc": "which region to put this panel on (when used with xtype constructors)",
13354      "memberOf": "Roo.ContentPanel",
13355      "optvals": [
13356       "center",
13357       "north",
13358       "south",
13359       "east",
13360       "west"
13361      ]
13362     },
13363     {
13364      "name": "params",
13365      "type": "String/Object",
13366      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
13367      "memberOf": "Roo.ContentPanel"
13368     },
13369     {
13370      "name": "loadOnce",
13371      "type": "Boolean",
13372      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
13373      "memberOf": "Roo.ContentPanel"
13374     },
13375     {
13376      "name": "content",
13377      "type": "String",
13378      "desc": "Raw content to fill content panel with (uses setContent on construction.)",
13379      "memberOf": "Roo.ContentPanel"
13380     },
13381     {
13382      "name": "listeners",
13383      "type": "Object",
13384      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
13385      "memberOf": "Roo.util.Observable"
13386     }
13387    ],
13388    "events": [
13389     {
13390      "name": "activate",
13391      "sig": "function (_self)\n{\n\n}",
13392      "type": "function",
13393      "desc": "Fires when this panel is activated."
13394     },
13395     {
13396      "name": "deactivate",
13397      "sig": "function (_self)\n{\n\n}",
13398      "type": "function",
13399      "desc": "Fires when this panel is activated."
13400     },
13401     {
13402      "name": "render",
13403      "sig": "function (_self)\n{\n\n}",
13404      "type": "function",
13405      "desc": "Fires when this tab is created"
13406     },
13407     {
13408      "name": "resize",
13409      "sig": "function (_self, width, height)\n{\n\n}",
13410      "type": "function",
13411      "desc": "Fires when this panel is resized if fitToFrame is true."
13412     }
13413    ],
13414    "methods": [
13415     {
13416      "name": "addEvents",
13417      "sig": "(Object object)",
13418      "type": "function",
13419      "desc": "Used to define events on this Observable"
13420     },
13421     {
13422      "name": "addListener",
13423      "sig": "(String eventName, Function handler, Object scope, Object options)",
13424      "type": "function",
13425      "desc": "Appends an event handler to this component"
13426     },
13427     {
13428      "name": "addxtype",
13429      "sig": "(Object cfg)",
13430      "type": "function",
13431      "desc": "Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'Form',\n       items: [ .... ]\n   }\n);\n\n</code></pre>"
13432     },
13433     {
13434      "name": "capture",
13435      "sig": "(Observable o, Function fn, Object scope)",
13436      "type": "function",
13437      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
13438     },
13439     {
13440      "name": "destroy",
13441      "sig": "()",
13442      "type": "function",
13443      "desc": "Destroys this panel"
13444     },
13445     {
13446      "name": "fireEvent",
13447      "sig": "(String eventName, Object... args)",
13448      "type": "function",
13449      "desc": "Fires the specified event with the passed parameters (minus the event name)."
13450     },
13451     {
13452      "name": "getEl",
13453      "sig": "()",
13454      "type": "function",
13455      "desc": "Returns this panel's element - used by regiosn to add."
13456     },
13457     {
13458      "name": "getGrid",
13459      "sig": "()",
13460      "type": "function",
13461      "desc": "Returns the grid for this panel"
13462     },
13463     {
13464      "name": "getId",
13465      "sig": "()",
13466      "type": "function",
13467      "desc": "Returns this panel's id"
13468     },
13469     {
13470      "name": "getTitle",
13471      "sig": "()",
13472      "type": "function",
13473      "desc": "Returns this panel's title"
13474     },
13475     {
13476      "name": "getToolbar",
13477      "sig": "()",
13478      "type": "function",
13479      "desc": "Returns the toolbar for this Panel if one was configured."
13480     },
13481     {
13482      "name": "getUpdateManager",
13483      "sig": "()",
13484      "type": "function",
13485      "desc": "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates."
13486     },
13487     {
13488      "name": "hasListener",
13489      "sig": "(String eventName)",
13490      "type": "function",
13491      "desc": "Checks to see if this object has any listeners for a specified event"
13492     },
13493     {
13494      "name": "isClosable",
13495      "sig": "()",
13496      "type": "function",
13497      "desc": "Returns true is this panel was configured to be closable"
13498     },
13499     {
13500      "name": "load",
13501      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
13502      "type": "function",
13503      "desc": "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}."
13504     },
13505     {
13506      "name": "on",
13507      "sig": "(String eventName, Function handler, Object scope, Object options)",
13508      "type": "function",
13509      "desc": "Appends an event handler to this element (shorthand for addListener)"
13510     },
13511     {
13512      "name": "purgeListeners",
13513      "sig": "()",
13514      "type": "function",
13515      "desc": "Removes all listeners for this object"
13516     },
13517     {
13518      "name": "refresh",
13519      "sig": "()",
13520      "type": "function",
13521      "desc": "Force a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the {@link #setUrl} method has not been called.\n  This does not activate the panel, just updates its content."
13522     },
13523     {
13524      "name": "releaseCapture",
13525      "sig": "(Observable o)",
13526      "type": "function",
13527      "desc": "Removes <b>all</b> added captures from the Observable."
13528     },
13529     {
13530      "name": "removeListener",
13531      "sig": "(String eventName, Function handler, Object scope)",
13532      "type": "function",
13533      "desc": "Removes a listener"
13534     },
13535     {
13536      "name": "setContent",
13537      "sig": "(String content, Boolean loadScripts)",
13538      "type": "function",
13539      "desc": "Updates this panel's element"
13540     },
13541     {
13542      "name": "setTitle",
13543      "sig": "(String title)",
13544      "type": "function",
13545      "desc": "Set this panel's title"
13546     },
13547     {
13548      "name": "setUrl",
13549      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
13550      "type": "function",
13551      "desc": "Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL."
13552     },
13553     {
13554      "name": "un",
13555      "sig": "(String eventName, Function handler, Object scope)",
13556      "type": "function",
13557      "desc": "Removes a listener (shorthand for removeListener)"
13558     }
13559    ]
13560   },
13561   "Roo.XComponent": {
13562    "props": [
13563     {
13564      "name": "disabled",
13565      "type": "Function|boolean",
13566      "desc": "If this module is disabled by some rule, return true from the funtion",
13567      "memberOf": ""
13568     },
13569     {
13570      "name": "parent",
13571      "type": "String",
13572      "desc": "Name of parent element which it get xtype added to..",
13573      "memberOf": ""
13574     },
13575     {
13576      "name": "order",
13577      "type": "String",
13578      "desc": "Used to set the order in which elements are created (usefull for multiple tabs)",
13579      "memberOf": ""
13580     },
13581     {
13582      "name": "name",
13583      "type": "String",
13584      "desc": "String to display while loading.",
13585      "memberOf": ""
13586     },
13587     {
13588      "name": "region",
13589      "type": "String",
13590      "desc": "Region to render component to (defaults to center)",
13591      "memberOf": ""
13592     },
13593     {
13594      "name": "items",
13595      "type": "Array",
13596      "desc": "A single item array - the first element is the root of the tree..\nIt's done this way to stay compatible with the Xtype system...",
13597      "memberOf": ""
13598     },
13599     {
13600      "name": "listeners",
13601      "type": "Object",
13602      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
13603      "memberOf": "Roo.util.Observable"
13604     }
13605    ],
13606    "events": [
13607     {
13608      "name": "built",
13609      "sig": "function (c)\n{\n\n}",
13610      "type": "function",
13611      "desc": "Fires when this the componnt is built"
13612     }
13613    ],
13614    "methods": [
13615     {
13616      "name": "addEvents",
13617      "sig": "(Object object)",
13618      "type": "function",
13619      "desc": "Used to define events on this Observable"
13620     },
13621     {
13622      "name": "addListener",
13623      "sig": "(String eventName, Function handler, Object scope, Object options)",
13624      "type": "function",
13625      "desc": "Appends an event handler to this component"
13626     },
13627     {
13628      "name": "build",
13629      "sig": "(Object parent, Function optional)",
13630      "type": "function",
13631      "desc": "Build the registered modules."
13632     },
13633     {
13634      "name": "buildOrder",
13635      "sig": "()",
13636      "type": "function",
13637      "desc": "make a list of modules to build."
13638     },
13639     {
13640      "name": "capture",
13641      "sig": "(Observable o, Function fn, Object scope)",
13642      "type": "function",
13643      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
13644     },
13645     {
13646      "name": "fireEvent",
13647      "sig": "(String eventName, Object... args)",
13648      "type": "function",
13649      "desc": "Fires the specified event with the passed parameters (minus the event name)."
13650     },
13651     {
13652      "name": "hasListener",
13653      "sig": "(String eventName)",
13654      "type": "function",
13655      "desc": "Checks to see if this object has any listeners for a specified event"
13656     },
13657     {
13658      "name": "preBuild",
13659      "sig": "()",
13660      "type": "function",
13661      "desc": "move modules into their correct place in the tree.."
13662     },
13663     {
13664      "name": "purgeListeners",
13665      "sig": "()",
13666      "type": "function",
13667      "desc": "Removes all listeners for this object"
13668     },
13669     {
13670      "name": "register",
13671      "sig": "()",
13672      "type": "function",
13673      "desc": "Register components to be built later.\n\nThis solves the following issues\n- Building is not done on page load, but after an authentication process has occured.\n- Interface elements are registered on page load\n- Parent Interface elements may not be loaded before child, so this handles that..\n\n\nexample:\n\nMyApp.register({\n          order : '000001',\n          module : 'Pman.Tab.projectMgr',\n          region : 'center',\n          parent : 'Pman.layout',\n          disabled : false,  // or use a function..\n        })\n* @param {Object} details about module"
13674     },
13675     {
13676      "name": "releaseCapture",
13677      "sig": "(Observable o)",
13678      "type": "function",
13679      "desc": "Removes <b>all</b> added captures from the Observable."
13680     },
13681     {
13682      "name": "removeListener",
13683      "sig": "(String eventName, Function handler, Object scope)",
13684      "type": "function",
13685      "desc": "Removes a listener"
13686     },
13687     {
13688      "name": "render",
13689      "sig": "(Roo.Element|String|DomElement optional)",
13690      "type": "function",
13691      "desc": "render\nrender element to dom or tree"
13692     },
13693     {
13694      "name": "toObject",
13695      "sig": "()",
13696      "type": "function",
13697      "desc": "convert a string to an object..\neg. 'AAA.BBB' -> finds AAA.BBB"
13698     },
13699     {
13700      "name": "un",
13701      "sig": "(String eventName, Function handler, Object scope)",
13702      "type": "function",
13703      "desc": "Removes a listener (shorthand for removeListener)"
13704     }
13705    ]
13706   },
13707   "Roo.XComponent#_tree": {
13708    "props": [],
13709    "events": [],
13710    "methods": []
13711   },
13712   "Roo.XComponent.event.events": {
13713    "props": [],
13714    "events": [],
13715    "methods": []
13716   },
13717   "Roo.XTemplate": {
13718    "props": [
13719     {
13720      "name": "url",
13721      "type": "String",
13722      "desc": "The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..\n                   it should be fixed so that template is observable...",
13723      "memberOf": "Roo.Template"
13724     },
13725     {
13726      "name": "html",
13727      "type": "String",
13728      "desc": "The HTML fragment or an array of fragments to join(\"\") or multiple arguments to join(\"\")",
13729      "memberOf": "Roo.Template"
13730     }
13731    ],
13732    "events": [],
13733    "methods": [
13734     {
13735      "name": "append",
13736      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
13737      "type": "function",
13738      "desc": "Applies the supplied values to the template and appends the new node(s) to el."
13739     },
13740     {
13741      "name": "apply",
13742      "sig": "()",
13743      "type": "function",
13744      "desc": "Alias for {@link #applyTemplate}"
13745     },
13746     {
13747      "name": "applySubTemplate",
13748      "sig": "(Number id, Object values, Object parent)",
13749      "type": "function",
13750      "desc": "same as applyTemplate, except it's done to one of the subTemplates\nwhen using named templates, you can do:\n\nvar str = pl.applySubTemplate('your-name', values);"
13751     },
13752     {
13753      "name": "applyTemplate",
13754      "sig": "(Object values)",
13755      "type": "function",
13756      "desc": "Returns an HTML fragment of this template with the specified values applied."
13757     },
13758     {
13759      "name": "compile",
13760      "sig": "()",
13761      "type": "function",
13762      "desc": "compile the template\n\nThis is not recursive, so I'm not sure how nested templates are really going to be handled.."
13763     },
13764     {
13765      "name": "from",
13766      "sig": "(String/HTMLElement el)",
13767      "type": "function",
13768      "desc": "Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML."
13769     },
13770     {
13771      "name": "insertAfter",
13772      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
13773      "type": "function",
13774      "desc": "Applies the supplied values to the template and inserts the new node(s) after el."
13775     },
13776     {
13777      "name": "insertBefore",
13778      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
13779      "type": "function",
13780      "desc": "Applies the supplied values to the template and inserts the new node(s) before el."
13781     },
13782     {
13783      "name": "insertFirst",
13784      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
13785      "type": "function",
13786      "desc": "Applies the supplied values to the template and inserts the new node(s) as the first child of el."
13787     },
13788     {
13789      "name": "overwrite",
13790      "sig": "(String/HTMLElement/Roo.Element el, Object values, Boolean returnElement)",
13791      "type": "function",
13792      "desc": "Applies the supplied values to the template and overwrites the content of el with the new node(s)."
13793     },
13794     {
13795      "name": "set",
13796      "sig": "(String html, Boolean compile)",
13797      "type": "function",
13798      "desc": "Sets the HTML used as the template and optionally compiles it."
13799     }
13800    ]
13801   },
13802   "Roo.bootstrap": {
13803    "props": [],
13804    "events": [],
13805    "methods": []
13806   },
13807   "Roo.bootstrap.Alert": {
13808    "props": [
13809     {
13810      "name": "title",
13811      "type": "String",
13812      "desc": "The title of alert",
13813      "memberOf": ""
13814     },
13815     {
13816      "name": "html",
13817      "type": "String",
13818      "desc": "The content of alert",
13819      "memberOf": ""
13820     },
13821     {
13822      "name": "weight",
13823      "type": "String",
13824      "desc": "",
13825      "memberOf": "",
13826      "optvals": [
13827       "success",
13828       "info",
13829       "warning",
13830       "danger"
13831      ]
13832     },
13833     {
13834      "name": "faicon",
13835      "type": "String",
13836      "desc": "font-awesomeicon",
13837      "memberOf": ""
13838     },
13839     {
13840      "name": "cls",
13841      "type": "String",
13842      "desc": "css class",
13843      "memberOf": "Roo.bootstrap.Component"
13844     },
13845     {
13846      "name": "style",
13847      "type": "String",
13848      "desc": "any extra css",
13849      "memberOf": "Roo.bootstrap.Component"
13850     },
13851     {
13852      "name": "xattr",
13853      "type": "Object",
13854      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
13855      "memberOf": "Roo.bootstrap.Component"
13856     },
13857     {
13858      "name": "can_build_overlaid",
13859      "type": "Boolean",
13860      "desc": "True if element can be rebuild from a HTML page",
13861      "memberOf": "Roo.bootstrap.Component"
13862     },
13863     {
13864      "name": "dataId",
13865      "type": "string",
13866      "desc": "cutomer id",
13867      "memberOf": "Roo.bootstrap.Component"
13868     },
13869     {
13870      "name": "name",
13871      "type": "string",
13872      "desc": "Specifies name attribute",
13873      "memberOf": "Roo.bootstrap.Component"
13874     },
13875     {
13876      "name": "tooltip",
13877      "type": "string",
13878      "desc": "Text for the tooltip",
13879      "memberOf": "Roo.bootstrap.Component"
13880     },
13881     {
13882      "name": "container_method",
13883      "type": "string",
13884      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
13885      "memberOf": "Roo.bootstrap.Component"
13886     },
13887     {
13888      "name": "disableClass",
13889      "type": "String",
13890      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
13891      "memberOf": "Roo.Component"
13892     },
13893     {
13894      "name": "allowDomMove",
13895      "type": "Boolean",
13896      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
13897      "memberOf": "Roo.Component"
13898     },
13899     {
13900      "name": "hideMode",
13901      "type": "String",
13902      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
13903      "memberOf": "Roo.Component",
13904      "optvals": [
13905       "display",
13906       "visibility"
13907      ]
13908     },
13909     {
13910      "name": "actionMode",
13911      "type": "String",
13912      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
13913      "memberOf": "Roo.Component"
13914     },
13915     {
13916      "name": "listeners",
13917      "type": "Object",
13918      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
13919      "memberOf": "Roo.util.Observable"
13920     }
13921    ],
13922    "events": [
13923     {
13924      "name": "beforedestroy",
13925      "sig": "function (_self)\n{\n\n}",
13926      "type": "function",
13927      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
13928     },
13929     {
13930      "name": "beforehide",
13931      "sig": "function (_self)\n{\n\n}",
13932      "type": "function",
13933      "desc": "Fires before the component is hidden. Return false to stop the hide."
13934     },
13935     {
13936      "name": "beforerender",
13937      "sig": "function (_self)\n{\n\n}",
13938      "type": "function",
13939      "desc": "Fires before the component is rendered. Return false to stop the render."
13940     },
13941     {
13942      "name": "beforeshow",
13943      "sig": "function (_self)\n{\n\n}",
13944      "type": "function",
13945      "desc": "Fires before the component is shown.  Return false to stop the show."
13946     },
13947     {
13948      "name": "childrenrendered",
13949      "sig": "function (_self)\n{\n\n}",
13950      "type": "function",
13951      "desc": "Fires when the children have been rendered.."
13952     },
13953     {
13954      "name": "destroy",
13955      "sig": "function (_self)\n{\n\n}",
13956      "type": "function",
13957      "desc": "Fires after the component is destroyed."
13958     },
13959     {
13960      "name": "disable",
13961      "sig": "function (_self)\n{\n\n}",
13962      "type": "function",
13963      "desc": "Fires after the component is disabled."
13964     },
13965     {
13966      "name": "enable",
13967      "sig": "function (_self)\n{\n\n}",
13968      "type": "function",
13969      "desc": "Fires after the component is enabled."
13970     },
13971     {
13972      "name": "hide",
13973      "sig": "function (_self)\n{\n\n}",
13974      "type": "function",
13975      "desc": "Fires after the component is hidden."
13976     },
13977     {
13978      "name": "render",
13979      "sig": "function (_self)\n{\n\n}",
13980      "type": "function",
13981      "desc": "Fires after the component is rendered."
13982     },
13983     {
13984      "name": "show",
13985      "sig": "function (_self)\n{\n\n}",
13986      "type": "function",
13987      "desc": "Fires after the component is shown."
13988     }
13989    ],
13990    "methods": [
13991     {
13992      "name": "addEvents",
13993      "sig": "(Object object)",
13994      "type": "function",
13995      "desc": "Used to define events on this Observable"
13996     },
13997     {
13998      "name": "addListener",
13999      "sig": "(String eventName, Function handler, Object scope, Object options)",
14000      "type": "function",
14001      "desc": "Appends an event handler to this component"
14002     },
14003     {
14004      "name": "capture",
14005      "sig": "(Observable o, Function fn, Object scope)",
14006      "type": "function",
14007      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
14008     },
14009     {
14010      "name": "destroy",
14011      "sig": "()",
14012      "type": "function",
14013      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
14014     },
14015     {
14016      "name": "disable",
14017      "sig": "()",
14018      "type": "function",
14019      "desc": "Disable this component."
14020     },
14021     {
14022      "name": "enable",
14023      "sig": "()",
14024      "type": "function",
14025      "desc": "Enable this component."
14026     },
14027     {
14028      "name": "fireEvent",
14029      "sig": "(String eventName, Object... args)",
14030      "type": "function",
14031      "desc": "Fires the specified event with the passed parameters (minus the event name)."
14032     },
14033     {
14034      "name": "focus",
14035      "sig": "(Boolean selectText)",
14036      "type": "function",
14037      "desc": "Try to focus this component."
14038     },
14039     {
14040      "name": "getChildContainer",
14041      "sig": "()",
14042      "type": "function",
14043      "desc": "Fetch the element to add children to"
14044     },
14045     {
14046      "name": "getEl",
14047      "sig": "()",
14048      "type": "function",
14049      "desc": "Returns the underlying {@link Roo.Element}."
14050     },
14051     {
14052      "name": "getId",
14053      "sig": "()",
14054      "type": "function",
14055      "desc": "Returns the id of this component."
14056     },
14057     {
14058      "name": "hasListener",
14059      "sig": "(String eventName)",
14060      "type": "function",
14061      "desc": "Checks to see if this object has any listeners for a specified event"
14062     },
14063     {
14064      "name": "hide",
14065      "sig": "()",
14066      "type": "function",
14067      "desc": "Hide a component - adds 'hidden' class"
14068     },
14069     {
14070      "name": "initEvents",
14071      "sig": "()",
14072      "type": "function",
14073      "desc": "Initialize Events for the element"
14074     },
14075     {
14076      "name": "isVisible",
14077      "sig": "()",
14078      "type": "function",
14079      "desc": "Returns true if this component is visible."
14080     },
14081     {
14082      "name": "on",
14083      "sig": "(String eventName, Function handler, Object scope, Object options)",
14084      "type": "function",
14085      "desc": "Appends an event handler to this element (shorthand for addListener)"
14086     },
14087     {
14088      "name": "purgeListeners",
14089      "sig": "()",
14090      "type": "function",
14091      "desc": "Removes all listeners for this object"
14092     },
14093     {
14094      "name": "releaseCapture",
14095      "sig": "(Observable o)",
14096      "type": "function",
14097      "desc": "Removes <b>all</b> added captures from the Observable."
14098     },
14099     {
14100      "name": "removeListener",
14101      "sig": "(String eventName, Function handler, Object scope)",
14102      "type": "function",
14103      "desc": "Removes a listener"
14104     },
14105     {
14106      "name": "render",
14107      "sig": "(String/HTMLElement/Element container)",
14108      "type": "function",
14109      "desc": "If this is a lazy rendering component, render it to its container element."
14110     },
14111     {
14112      "name": "setDisabled",
14113      "sig": "(Boolean disabled)",
14114      "type": "function",
14115      "desc": "Convenience function for setting disabled/enabled by boolean."
14116     },
14117     {
14118      "name": "setVisible",
14119      "sig": "(Boolean visible)",
14120      "type": "function",
14121      "desc": "Convenience function to hide or show this component by boolean."
14122     },
14123     {
14124      "name": "show",
14125      "sig": "()",
14126      "type": "function",
14127      "desc": "Show a component - removes 'hidden' class"
14128     },
14129     {
14130      "name": "tooltipEl",
14131      "sig": "()",
14132      "type": "function",
14133      "desc": "Fetch the element to display the tooltip on."
14134     },
14135     {
14136      "name": "un",
14137      "sig": "(String eventName, Function handler, Object scope)",
14138      "type": "function",
14139      "desc": "Removes a listener (shorthand for removeListener)"
14140     }
14141    ]
14142   },
14143   "Roo.bootstrap.Body": {
14144    "props": [
14145     {
14146      "name": "cls",
14147      "type": "String",
14148      "desc": "css class",
14149      "memberOf": "Roo.bootstrap.Component"
14150     },
14151     {
14152      "name": "style",
14153      "type": "String",
14154      "desc": "any extra css",
14155      "memberOf": "Roo.bootstrap.Component"
14156     },
14157     {
14158      "name": "xattr",
14159      "type": "Object",
14160      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
14161      "memberOf": "Roo.bootstrap.Component"
14162     },
14163     {
14164      "name": "can_build_overlaid",
14165      "type": "Boolean",
14166      "desc": "True if element can be rebuild from a HTML page",
14167      "memberOf": "Roo.bootstrap.Component"
14168     },
14169     {
14170      "name": "dataId",
14171      "type": "string",
14172      "desc": "cutomer id",
14173      "memberOf": "Roo.bootstrap.Component"
14174     },
14175     {
14176      "name": "name",
14177      "type": "string",
14178      "desc": "Specifies name attribute",
14179      "memberOf": "Roo.bootstrap.Component"
14180     },
14181     {
14182      "name": "tooltip",
14183      "type": "string",
14184      "desc": "Text for the tooltip",
14185      "memberOf": "Roo.bootstrap.Component"
14186     },
14187     {
14188      "name": "container_method",
14189      "type": "string",
14190      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
14191      "memberOf": "Roo.bootstrap.Component"
14192     },
14193     {
14194      "name": "disableClass",
14195      "type": "String",
14196      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
14197      "memberOf": "Roo.Component"
14198     },
14199     {
14200      "name": "allowDomMove",
14201      "type": "Boolean",
14202      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
14203      "memberOf": "Roo.Component"
14204     },
14205     {
14206      "name": "hideMode",
14207      "type": "String",
14208      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
14209      "memberOf": "Roo.Component",
14210      "optvals": [
14211       "display",
14212       "visibility"
14213      ]
14214     },
14215     {
14216      "name": "actionMode",
14217      "type": "String",
14218      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
14219      "memberOf": "Roo.Component"
14220     },
14221     {
14222      "name": "listeners",
14223      "type": "Object",
14224      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
14225      "memberOf": "Roo.util.Observable"
14226     }
14227    ],
14228    "events": [
14229     {
14230      "name": "beforedestroy",
14231      "sig": "function (_self)\n{\n\n}",
14232      "type": "function",
14233      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
14234     },
14235     {
14236      "name": "beforehide",
14237      "sig": "function (_self)\n{\n\n}",
14238      "type": "function",
14239      "desc": "Fires before the component is hidden. Return false to stop the hide."
14240     },
14241     {
14242      "name": "beforerender",
14243      "sig": "function (_self)\n{\n\n}",
14244      "type": "function",
14245      "desc": "Fires before the component is rendered. Return false to stop the render."
14246     },
14247     {
14248      "name": "beforeshow",
14249      "sig": "function (_self)\n{\n\n}",
14250      "type": "function",
14251      "desc": "Fires before the component is shown.  Return false to stop the show."
14252     },
14253     {
14254      "name": "childrenrendered",
14255      "sig": "function (_self)\n{\n\n}",
14256      "type": "function",
14257      "desc": "Fires when the children have been rendered.."
14258     },
14259     {
14260      "name": "destroy",
14261      "sig": "function (_self)\n{\n\n}",
14262      "type": "function",
14263      "desc": "Fires after the component is destroyed."
14264     },
14265     {
14266      "name": "disable",
14267      "sig": "function (_self)\n{\n\n}",
14268      "type": "function",
14269      "desc": "Fires after the component is disabled."
14270     },
14271     {
14272      "name": "enable",
14273      "sig": "function (_self)\n{\n\n}",
14274      "type": "function",
14275      "desc": "Fires after the component is enabled."
14276     },
14277     {
14278      "name": "hide",
14279      "sig": "function (_self)\n{\n\n}",
14280      "type": "function",
14281      "desc": "Fires after the component is hidden."
14282     },
14283     {
14284      "name": "render",
14285      "sig": "function (_self)\n{\n\n}",
14286      "type": "function",
14287      "desc": "Fires after the component is rendered."
14288     },
14289     {
14290      "name": "show",
14291      "sig": "function (_self)\n{\n\n}",
14292      "type": "function",
14293      "desc": "Fires after the component is shown."
14294     }
14295    ],
14296    "methods": [
14297     {
14298      "name": "addEvents",
14299      "sig": "(Object object)",
14300      "type": "function",
14301      "desc": "Used to define events on this Observable"
14302     },
14303     {
14304      "name": "addListener",
14305      "sig": "(String eventName, Function handler, Object scope, Object options)",
14306      "type": "function",
14307      "desc": "Appends an event handler to this component"
14308     },
14309     {
14310      "name": "capture",
14311      "sig": "(Observable o, Function fn, Object scope)",
14312      "type": "function",
14313      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
14314     },
14315     {
14316      "name": "destroy",
14317      "sig": "()",
14318      "type": "function",
14319      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
14320     },
14321     {
14322      "name": "disable",
14323      "sig": "()",
14324      "type": "function",
14325      "desc": "Disable this component."
14326     },
14327     {
14328      "name": "enable",
14329      "sig": "()",
14330      "type": "function",
14331      "desc": "Enable this component."
14332     },
14333     {
14334      "name": "fireEvent",
14335      "sig": "(String eventName, Object... args)",
14336      "type": "function",
14337      "desc": "Fires the specified event with the passed parameters (minus the event name)."
14338     },
14339     {
14340      "name": "focus",
14341      "sig": "(Boolean selectText)",
14342      "type": "function",
14343      "desc": "Try to focus this component."
14344     },
14345     {
14346      "name": "getChildContainer",
14347      "sig": "()",
14348      "type": "function",
14349      "desc": "Fetch the element to add children to"
14350     },
14351     {
14352      "name": "getEl",
14353      "sig": "()",
14354      "type": "function",
14355      "desc": "Returns the underlying {@link Roo.Element}."
14356     },
14357     {
14358      "name": "getId",
14359      "sig": "()",
14360      "type": "function",
14361      "desc": "Returns the id of this component."
14362     },
14363     {
14364      "name": "hasListener",
14365      "sig": "(String eventName)",
14366      "type": "function",
14367      "desc": "Checks to see if this object has any listeners for a specified event"
14368     },
14369     {
14370      "name": "hide",
14371      "sig": "()",
14372      "type": "function",
14373      "desc": "Hide a component - adds 'hidden' class"
14374     },
14375     {
14376      "name": "initEvents",
14377      "sig": "()",
14378      "type": "function",
14379      "desc": "Initialize Events for the element"
14380     },
14381     {
14382      "name": "isVisible",
14383      "sig": "()",
14384      "type": "function",
14385      "desc": "Returns true if this component is visible."
14386     },
14387     {
14388      "name": "on",
14389      "sig": "(String eventName, Function handler, Object scope, Object options)",
14390      "type": "function",
14391      "desc": "Appends an event handler to this element (shorthand for addListener)"
14392     },
14393     {
14394      "name": "purgeListeners",
14395      "sig": "()",
14396      "type": "function",
14397      "desc": "Removes all listeners for this object"
14398     },
14399     {
14400      "name": "releaseCapture",
14401      "sig": "(Observable o)",
14402      "type": "function",
14403      "desc": "Removes <b>all</b> added captures from the Observable."
14404     },
14405     {
14406      "name": "removeListener",
14407      "sig": "(String eventName, Function handler, Object scope)",
14408      "type": "function",
14409      "desc": "Removes a listener"
14410     },
14411     {
14412      "name": "render",
14413      "sig": "(String/HTMLElement/Element container)",
14414      "type": "function",
14415      "desc": "If this is a lazy rendering component, render it to its container element."
14416     },
14417     {
14418      "name": "setDisabled",
14419      "sig": "(Boolean disabled)",
14420      "type": "function",
14421      "desc": "Convenience function for setting disabled/enabled by boolean."
14422     },
14423     {
14424      "name": "setVisible",
14425      "sig": "(Boolean visible)",
14426      "type": "function",
14427      "desc": "Convenience function to hide or show this component by boolean."
14428     },
14429     {
14430      "name": "show",
14431      "sig": "()",
14432      "type": "function",
14433      "desc": "Show a component - removes 'hidden' class"
14434     },
14435     {
14436      "name": "tooltipEl",
14437      "sig": "()",
14438      "type": "function",
14439      "desc": "Fetch the element to display the tooltip on."
14440     },
14441     {
14442      "name": "un",
14443      "sig": "(String eventName, Function handler, Object scope)",
14444      "type": "function",
14445      "desc": "Removes a listener (shorthand for removeListener)"
14446     }
14447    ]
14448   },
14449   "Roo.bootstrap.Brick": {
14450    "props": [
14451     {
14452      "name": "title",
14453      "type": "String",
14454      "desc": "",
14455      "memberOf": ""
14456     },
14457     {
14458      "name": "html",
14459      "type": "String",
14460      "desc": "",
14461      "memberOf": ""
14462     },
14463     {
14464      "name": "bgimage",
14465      "type": "String",
14466      "desc": "",
14467      "memberOf": ""
14468     },
14469     {
14470      "name": "cls",
14471      "type": "String",
14472      "desc": "",
14473      "memberOf": ""
14474     },
14475     {
14476      "name": "href",
14477      "type": "String",
14478      "desc": "",
14479      "memberOf": ""
14480     },
14481     {
14482      "name": "video",
14483      "type": "String",
14484      "desc": "",
14485      "memberOf": ""
14486     },
14487     {
14488      "name": "square",
14489      "type": "Boolean",
14490      "desc": "",
14491      "memberOf": ""
14492     },
14493     {
14494      "name": "style",
14495      "type": "String",
14496      "desc": "any extra css",
14497      "memberOf": "Roo.bootstrap.Component"
14498     },
14499     {
14500      "name": "xattr",
14501      "type": "Object",
14502      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
14503      "memberOf": "Roo.bootstrap.Component"
14504     },
14505     {
14506      "name": "can_build_overlaid",
14507      "type": "Boolean",
14508      "desc": "True if element can be rebuild from a HTML page",
14509      "memberOf": "Roo.bootstrap.Component"
14510     },
14511     {
14512      "name": "dataId",
14513      "type": "string",
14514      "desc": "cutomer id",
14515      "memberOf": "Roo.bootstrap.Component"
14516     },
14517     {
14518      "name": "name",
14519      "type": "string",
14520      "desc": "Specifies name attribute",
14521      "memberOf": "Roo.bootstrap.Component"
14522     },
14523     {
14524      "name": "tooltip",
14525      "type": "string",
14526      "desc": "Text for the tooltip",
14527      "memberOf": "Roo.bootstrap.Component"
14528     },
14529     {
14530      "name": "container_method",
14531      "type": "string",
14532      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
14533      "memberOf": "Roo.bootstrap.Component"
14534     },
14535     {
14536      "name": "disableClass",
14537      "type": "String",
14538      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
14539      "memberOf": "Roo.Component"
14540     },
14541     {
14542      "name": "allowDomMove",
14543      "type": "Boolean",
14544      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
14545      "memberOf": "Roo.Component"
14546     },
14547     {
14548      "name": "hideMode",
14549      "type": "String",
14550      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
14551      "memberOf": "Roo.Component",
14552      "optvals": [
14553       "display",
14554       "visibility"
14555      ]
14556     },
14557     {
14558      "name": "actionMode",
14559      "type": "String",
14560      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
14561      "memberOf": "Roo.Component"
14562     },
14563     {
14564      "name": "listeners",
14565      "type": "Object",
14566      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
14567      "memberOf": "Roo.util.Observable"
14568     }
14569    ],
14570    "events": [
14571     {
14572      "name": "beforedestroy",
14573      "sig": "function (_self)\n{\n\n}",
14574      "type": "function",
14575      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
14576     },
14577     {
14578      "name": "beforehide",
14579      "sig": "function (_self)\n{\n\n}",
14580      "type": "function",
14581      "desc": "Fires before the component is hidden. Return false to stop the hide."
14582     },
14583     {
14584      "name": "beforerender",
14585      "sig": "function (_self)\n{\n\n}",
14586      "type": "function",
14587      "desc": "Fires before the component is rendered. Return false to stop the render."
14588     },
14589     {
14590      "name": "beforeshow",
14591      "sig": "function (_self)\n{\n\n}",
14592      "type": "function",
14593      "desc": "Fires before the component is shown.  Return false to stop the show."
14594     },
14595     {
14596      "name": "childrenrendered",
14597      "sig": "function (_self)\n{\n\n}",
14598      "type": "function",
14599      "desc": "Fires when the children have been rendered.."
14600     },
14601     {
14602      "name": "click",
14603      "sig": "function (_self, e)\n{\n\n}",
14604      "type": "function",
14605      "desc": "When a Brick is click"
14606     },
14607     {
14608      "name": "destroy",
14609      "sig": "function (_self)\n{\n\n}",
14610      "type": "function",
14611      "desc": "Fires after the component is destroyed."
14612     },
14613     {
14614      "name": "disable",
14615      "sig": "function (_self)\n{\n\n}",
14616      "type": "function",
14617      "desc": "Fires after the component is disabled."
14618     },
14619     {
14620      "name": "enable",
14621      "sig": "function (_self)\n{\n\n}",
14622      "type": "function",
14623      "desc": "Fires after the component is enabled."
14624     },
14625     {
14626      "name": "hide",
14627      "sig": "function (_self)\n{\n\n}",
14628      "type": "function",
14629      "desc": "Fires after the component is hidden."
14630     },
14631     {
14632      "name": "render",
14633      "sig": "function (_self)\n{\n\n}",
14634      "type": "function",
14635      "desc": "Fires after the component is rendered."
14636     },
14637     {
14638      "name": "show",
14639      "sig": "function (_self)\n{\n\n}",
14640      "type": "function",
14641      "desc": "Fires after the component is shown."
14642     }
14643    ],
14644    "methods": [
14645     {
14646      "name": "addEvents",
14647      "sig": "(Object object)",
14648      "type": "function",
14649      "desc": "Used to define events on this Observable"
14650     },
14651     {
14652      "name": "addListener",
14653      "sig": "(String eventName, Function handler, Object scope, Object options)",
14654      "type": "function",
14655      "desc": "Appends an event handler to this component"
14656     },
14657     {
14658      "name": "capture",
14659      "sig": "(Observable o, Function fn, Object scope)",
14660      "type": "function",
14661      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
14662     },
14663     {
14664      "name": "destroy",
14665      "sig": "()",
14666      "type": "function",
14667      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
14668     },
14669     {
14670      "name": "disable",
14671      "sig": "()",
14672      "type": "function",
14673      "desc": "Disable this component."
14674     },
14675     {
14676      "name": "enable",
14677      "sig": "()",
14678      "type": "function",
14679      "desc": "Enable this component."
14680     },
14681     {
14682      "name": "fireEvent",
14683      "sig": "(String eventName, Object... args)",
14684      "type": "function",
14685      "desc": "Fires the specified event with the passed parameters (minus the event name)."
14686     },
14687     {
14688      "name": "focus",
14689      "sig": "(Boolean selectText)",
14690      "type": "function",
14691      "desc": "Try to focus this component."
14692     },
14693     {
14694      "name": "getChildContainer",
14695      "sig": "()",
14696      "type": "function",
14697      "desc": "Fetch the element to add children to"
14698     },
14699     {
14700      "name": "getEl",
14701      "sig": "()",
14702      "type": "function",
14703      "desc": "Returns the underlying {@link Roo.Element}."
14704     },
14705     {
14706      "name": "getId",
14707      "sig": "()",
14708      "type": "function",
14709      "desc": "Returns the id of this component."
14710     },
14711     {
14712      "name": "hasListener",
14713      "sig": "(String eventName)",
14714      "type": "function",
14715      "desc": "Checks to see if this object has any listeners for a specified event"
14716     },
14717     {
14718      "name": "hide",
14719      "sig": "()",
14720      "type": "function",
14721      "desc": "Hide a component - adds 'hidden' class"
14722     },
14723     {
14724      "name": "initEvents",
14725      "sig": "()",
14726      "type": "function",
14727      "desc": "Initialize Events for the element"
14728     },
14729     {
14730      "name": "isVisible",
14731      "sig": "()",
14732      "type": "function",
14733      "desc": "Returns true if this component is visible."
14734     },
14735     {
14736      "name": "on",
14737      "sig": "(String eventName, Function handler, Object scope, Object options)",
14738      "type": "function",
14739      "desc": "Appends an event handler to this element (shorthand for addListener)"
14740     },
14741     {
14742      "name": "purgeListeners",
14743      "sig": "()",
14744      "type": "function",
14745      "desc": "Removes all listeners for this object"
14746     },
14747     {
14748      "name": "releaseCapture",
14749      "sig": "(Observable o)",
14750      "type": "function",
14751      "desc": "Removes <b>all</b> added captures from the Observable."
14752     },
14753     {
14754      "name": "removeListener",
14755      "sig": "(String eventName, Function handler, Object scope)",
14756      "type": "function",
14757      "desc": "Removes a listener"
14758     },
14759     {
14760      "name": "render",
14761      "sig": "(String/HTMLElement/Element container)",
14762      "type": "function",
14763      "desc": "If this is a lazy rendering component, render it to its container element."
14764     },
14765     {
14766      "name": "setDisabled",
14767      "sig": "(Boolean disabled)",
14768      "type": "function",
14769      "desc": "Convenience function for setting disabled/enabled by boolean."
14770     },
14771     {
14772      "name": "setVisible",
14773      "sig": "(Boolean visible)",
14774      "type": "function",
14775      "desc": "Convenience function to hide or show this component by boolean."
14776     },
14777     {
14778      "name": "show",
14779      "sig": "()",
14780      "type": "function",
14781      "desc": "Show a component - removes 'hidden' class"
14782     },
14783     {
14784      "name": "tooltipEl",
14785      "sig": "()",
14786      "type": "function",
14787      "desc": "Fetch the element to display the tooltip on."
14788     },
14789     {
14790      "name": "un",
14791      "sig": "(String eventName, Function handler, Object scope)",
14792      "type": "function",
14793      "desc": "Removes a listener (shorthand for removeListener)"
14794     }
14795    ]
14796   },
14797   "Roo.bootstrap.Button": {
14798    "props": [
14799     {
14800      "name": "html",
14801      "type": "String",
14802      "desc": "The button content",
14803      "memberOf": ""
14804     },
14805     {
14806      "name": "weight",
14807      "type": "String",
14808      "desc": "default",
14809      "memberOf": "",
14810      "optvals": [
14811       "default",
14812       "primary",
14813       "success",
14814       "info",
14815       "warning",
14816       "danger",
14817       "link"
14818      ]
14819     },
14820     {
14821      "name": "size",
14822      "type": "String",
14823      "desc": "",
14824      "memberOf": "",
14825      "optvals": [
14826       "lg",
14827       "sm",
14828       "xs"
14829      ]
14830     },
14831     {
14832      "name": "tag",
14833      "type": "String",
14834      "desc": "",
14835      "memberOf": "",
14836      "optvals": [
14837       "a",
14838       "input",
14839       "submit"
14840      ]
14841     },
14842     {
14843      "name": "href",
14844      "type": "String",
14845      "desc": "empty or href",
14846      "memberOf": ""
14847     },
14848     {
14849      "name": "disabled",
14850      "type": "Boolean",
14851      "desc": "default false;",
14852      "memberOf": ""
14853     },
14854     {
14855      "name": "isClose",
14856      "type": "Boolean",
14857      "desc": "default false;",
14858      "memberOf": ""
14859     },
14860     {
14861      "name": "glyphicon",
14862      "type": "String",
14863      "desc": "",
14864      "memberOf": "",
14865      "optvals": [
14866       "",
14867       "adjust",
14868       "align-center",
14869       "align-justify",
14870       "align-left",
14871       "align-right",
14872       "arrow-down",
14873       "arrow-left",
14874       "arrow-right",
14875       "arrow-up",
14876       "asterisk",
14877       "backward",
14878       "ban-circle",
14879       "barcode",
14880       "bell",
14881       "bold",
14882       "book",
14883       "bookmark",
14884       "briefcase",
14885       "bullhorn",
14886       "calendar",
14887       "camera",
14888       "certificate",
14889       "check",
14890       "chevron-down",
14891       "chevron-left",
14892       "chevron-right",
14893       "chevron-up",
14894       "circle-arrow-down",
14895       "circle-arrow-left",
14896       "circle-arrow-right",
14897       "circle-arrow-up",
14898       "cloud",
14899       "cloud-download",
14900       "cloud-upload",
14901       "cog",
14902       "collapse-down",
14903       "collapse-up",
14904       "comment",
14905       "compressed",
14906       "copyright-mark",
14907       "credit-card",
14908       "cutlery",
14909       "dashboard",
14910       "download",
14911       "download-alt",
14912       "earphone",
14913       "edit",
14914       "eject",
14915       "envelope",
14916       "euro",
14917       "exclamation-sign",
14918       "expand",
14919       "export",
14920       "eye-close",
14921       "eye-open",
14922       "facetime-video",
14923       "fast-backward",
14924       "fast-forward",
14925       "file",
14926       "film",
14927       "filter",
14928       "fire",
14929       "flag",
14930       "flash",
14931       "floppy-disk",
14932       "floppy-open",
14933       "floppy-remove",
14934       "floppy-save",
14935       "floppy-saved",
14936       "folder-close",
14937       "folder-open",
14938       "font",
14939       "forward",
14940       "fullscreen",
14941       "gbp",
14942       "gift",
14943       "glass",
14944       "globe",
14945       "hand-down",
14946       "hand-left",
14947       "hand-right",
14948       "hand-up",
14949       "hd-video",
14950       "hdd",
14951       "header",
14952       "headphones",
14953       "heart",
14954       "heart-empty",
14955       "home",
14956       "import",
14957       "inbox",
14958       "indent-left",
14959       "indent-right",
14960       "info-sign",
14961       "italic",
14962       "leaf",
14963       "link",
14964       "list",
14965       "list-alt",
14966       "lock",
14967       "log-in",
14968       "log-out",
14969       "magnet",
14970       "map-marker",
14971       "minus",
14972       "minus-sign",
14973       "move",
14974       "music",
14975       "new-window",
14976       "off",
14977       "ok",
14978       "ok-circle",
14979       "ok-sign",
14980       "open",
14981       "paperclip",
14982       "pause",
14983       "pencil",
14984       "phone",
14985       "phone-alt",
14986       "picture",
14987       "plane",
14988       "play",
14989       "play-circle",
14990       "plus",
14991       "plus-sign",
14992       "print",
14993       "pushpin",
14994       "qrcode",
14995       "question-sign",
14996       "random",
14997       "record",
14998       "refresh",
14999       "registration-mark",
15000       "remove",
15001       "remove-circle",
15002       "remove-sign",
15003       "repeat",
15004       "resize-full",
15005       "resize-horizontal",
15006       "resize-small",
15007       "resize-vertical",
15008       "retweet",
15009       "road",
15010       "save",
15011       "saved",
15012       "screenshot",
15013       "sd-video",
15014       "search",
15015       "send",
15016       "share",
15017       "share-alt",
15018       "shopping-cart",
15019       "signal",
15020       "sort",
15021       "sort-by-alphabet",
15022       "sort-by-alphabet-alt",
15023       "sort-by-attributes",
15024       "sort-by-attributes-alt",
15025       "sort-by-order",
15026       "sort-by-order-alt",
15027       "sound-5-1",
15028       "sound-6-1",
15029       "sound-7-1",
15030       "sound-dolby",
15031       "sound-stereo",
15032       "star",
15033       "star-empty",
15034       "stats",
15035       "step-backward",
15036       "step-forward",
15037       "stop",
15038       "subtitles",
15039       "tag",
15040       "tags",
15041       "tasks",
15042       "text-height",
15043       "text-width",
15044       "th",
15045       "th-large",
15046       "th-list",
15047       "thumbs-down",
15048       "thumbs-up",
15049       "time",
15050       "tint",
15051       "tower",
15052       "transfer",
15053       "trash",
15054       "tree-conifer",
15055       "tree-deciduous",
15056       "unchecked",
15057       "upload",
15058       "usd",
15059       "user",
15060       "volume-down",
15061       "volume-off",
15062       "volume-up",
15063       "warning-sign",
15064       "wrench",
15065       "zoom-in",
15066       "zoom-out"
15067      ]
15068     },
15069     {
15070      "name": "badge",
15071      "type": "String",
15072      "desc": "text for badge",
15073      "memberOf": ""
15074     },
15075     {
15076      "name": "theme",
15077      "type": "String",
15078      "desc": "default",
15079      "memberOf": ""
15080     },
15081     {
15082      "name": "inverse",
15083      "type": "Boolean",
15084      "desc": "",
15085      "memberOf": ""
15086     },
15087     {
15088      "name": "toggle",
15089      "type": "Boolean",
15090      "desc": "",
15091      "memberOf": ""
15092     },
15093     {
15094      "name": "ontext",
15095      "type": "String",
15096      "desc": "text for on toggle state",
15097      "memberOf": ""
15098     },
15099     {
15100      "name": "offtext",
15101      "type": "String",
15102      "desc": "text for off toggle state",
15103      "memberOf": ""
15104     },
15105     {
15106      "name": "defaulton",
15107      "type": "Boolean",
15108      "desc": "",
15109      "memberOf": ""
15110     },
15111     {
15112      "name": "preventDefault",
15113      "type": "Boolean",
15114      "desc": "default true",
15115      "memberOf": ""
15116     },
15117     {
15118      "name": "removeClass",
15119      "type": "Boolean",
15120      "desc": "remove the standard class..",
15121      "memberOf": ""
15122     },
15123     {
15124      "name": "target",
15125      "type": "String",
15126      "desc": "target for a href. (_self|_blank|_parent|_top| other)",
15127      "memberOf": ""
15128     },
15129     {
15130      "name": "cls",
15131      "type": "String",
15132      "desc": "css class",
15133      "memberOf": "Roo.bootstrap.Component"
15134     },
15135     {
15136      "name": "style",
15137      "type": "String",
15138      "desc": "any extra css",
15139      "memberOf": "Roo.bootstrap.Component"
15140     },
15141     {
15142      "name": "xattr",
15143      "type": "Object",
15144      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
15145      "memberOf": "Roo.bootstrap.Component"
15146     },
15147     {
15148      "name": "can_build_overlaid",
15149      "type": "Boolean",
15150      "desc": "True if element can be rebuild from a HTML page",
15151      "memberOf": "Roo.bootstrap.Component"
15152     },
15153     {
15154      "name": "dataId",
15155      "type": "string",
15156      "desc": "cutomer id",
15157      "memberOf": "Roo.bootstrap.Component"
15158     },
15159     {
15160      "name": "name",
15161      "type": "string",
15162      "desc": "Specifies name attribute",
15163      "memberOf": "Roo.bootstrap.Component"
15164     },
15165     {
15166      "name": "tooltip",
15167      "type": "string",
15168      "desc": "Text for the tooltip",
15169      "memberOf": "Roo.bootstrap.Component"
15170     },
15171     {
15172      "name": "container_method",
15173      "type": "string",
15174      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
15175      "memberOf": "Roo.bootstrap.Component"
15176     },
15177     {
15178      "name": "disableClass",
15179      "type": "String",
15180      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
15181      "memberOf": "Roo.Component"
15182     },
15183     {
15184      "name": "allowDomMove",
15185      "type": "Boolean",
15186      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
15187      "memberOf": "Roo.Component"
15188     },
15189     {
15190      "name": "hideMode",
15191      "type": "String",
15192      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
15193      "memberOf": "Roo.Component",
15194      "optvals": [
15195       "display",
15196       "visibility"
15197      ]
15198     },
15199     {
15200      "name": "actionMode",
15201      "type": "String",
15202      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
15203      "memberOf": "Roo.Component"
15204     },
15205     {
15206      "name": "listeners",
15207      "type": "Object",
15208      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
15209      "memberOf": "Roo.util.Observable"
15210     }
15211    ],
15212    "events": [
15213     {
15214      "name": "beforedestroy",
15215      "sig": "function (_self)\n{\n\n}",
15216      "type": "function",
15217      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
15218     },
15219     {
15220      "name": "beforehide",
15221      "sig": "function (_self)\n{\n\n}",
15222      "type": "function",
15223      "desc": "Fires before the component is hidden. Return false to stop the hide."
15224     },
15225     {
15226      "name": "beforerender",
15227      "sig": "function (_self)\n{\n\n}",
15228      "type": "function",
15229      "desc": "Fires before the component is rendered. Return false to stop the render."
15230     },
15231     {
15232      "name": "beforeshow",
15233      "sig": "function (_self)\n{\n\n}",
15234      "type": "function",
15235      "desc": "Fires before the component is shown.  Return false to stop the show."
15236     },
15237     {
15238      "name": "childrenrendered",
15239      "sig": "function (_self)\n{\n\n}",
15240      "type": "function",
15241      "desc": "Fires when the children have been rendered.."
15242     },
15243     {
15244      "name": "click",
15245      "sig": "function (_self, e)\n{\n\n}",
15246      "type": "function",
15247      "desc": "When a butotn is pressed"
15248     },
15249     {
15250      "name": "destroy",
15251      "sig": "function (_self)\n{\n\n}",
15252      "type": "function",
15253      "desc": "Fires after the component is destroyed."
15254     },
15255     {
15256      "name": "disable",
15257      "sig": "function (_self)\n{\n\n}",
15258      "type": "function",
15259      "desc": "Fires after the component is disabled."
15260     },
15261     {
15262      "name": "enable",
15263      "sig": "function (_self)\n{\n\n}",
15264      "type": "function",
15265      "desc": "Fires after the component is enabled."
15266     },
15267     {
15268      "name": "hide",
15269      "sig": "function (_self)\n{\n\n}",
15270      "type": "function",
15271      "desc": "Fires after the component is hidden."
15272     },
15273     {
15274      "name": "render",
15275      "sig": "function (_self)\n{\n\n}",
15276      "type": "function",
15277      "desc": "Fires after the component is rendered."
15278     },
15279     {
15280      "name": "show",
15281      "sig": "function (_self)\n{\n\n}",
15282      "type": "function",
15283      "desc": "Fires after the component is shown."
15284     },
15285     {
15286      "name": "toggle",
15287      "sig": "function (e, pressed)\n{\n\n}",
15288      "type": "function",
15289      "desc": "After the button has been toggles"
15290     }
15291    ],
15292    "methods": [
15293     {
15294      "name": "addEvents",
15295      "sig": "(Object object)",
15296      "type": "function",
15297      "desc": "Used to define events on this Observable"
15298     },
15299     {
15300      "name": "addListener",
15301      "sig": "(String eventName, Function handler, Object scope, Object options)",
15302      "type": "function",
15303      "desc": "Appends an event handler to this component"
15304     },
15305     {
15306      "name": "capture",
15307      "sig": "(Observable o, Function fn, Object scope)",
15308      "type": "function",
15309      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
15310     },
15311     {
15312      "name": "destroy",
15313      "sig": "()",
15314      "type": "function",
15315      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
15316     },
15317     {
15318      "name": "disable",
15319      "sig": "()",
15320      "type": "function",
15321      "desc": "Disable this button"
15322     },
15323     {
15324      "name": "enable",
15325      "sig": "()",
15326      "type": "function",
15327      "desc": "Enables this button"
15328     },
15329     {
15330      "name": "fireEvent",
15331      "sig": "(String eventName, Object... args)",
15332      "type": "function",
15333      "desc": "Fires the specified event with the passed parameters (minus the event name)."
15334     },
15335     {
15336      "name": "focus",
15337      "sig": "(Boolean selectText)",
15338      "type": "function",
15339      "desc": "Try to focus this component."
15340     },
15341     {
15342      "name": "getChildContainer",
15343      "sig": "()",
15344      "type": "function",
15345      "desc": "Fetch the element to add children to"
15346     },
15347     {
15348      "name": "getEl",
15349      "sig": "()",
15350      "type": "function",
15351      "desc": "Returns the underlying {@link Roo.Element}."
15352     },
15353     {
15354      "name": "getId",
15355      "sig": "()",
15356      "type": "function",
15357      "desc": "Returns the id of this component."
15358     },
15359     {
15360      "name": "hasListener",
15361      "sig": "(String eventName)",
15362      "type": "function",
15363      "desc": "Checks to see if this object has any listeners for a specified event"
15364     },
15365     {
15366      "name": "hide",
15367      "sig": "()",
15368      "type": "function",
15369      "desc": "Hide a component - adds 'hidden' class"
15370     },
15371     {
15372      "name": "initEvents",
15373      "sig": "()",
15374      "type": "function",
15375      "desc": "Initialize Events for the element"
15376     },
15377     {
15378      "name": "isVisible",
15379      "sig": "()",
15380      "type": "function",
15381      "desc": "Returns true if this component is visible."
15382     },
15383     {
15384      "name": "on",
15385      "sig": "(String eventName, Function handler, Object scope, Object options)",
15386      "type": "function",
15387      "desc": "Appends an event handler to this element (shorthand for addListener)"
15388     },
15389     {
15390      "name": "purgeListeners",
15391      "sig": "()",
15392      "type": "function",
15393      "desc": "Removes all listeners for this object"
15394     },
15395     {
15396      "name": "releaseCapture",
15397      "sig": "(Observable o)",
15398      "type": "function",
15399      "desc": "Removes <b>all</b> added captures from the Observable."
15400     },
15401     {
15402      "name": "removeListener",
15403      "sig": "(String eventName, Function handler, Object scope)",
15404      "type": "function",
15405      "desc": "Removes a listener"
15406     },
15407     {
15408      "name": "render",
15409      "sig": "(String/HTMLElement/Element container)",
15410      "type": "function",
15411      "desc": "If this is a lazy rendering component, render it to its container element."
15412     },
15413     {
15414      "name": "setActive",
15415      "sig": "(Boolean state)",
15416      "type": "function",
15417      "desc": "sets the active state on/off,"
15418     },
15419     {
15420      "name": "setDisabled",
15421      "sig": "(Boolean disabled)",
15422      "type": "function",
15423      "desc": "Convenience function for setting disabled/enabled by boolean."
15424     },
15425     {
15426      "name": "setVisible",
15427      "sig": "(Boolean visible)",
15428      "type": "function",
15429      "desc": "Convenience function to hide or show this component by boolean."
15430     },
15431     {
15432      "name": "show",
15433      "sig": "()",
15434      "type": "function",
15435      "desc": "Show a component - removes 'hidden' class"
15436     },
15437     {
15438      "name": "toggleActive",
15439      "sig": "()",
15440      "type": "function",
15441      "desc": "toggles the current active state"
15442     },
15443     {
15444      "name": "tooltipEl",
15445      "sig": "()",
15446      "type": "function",
15447      "desc": "Fetch the element to display the tooltip on."
15448     },
15449     {
15450      "name": "un",
15451      "sig": "(String eventName, Function handler, Object scope)",
15452      "type": "function",
15453      "desc": "Removes a listener (shorthand for removeListener)"
15454     }
15455    ]
15456   },
15457   "Roo.bootstrap.ButtonGroup": {
15458    "props": [
15459     {
15460      "name": "size",
15461      "type": "String",
15462      "desc": "lg | sm | xs (default empty normal)",
15463      "memberOf": ""
15464     },
15465     {
15466      "name": "align",
15467      "type": "String",
15468      "desc": "vertical | justified  (default none)",
15469      "memberOf": ""
15470     },
15471     {
15472      "name": "direction",
15473      "type": "String",
15474      "desc": "up | down (default down)",
15475      "memberOf": ""
15476     },
15477     {
15478      "name": "toolbar",
15479      "type": "Boolean",
15480      "desc": "false | true",
15481      "memberOf": ""
15482     },
15483     {
15484      "name": "btn",
15485      "type": "Boolean",
15486      "desc": "true | false",
15487      "memberOf": ""
15488     },
15489     {
15490      "name": "cls",
15491      "type": "String",
15492      "desc": "css class",
15493      "memberOf": "Roo.bootstrap.Component"
15494     },
15495     {
15496      "name": "style",
15497      "type": "String",
15498      "desc": "any extra css",
15499      "memberOf": "Roo.bootstrap.Component"
15500     },
15501     {
15502      "name": "xattr",
15503      "type": "Object",
15504      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
15505      "memberOf": "Roo.bootstrap.Component"
15506     },
15507     {
15508      "name": "can_build_overlaid",
15509      "type": "Boolean",
15510      "desc": "True if element can be rebuild from a HTML page",
15511      "memberOf": "Roo.bootstrap.Component"
15512     },
15513     {
15514      "name": "dataId",
15515      "type": "string",
15516      "desc": "cutomer id",
15517      "memberOf": "Roo.bootstrap.Component"
15518     },
15519     {
15520      "name": "name",
15521      "type": "string",
15522      "desc": "Specifies name attribute",
15523      "memberOf": "Roo.bootstrap.Component"
15524     },
15525     {
15526      "name": "tooltip",
15527      "type": "string",
15528      "desc": "Text for the tooltip",
15529      "memberOf": "Roo.bootstrap.Component"
15530     },
15531     {
15532      "name": "container_method",
15533      "type": "string",
15534      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
15535      "memberOf": "Roo.bootstrap.Component"
15536     },
15537     {
15538      "name": "disableClass",
15539      "type": "String",
15540      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
15541      "memberOf": "Roo.Component"
15542     },
15543     {
15544      "name": "allowDomMove",
15545      "type": "Boolean",
15546      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
15547      "memberOf": "Roo.Component"
15548     },
15549     {
15550      "name": "hideMode",
15551      "type": "String",
15552      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
15553      "memberOf": "Roo.Component",
15554      "optvals": [
15555       "display",
15556       "visibility"
15557      ]
15558     },
15559     {
15560      "name": "actionMode",
15561      "type": "String",
15562      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
15563      "memberOf": "Roo.Component"
15564     },
15565     {
15566      "name": "listeners",
15567      "type": "Object",
15568      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
15569      "memberOf": "Roo.util.Observable"
15570     }
15571    ],
15572    "events": [
15573     {
15574      "name": "beforedestroy",
15575      "sig": "function (_self)\n{\n\n}",
15576      "type": "function",
15577      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
15578     },
15579     {
15580      "name": "beforehide",
15581      "sig": "function (_self)\n{\n\n}",
15582      "type": "function",
15583      "desc": "Fires before the component is hidden. Return false to stop the hide."
15584     },
15585     {
15586      "name": "beforerender",
15587      "sig": "function (_self)\n{\n\n}",
15588      "type": "function",
15589      "desc": "Fires before the component is rendered. Return false to stop the render."
15590     },
15591     {
15592      "name": "beforeshow",
15593      "sig": "function (_self)\n{\n\n}",
15594      "type": "function",
15595      "desc": "Fires before the component is shown.  Return false to stop the show."
15596     },
15597     {
15598      "name": "childrenrendered",
15599      "sig": "function (_self)\n{\n\n}",
15600      "type": "function",
15601      "desc": "Fires when the children have been rendered.."
15602     },
15603     {
15604      "name": "destroy",
15605      "sig": "function (_self)\n{\n\n}",
15606      "type": "function",
15607      "desc": "Fires after the component is destroyed."
15608     },
15609     {
15610      "name": "disable",
15611      "sig": "function (_self)\n{\n\n}",
15612      "type": "function",
15613      "desc": "Fires after the component is disabled."
15614     },
15615     {
15616      "name": "enable",
15617      "sig": "function (_self)\n{\n\n}",
15618      "type": "function",
15619      "desc": "Fires after the component is enabled."
15620     },
15621     {
15622      "name": "hide",
15623      "sig": "function (_self)\n{\n\n}",
15624      "type": "function",
15625      "desc": "Fires after the component is hidden."
15626     },
15627     {
15628      "name": "render",
15629      "sig": "function (_self)\n{\n\n}",
15630      "type": "function",
15631      "desc": "Fires after the component is rendered."
15632     },
15633     {
15634      "name": "show",
15635      "sig": "function (_self)\n{\n\n}",
15636      "type": "function",
15637      "desc": "Fires after the component is shown."
15638     }
15639    ],
15640    "methods": [
15641     {
15642      "name": "addEvents",
15643      "sig": "(Object object)",
15644      "type": "function",
15645      "desc": "Used to define events on this Observable"
15646     },
15647     {
15648      "name": "addListener",
15649      "sig": "(String eventName, Function handler, Object scope, Object options)",
15650      "type": "function",
15651      "desc": "Appends an event handler to this component"
15652     },
15653     {
15654      "name": "capture",
15655      "sig": "(Observable o, Function fn, Object scope)",
15656      "type": "function",
15657      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
15658     },
15659     {
15660      "name": "destroy",
15661      "sig": "()",
15662      "type": "function",
15663      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
15664     },
15665     {
15666      "name": "disable",
15667      "sig": "()",
15668      "type": "function",
15669      "desc": "Disable this component."
15670     },
15671     {
15672      "name": "enable",
15673      "sig": "()",
15674      "type": "function",
15675      "desc": "Enable this component."
15676     },
15677     {
15678      "name": "fireEvent",
15679      "sig": "(String eventName, Object... args)",
15680      "type": "function",
15681      "desc": "Fires the specified event with the passed parameters (minus the event name)."
15682     },
15683     {
15684      "name": "focus",
15685      "sig": "(Boolean selectText)",
15686      "type": "function",
15687      "desc": "Try to focus this component."
15688     },
15689     {
15690      "name": "getChildContainer",
15691      "sig": "()",
15692      "type": "function",
15693      "desc": "Fetch the element to add children to"
15694     },
15695     {
15696      "name": "getEl",
15697      "sig": "()",
15698      "type": "function",
15699      "desc": "Returns the underlying {@link Roo.Element}."
15700     },
15701     {
15702      "name": "getId",
15703      "sig": "()",
15704      "type": "function",
15705      "desc": "Returns the id of this component."
15706     },
15707     {
15708      "name": "hasListener",
15709      "sig": "(String eventName)",
15710      "type": "function",
15711      "desc": "Checks to see if this object has any listeners for a specified event"
15712     },
15713     {
15714      "name": "hide",
15715      "sig": "()",
15716      "type": "function",
15717      "desc": "Hide a component - adds 'hidden' class"
15718     },
15719     {
15720      "name": "initEvents",
15721      "sig": "()",
15722      "type": "function",
15723      "desc": "Initialize Events for the element"
15724     },
15725     {
15726      "name": "isVisible",
15727      "sig": "()",
15728      "type": "function",
15729      "desc": "Returns true if this component is visible."
15730     },
15731     {
15732      "name": "on",
15733      "sig": "(String eventName, Function handler, Object scope, Object options)",
15734      "type": "function",
15735      "desc": "Appends an event handler to this element (shorthand for addListener)"
15736     },
15737     {
15738      "name": "purgeListeners",
15739      "sig": "()",
15740      "type": "function",
15741      "desc": "Removes all listeners for this object"
15742     },
15743     {
15744      "name": "releaseCapture",
15745      "sig": "(Observable o)",
15746      "type": "function",
15747      "desc": "Removes <b>all</b> added captures from the Observable."
15748     },
15749     {
15750      "name": "removeListener",
15751      "sig": "(String eventName, Function handler, Object scope)",
15752      "type": "function",
15753      "desc": "Removes a listener"
15754     },
15755     {
15756      "name": "render",
15757      "sig": "(String/HTMLElement/Element container)",
15758      "type": "function",
15759      "desc": "If this is a lazy rendering component, render it to its container element."
15760     },
15761     {
15762      "name": "setDisabled",
15763      "sig": "(Boolean disabled)",
15764      "type": "function",
15765      "desc": "Convenience function for setting disabled/enabled by boolean."
15766     },
15767     {
15768      "name": "setVisible",
15769      "sig": "(Boolean visible)",
15770      "type": "function",
15771      "desc": "Convenience function to hide or show this component by boolean."
15772     },
15773     {
15774      "name": "show",
15775      "sig": "()",
15776      "type": "function",
15777      "desc": "Show a component - removes 'hidden' class"
15778     },
15779     {
15780      "name": "tooltipEl",
15781      "sig": "()",
15782      "type": "function",
15783      "desc": "Fetch the element to display the tooltip on."
15784     },
15785     {
15786      "name": "un",
15787      "sig": "(String eventName, Function handler, Object scope)",
15788      "type": "function",
15789      "desc": "Removes a listener (shorthand for removeListener)"
15790     }
15791    ]
15792   },
15793   "Roo.bootstrap.Calendar": {
15794    "props": [
15795     {
15796      "name": "loadMask",
15797      "type": "Boolean",
15798      "desc": "default false",
15799      "memberOf": "",
15800      "optvals": [
15801       "true",
15802       "false"
15803      ]
15804     },
15805     {
15806      "name": "header",
15807      "type": "Object",
15808      "desc": "generate the user specific header of the calendar, default false",
15809      "memberOf": ""
15810     },
15811     {
15812      "name": "startDay",
15813      "type": "Number",
15814      "desc": "Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)",
15815      "memberOf": ""
15816     },
15817     {
15818      "name": "cls",
15819      "type": "String",
15820      "desc": "css class",
15821      "memberOf": "Roo.bootstrap.Component"
15822     },
15823     {
15824      "name": "style",
15825      "type": "String",
15826      "desc": "any extra css",
15827      "memberOf": "Roo.bootstrap.Component"
15828     },
15829     {
15830      "name": "xattr",
15831      "type": "Object",
15832      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
15833      "memberOf": "Roo.bootstrap.Component"
15834     },
15835     {
15836      "name": "can_build_overlaid",
15837      "type": "Boolean",
15838      "desc": "True if element can be rebuild from a HTML page",
15839      "memberOf": "Roo.bootstrap.Component"
15840     },
15841     {
15842      "name": "dataId",
15843      "type": "string",
15844      "desc": "cutomer id",
15845      "memberOf": "Roo.bootstrap.Component"
15846     },
15847     {
15848      "name": "name",
15849      "type": "string",
15850      "desc": "Specifies name attribute",
15851      "memberOf": "Roo.bootstrap.Component"
15852     },
15853     {
15854      "name": "tooltip",
15855      "type": "string",
15856      "desc": "Text for the tooltip",
15857      "memberOf": "Roo.bootstrap.Component"
15858     },
15859     {
15860      "name": "container_method",
15861      "type": "string",
15862      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
15863      "memberOf": "Roo.bootstrap.Component"
15864     },
15865     {
15866      "name": "disableClass",
15867      "type": "String",
15868      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
15869      "memberOf": "Roo.Component"
15870     },
15871     {
15872      "name": "allowDomMove",
15873      "type": "Boolean",
15874      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
15875      "memberOf": "Roo.Component"
15876     },
15877     {
15878      "name": "hideMode",
15879      "type": "String",
15880      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
15881      "memberOf": "Roo.Component",
15882      "optvals": [
15883       "display",
15884       "visibility"
15885      ]
15886     },
15887     {
15888      "name": "actionMode",
15889      "type": "String",
15890      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
15891      "memberOf": "Roo.Component"
15892     },
15893     {
15894      "name": "listeners",
15895      "type": "Object",
15896      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
15897      "memberOf": "Roo.util.Observable"
15898     }
15899    ],
15900    "events": [
15901     {
15902      "name": "beforedestroy",
15903      "sig": "function (_self)\n{\n\n}",
15904      "type": "function",
15905      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
15906     },
15907     {
15908      "name": "beforehide",
15909      "sig": "function (_self)\n{\n\n}",
15910      "type": "function",
15911      "desc": "Fires before the component is hidden. Return false to stop the hide."
15912     },
15913     {
15914      "name": "beforerender",
15915      "sig": "function (_self)\n{\n\n}",
15916      "type": "function",
15917      "desc": "Fires before the component is rendered. Return false to stop the render."
15918     },
15919     {
15920      "name": "beforeshow",
15921      "sig": "function (_self)\n{\n\n}",
15922      "type": "function",
15923      "desc": "Fires before the component is shown.  Return false to stop the show."
15924     },
15925     {
15926      "name": "childrenrendered",
15927      "sig": "function (_self)\n{\n\n}",
15928      "type": "function",
15929      "desc": "Fires when the children have been rendered.."
15930     },
15931     {
15932      "name": "destroy",
15933      "sig": "function (_self)\n{\n\n}",
15934      "type": "function",
15935      "desc": "Fires after the component is destroyed."
15936     },
15937     {
15938      "name": "disable",
15939      "sig": "function (_self)\n{\n\n}",
15940      "type": "function",
15941      "desc": "Fires after the component is disabled."
15942     },
15943     {
15944      "name": "enable",
15945      "sig": "function (_self)\n{\n\n}",
15946      "type": "function",
15947      "desc": "Fires after the component is enabled."
15948     },
15949     {
15950      "name": "eventclick",
15951      "sig": "function (_self, )\n{\n\n}",
15952      "type": "function",
15953      "desc": "Fires when the mouse click an"
15954     },
15955     {
15956      "name": "evententer",
15957      "sig": "function (_self, Event)\n{\n\n}",
15958      "type": "function",
15959      "desc": "Fires when mouse over an event"
15960     },
15961     {
15962      "name": "eventleave",
15963      "sig": "function (_self, )\n{\n\n}",
15964      "type": "function",
15965      "desc": "Fires when the mouse leaves an"
15966     },
15967     {
15968      "name": "hide",
15969      "sig": "function (_self)\n{\n\n}",
15970      "type": "function",
15971      "desc": "Fires after the component is hidden."
15972     },
15973     {
15974      "name": "monthchange",
15975      "sig": "function (_self, date)\n{\n\n}",
15976      "type": "function",
15977      "desc": "Fires when the displayed month changes"
15978     },
15979     {
15980      "name": "render",
15981      "sig": "function (_self)\n{\n\n}",
15982      "type": "function",
15983      "desc": "Fires after the component is rendered."
15984     },
15985     {
15986      "name": "select",
15987      "sig": "function (_self, date)\n{\n\n}",
15988      "type": "function",
15989      "desc": "Fires when a date is selected"
15990     },
15991     {
15992      "name": "show",
15993      "sig": "function (_self)\n{\n\n}",
15994      "type": "function",
15995      "desc": "Fires after the component is shown."
15996     }
15997    ],
15998    "methods": [
15999     {
16000      "name": "addEvents",
16001      "sig": "(Object object)",
16002      "type": "function",
16003      "desc": "Used to define events on this Observable"
16004     },
16005     {
16006      "name": "addListener",
16007      "sig": "(String eventName, Function handler, Object scope, Object options)",
16008      "type": "function",
16009      "desc": "Appends an event handler to this component"
16010     },
16011     {
16012      "name": "capture",
16013      "sig": "(Observable o, Function fn, Object scope)",
16014      "type": "function",
16015      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
16016     },
16017     {
16018      "name": "destroy",
16019      "sig": "()",
16020      "type": "function",
16021      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
16022     },
16023     {
16024      "name": "disable",
16025      "sig": "()",
16026      "type": "function",
16027      "desc": "Disable this component."
16028     },
16029     {
16030      "name": "enable",
16031      "sig": "()",
16032      "type": "function",
16033      "desc": "Enable this component."
16034     },
16035     {
16036      "name": "fireEvent",
16037      "sig": "(String eventName, Object... args)",
16038      "type": "function",
16039      "desc": "Fires the specified event with the passed parameters (minus the event name)."
16040     },
16041     {
16042      "name": "focus",
16043      "sig": "(Boolean selectText)",
16044      "type": "function",
16045      "desc": "Try to focus this component."
16046     },
16047     {
16048      "name": "getChildContainer",
16049      "sig": "()",
16050      "type": "function",
16051      "desc": "Fetch the element to add children to"
16052     },
16053     {
16054      "name": "getEl",
16055      "sig": "()",
16056      "type": "function",
16057      "desc": "Returns the underlying {@link Roo.Element}."
16058     },
16059     {
16060      "name": "getId",
16061      "sig": "()",
16062      "type": "function",
16063      "desc": "Returns the id of this component."
16064     },
16065     {
16066      "name": "hasListener",
16067      "sig": "(String eventName)",
16068      "type": "function",
16069      "desc": "Checks to see if this object has any listeners for a specified event"
16070     },
16071     {
16072      "name": "hide",
16073      "sig": "()",
16074      "type": "function",
16075      "desc": "Hide a component - adds 'hidden' class"
16076     },
16077     {
16078      "name": "initEvents",
16079      "sig": "()",
16080      "type": "function",
16081      "desc": "Initialize Events for the element"
16082     },
16083     {
16084      "name": "isVisible",
16085      "sig": "()",
16086      "type": "function",
16087      "desc": "Returns true if this component is visible."
16088     },
16089     {
16090      "name": "on",
16091      "sig": "(String eventName, Function handler, Object scope, Object options)",
16092      "type": "function",
16093      "desc": "Appends an event handler to this element (shorthand for addListener)"
16094     },
16095     {
16096      "name": "purgeListeners",
16097      "sig": "()",
16098      "type": "function",
16099      "desc": "Removes all listeners for this object"
16100     },
16101     {
16102      "name": "releaseCapture",
16103      "sig": "(Observable o)",
16104      "type": "function",
16105      "desc": "Removes <b>all</b> added captures from the Observable."
16106     },
16107     {
16108      "name": "removeListener",
16109      "sig": "(String eventName, Function handler, Object scope)",
16110      "type": "function",
16111      "desc": "Removes a listener"
16112     },
16113     {
16114      "name": "render",
16115      "sig": "(String/HTMLElement/Element container)",
16116      "type": "function",
16117      "desc": "If this is a lazy rendering component, render it to its container element."
16118     },
16119     {
16120      "name": "setDisabled",
16121      "sig": "(Boolean disabled)",
16122      "type": "function",
16123      "desc": "Convenience function for setting disabled/enabled by boolean."
16124     },
16125     {
16126      "name": "setVisible",
16127      "sig": "(Boolean visible)",
16128      "type": "function",
16129      "desc": "Convenience function to hide or show this component by boolean."
16130     },
16131     {
16132      "name": "show",
16133      "sig": "()",
16134      "type": "function",
16135      "desc": "Show a component - removes 'hidden' class"
16136     },
16137     {
16138      "name": "tooltipEl",
16139      "sig": "()",
16140      "type": "function",
16141      "desc": "Fetch the element to display the tooltip on."
16142     },
16143     {
16144      "name": "un",
16145      "sig": "(String eventName, Function handler, Object scope)",
16146      "type": "function",
16147      "desc": "Removes a listener (shorthand for removeListener)"
16148     }
16149    ]
16150   },
16151   "Roo.bootstrap.CheckBox": {
16152    "props": [
16153     {
16154      "name": "valueOff",
16155      "type": "String",
16156      "desc": "The value that should go into the generated input element's value when unchecked.",
16157      "memberOf": ""
16158     },
16159     {
16160      "name": "inputValue",
16161      "type": "String",
16162      "desc": "The value that should go into the generated input element's value when checked.",
16163      "memberOf": ""
16164     },
16165     {
16166      "name": "boxLabel",
16167      "type": "String",
16168      "desc": "The text that appears beside the checkbox",
16169      "memberOf": ""
16170     },
16171     {
16172      "name": "weight",
16173      "type": "String",
16174      "desc": "The text that appears beside the checkbox",
16175      "memberOf": "",
16176      "optvals": [
16177       "primary",
16178       "warning",
16179       "info",
16180       "danger",
16181       "success"
16182      ]
16183     },
16184     {
16185      "name": "checked",
16186      "type": "Boolean",
16187      "desc": "initnal the element",
16188      "memberOf": ""
16189     },
16190     {
16191      "name": "inline",
16192      "type": "Boolean",
16193      "desc": "inline the element (default false)",
16194      "memberOf": ""
16195     },
16196     {
16197      "name": "groupId",
16198      "type": "String",
16199      "desc": "the checkbox group id // normal just use for checkbox",
16200      "memberOf": ""
16201     },
16202     {
16203      "name": "disabled",
16204      "type": "Boolean",
16205      "desc": "is it disabled",
16206      "memberOf": "Roo.bootstrap.Input"
16207     },
16208     {
16209      "name": "inputType",
16210      "type": "String",
16211      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
16212      "memberOf": "Roo.bootstrap.Input"
16213     },
16214     {
16215      "name": "name",
16216      "type": "String",
16217      "desc": "name of the input",
16218      "memberOf": "Roo.bootstrap.Input"
16219     },
16220     {
16221      "name": "fieldLabel",
16222      "type": "string",
16223      "desc": "- the label associated",
16224      "memberOf": "Roo.bootstrap.Input"
16225     },
16226     {
16227      "name": "placeholder",
16228      "type": "string",
16229      "desc": "- placeholder to put in text.",
16230      "memberOf": "Roo.bootstrap.Input"
16231     },
16232     {
16233      "name": "before",
16234      "type": "string",
16235      "desc": "- input group add on before",
16236      "memberOf": "Roo.bootstrap.Input"
16237     },
16238     {
16239      "name": "after",
16240      "type": "string",
16241      "desc": "- input group add on after",
16242      "memberOf": "Roo.bootstrap.Input"
16243     },
16244     {
16245      "name": "size",
16246      "type": "string",
16247      "desc": "- (lg|sm) or leave empty..",
16248      "memberOf": "Roo.bootstrap.Input"
16249     },
16250     {
16251      "name": "xs",
16252      "type": "Number",
16253      "desc": "colspan out of 12 for mobile-sized screens",
16254      "memberOf": "Roo.bootstrap.Input"
16255     },
16256     {
16257      "name": "sm",
16258      "type": "Number",
16259      "desc": "colspan out of 12 for tablet-sized screens",
16260      "memberOf": "Roo.bootstrap.Input"
16261     },
16262     {
16263      "name": "md",
16264      "type": "Number",
16265      "desc": "colspan out of 12 for computer-sized screens",
16266      "memberOf": "Roo.bootstrap.Input"
16267     },
16268     {
16269      "name": "lg",
16270      "type": "Number",
16271      "desc": "colspan out of 12 for large computer-sized screens",
16272      "memberOf": "Roo.bootstrap.Input"
16273     },
16274     {
16275      "name": "value",
16276      "type": "string",
16277      "desc": "default value of the input",
16278      "memberOf": "Roo.bootstrap.Input"
16279     },
16280     {
16281      "name": "labelWidth",
16282      "type": "Number",
16283      "desc": "set the width of label (0-12)",
16284      "memberOf": "Roo.bootstrap.Input"
16285     },
16286     {
16287      "name": "labelAlign",
16288      "type": "String",
16289      "desc": "",
16290      "memberOf": "Roo.bootstrap.Input",
16291      "optvals": [
16292       "top",
16293       "left"
16294      ]
16295     },
16296     {
16297      "name": "readOnly",
16298      "type": "Boolean",
16299      "desc": "Specifies that the field should be read-only",
16300      "memberOf": "Roo.bootstrap.Input"
16301     },
16302     {
16303      "name": "autocomplete",
16304      "type": "String",
16305      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
16306      "memberOf": "Roo.bootstrap.Input"
16307     },
16308     {
16309      "name": "indicatorpos",
16310      "type": "String",
16311      "desc": "default left",
16312      "memberOf": "Roo.bootstrap.Input",
16313      "optvals": [
16314       "left",
16315       "right"
16316      ]
16317     },
16318     {
16319      "name": "align",
16320      "type": "String",
16321      "desc": "Default left",
16322      "memberOf": "Roo.bootstrap.Input",
16323      "optvals": [
16324       "left",
16325       "center",
16326       "right"
16327      ]
16328     },
16329     {
16330      "name": "forceFeedback",
16331      "type": "Boolean",
16332      "desc": "Default false",
16333      "memberOf": "Roo.bootstrap.Input",
16334      "optvals": [
16335       "true",
16336       "false"
16337      ]
16338     },
16339     {
16340      "name": "validationEvent",
16341      "type": "String/Boolean",
16342      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
16343      "memberOf": "Roo.bootstrap.Input"
16344     },
16345     {
16346      "name": "validateOnBlur",
16347      "type": "Boolean",
16348      "desc": "Whether the field should validate when it loses focus (defaults to true).",
16349      "memberOf": "Roo.bootstrap.Input"
16350     },
16351     {
16352      "name": "validationDelay",
16353      "type": "Number",
16354      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
16355      "memberOf": "Roo.bootstrap.Input"
16356     },
16357     {
16358      "name": "focusClass",
16359      "type": "String",
16360      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
16361      "memberOf": "Roo.bootstrap.Input"
16362     },
16363     {
16364      "name": "invalidClass",
16365      "type": "String",
16366      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
16367      "memberOf": "Roo.bootstrap.Input"
16368     },
16369     {
16370      "name": "validClass",
16371      "type": "String",
16372      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
16373      "memberOf": "Roo.bootstrap.Input"
16374     },
16375     {
16376      "name": "hasFeedback",
16377      "type": "Boolean",
16378      "desc": "default true",
16379      "memberOf": "Roo.bootstrap.Input",
16380      "optvals": [
16381       "true",
16382       "false"
16383      ]
16384     },
16385     {
16386      "name": "invalidFeedbackIcon",
16387      "type": "String",
16388      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
16389      "memberOf": "Roo.bootstrap.Input"
16390     },
16391     {
16392      "name": "validFeedbackIcon",
16393      "type": "String",
16394      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
16395      "memberOf": "Roo.bootstrap.Input"
16396     },
16397     {
16398      "name": "selectOnFocus",
16399      "type": "Boolean",
16400      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
16401      "memberOf": "Roo.bootstrap.Input"
16402     },
16403     {
16404      "name": "maskRe",
16405      "type": "String",
16406      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
16407      "memberOf": "Roo.bootstrap.Input"
16408     },
16409     {
16410      "name": "vtype",
16411      "type": "String",
16412      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
16413      "memberOf": "Roo.bootstrap.Input"
16414     },
16415     {
16416      "name": "disableKeyFilter",
16417      "type": "Boolean",
16418      "desc": "True to disable input keystroke filtering (defaults to false)",
16419      "memberOf": "Roo.bootstrap.Input"
16420     },
16421     {
16422      "name": "allowBlank",
16423      "type": "Boolean",
16424      "desc": "False to validate that the value length > 0 (defaults to true)",
16425      "memberOf": "Roo.bootstrap.Input"
16426     },
16427     {
16428      "name": "blankText",
16429      "type": "String",
16430      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
16431      "memberOf": "Roo.bootstrap.Input"
16432     },
16433     {
16434      "name": "minLength",
16435      "type": "Number",
16436      "desc": "Minimum input field length required (defaults to 0)",
16437      "memberOf": "Roo.bootstrap.Input"
16438     },
16439     {
16440      "name": "maxLength",
16441      "type": "Number",
16442      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
16443      "memberOf": "Roo.bootstrap.Input"
16444     },
16445     {
16446      "name": "minLengthText",
16447      "type": "String",
16448      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
16449      "memberOf": "Roo.bootstrap.Input"
16450     },
16451     {
16452      "name": "maxLengthText",
16453      "type": "String",
16454      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
16455      "memberOf": "Roo.bootstrap.Input"
16456     },
16457     {
16458      "name": "validator",
16459      "type": "Function",
16460      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
16461      "memberOf": "Roo.bootstrap.Input"
16462     },
16463     {
16464      "name": "regex",
16465      "type": "RegExp",
16466      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
16467      "memberOf": "Roo.bootstrap.Input"
16468     },
16469     {
16470      "name": "regexText",
16471      "type": "String",
16472      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
16473      "memberOf": "Roo.bootstrap.Input"
16474     },
16475     {
16476      "name": "cls",
16477      "type": "String",
16478      "desc": "css class",
16479      "memberOf": "Roo.bootstrap.Component"
16480     },
16481     {
16482      "name": "style",
16483      "type": "String",
16484      "desc": "any extra css",
16485      "memberOf": "Roo.bootstrap.Component"
16486     },
16487     {
16488      "name": "xattr",
16489      "type": "Object",
16490      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
16491      "memberOf": "Roo.bootstrap.Component"
16492     },
16493     {
16494      "name": "can_build_overlaid",
16495      "type": "Boolean",
16496      "desc": "True if element can be rebuild from a HTML page",
16497      "memberOf": "Roo.bootstrap.Component"
16498     },
16499     {
16500      "name": "dataId",
16501      "type": "string",
16502      "desc": "cutomer id",
16503      "memberOf": "Roo.bootstrap.Component"
16504     },
16505     {
16506      "name": "tooltip",
16507      "type": "string",
16508      "desc": "Text for the tooltip",
16509      "memberOf": "Roo.bootstrap.Component"
16510     },
16511     {
16512      "name": "container_method",
16513      "type": "string",
16514      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
16515      "memberOf": "Roo.bootstrap.Component"
16516     },
16517     {
16518      "name": "disableClass",
16519      "type": "String",
16520      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
16521      "memberOf": "Roo.Component"
16522     },
16523     {
16524      "name": "allowDomMove",
16525      "type": "Boolean",
16526      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
16527      "memberOf": "Roo.Component"
16528     },
16529     {
16530      "name": "hideMode",
16531      "type": "String",
16532      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
16533      "memberOf": "Roo.Component",
16534      "optvals": [
16535       "display",
16536       "visibility"
16537      ]
16538     },
16539     {
16540      "name": "actionMode",
16541      "type": "String",
16542      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
16543      "memberOf": "Roo.Component"
16544     },
16545     {
16546      "name": "listeners",
16547      "type": "Object",
16548      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
16549      "memberOf": "Roo.util.Observable"
16550     }
16551    ],
16552    "events": [
16553     {
16554      "name": "beforedestroy",
16555      "sig": "function (_self)\n{\n\n}",
16556      "type": "function",
16557      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
16558     },
16559     {
16560      "name": "beforehide",
16561      "sig": "function (_self)\n{\n\n}",
16562      "type": "function",
16563      "desc": "Fires before the component is hidden. Return false to stop the hide."
16564     },
16565     {
16566      "name": "beforerender",
16567      "sig": "function (_self)\n{\n\n}",
16568      "type": "function",
16569      "desc": "Fires before the component is rendered. Return false to stop the render."
16570     },
16571     {
16572      "name": "beforeshow",
16573      "sig": "function (_self)\n{\n\n}",
16574      "type": "function",
16575      "desc": "Fires before the component is shown.  Return false to stop the show."
16576     },
16577     {
16578      "name": "blur",
16579      "sig": "function (_self)\n{\n\n}",
16580      "type": "function",
16581      "desc": "Fires when this field loses input focus."
16582     },
16583     {
16584      "name": "change",
16585      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
16586      "type": "function",
16587      "desc": "Fires just before the field blurs if the field value has changed."
16588     },
16589     {
16590      "name": "check",
16591      "sig": "function (_self, checked)\n{\n\n}",
16592      "type": "function",
16593      "desc": "Fires when the element is checked or unchecked."
16594     },
16595     {
16596      "name": "childrenrendered",
16597      "sig": "function (_self)\n{\n\n}",
16598      "type": "function",
16599      "desc": "Fires when the children have been rendered.."
16600     },
16601     {
16602      "name": "destroy",
16603      "sig": "function (_self)\n{\n\n}",
16604      "type": "function",
16605      "desc": "Fires after the component is destroyed."
16606     },
16607     {
16608      "name": "disable",
16609      "sig": "function (_self)\n{\n\n}",
16610      "type": "function",
16611      "desc": "Fires after the component is disabled."
16612     },
16613     {
16614      "name": "enable",
16615      "sig": "function (_self)\n{\n\n}",
16616      "type": "function",
16617      "desc": "Fires after the component is enabled."
16618     },
16619     {
16620      "name": "focus",
16621      "sig": "function (_self)\n{\n\n}",
16622      "type": "function",
16623      "desc": "Fires when this field receives input focus."
16624     },
16625     {
16626      "name": "hide",
16627      "sig": "function (_self)\n{\n\n}",
16628      "type": "function",
16629      "desc": "Fires after the component is hidden."
16630     },
16631     {
16632      "name": "invalid",
16633      "sig": "function (_self, msg)\n{\n\n}",
16634      "type": "function",
16635      "desc": "Fires after the field has been marked as invalid."
16636     },
16637     {
16638      "name": "keyup",
16639      "sig": "function (_self, e)\n{\n\n}",
16640      "type": "function",
16641      "desc": "Fires after the key up"
16642     },
16643     {
16644      "name": "render",
16645      "sig": "function (_self)\n{\n\n}",
16646      "type": "function",
16647      "desc": "Fires after the component is rendered."
16648     },
16649     {
16650      "name": "show",
16651      "sig": "function (_self)\n{\n\n}",
16652      "type": "function",
16653      "desc": "Fires after the component is shown."
16654     },
16655     {
16656      "name": "specialkey",
16657      "sig": "function (_self, e)\n{\n\n}",
16658      "type": "function",
16659      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
16660     },
16661     {
16662      "name": "valid",
16663      "sig": "function (_self)\n{\n\n}",
16664      "type": "function",
16665      "desc": "Fires after the field has been validated with no errors."
16666     }
16667    ],
16668    "methods": [
16669     {
16670      "name": "addEvents",
16671      "sig": "(Object object)",
16672      "type": "function",
16673      "desc": "Used to define events on this Observable"
16674     },
16675     {
16676      "name": "addListener",
16677      "sig": "(String eventName, Function handler, Object scope, Object options)",
16678      "type": "function",
16679      "desc": "Appends an event handler to this component"
16680     },
16681     {
16682      "name": "capture",
16683      "sig": "(Observable o, Function fn, Object scope)",
16684      "type": "function",
16685      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
16686     },
16687     {
16688      "name": "clearInvalid",
16689      "sig": "()",
16690      "type": "function",
16691      "desc": "Clear any invalid styles/messages for this field"
16692     },
16693     {
16694      "name": "destroy",
16695      "sig": "()",
16696      "type": "function",
16697      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
16698     },
16699     {
16700      "name": "disable",
16701      "sig": "()",
16702      "type": "function",
16703      "desc": "Disable this component."
16704     },
16705     {
16706      "name": "enable",
16707      "sig": "()",
16708      "type": "function",
16709      "desc": "Enable this component."
16710     },
16711     {
16712      "name": "fireEvent",
16713      "sig": "(String eventName, Object... args)",
16714      "type": "function",
16715      "desc": "Fires the specified event with the passed parameters (minus the event name)."
16716     },
16717     {
16718      "name": "focus",
16719      "sig": "(Boolean selectText)",
16720      "type": "function",
16721      "desc": "Try to focus this component."
16722     },
16723     {
16724      "name": "get",
16725      "sig": "(string the)",
16726      "type": "function",
16727      "desc": "fetch a CheckBox Group based on the group ID"
16728     },
16729     {
16730      "name": "getChildContainer",
16731      "sig": "()",
16732      "type": "function",
16733      "desc": "Fetch the element to add children to"
16734     },
16735     {
16736      "name": "getEl",
16737      "sig": "()",
16738      "type": "function",
16739      "desc": "Returns the underlying {@link Roo.Element}."
16740     },
16741     {
16742      "name": "getId",
16743      "sig": "()",
16744      "type": "function",
16745      "desc": "Returns the id of this component."
16746     },
16747     {
16748      "name": "getName",
16749      "sig": "()",
16750      "type": "function",
16751      "desc": "Returns the name of the field"
16752     },
16753     {
16754      "name": "getRawValue",
16755      "sig": "()",
16756      "type": "function",
16757      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
16758     },
16759     {
16760      "name": "getValue",
16761      "sig": "()",
16762      "type": "function",
16763      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
16764     },
16765     {
16766      "name": "hasListener",
16767      "sig": "(String eventName)",
16768      "type": "function",
16769      "desc": "Checks to see if this object has any listeners for a specified event"
16770     },
16771     {
16772      "name": "hide",
16773      "sig": "()",
16774      "type": "function",
16775      "desc": "Hide a component - adds 'hidden' class"
16776     },
16777     {
16778      "name": "initEvents",
16779      "sig": "()",
16780      "type": "function",
16781      "desc": "Initialize Events for the element"
16782     },
16783     {
16784      "name": "inputEl",
16785      "sig": "()",
16786      "type": "function",
16787      "desc": "return the real input element."
16788     },
16789     {
16790      "name": "isVisible",
16791      "sig": "()",
16792      "type": "function",
16793      "desc": "Returns true if this component is visible."
16794     },
16795     {
16796      "name": "markInvalid",
16797      "sig": "(String msg)",
16798      "type": "function",
16799      "desc": "Mark this field as invalid"
16800     },
16801     {
16802      "name": "markValid",
16803      "sig": "()",
16804      "type": "function",
16805      "desc": "Mark this field as valid"
16806     },
16807     {
16808      "name": "on",
16809      "sig": "(String eventName, Function handler, Object scope, Object options)",
16810      "type": "function",
16811      "desc": "Appends an event handler to this element (shorthand for addListener)"
16812     },
16813     {
16814      "name": "purgeListeners",
16815      "sig": "()",
16816      "type": "function",
16817      "desc": "Removes all listeners for this object"
16818     },
16819     {
16820      "name": "register",
16821      "sig": "(Roo.bootstrap.CheckBox the)",
16822      "type": "function",
16823      "desc": "register a CheckBox Group"
16824     },
16825     {
16826      "name": "releaseCapture",
16827      "sig": "(Observable o)",
16828      "type": "function",
16829      "desc": "Removes <b>all</b> added captures from the Observable."
16830     },
16831     {
16832      "name": "removeListener",
16833      "sig": "(String eventName, Function handler, Object scope)",
16834      "type": "function",
16835      "desc": "Removes a listener"
16836     },
16837     {
16838      "name": "render",
16839      "sig": "(String/HTMLElement/Element container)",
16840      "type": "function",
16841      "desc": "If this is a lazy rendering component, render it to its container element."
16842     },
16843     {
16844      "name": "reset",
16845      "sig": "()",
16846      "type": "function",
16847      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
16848     },
16849     {
16850      "name": "setDisabled",
16851      "sig": "(Boolean disabled)",
16852      "type": "function",
16853      "desc": "Convenience function for setting disabled/enabled by boolean."
16854     },
16855     {
16856      "name": "setRawValue",
16857      "sig": "(Mixed value)",
16858      "type": "function",
16859      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
16860     },
16861     {
16862      "name": "setValue",
16863      "sig": "(Mixed value)",
16864      "type": "function",
16865      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
16866     },
16867     {
16868      "name": "setVisible",
16869      "sig": "(Boolean visible)",
16870      "type": "function",
16871      "desc": "Convenience function to hide or show this component by boolean."
16872     },
16873     {
16874      "name": "show",
16875      "sig": "()",
16876      "type": "function",
16877      "desc": "Show a component - removes 'hidden' class"
16878     },
16879     {
16880      "name": "tooltipEl",
16881      "sig": "()",
16882      "type": "function",
16883      "desc": "Fetch the element to display the tooltip on."
16884     },
16885     {
16886      "name": "un",
16887      "sig": "(String eventName, Function handler, Object scope)",
16888      "type": "function",
16889      "desc": "Removes a listener (shorthand for removeListener)"
16890     },
16891     {
16892      "name": "validate",
16893      "sig": "()",
16894      "type": "function",
16895      "desc": "Validates the field value"
16896     },
16897     {
16898      "name": "validateValue",
16899      "sig": "(Mixed value)",
16900      "type": "function",
16901      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
16902     }
16903    ]
16904   },
16905   "Roo.bootstrap.Column": {
16906    "props": [
16907     {
16908      "name": "xs",
16909      "type": "Number",
16910      "desc": "colspan out of 12 for mobile-sized screens or 0 for hidden",
16911      "memberOf": ""
16912     },
16913     {
16914      "name": "sm",
16915      "type": "Number",
16916      "desc": "colspan out of 12 for tablet-sized screens or 0 for hidden",
16917      "memberOf": ""
16918     },
16919     {
16920      "name": "md",
16921      "type": "Number",
16922      "desc": "colspan out of 12 for computer-sized screens or 0 for hidden",
16923      "memberOf": ""
16924     },
16925     {
16926      "name": "lg",
16927      "type": "Number",
16928      "desc": "colspan out of 12 for large computer-sized screens or 0 for hidden",
16929      "memberOf": ""
16930     },
16931     {
16932      "name": "xsoff",
16933      "type": "Number",
16934      "desc": "colspan offset out of 12 for mobile-sized screens or 0 for hidden",
16935      "memberOf": ""
16936     },
16937     {
16938      "name": "smoff",
16939      "type": "Number",
16940      "desc": "colspan offset out of 12 for tablet-sized screens or 0 for hidden",
16941      "memberOf": ""
16942     },
16943     {
16944      "name": "mdoff",
16945      "type": "Number",
16946      "desc": "colspan offset out of 12 for computer-sized screens or 0 for hidden",
16947      "memberOf": ""
16948     },
16949     {
16950      "name": "lgoff",
16951      "type": "Number",
16952      "desc": "colspan offset out of 12 for large computer-sized screens or 0 for hidden",
16953      "memberOf": ""
16954     },
16955     {
16956      "name": "hidden",
16957      "type": "Boolean",
16958      "desc": "hide the element",
16959      "memberOf": "",
16960      "optvals": [
16961       "true",
16962       "false"
16963      ]
16964     },
16965     {
16966      "name": "alert",
16967      "type": "String",
16968      "desc": "type alert (changes background / border...)",
16969      "memberOf": "",
16970      "optvals": [
16971       "success",
16972       "info",
16973       "warning",
16974       "danger"
16975      ]
16976     },
16977     {
16978      "name": "fa",
16979      "type": "String",
16980      "desc": "font awesome icon",
16981      "memberOf": "",
16982      "optvals": [
16983       "ban",
16984       "check",
16985       "..."
16986      ]
16987     },
16988     {
16989      "name": "fasize",
16990      "type": "Number",
16991      "desc": "font awsome size",
16992      "memberOf": "",
16993      "optvals": [
16994       "1",
16995       "2",
16996       "...."
16997      ]
16998     },
16999     {
17000      "name": "icon",
17001      "type": "String",
17002      "desc": "glyphicon name",
17003      "memberOf": "",
17004      "optvals": [
17005       "info-sign",
17006       "check",
17007       "..."
17008      ]
17009     },
17010     {
17011      "name": "html",
17012      "type": "String",
17013      "desc": "content of column.",
17014      "memberOf": ""
17015     },
17016     {
17017      "name": "cls",
17018      "type": "String",
17019      "desc": "css class",
17020      "memberOf": "Roo.bootstrap.Component"
17021     },
17022     {
17023      "name": "style",
17024      "type": "String",
17025      "desc": "any extra css",
17026      "memberOf": "Roo.bootstrap.Component"
17027     },
17028     {
17029      "name": "xattr",
17030      "type": "Object",
17031      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
17032      "memberOf": "Roo.bootstrap.Component"
17033     },
17034     {
17035      "name": "can_build_overlaid",
17036      "type": "Boolean",
17037      "desc": "True if element can be rebuild from a HTML page",
17038      "memberOf": "Roo.bootstrap.Component"
17039     },
17040     {
17041      "name": "dataId",
17042      "type": "string",
17043      "desc": "cutomer id",
17044      "memberOf": "Roo.bootstrap.Component"
17045     },
17046     {
17047      "name": "name",
17048      "type": "string",
17049      "desc": "Specifies name attribute",
17050      "memberOf": "Roo.bootstrap.Component"
17051     },
17052     {
17053      "name": "tooltip",
17054      "type": "string",
17055      "desc": "Text for the tooltip",
17056      "memberOf": "Roo.bootstrap.Component"
17057     },
17058     {
17059      "name": "container_method",
17060      "type": "string",
17061      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
17062      "memberOf": "Roo.bootstrap.Component"
17063     },
17064     {
17065      "name": "disableClass",
17066      "type": "String",
17067      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
17068      "memberOf": "Roo.Component"
17069     },
17070     {
17071      "name": "allowDomMove",
17072      "type": "Boolean",
17073      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
17074      "memberOf": "Roo.Component"
17075     },
17076     {
17077      "name": "hideMode",
17078      "type": "String",
17079      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
17080      "memberOf": "Roo.Component",
17081      "optvals": [
17082       "display",
17083       "visibility"
17084      ]
17085     },
17086     {
17087      "name": "actionMode",
17088      "type": "String",
17089      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
17090      "memberOf": "Roo.Component"
17091     },
17092     {
17093      "name": "listeners",
17094      "type": "Object",
17095      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
17096      "memberOf": "Roo.util.Observable"
17097     }
17098    ],
17099    "events": [
17100     {
17101      "name": "beforedestroy",
17102      "sig": "function (_self)\n{\n\n}",
17103      "type": "function",
17104      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
17105     },
17106     {
17107      "name": "beforehide",
17108      "sig": "function (_self)\n{\n\n}",
17109      "type": "function",
17110      "desc": "Fires before the component is hidden. Return false to stop the hide."
17111     },
17112     {
17113      "name": "beforerender",
17114      "sig": "function (_self)\n{\n\n}",
17115      "type": "function",
17116      "desc": "Fires before the component is rendered. Return false to stop the render."
17117     },
17118     {
17119      "name": "beforeshow",
17120      "sig": "function (_self)\n{\n\n}",
17121      "type": "function",
17122      "desc": "Fires before the component is shown.  Return false to stop the show."
17123     },
17124     {
17125      "name": "childrenrendered",
17126      "sig": "function (_self)\n{\n\n}",
17127      "type": "function",
17128      "desc": "Fires when the children have been rendered.."
17129     },
17130     {
17131      "name": "destroy",
17132      "sig": "function (_self)\n{\n\n}",
17133      "type": "function",
17134      "desc": "Fires after the component is destroyed."
17135     },
17136     {
17137      "name": "disable",
17138      "sig": "function (_self)\n{\n\n}",
17139      "type": "function",
17140      "desc": "Fires after the component is disabled."
17141     },
17142     {
17143      "name": "enable",
17144      "sig": "function (_self)\n{\n\n}",
17145      "type": "function",
17146      "desc": "Fires after the component is enabled."
17147     },
17148     {
17149      "name": "hide",
17150      "sig": "function (_self)\n{\n\n}",
17151      "type": "function",
17152      "desc": "Fires after the component is hidden."
17153     },
17154     {
17155      "name": "render",
17156      "sig": "function (_self)\n{\n\n}",
17157      "type": "function",
17158      "desc": "Fires after the component is rendered."
17159     },
17160     {
17161      "name": "show",
17162      "sig": "function (_self)\n{\n\n}",
17163      "type": "function",
17164      "desc": "Fires after the component is shown."
17165     }
17166    ],
17167    "methods": [
17168     {
17169      "name": "addEvents",
17170      "sig": "(Object object)",
17171      "type": "function",
17172      "desc": "Used to define events on this Observable"
17173     },
17174     {
17175      "name": "addListener",
17176      "sig": "(String eventName, Function handler, Object scope, Object options)",
17177      "type": "function",
17178      "desc": "Appends an event handler to this component"
17179     },
17180     {
17181      "name": "capture",
17182      "sig": "(Observable o, Function fn, Object scope)",
17183      "type": "function",
17184      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
17185     },
17186     {
17187      "name": "destroy",
17188      "sig": "()",
17189      "type": "function",
17190      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
17191     },
17192     {
17193      "name": "disable",
17194      "sig": "()",
17195      "type": "function",
17196      "desc": "Disable this component."
17197     },
17198     {
17199      "name": "enable",
17200      "sig": "()",
17201      "type": "function",
17202      "desc": "Enable this component."
17203     },
17204     {
17205      "name": "fireEvent",
17206      "sig": "(String eventName, Object... args)",
17207      "type": "function",
17208      "desc": "Fires the specified event with the passed parameters (minus the event name)."
17209     },
17210     {
17211      "name": "focus",
17212      "sig": "(Boolean selectText)",
17213      "type": "function",
17214      "desc": "Try to focus this component."
17215     },
17216     {
17217      "name": "getChildContainer",
17218      "sig": "()",
17219      "type": "function",
17220      "desc": "Fetch the element to add children to"
17221     },
17222     {
17223      "name": "getEl",
17224      "sig": "()",
17225      "type": "function",
17226      "desc": "Returns the underlying {@link Roo.Element}."
17227     },
17228     {
17229      "name": "getId",
17230      "sig": "()",
17231      "type": "function",
17232      "desc": "Returns the id of this component."
17233     },
17234     {
17235      "name": "hasListener",
17236      "sig": "(String eventName)",
17237      "type": "function",
17238      "desc": "Checks to see if this object has any listeners for a specified event"
17239     },
17240     {
17241      "name": "hide",
17242      "sig": "()",
17243      "type": "function",
17244      "desc": "Hide a component - adds 'hidden' class"
17245     },
17246     {
17247      "name": "initEvents",
17248      "sig": "()",
17249      "type": "function",
17250      "desc": "Initialize Events for the element"
17251     },
17252     {
17253      "name": "isVisible",
17254      "sig": "()",
17255      "type": "function",
17256      "desc": "Returns true if this component is visible."
17257     },
17258     {
17259      "name": "on",
17260      "sig": "(String eventName, Function handler, Object scope, Object options)",
17261      "type": "function",
17262      "desc": "Appends an event handler to this element (shorthand for addListener)"
17263     },
17264     {
17265      "name": "purgeListeners",
17266      "sig": "()",
17267      "type": "function",
17268      "desc": "Removes all listeners for this object"
17269     },
17270     {
17271      "name": "releaseCapture",
17272      "sig": "(Observable o)",
17273      "type": "function",
17274      "desc": "Removes <b>all</b> added captures from the Observable."
17275     },
17276     {
17277      "name": "removeListener",
17278      "sig": "(String eventName, Function handler, Object scope)",
17279      "type": "function",
17280      "desc": "Removes a listener"
17281     },
17282     {
17283      "name": "render",
17284      "sig": "(String/HTMLElement/Element container)",
17285      "type": "function",
17286      "desc": "If this is a lazy rendering component, render it to its container element."
17287     },
17288     {
17289      "name": "setDisabled",
17290      "sig": "(Boolean disabled)",
17291      "type": "function",
17292      "desc": "Convenience function for setting disabled/enabled by boolean."
17293     },
17294     {
17295      "name": "setVisible",
17296      "sig": "(Boolean visible)",
17297      "type": "function",
17298      "desc": "Convenience function to hide or show this component by boolean."
17299     },
17300     {
17301      "name": "show",
17302      "sig": "()",
17303      "type": "function",
17304      "desc": "Show a component - removes 'hidden' class"
17305     },
17306     {
17307      "name": "tooltipEl",
17308      "sig": "()",
17309      "type": "function",
17310      "desc": "Fetch the element to display the tooltip on."
17311     },
17312     {
17313      "name": "un",
17314      "sig": "(String eventName, Function handler, Object scope)",
17315      "type": "function",
17316      "desc": "Removes a listener (shorthand for removeListener)"
17317     }
17318    ]
17319   },
17320   "Roo.bootstrap.ComboBox": {
17321    "props": [
17322     {
17323      "name": "append",
17324      "type": "Boolean",
17325      "desc": "default false",
17326      "memberOf": "",
17327      "optvals": [
17328       "true",
17329       "false"
17330      ]
17331     },
17332     {
17333      "name": "autoFocus",
17334      "type": "Boolean",
17335      "desc": "auto focus the first item, default true",
17336      "memberOf": "",
17337      "optvals": [
17338       "true",
17339       "false"
17340      ]
17341     },
17342     {
17343      "name": "tickable",
17344      "type": "Boolean",
17345      "desc": "ComboBox with tickable selections (true|false), default false",
17346      "memberOf": ""
17347     },
17348     {
17349      "name": "triggerList",
17350      "type": "Boolean",
17351      "desc": "trigger show the list or not (true|false) default true",
17352      "memberOf": ""
17353     },
17354     {
17355      "name": "showToggleBtn",
17356      "type": "Boolean",
17357      "desc": "show toggle button or not (true|false) default true",
17358      "memberOf": ""
17359     },
17360     {
17361      "name": "btnPosition",
17362      "type": "String",
17363      "desc": "set the position of the trigger button (left | right) default right",
17364      "memberOf": ""
17365     },
17366     {
17367      "name": "animate",
17368      "type": "Boolean",
17369      "desc": "default true",
17370      "memberOf": ""
17371     },
17372     {
17373      "name": "emptyResultText",
17374      "type": "Boolean",
17375      "desc": "only for touch device",
17376      "memberOf": ""
17377     },
17378     {
17379      "name": "triggerText",
17380      "type": "String",
17381      "desc": "multiple combobox trigger button text default 'Select'",
17382      "memberOf": ""
17383     },
17384     {
17385      "name": "lazyRender",
17386      "type": "Boolean",
17387      "desc": "True to prevent the ComboBox from rendering until requested (should always be used when\nrendering into an Roo.Editor, defaults to false)",
17388      "memberOf": ""
17389     },
17390     {
17391      "name": "autoCreate",
17392      "type": "Boolean/Object",
17393      "desc": "A DomHelper element spec, or true for a default element spec (defaults to:\n{tag: \"input\", type: \"text\", size: \"24\", autocomplete: \"off\"})",
17394      "memberOf": ""
17395     },
17396     {
17397      "name": "store",
17398      "type": "Roo.data.Store",
17399      "desc": "The data store to which this combo is bound (defaults to undefined)",
17400      "memberOf": ""
17401     },
17402     {
17403      "name": "title",
17404      "type": "String",
17405      "desc": "If supplied, a header element is created containing this text and added into the top of\nthe dropdown list (defaults to undefined, with no header element)",
17406      "memberOf": ""
17407     },
17408     {
17409      "name": "tpl",
17410      "type": "String/Roo.Template",
17411      "desc": "The template to use to render the output",
17412      "memberOf": ""
17413     },
17414     {
17415      "name": "grow",
17416      "type": "Boolean",
17417      "desc": "",
17418      "memberOf": ""
17419     },
17420     {
17421      "name": "growMin",
17422      "type": "Number",
17423      "desc": "",
17424      "memberOf": ""
17425     },
17426     {
17427      "name": "growMax",
17428      "type": "Number",
17429      "desc": "",
17430      "memberOf": ""
17431     },
17432     {
17433      "name": "listWidth",
17434      "type": "Number",
17435      "desc": "The width in pixels of the dropdown list (defaults to the width of the ComboBox field)",
17436      "memberOf": ""
17437     },
17438     {
17439      "name": "displayField",
17440      "type": "String",
17441      "desc": "The underlying data field name to bind to this CombBox (defaults to undefined if\nmode = 'remote' or 'text' if mode = 'local')",
17442      "memberOf": ""
17443     },
17444     {
17445      "name": "valueField",
17446      "type": "String",
17447      "desc": "The underlying data value name to bind to this CombBox (defaults to undefined if\nmode = 'remote' or 'value' if mode = 'local'). \nNote: use of a valueField requires the user make a selection\nin order for a value to be mapped.",
17448      "memberOf": ""
17449     },
17450     {
17451      "name": "modalTitle",
17452      "type": "String",
17453      "desc": "The title of the dialog that pops up on mobile views.",
17454      "memberOf": ""
17455     },
17456     {
17457      "name": "hiddenName",
17458      "type": "String",
17459      "desc": "If specified, a hidden form field with this name is dynamically generated to store the\nfield's data value (defaults to the underlying DOM element's name)",
17460      "memberOf": ""
17461     },
17462     {
17463      "name": "listClass",
17464      "type": "String",
17465      "desc": "CSS class to apply to the dropdown list element (defaults to '')",
17466      "memberOf": ""
17467     },
17468     {
17469      "name": "selectedClass",
17470      "type": "String",
17471      "desc": "CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')",
17472      "memberOf": ""
17473     },
17474     {
17475      "name": "shadow",
17476      "type": "Boolean/String",
17477      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\" for bottom-right",
17478      "memberOf": ""
17479     },
17480     {
17481      "name": "listAlign",
17482      "type": "String",
17483      "desc": "A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported\nanchor positions (defaults to 'tl-bl')",
17484      "memberOf": ""
17485     },
17486     {
17487      "name": "maxHeight",
17488      "type": "Number",
17489      "desc": "The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)",
17490      "memberOf": ""
17491     },
17492     {
17493      "name": "triggerAction",
17494      "type": "String",
17495      "desc": "The action to execute when the trigger field is activated.  Use 'all' to run the\nquery specified by the allQuery config option (defaults to 'query')",
17496      "memberOf": ""
17497     },
17498     {
17499      "name": "minChars",
17500      "type": "Number",
17501      "desc": "The minimum number of characters the user must type before autocomplete and typeahead activate\n(defaults to 4, does not apply if editable = false)",
17502      "memberOf": ""
17503     },
17504     {
17505      "name": "typeAhead",
17506      "type": "Boolean",
17507      "desc": "True to populate and autoselect the remainder of the text being typed after a configurable\ndelay (typeAheadDelay) if it matches a known value (defaults to false)",
17508      "memberOf": ""
17509     },
17510     {
17511      "name": "queryDelay",
17512      "type": "Number",
17513      "desc": "The length of time in milliseconds to delay between the start of typing and sending the\nquery to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')",
17514      "memberOf": ""
17515     },
17516     {
17517      "name": "pageSize",
17518      "type": "Number",
17519      "desc": "If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the\nfilter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)",
17520      "memberOf": ""
17521     },
17522     {
17523      "name": "selectOnFocus",
17524      "type": "Boolean",
17525      "desc": "True to select any existing text in the field immediately on focus.  Only applies\nwhen editable = true (defaults to false)",
17526      "memberOf": ""
17527     },
17528     {
17529      "name": "queryParam",
17530      "type": "String",
17531      "desc": "Name of the query as it will be passed on the querystring (defaults to 'query')",
17532      "memberOf": ""
17533     },
17534     {
17535      "name": "loadingText",
17536      "type": "String",
17537      "desc": "The text to display in the dropdown list while data is loading.  Only applies\nwhen mode = 'remote' (defaults to 'Loading...')",
17538      "memberOf": ""
17539     },
17540     {
17541      "name": "resizable",
17542      "type": "Boolean",
17543      "desc": "True to add a resize handle to the bottom of the dropdown list (defaults to false)",
17544      "memberOf": ""
17545     },
17546     {
17547      "name": "handleHeight",
17548      "type": "Number",
17549      "desc": "The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)",
17550      "memberOf": ""
17551     },
17552     {
17553      "name": "editable",
17554      "type": "Boolean",
17555      "desc": "False to prevent the user from typing text directly into the field, just like a\ntraditional select (defaults to true)",
17556      "memberOf": ""
17557     },
17558     {
17559      "name": "allQuery",
17560      "type": "String",
17561      "desc": "The text query to send to the server to return all records for the list with no filtering (defaults to '')",
17562      "memberOf": ""
17563     },
17564     {
17565      "name": "mode",
17566      "type": "String",
17567      "desc": "Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)",
17568      "memberOf": ""
17569     },
17570     {
17571      "name": "minListWidth",
17572      "type": "Number",
17573      "desc": "The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if\nlistWidth has a higher value)",
17574      "memberOf": ""
17575     },
17576     {
17577      "name": "forceSelection",
17578      "type": "Boolean",
17579      "desc": "True to restrict the selected value to one of the values in the list, false to\nallow the user to set arbitrary text into the field (defaults to false)",
17580      "memberOf": ""
17581     },
17582     {
17583      "name": "typeAheadDelay",
17584      "type": "Number",
17585      "desc": "The length of time in milliseconds to wait until the typeahead text is displayed\nif typeAhead = true (defaults to 250)",
17586      "memberOf": ""
17587     },
17588     {
17589      "name": "valueNotFoundText",
17590      "type": "String",
17591      "desc": "When using a name/value combo, if the value passed to setValue is not found in\nthe store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)",
17592      "memberOf": ""
17593     },
17594     {
17595      "name": "blockFocus",
17596      "type": "Boolean",
17597      "desc": "Prevents all focus calls, so it can work with things like HTML edtor bar",
17598      "memberOf": ""
17599     },
17600     {
17601      "name": "disableClear",
17602      "type": "Boolean",
17603      "desc": "Disable showing of clear button.",
17604      "memberOf": ""
17605     },
17606     {
17607      "name": "alwaysQuery",
17608      "type": "Boolean",
17609      "desc": "Disable caching of results, and always send query",
17610      "memberOf": ""
17611     },
17612     {
17613      "name": "multiple",
17614      "type": "Boolean",
17615      "desc": "ComboBobArray, default false",
17616      "memberOf": "",
17617      "optvals": [
17618       "true",
17619       "false"
17620      ]
17621     },
17622     {
17623      "name": "invalidClass",
17624      "type": "String",
17625      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
17626      "memberOf": ""
17627     },
17628     {
17629      "name": "validClass",
17630      "type": "String",
17631      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
17632      "memberOf": ""
17633     },
17634     {
17635      "name": "specialFilter",
17636      "type": "Boolean",
17637      "desc": "special filter default false",
17638      "memberOf": "",
17639      "optvals": [
17640       "true",
17641       "false"
17642      ]
17643     },
17644     {
17645      "name": "mobileTouchView",
17646      "type": "Boolean",
17647      "desc": "show mobile touch view when using a mobile default true",
17648      "memberOf": "",
17649      "optvals": [
17650       "true",
17651       "false"
17652      ]
17653     },
17654     {
17655      "name": "useNativeIOS",
17656      "type": "Boolean",
17657      "desc": "render it as classic select for ios, not support dynamic load data (default false)",
17658      "memberOf": "",
17659      "optvals": [
17660       "true",
17661       "false"
17662      ]
17663     },
17664     {
17665      "name": "triggerClass",
17666      "type": "String",
17667      "desc": "An additional CSS class used to style the trigger button.  The trigger will always get the\nclass 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.",
17668      "memberOf": "Roo.bootstrap.TriggerField"
17669     },
17670     {
17671      "name": "caret",
17672      "type": "String",
17673      "desc": "a fontawesome for the trigger icon see http://fortawesome.github.io/Font-Awesome/icons/",
17674      "memberOf": "Roo.bootstrap.TriggerField",
17675      "optvals": [
17676       "search",
17677       "calendar"
17678      ]
17679     },
17680     {
17681      "name": "hideTrigger",
17682      "type": "Boolean",
17683      "desc": "True to hide the trigger element and display only the base text field (defaults to false)",
17684      "memberOf": "Roo.bootstrap.TriggerField"
17685     },
17686     {
17687      "name": "removable",
17688      "type": "Boolean",
17689      "desc": "special filter default false",
17690      "memberOf": "Roo.bootstrap.TriggerField",
17691      "optvals": [
17692       "true",
17693       "false"
17694      ]
17695     },
17696     {
17697      "name": "disabled",
17698      "type": "Boolean",
17699      "desc": "is it disabled",
17700      "memberOf": "Roo.bootstrap.Input"
17701     },
17702     {
17703      "name": "inputType",
17704      "type": "String",
17705      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
17706      "memberOf": "Roo.bootstrap.Input"
17707     },
17708     {
17709      "name": "name",
17710      "type": "String",
17711      "desc": "name of the input",
17712      "memberOf": "Roo.bootstrap.Input"
17713     },
17714     {
17715      "name": "fieldLabel",
17716      "type": "string",
17717      "desc": "- the label associated",
17718      "memberOf": "Roo.bootstrap.Input"
17719     },
17720     {
17721      "name": "placeholder",
17722      "type": "string",
17723      "desc": "- placeholder to put in text.",
17724      "memberOf": "Roo.bootstrap.Input"
17725     },
17726     {
17727      "name": "before",
17728      "type": "string",
17729      "desc": "- input group add on before",
17730      "memberOf": "Roo.bootstrap.Input"
17731     },
17732     {
17733      "name": "after",
17734      "type": "string",
17735      "desc": "- input group add on after",
17736      "memberOf": "Roo.bootstrap.Input"
17737     },
17738     {
17739      "name": "size",
17740      "type": "string",
17741      "desc": "- (lg|sm) or leave empty..",
17742      "memberOf": "Roo.bootstrap.Input"
17743     },
17744     {
17745      "name": "xs",
17746      "type": "Number",
17747      "desc": "colspan out of 12 for mobile-sized screens",
17748      "memberOf": "Roo.bootstrap.Input"
17749     },
17750     {
17751      "name": "sm",
17752      "type": "Number",
17753      "desc": "colspan out of 12 for tablet-sized screens",
17754      "memberOf": "Roo.bootstrap.Input"
17755     },
17756     {
17757      "name": "md",
17758      "type": "Number",
17759      "desc": "colspan out of 12 for computer-sized screens",
17760      "memberOf": "Roo.bootstrap.Input"
17761     },
17762     {
17763      "name": "lg",
17764      "type": "Number",
17765      "desc": "colspan out of 12 for large computer-sized screens",
17766      "memberOf": "Roo.bootstrap.Input"
17767     },
17768     {
17769      "name": "value",
17770      "type": "string",
17771      "desc": "default value of the input",
17772      "memberOf": "Roo.bootstrap.Input"
17773     },
17774     {
17775      "name": "labelWidth",
17776      "type": "Number",
17777      "desc": "set the width of label (0-12)",
17778      "memberOf": "Roo.bootstrap.Input"
17779     },
17780     {
17781      "name": "labelAlign",
17782      "type": "String",
17783      "desc": "",
17784      "memberOf": "Roo.bootstrap.Input",
17785      "optvals": [
17786       "top",
17787       "left"
17788      ]
17789     },
17790     {
17791      "name": "readOnly",
17792      "type": "Boolean",
17793      "desc": "Specifies that the field should be read-only",
17794      "memberOf": "Roo.bootstrap.Input"
17795     },
17796     {
17797      "name": "autocomplete",
17798      "type": "String",
17799      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
17800      "memberOf": "Roo.bootstrap.Input"
17801     },
17802     {
17803      "name": "indicatorpos",
17804      "type": "String",
17805      "desc": "default left",
17806      "memberOf": "Roo.bootstrap.Input",
17807      "optvals": [
17808       "left",
17809       "right"
17810      ]
17811     },
17812     {
17813      "name": "align",
17814      "type": "String",
17815      "desc": "Default left",
17816      "memberOf": "Roo.bootstrap.Input",
17817      "optvals": [
17818       "left",
17819       "center",
17820       "right"
17821      ]
17822     },
17823     {
17824      "name": "forceFeedback",
17825      "type": "Boolean",
17826      "desc": "Default false",
17827      "memberOf": "Roo.bootstrap.Input",
17828      "optvals": [
17829       "true",
17830       "false"
17831      ]
17832     },
17833     {
17834      "name": "validationEvent",
17835      "type": "String/Boolean",
17836      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
17837      "memberOf": "Roo.bootstrap.Input"
17838     },
17839     {
17840      "name": "validateOnBlur",
17841      "type": "Boolean",
17842      "desc": "Whether the field should validate when it loses focus (defaults to true).",
17843      "memberOf": "Roo.bootstrap.Input"
17844     },
17845     {
17846      "name": "validationDelay",
17847      "type": "Number",
17848      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
17849      "memberOf": "Roo.bootstrap.Input"
17850     },
17851     {
17852      "name": "focusClass",
17853      "type": "String",
17854      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
17855      "memberOf": "Roo.bootstrap.Input"
17856     },
17857     {
17858      "name": "hasFeedback",
17859      "type": "Boolean",
17860      "desc": "default true",
17861      "memberOf": "Roo.bootstrap.Input",
17862      "optvals": [
17863       "true",
17864       "false"
17865      ]
17866     },
17867     {
17868      "name": "invalidFeedbackIcon",
17869      "type": "String",
17870      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
17871      "memberOf": "Roo.bootstrap.Input"
17872     },
17873     {
17874      "name": "validFeedbackIcon",
17875      "type": "String",
17876      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
17877      "memberOf": "Roo.bootstrap.Input"
17878     },
17879     {
17880      "name": "maskRe",
17881      "type": "String",
17882      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
17883      "memberOf": "Roo.bootstrap.Input"
17884     },
17885     {
17886      "name": "vtype",
17887      "type": "String",
17888      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
17889      "memberOf": "Roo.bootstrap.Input"
17890     },
17891     {
17892      "name": "disableKeyFilter",
17893      "type": "Boolean",
17894      "desc": "True to disable input keystroke filtering (defaults to false)",
17895      "memberOf": "Roo.bootstrap.Input"
17896     },
17897     {
17898      "name": "allowBlank",
17899      "type": "Boolean",
17900      "desc": "False to validate that the value length > 0 (defaults to true)",
17901      "memberOf": "Roo.bootstrap.Input"
17902     },
17903     {
17904      "name": "blankText",
17905      "type": "String",
17906      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
17907      "memberOf": "Roo.bootstrap.Input"
17908     },
17909     {
17910      "name": "minLength",
17911      "type": "Number",
17912      "desc": "Minimum input field length required (defaults to 0)",
17913      "memberOf": "Roo.bootstrap.Input"
17914     },
17915     {
17916      "name": "maxLength",
17917      "type": "Number",
17918      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
17919      "memberOf": "Roo.bootstrap.Input"
17920     },
17921     {
17922      "name": "minLengthText",
17923      "type": "String",
17924      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
17925      "memberOf": "Roo.bootstrap.Input"
17926     },
17927     {
17928      "name": "maxLengthText",
17929      "type": "String",
17930      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
17931      "memberOf": "Roo.bootstrap.Input"
17932     },
17933     {
17934      "name": "validator",
17935      "type": "Function",
17936      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
17937      "memberOf": "Roo.bootstrap.Input"
17938     },
17939     {
17940      "name": "regex",
17941      "type": "RegExp",
17942      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
17943      "memberOf": "Roo.bootstrap.Input"
17944     },
17945     {
17946      "name": "regexText",
17947      "type": "String",
17948      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
17949      "memberOf": "Roo.bootstrap.Input"
17950     },
17951     {
17952      "name": "cls",
17953      "type": "String",
17954      "desc": "css class",
17955      "memberOf": "Roo.bootstrap.Component"
17956     },
17957     {
17958      "name": "style",
17959      "type": "String",
17960      "desc": "any extra css",
17961      "memberOf": "Roo.bootstrap.Component"
17962     },
17963     {
17964      "name": "xattr",
17965      "type": "Object",
17966      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
17967      "memberOf": "Roo.bootstrap.Component"
17968     },
17969     {
17970      "name": "can_build_overlaid",
17971      "type": "Boolean",
17972      "desc": "True if element can be rebuild from a HTML page",
17973      "memberOf": "Roo.bootstrap.Component"
17974     },
17975     {
17976      "name": "dataId",
17977      "type": "string",
17978      "desc": "cutomer id",
17979      "memberOf": "Roo.bootstrap.Component"
17980     },
17981     {
17982      "name": "tooltip",
17983      "type": "string",
17984      "desc": "Text for the tooltip",
17985      "memberOf": "Roo.bootstrap.Component"
17986     },
17987     {
17988      "name": "container_method",
17989      "type": "string",
17990      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
17991      "memberOf": "Roo.bootstrap.Component"
17992     },
17993     {
17994      "name": "disableClass",
17995      "type": "String",
17996      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
17997      "memberOf": "Roo.Component"
17998     },
17999     {
18000      "name": "allowDomMove",
18001      "type": "Boolean",
18002      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
18003      "memberOf": "Roo.Component"
18004     },
18005     {
18006      "name": "hideMode",
18007      "type": "String",
18008      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
18009      "memberOf": "Roo.Component",
18010      "optvals": [
18011       "display",
18012       "visibility"
18013      ]
18014     },
18015     {
18016      "name": "actionMode",
18017      "type": "String",
18018      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
18019      "memberOf": "Roo.Component"
18020     },
18021     {
18022      "name": "listeners",
18023      "type": "Object",
18024      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
18025      "memberOf": "Roo.util.Observable"
18026     }
18027    ],
18028    "events": [
18029     {
18030      "name": "add",
18031      "sig": "function (combo)\n{\n\n}",
18032      "type": "function",
18033      "desc": "Fires when the 'add' icon is pressed (add a listener to enable add button)"
18034     },
18035     {
18036      "name": "afterremove",
18037      "sig": "function (combo)\n{\n\n}",
18038      "type": "function",
18039      "desc": "Fires when the remove value from the combobox array"
18040     },
18041     {
18042      "name": "beforedestroy",
18043      "sig": "function (_self)\n{\n\n}",
18044      "type": "function",
18045      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
18046     },
18047     {
18048      "name": "beforehide",
18049      "sig": "function (_self)\n{\n\n}",
18050      "type": "function",
18051      "desc": "Fires before the component is hidden. Return false to stop the hide."
18052     },
18053     {
18054      "name": "beforequery",
18055      "sig": "function (combo, query, forceAll, cancel, e)\n{\n\n}",
18056      "type": "function",
18057      "desc": "Fires before all queries are processed. Return false to cancel the query or set cancel to true.\nThe event object passed has these properties:"
18058     },
18059     {
18060      "name": "beforerender",
18061      "sig": "function (_self)\n{\n\n}",
18062      "type": "function",
18063      "desc": "Fires before the component is rendered. Return false to stop the render."
18064     },
18065     {
18066      "name": "beforeselect",
18067      "sig": "function (combo, record, index)\n{\n\n}",
18068      "type": "function",
18069      "desc": "Fires before a list item is selected. Return false to cancel the selection."
18070     },
18071     {
18072      "name": "beforeshow",
18073      "sig": "function (_self)\n{\n\n}",
18074      "type": "function",
18075      "desc": "Fires before the component is shown.  Return false to stop the show."
18076     },
18077     {
18078      "name": "blur",
18079      "sig": "function (_self)\n{\n\n}",
18080      "type": "function",
18081      "desc": "Fires when this field loses input focus."
18082     },
18083     {
18084      "name": "change",
18085      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
18086      "type": "function",
18087      "desc": "Fires just before the field blurs if the field value has changed."
18088     },
18089     {
18090      "name": "childrenrendered",
18091      "sig": "function (_self)\n{\n\n}",
18092      "type": "function",
18093      "desc": "Fires when the children have been rendered.."
18094     },
18095     {
18096      "name": "collapse",
18097      "sig": "function (combo)\n{\n\n}",
18098      "type": "function",
18099      "desc": "Fires when the dropdown list is collapsed"
18100     },
18101     {
18102      "name": "destroy",
18103      "sig": "function (_self)\n{\n\n}",
18104      "type": "function",
18105      "desc": "Fires after the component is destroyed."
18106     },
18107     {
18108      "name": "disable",
18109      "sig": "function (_self)\n{\n\n}",
18110      "type": "function",
18111      "desc": "Fires after the component is disabled."
18112     },
18113     {
18114      "name": "edit",
18115      "sig": "function (combo, record)\n{\n\n}",
18116      "type": "function",
18117      "desc": "Fires when the 'edit' icon is pressed (add a listener to enable add button)"
18118     },
18119     {
18120      "name": "enable",
18121      "sig": "function (_self)\n{\n\n}",
18122      "type": "function",
18123      "desc": "Fires after the component is enabled."
18124     },
18125     {
18126      "name": "expand",
18127      "sig": "function (combo)\n{\n\n}",
18128      "type": "function",
18129      "desc": "Fires when the dropdown list is expanded"
18130     },
18131     {
18132      "name": "focus",
18133      "sig": "function (_self)\n{\n\n}",
18134      "type": "function",
18135      "desc": "Fires when this field receives input focus."
18136     },
18137     {
18138      "name": "hide",
18139      "sig": "function (_self)\n{\n\n}",
18140      "type": "function",
18141      "desc": "Fires after the component is hidden."
18142     },
18143     {
18144      "name": "invalid",
18145      "sig": "function (_self, msg)\n{\n\n}",
18146      "type": "function",
18147      "desc": "Fires after the field has been marked as invalid."
18148     },
18149     {
18150      "name": "keyup",
18151      "sig": "function (_self, e)\n{\n\n}",
18152      "type": "function",
18153      "desc": "Fires after the key up"
18154     },
18155     {
18156      "name": "remove",
18157      "sig": "function (combo)\n{\n\n}",
18158      "type": "function",
18159      "desc": "Fires when the remove value from the combobox array"
18160     },
18161     {
18162      "name": "render",
18163      "sig": "function (_self)\n{\n\n}",
18164      "type": "function",
18165      "desc": "Fires after the component is rendered."
18166     },
18167     {
18168      "name": "select",
18169      "sig": "function (combo, record, index)\n{\n\n}",
18170      "type": "function",
18171      "desc": "Fires when a list item is selected"
18172     },
18173     {
18174      "name": "show",
18175      "sig": "function (_self)\n{\n\n}",
18176      "type": "function",
18177      "desc": "Fires after the component is shown."
18178     },
18179     {
18180      "name": "specialfilter",
18181      "sig": "function (combo)\n{\n\n}",
18182      "type": "function",
18183      "desc": "Fires when specialfilter"
18184     },
18185     {
18186      "name": "specialkey",
18187      "sig": "function (_self, e)\n{\n\n}",
18188      "type": "function",
18189      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
18190     },
18191     {
18192      "name": "tick",
18193      "sig": "function (combo)\n{\n\n}",
18194      "type": "function",
18195      "desc": "Fires when tick the element"
18196     },
18197     {
18198      "name": "touchviewdisplay",
18199      "sig": "function (combo, cfg)\n{\n\n}",
18200      "type": "function",
18201      "desc": "Fires when touch view require special display (default is using displayField)"
18202     },
18203     {
18204      "name": "valid",
18205      "sig": "function (_self)\n{\n\n}",
18206      "type": "function",
18207      "desc": "Fires after the field has been validated with no errors."
18208     }
18209    ],
18210    "methods": [
18211     {
18212      "name": "addEvents",
18213      "sig": "(Object object)",
18214      "type": "function",
18215      "desc": "Used to define events on this Observable"
18216     },
18217     {
18218      "name": "addListener",
18219      "sig": "(String eventName, Function handler, Object scope, Object options)",
18220      "type": "function",
18221      "desc": "Appends an event handler to this component"
18222     },
18223     {
18224      "name": "capture",
18225      "sig": "(Observable o, Function fn, Object scope)",
18226      "type": "function",
18227      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
18228     },
18229     {
18230      "name": "clearInvalid",
18231      "sig": "()",
18232      "type": "function",
18233      "desc": "Clear any invalid styles/messages for this field"
18234     },
18235     {
18236      "name": "clearValue",
18237      "sig": "()",
18238      "type": "function",
18239      "desc": "Clears any text/value currently set in the field"
18240     },
18241     {
18242      "name": "collapse",
18243      "sig": "()",
18244      "type": "function",
18245      "desc": "Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion."
18246     },
18247     {
18248      "name": "destroy",
18249      "sig": "()",
18250      "type": "function",
18251      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
18252     },
18253     {
18254      "name": "disable",
18255      "sig": "()",
18256      "type": "function",
18257      "desc": "Disable this component."
18258     },
18259     {
18260      "name": "doQuery",
18261      "sig": "(String query, Boolean forceAll)",
18262      "type": "function",
18263      "desc": "Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the\nquery allowing the query action to be canceled if needed."
18264     },
18265     {
18266      "name": "enable",
18267      "sig": "()",
18268      "type": "function",
18269      "desc": "Enable this component."
18270     },
18271     {
18272      "name": "expand",
18273      "sig": "()",
18274      "type": "function",
18275      "desc": "Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion."
18276     },
18277     {
18278      "name": "fireEvent",
18279      "sig": "(String eventName, Object... args)",
18280      "type": "function",
18281      "desc": "Fires the specified event with the passed parameters (minus the event name)."
18282     },
18283     {
18284      "name": "focus",
18285      "sig": "(Boolean selectText)",
18286      "type": "function",
18287      "desc": "Try to focus this component."
18288     },
18289     {
18290      "name": "getChildContainer",
18291      "sig": "()",
18292      "type": "function",
18293      "desc": "Fetch the element to add children to"
18294     },
18295     {
18296      "name": "getEl",
18297      "sig": "()",
18298      "type": "function",
18299      "desc": "Returns the underlying {@link Roo.Element}."
18300     },
18301     {
18302      "name": "getId",
18303      "sig": "()",
18304      "type": "function",
18305      "desc": "Returns the id of this component."
18306     },
18307     {
18308      "name": "getName",
18309      "sig": "()",
18310      "type": "function",
18311      "desc": "Returns the name of the field"
18312     },
18313     {
18314      "name": "getRawValue",
18315      "sig": "()",
18316      "type": "function",
18317      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
18318     },
18319     {
18320      "name": "getValue",
18321      "sig": "()",
18322      "type": "function",
18323      "desc": "Returns the currently selected field value or empty string if no value is set."
18324     },
18325     {
18326      "name": "hasListener",
18327      "sig": "(String eventName)",
18328      "type": "function",
18329      "desc": "Checks to see if this object has any listeners for a specified event"
18330     },
18331     {
18332      "name": "hide",
18333      "sig": "()",
18334      "type": "function",
18335      "desc": "Hide a component - adds 'hidden' class"
18336     },
18337     {
18338      "name": "initEvents",
18339      "sig": "()",
18340      "type": "function",
18341      "desc": "Initialize Events for the element"
18342     },
18343     {
18344      "name": "inputEl",
18345      "sig": "()",
18346      "type": "function",
18347      "desc": "return the real input element."
18348     },
18349     {
18350      "name": "isExpanded",
18351      "sig": "()",
18352      "type": "function",
18353      "desc": "Returns true if the dropdown list is expanded, else false."
18354     },
18355     {
18356      "name": "isVisible",
18357      "sig": "()",
18358      "type": "function",
18359      "desc": "Returns true if this component is visible."
18360     },
18361     {
18362      "name": "markInvalid",
18363      "sig": "(String msg)",
18364      "type": "function",
18365      "desc": "Mark this field as invalid"
18366     },
18367     {
18368      "name": "markValid",
18369      "sig": "()",
18370      "type": "function",
18371      "desc": "Mark this field as valid"
18372     },
18373     {
18374      "name": "on",
18375      "sig": "(String eventName, Function handler, Object scope, Object options)",
18376      "type": "function",
18377      "desc": "Appends an event handler to this element (shorthand for addListener)"
18378     },
18379     {
18380      "name": "onTriggerClick",
18381      "sig": "(EventObject e)",
18382      "type": "function",
18383      "desc": "The function that should handle the trigger's click event.  This method does nothing by default until overridden\nby an implementing function."
18384     },
18385     {
18386      "name": "purgeListeners",
18387      "sig": "()",
18388      "type": "function",
18389      "desc": "Removes all listeners for this object"
18390     },
18391     {
18392      "name": "releaseCapture",
18393      "sig": "(Observable o)",
18394      "type": "function",
18395      "desc": "Removes <b>all</b> added captures from the Observable."
18396     },
18397     {
18398      "name": "removeListener",
18399      "sig": "(String eventName, Function handler, Object scope)",
18400      "type": "function",
18401      "desc": "Removes a listener"
18402     },
18403     {
18404      "name": "render",
18405      "sig": "(String/HTMLElement/Element container)",
18406      "type": "function",
18407      "desc": "If this is a lazy rendering component, render it to its container element."
18408     },
18409     {
18410      "name": "reset",
18411      "sig": "()",
18412      "type": "function",
18413      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
18414     },
18415     {
18416      "name": "select",
18417      "sig": "(Number index, Boolean scrollIntoView)",
18418      "type": "function",
18419      "desc": "Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.\nThe store must be loaded and the list expanded for this function to work, otherwise use setValue."
18420     },
18421     {
18422      "name": "selectByValue",
18423      "sig": "(String value, Boolean scrollIntoView)",
18424      "type": "function",
18425      "desc": "Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.\nThe store must be loaded and the list expanded for this function to work, otherwise use setValue."
18426     },
18427     {
18428      "name": "setDisabled",
18429      "sig": "(Boolean disabled)",
18430      "type": "function",
18431      "desc": "Convenience function for setting disabled/enabled by boolean."
18432     },
18433     {
18434      "name": "setEditable",
18435      "sig": "(Boolean value)",
18436      "type": "function",
18437      "desc": "Allow or prevent the user from directly editing the field text.  If false is passed,\nthe user will only be able to select from the items defined in the dropdown list.  This method\nis the runtime equivalent of setting the 'editable' config option at config time."
18438     },
18439     {
18440      "name": "setFromData",
18441      "sig": "(Object value)",
18442      "type": "function",
18443      "desc": "Sets the value of the field based on a object which is related to the record format for the store."
18444     },
18445     {
18446      "name": "setRawValue",
18447      "sig": "(Mixed value)",
18448      "type": "function",
18449      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
18450     },
18451     {
18452      "name": "setValue",
18453      "sig": "(String value)",
18454      "type": "function",
18455      "desc": "Sets the specified value into the field.  If the value finds a match, the corresponding record text\nwill be displayed in the field.  If the value does not match the data value of an existing item,\nand the valueNotFoundText config option is defined, it will be displayed as the default field text.\nOtherwise the field will be blank (although the value will still be set)."
18456     },
18457     {
18458      "name": "setVisible",
18459      "sig": "(Boolean visible)",
18460      "type": "function",
18461      "desc": "Convenience function to hide or show this component by boolean."
18462     },
18463     {
18464      "name": "show",
18465      "sig": "()",
18466      "type": "function",
18467      "desc": "Show a component - removes 'hidden' class"
18468     },
18469     {
18470      "name": "tooltipEl",
18471      "sig": "()",
18472      "type": "function",
18473      "desc": "Fetch the element to display the tooltip on."
18474     },
18475     {
18476      "name": "un",
18477      "sig": "(String eventName, Function handler, Object scope)",
18478      "type": "function",
18479      "desc": "Removes a listener (shorthand for removeListener)"
18480     },
18481     {
18482      "name": "validate",
18483      "sig": "()",
18484      "type": "function",
18485      "desc": "Validates the field value"
18486     },
18487     {
18488      "name": "validateValue",
18489      "sig": "(Mixed value)",
18490      "type": "function",
18491      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
18492     }
18493    ]
18494   },
18495   "Roo.bootstrap.Component": {
18496    "props": [
18497     {
18498      "name": "cls",
18499      "type": "String",
18500      "desc": "css class",
18501      "memberOf": ""
18502     },
18503     {
18504      "name": "style",
18505      "type": "String",
18506      "desc": "any extra css",
18507      "memberOf": ""
18508     },
18509     {
18510      "name": "xattr",
18511      "type": "Object",
18512      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
18513      "memberOf": ""
18514     },
18515     {
18516      "name": "can_build_overlaid",
18517      "type": "Boolean",
18518      "desc": "True if element can be rebuild from a HTML page",
18519      "memberOf": ""
18520     },
18521     {
18522      "name": "dataId",
18523      "type": "string",
18524      "desc": "cutomer id",
18525      "memberOf": ""
18526     },
18527     {
18528      "name": "name",
18529      "type": "string",
18530      "desc": "Specifies name attribute",
18531      "memberOf": ""
18532     },
18533     {
18534      "name": "tooltip",
18535      "type": "string",
18536      "desc": "Text for the tooltip",
18537      "memberOf": ""
18538     },
18539     {
18540      "name": "container_method",
18541      "type": "string",
18542      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
18543      "memberOf": ""
18544     },
18545     {
18546      "name": "disableClass",
18547      "type": "String",
18548      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
18549      "memberOf": "Roo.Component"
18550     },
18551     {
18552      "name": "allowDomMove",
18553      "type": "Boolean",
18554      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
18555      "memberOf": "Roo.Component"
18556     },
18557     {
18558      "name": "hideMode",
18559      "type": "String",
18560      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
18561      "memberOf": "Roo.Component",
18562      "optvals": [
18563       "display",
18564       "visibility"
18565      ]
18566     },
18567     {
18568      "name": "actionMode",
18569      "type": "String",
18570      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
18571      "memberOf": "Roo.Component"
18572     },
18573     {
18574      "name": "listeners",
18575      "type": "Object",
18576      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
18577      "memberOf": "Roo.util.Observable"
18578     }
18579    ],
18580    "events": [
18581     {
18582      "name": "beforedestroy",
18583      "sig": "function (_self)\n{\n\n}",
18584      "type": "function",
18585      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
18586     },
18587     {
18588      "name": "beforehide",
18589      "sig": "function (_self)\n{\n\n}",
18590      "type": "function",
18591      "desc": "Fires before the component is hidden. Return false to stop the hide."
18592     },
18593     {
18594      "name": "beforerender",
18595      "sig": "function (_self)\n{\n\n}",
18596      "type": "function",
18597      "desc": "Fires before the component is rendered. Return false to stop the render."
18598     },
18599     {
18600      "name": "beforeshow",
18601      "sig": "function (_self)\n{\n\n}",
18602      "type": "function",
18603      "desc": "Fires before the component is shown.  Return false to stop the show."
18604     },
18605     {
18606      "name": "childrenrendered",
18607      "sig": "function (_self)\n{\n\n}",
18608      "type": "function",
18609      "desc": "Fires when the children have been rendered.."
18610     },
18611     {
18612      "name": "destroy",
18613      "sig": "function (_self)\n{\n\n}",
18614      "type": "function",
18615      "desc": "Fires after the component is destroyed."
18616     },
18617     {
18618      "name": "disable",
18619      "sig": "function (_self)\n{\n\n}",
18620      "type": "function",
18621      "desc": "Fires after the component is disabled."
18622     },
18623     {
18624      "name": "enable",
18625      "sig": "function (_self)\n{\n\n}",
18626      "type": "function",
18627      "desc": "Fires after the component is enabled."
18628     },
18629     {
18630      "name": "hide",
18631      "sig": "function (_self)\n{\n\n}",
18632      "type": "function",
18633      "desc": "Fires after the component is hidden."
18634     },
18635     {
18636      "name": "render",
18637      "sig": "function (_self)\n{\n\n}",
18638      "type": "function",
18639      "desc": "Fires after the component is rendered."
18640     },
18641     {
18642      "name": "show",
18643      "sig": "function (_self)\n{\n\n}",
18644      "type": "function",
18645      "desc": "Fires after the component is shown."
18646     }
18647    ],
18648    "methods": [
18649     {
18650      "name": "addEvents",
18651      "sig": "(Object object)",
18652      "type": "function",
18653      "desc": "Used to define events on this Observable"
18654     },
18655     {
18656      "name": "addListener",
18657      "sig": "(String eventName, Function handler, Object scope, Object options)",
18658      "type": "function",
18659      "desc": "Appends an event handler to this component"
18660     },
18661     {
18662      "name": "capture",
18663      "sig": "(Observable o, Function fn, Object scope)",
18664      "type": "function",
18665      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
18666     },
18667     {
18668      "name": "destroy",
18669      "sig": "()",
18670      "type": "function",
18671      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
18672     },
18673     {
18674      "name": "disable",
18675      "sig": "()",
18676      "type": "function",
18677      "desc": "Disable this component."
18678     },
18679     {
18680      "name": "enable",
18681      "sig": "()",
18682      "type": "function",
18683      "desc": "Enable this component."
18684     },
18685     {
18686      "name": "fireEvent",
18687      "sig": "(String eventName, Object... args)",
18688      "type": "function",
18689      "desc": "Fires the specified event with the passed parameters (minus the event name)."
18690     },
18691     {
18692      "name": "focus",
18693      "sig": "(Boolean selectText)",
18694      "type": "function",
18695      "desc": "Try to focus this component."
18696     },
18697     {
18698      "name": "getChildContainer",
18699      "sig": "()",
18700      "type": "function",
18701      "desc": "Fetch the element to add children to"
18702     },
18703     {
18704      "name": "getEl",
18705      "sig": "()",
18706      "type": "function",
18707      "desc": "Returns the underlying {@link Roo.Element}."
18708     },
18709     {
18710      "name": "getId",
18711      "sig": "()",
18712      "type": "function",
18713      "desc": "Returns the id of this component."
18714     },
18715     {
18716      "name": "hasListener",
18717      "sig": "(String eventName)",
18718      "type": "function",
18719      "desc": "Checks to see if this object has any listeners for a specified event"
18720     },
18721     {
18722      "name": "hide",
18723      "sig": "()",
18724      "type": "function",
18725      "desc": "Hide a component - adds 'hidden' class"
18726     },
18727     {
18728      "name": "initEvents",
18729      "sig": "()",
18730      "type": "function",
18731      "desc": "Initialize Events for the element"
18732     },
18733     {
18734      "name": "isVisible",
18735      "sig": "()",
18736      "type": "function",
18737      "desc": "Returns true if this component is visible."
18738     },
18739     {
18740      "name": "on",
18741      "sig": "(String eventName, Function handler, Object scope, Object options)",
18742      "type": "function",
18743      "desc": "Appends an event handler to this element (shorthand for addListener)"
18744     },
18745     {
18746      "name": "purgeListeners",
18747      "sig": "()",
18748      "type": "function",
18749      "desc": "Removes all listeners for this object"
18750     },
18751     {
18752      "name": "releaseCapture",
18753      "sig": "(Observable o)",
18754      "type": "function",
18755      "desc": "Removes <b>all</b> added captures from the Observable."
18756     },
18757     {
18758      "name": "removeListener",
18759      "sig": "(String eventName, Function handler, Object scope)",
18760      "type": "function",
18761      "desc": "Removes a listener"
18762     },
18763     {
18764      "name": "render",
18765      "sig": "(String/HTMLElement/Element container)",
18766      "type": "function",
18767      "desc": "If this is a lazy rendering component, render it to its container element."
18768     },
18769     {
18770      "name": "setDisabled",
18771      "sig": "(Boolean disabled)",
18772      "type": "function",
18773      "desc": "Convenience function for setting disabled/enabled by boolean."
18774     },
18775     {
18776      "name": "setVisible",
18777      "sig": "(Boolean visible)",
18778      "type": "function",
18779      "desc": "Convenience function to hide or show this component by boolean."
18780     },
18781     {
18782      "name": "show",
18783      "sig": "()",
18784      "type": "function",
18785      "desc": "Show a component - removes 'hidden' class"
18786     },
18787     {
18788      "name": "tooltipEl",
18789      "sig": "()",
18790      "type": "function",
18791      "desc": "Fetch the element to display the tooltip on."
18792     },
18793     {
18794      "name": "un",
18795      "sig": "(String eventName, Function handler, Object scope)",
18796      "type": "function",
18797      "desc": "Removes a listener (shorthand for removeListener)"
18798     }
18799    ]
18800   },
18801   "Roo.bootstrap.Container": {
18802    "props": [
18803     {
18804      "name": "jumbotron",
18805      "type": "Boolean",
18806      "desc": "is it a jumbotron element",
18807      "memberOf": ""
18808     },
18809     {
18810      "name": "html",
18811      "type": "String",
18812      "desc": "content of element",
18813      "memberOf": ""
18814     },
18815     {
18816      "name": "well",
18817      "type": "String",
18818      "desc": "a well, large, small or medium.",
18819      "memberOf": "",
18820      "optvals": [
18821       "lg",
18822       "sm",
18823       "md"
18824      ]
18825     },
18826     {
18827      "name": "panel",
18828      "type": "String",
18829      "desc": "render as panel  - type - primary/success.....",
18830      "memberOf": "",
18831      "optvals": [
18832       "primary",
18833       "success",
18834       "info",
18835       "warning",
18836       "danger"
18837      ]
18838     },
18839     {
18840      "name": "header",
18841      "type": "String",
18842      "desc": "content of header (for panel)",
18843      "memberOf": ""
18844     },
18845     {
18846      "name": "footer",
18847      "type": "String",
18848      "desc": "content of footer (for panel)",
18849      "memberOf": ""
18850     },
18851     {
18852      "name": "sticky",
18853      "type": "String",
18854      "desc": "block to use as footer or body- needs css-bootstrap/sticky-footer.css",
18855      "memberOf": "",
18856      "optvals": [
18857       "footer",
18858       "wrap",
18859       "push"
18860      ]
18861     },
18862     {
18863      "name": "tag",
18864      "type": "String",
18865      "desc": "type of HTML tag.",
18866      "memberOf": "",
18867      "optvals": [
18868       "header",
18869       "aside",
18870       "section"
18871      ]
18872     },
18873     {
18874      "name": "alert",
18875      "type": "String",
18876      "desc": "type alert (changes background / border...)",
18877      "memberOf": "",
18878      "optvals": [
18879       "success",
18880       "info",
18881       "warning",
18882       "danger"
18883      ]
18884     },
18885     {
18886      "name": "fa",
18887      "type": "String",
18888      "desc": "font awesome icon",
18889      "memberOf": ""
18890     },
18891     {
18892      "name": "icon",
18893      "type": "String",
18894      "desc": "glyphicon name",
18895      "memberOf": "",
18896      "optvals": [
18897       "info-sign",
18898       "check",
18899       "..."
18900      ]
18901     },
18902     {
18903      "name": "hidden",
18904      "type": "Boolean",
18905      "desc": "hide the element",
18906      "memberOf": "",
18907      "optvals": [
18908       "true",
18909       "false"
18910      ]
18911     },
18912     {
18913      "name": "expandable",
18914      "type": "Boolean",
18915      "desc": "default false",
18916      "memberOf": "",
18917      "optvals": [
18918       "true",
18919       "false"
18920      ]
18921     },
18922     {
18923      "name": "expanded",
18924      "type": "Boolean",
18925      "desc": "default true",
18926      "memberOf": "",
18927      "optvals": [
18928       "true",
18929       "false"
18930      ]
18931     },
18932     {
18933      "name": "rheader",
18934      "type": "String",
18935      "desc": "contet on the right of header",
18936      "memberOf": ""
18937     },
18938     {
18939      "name": "clickable",
18940      "type": "Boolean",
18941      "desc": "default false",
18942      "memberOf": "",
18943      "optvals": [
18944       "true",
18945       "false"
18946      ]
18947     },
18948     {
18949      "name": "cls",
18950      "type": "String",
18951      "desc": "css class",
18952      "memberOf": "Roo.bootstrap.Component"
18953     },
18954     {
18955      "name": "style",
18956      "type": "String",
18957      "desc": "any extra css",
18958      "memberOf": "Roo.bootstrap.Component"
18959     },
18960     {
18961      "name": "xattr",
18962      "type": "Object",
18963      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
18964      "memberOf": "Roo.bootstrap.Component"
18965     },
18966     {
18967      "name": "can_build_overlaid",
18968      "type": "Boolean",
18969      "desc": "True if element can be rebuild from a HTML page",
18970      "memberOf": "Roo.bootstrap.Component"
18971     },
18972     {
18973      "name": "dataId",
18974      "type": "string",
18975      "desc": "cutomer id",
18976      "memberOf": "Roo.bootstrap.Component"
18977     },
18978     {
18979      "name": "name",
18980      "type": "string",
18981      "desc": "Specifies name attribute",
18982      "memberOf": "Roo.bootstrap.Component"
18983     },
18984     {
18985      "name": "tooltip",
18986      "type": "string",
18987      "desc": "Text for the tooltip",
18988      "memberOf": "Roo.bootstrap.Component"
18989     },
18990     {
18991      "name": "container_method",
18992      "type": "string",
18993      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
18994      "memberOf": "Roo.bootstrap.Component"
18995     },
18996     {
18997      "name": "disableClass",
18998      "type": "String",
18999      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
19000      "memberOf": "Roo.Component"
19001     },
19002     {
19003      "name": "allowDomMove",
19004      "type": "Boolean",
19005      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
19006      "memberOf": "Roo.Component"
19007     },
19008     {
19009      "name": "hideMode",
19010      "type": "String",
19011      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
19012      "memberOf": "Roo.Component",
19013      "optvals": [
19014       "display",
19015       "visibility"
19016      ]
19017     },
19018     {
19019      "name": "actionMode",
19020      "type": "String",
19021      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
19022      "memberOf": "Roo.Component"
19023     },
19024     {
19025      "name": "listeners",
19026      "type": "Object",
19027      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
19028      "memberOf": "Roo.util.Observable"
19029     }
19030    ],
19031    "events": [
19032     {
19033      "name": "beforedestroy",
19034      "sig": "function (_self)\n{\n\n}",
19035      "type": "function",
19036      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
19037     },
19038     {
19039      "name": "beforehide",
19040      "sig": "function (_self)\n{\n\n}",
19041      "type": "function",
19042      "desc": "Fires before the component is hidden. Return false to stop the hide."
19043     },
19044     {
19045      "name": "beforerender",
19046      "sig": "function (_self)\n{\n\n}",
19047      "type": "function",
19048      "desc": "Fires before the component is rendered. Return false to stop the render."
19049     },
19050     {
19051      "name": "beforeshow",
19052      "sig": "function (_self)\n{\n\n}",
19053      "type": "function",
19054      "desc": "Fires before the component is shown.  Return false to stop the show."
19055     },
19056     {
19057      "name": "childrenrendered",
19058      "sig": "function (_self)\n{\n\n}",
19059      "type": "function",
19060      "desc": "Fires when the children have been rendered.."
19061     },
19062     {
19063      "name": "click",
19064      "sig": "function (_self, e)\n{\n\n}",
19065      "type": "function",
19066      "desc": "When a element is chick"
19067     },
19068     {
19069      "name": "collapse",
19070      "sig": "function (_self)\n{\n\n}",
19071      "type": "function",
19072      "desc": "After the panel has been collapsed"
19073     },
19074     {
19075      "name": "destroy",
19076      "sig": "function (_self)\n{\n\n}",
19077      "type": "function",
19078      "desc": "Fires after the component is destroyed."
19079     },
19080     {
19081      "name": "disable",
19082      "sig": "function (_self)\n{\n\n}",
19083      "type": "function",
19084      "desc": "Fires after the component is disabled."
19085     },
19086     {
19087      "name": "enable",
19088      "sig": "function (_self)\n{\n\n}",
19089      "type": "function",
19090      "desc": "Fires after the component is enabled."
19091     },
19092     {
19093      "name": "expand",
19094      "sig": "function (_self)\n{\n\n}",
19095      "type": "function",
19096      "desc": "After the panel has been expand"
19097     },
19098     {
19099      "name": "hide",
19100      "sig": "function (_self)\n{\n\n}",
19101      "type": "function",
19102      "desc": "Fires after the component is hidden."
19103     },
19104     {
19105      "name": "render",
19106      "sig": "function (_self)\n{\n\n}",
19107      "type": "function",
19108      "desc": "Fires after the component is rendered."
19109     },
19110     {
19111      "name": "show",
19112      "sig": "function (_self)\n{\n\n}",
19113      "type": "function",
19114      "desc": "Fires after the component is shown."
19115     }
19116    ],
19117    "methods": [
19118     {
19119      "name": "addEvents",
19120      "sig": "(Object object)",
19121      "type": "function",
19122      "desc": "Used to define events on this Observable"
19123     },
19124     {
19125      "name": "addListener",
19126      "sig": "(String eventName, Function handler, Object scope, Object options)",
19127      "type": "function",
19128      "desc": "Appends an event handler to this component"
19129     },
19130     {
19131      "name": "capture",
19132      "sig": "(Observable o, Function fn, Object scope)",
19133      "type": "function",
19134      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
19135     },
19136     {
19137      "name": "destroy",
19138      "sig": "()",
19139      "type": "function",
19140      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
19141     },
19142     {
19143      "name": "disable",
19144      "sig": "()",
19145      "type": "function",
19146      "desc": "Disable this component."
19147     },
19148     {
19149      "name": "enable",
19150      "sig": "()",
19151      "type": "function",
19152      "desc": "Enable this component."
19153     },
19154     {
19155      "name": "fireEvent",
19156      "sig": "(String eventName, Object... args)",
19157      "type": "function",
19158      "desc": "Fires the specified event with the passed parameters (minus the event name)."
19159     },
19160     {
19161      "name": "focus",
19162      "sig": "(Boolean selectText)",
19163      "type": "function",
19164      "desc": "Try to focus this component."
19165     },
19166     {
19167      "name": "getChildContainer",
19168      "sig": "()",
19169      "type": "function",
19170      "desc": "Fetch the element to add children to"
19171     },
19172     {
19173      "name": "getEl",
19174      "sig": "()",
19175      "type": "function",
19176      "desc": "Returns the underlying {@link Roo.Element}."
19177     },
19178     {
19179      "name": "getId",
19180      "sig": "()",
19181      "type": "function",
19182      "desc": "Returns the id of this component."
19183     },
19184     {
19185      "name": "hasListener",
19186      "sig": "(String eventName)",
19187      "type": "function",
19188      "desc": "Checks to see if this object has any listeners for a specified event"
19189     },
19190     {
19191      "name": "hide",
19192      "sig": "()",
19193      "type": "function",
19194      "desc": "Hide a component - adds 'hidden' class"
19195     },
19196     {
19197      "name": "initEvents",
19198      "sig": "()",
19199      "type": "function",
19200      "desc": "Initialize Events for the element"
19201     },
19202     {
19203      "name": "isVisible",
19204      "sig": "()",
19205      "type": "function",
19206      "desc": "Returns true if this component is visible."
19207     },
19208     {
19209      "name": "on",
19210      "sig": "(String eventName, Function handler, Object scope, Object options)",
19211      "type": "function",
19212      "desc": "Appends an event handler to this element (shorthand for addListener)"
19213     },
19214     {
19215      "name": "purgeListeners",
19216      "sig": "()",
19217      "type": "function",
19218      "desc": "Removes all listeners for this object"
19219     },
19220     {
19221      "name": "releaseCapture",
19222      "sig": "(Observable o)",
19223      "type": "function",
19224      "desc": "Removes <b>all</b> added captures from the Observable."
19225     },
19226     {
19227      "name": "removeListener",
19228      "sig": "(String eventName, Function handler, Object scope)",
19229      "type": "function",
19230      "desc": "Removes a listener"
19231     },
19232     {
19233      "name": "render",
19234      "sig": "(String/HTMLElement/Element container)",
19235      "type": "function",
19236      "desc": "If this is a lazy rendering component, render it to its container element."
19237     },
19238     {
19239      "name": "setDisabled",
19240      "sig": "(Boolean disabled)",
19241      "type": "function",
19242      "desc": "Convenience function for setting disabled/enabled by boolean."
19243     },
19244     {
19245      "name": "setVisible",
19246      "sig": "(Boolean visible)",
19247      "type": "function",
19248      "desc": "Convenience function to hide or show this component by boolean."
19249     },
19250     {
19251      "name": "show",
19252      "sig": "()",
19253      "type": "function",
19254      "desc": "Show a component - removes 'hidden' class"
19255     },
19256     {
19257      "name": "tooltipEl",
19258      "sig": "()",
19259      "type": "function",
19260      "desc": "Fetch the element to display the tooltip on."
19261     },
19262     {
19263      "name": "un",
19264      "sig": "(String eventName, Function handler, Object scope)",
19265      "type": "function",
19266      "desc": "Removes a listener (shorthand for removeListener)"
19267     }
19268    ]
19269   },
19270   "Roo.bootstrap.DateField": {
19271    "props": [
19272     {
19273      "name": "weekStart",
19274      "type": "Number",
19275      "desc": "default 0",
19276      "memberOf": ""
19277     },
19278     {
19279      "name": "viewMode",
19280      "type": "String",
19281      "desc": "default empty, (months|years)",
19282      "memberOf": ""
19283     },
19284     {
19285      "name": "minViewMode",
19286      "type": "String",
19287      "desc": "default empty, (months|years)",
19288      "memberOf": ""
19289     },
19290     {
19291      "name": "startDate",
19292      "type": "Number",
19293      "desc": "default -Infinity",
19294      "memberOf": ""
19295     },
19296     {
19297      "name": "endDate",
19298      "type": "Number",
19299      "desc": "default Infinity",
19300      "memberOf": ""
19301     },
19302     {
19303      "name": "todayHighlight",
19304      "type": "Boolean",
19305      "desc": "default false",
19306      "memberOf": ""
19307     },
19308     {
19309      "name": "todayBtn",
19310      "type": "Boolean",
19311      "desc": "default false",
19312      "memberOf": ""
19313     },
19314     {
19315      "name": "calendarWeeks",
19316      "type": "Boolean",
19317      "desc": "default false",
19318      "memberOf": ""
19319     },
19320     {
19321      "name": "daysOfWeekDisabled",
19322      "type": "Object",
19323      "desc": "default empty",
19324      "memberOf": ""
19325     },
19326     {
19327      "name": "singleMode",
19328      "type": "Boolean",
19329      "desc": "default false (true | false)",
19330      "memberOf": ""
19331     },
19332     {
19333      "name": "keyboardNavigation",
19334      "type": "Boolean",
19335      "desc": "default true",
19336      "memberOf": ""
19337     },
19338     {
19339      "name": "language",
19340      "type": "String",
19341      "desc": "default en",
19342      "memberOf": ""
19343     },
19344     {
19345      "name": "format",
19346      "type": "String",
19347      "desc": "The default date format string which can be overriden for localization support.  The format must be\nvalid according to {@link Date#parseDate} (defaults to 'm/d/y').",
19348      "memberOf": ""
19349     },
19350     {
19351      "name": "altFormats",
19352      "type": "String",
19353      "desc": "Multiple date formats separated by \"|\" to try when parsing a user input value and it doesn't match the defined\nformat (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').",
19354      "memberOf": ""
19355     },
19356     {
19357      "name": "disabled",
19358      "type": "Boolean",
19359      "desc": "is it disabled",
19360      "memberOf": "Roo.bootstrap.Input"
19361     },
19362     {
19363      "name": "inputType",
19364      "type": "String",
19365      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
19366      "memberOf": "Roo.bootstrap.Input"
19367     },
19368     {
19369      "name": "name",
19370      "type": "String",
19371      "desc": "name of the input",
19372      "memberOf": "Roo.bootstrap.Input"
19373     },
19374     {
19375      "name": "fieldLabel",
19376      "type": "string",
19377      "desc": "- the label associated",
19378      "memberOf": "Roo.bootstrap.Input"
19379     },
19380     {
19381      "name": "placeholder",
19382      "type": "string",
19383      "desc": "- placeholder to put in text.",
19384      "memberOf": "Roo.bootstrap.Input"
19385     },
19386     {
19387      "name": "before",
19388      "type": "string",
19389      "desc": "- input group add on before",
19390      "memberOf": "Roo.bootstrap.Input"
19391     },
19392     {
19393      "name": "after",
19394      "type": "string",
19395      "desc": "- input group add on after",
19396      "memberOf": "Roo.bootstrap.Input"
19397     },
19398     {
19399      "name": "size",
19400      "type": "string",
19401      "desc": "- (lg|sm) or leave empty..",
19402      "memberOf": "Roo.bootstrap.Input"
19403     },
19404     {
19405      "name": "xs",
19406      "type": "Number",
19407      "desc": "colspan out of 12 for mobile-sized screens",
19408      "memberOf": "Roo.bootstrap.Input"
19409     },
19410     {
19411      "name": "sm",
19412      "type": "Number",
19413      "desc": "colspan out of 12 for tablet-sized screens",
19414      "memberOf": "Roo.bootstrap.Input"
19415     },
19416     {
19417      "name": "md",
19418      "type": "Number",
19419      "desc": "colspan out of 12 for computer-sized screens",
19420      "memberOf": "Roo.bootstrap.Input"
19421     },
19422     {
19423      "name": "lg",
19424      "type": "Number",
19425      "desc": "colspan out of 12 for large computer-sized screens",
19426      "memberOf": "Roo.bootstrap.Input"
19427     },
19428     {
19429      "name": "value",
19430      "type": "string",
19431      "desc": "default value of the input",
19432      "memberOf": "Roo.bootstrap.Input"
19433     },
19434     {
19435      "name": "labelWidth",
19436      "type": "Number",
19437      "desc": "set the width of label (0-12)",
19438      "memberOf": "Roo.bootstrap.Input"
19439     },
19440     {
19441      "name": "labelAlign",
19442      "type": "String",
19443      "desc": "",
19444      "memberOf": "Roo.bootstrap.Input",
19445      "optvals": [
19446       "top",
19447       "left"
19448      ]
19449     },
19450     {
19451      "name": "readOnly",
19452      "type": "Boolean",
19453      "desc": "Specifies that the field should be read-only",
19454      "memberOf": "Roo.bootstrap.Input"
19455     },
19456     {
19457      "name": "autocomplete",
19458      "type": "String",
19459      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
19460      "memberOf": "Roo.bootstrap.Input"
19461     },
19462     {
19463      "name": "indicatorpos",
19464      "type": "String",
19465      "desc": "default left",
19466      "memberOf": "Roo.bootstrap.Input",
19467      "optvals": [
19468       "left",
19469       "right"
19470      ]
19471     },
19472     {
19473      "name": "align",
19474      "type": "String",
19475      "desc": "Default left",
19476      "memberOf": "Roo.bootstrap.Input",
19477      "optvals": [
19478       "left",
19479       "center",
19480       "right"
19481      ]
19482     },
19483     {
19484      "name": "forceFeedback",
19485      "type": "Boolean",
19486      "desc": "Default false",
19487      "memberOf": "Roo.bootstrap.Input",
19488      "optvals": [
19489       "true",
19490       "false"
19491      ]
19492     },
19493     {
19494      "name": "validationEvent",
19495      "type": "String/Boolean",
19496      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
19497      "memberOf": "Roo.bootstrap.Input"
19498     },
19499     {
19500      "name": "validateOnBlur",
19501      "type": "Boolean",
19502      "desc": "Whether the field should validate when it loses focus (defaults to true).",
19503      "memberOf": "Roo.bootstrap.Input"
19504     },
19505     {
19506      "name": "validationDelay",
19507      "type": "Number",
19508      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
19509      "memberOf": "Roo.bootstrap.Input"
19510     },
19511     {
19512      "name": "focusClass",
19513      "type": "String",
19514      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
19515      "memberOf": "Roo.bootstrap.Input"
19516     },
19517     {
19518      "name": "invalidClass",
19519      "type": "String",
19520      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
19521      "memberOf": "Roo.bootstrap.Input"
19522     },
19523     {
19524      "name": "validClass",
19525      "type": "String",
19526      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
19527      "memberOf": "Roo.bootstrap.Input"
19528     },
19529     {
19530      "name": "hasFeedback",
19531      "type": "Boolean",
19532      "desc": "default true",
19533      "memberOf": "Roo.bootstrap.Input",
19534      "optvals": [
19535       "true",
19536       "false"
19537      ]
19538     },
19539     {
19540      "name": "invalidFeedbackIcon",
19541      "type": "String",
19542      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
19543      "memberOf": "Roo.bootstrap.Input"
19544     },
19545     {
19546      "name": "validFeedbackIcon",
19547      "type": "String",
19548      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
19549      "memberOf": "Roo.bootstrap.Input"
19550     },
19551     {
19552      "name": "selectOnFocus",
19553      "type": "Boolean",
19554      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
19555      "memberOf": "Roo.bootstrap.Input"
19556     },
19557     {
19558      "name": "maskRe",
19559      "type": "String",
19560      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
19561      "memberOf": "Roo.bootstrap.Input"
19562     },
19563     {
19564      "name": "vtype",
19565      "type": "String",
19566      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
19567      "memberOf": "Roo.bootstrap.Input"
19568     },
19569     {
19570      "name": "disableKeyFilter",
19571      "type": "Boolean",
19572      "desc": "True to disable input keystroke filtering (defaults to false)",
19573      "memberOf": "Roo.bootstrap.Input"
19574     },
19575     {
19576      "name": "allowBlank",
19577      "type": "Boolean",
19578      "desc": "False to validate that the value length > 0 (defaults to true)",
19579      "memberOf": "Roo.bootstrap.Input"
19580     },
19581     {
19582      "name": "blankText",
19583      "type": "String",
19584      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
19585      "memberOf": "Roo.bootstrap.Input"
19586     },
19587     {
19588      "name": "minLength",
19589      "type": "Number",
19590      "desc": "Minimum input field length required (defaults to 0)",
19591      "memberOf": "Roo.bootstrap.Input"
19592     },
19593     {
19594      "name": "maxLength",
19595      "type": "Number",
19596      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
19597      "memberOf": "Roo.bootstrap.Input"
19598     },
19599     {
19600      "name": "minLengthText",
19601      "type": "String",
19602      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
19603      "memberOf": "Roo.bootstrap.Input"
19604     },
19605     {
19606      "name": "maxLengthText",
19607      "type": "String",
19608      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
19609      "memberOf": "Roo.bootstrap.Input"
19610     },
19611     {
19612      "name": "validator",
19613      "type": "Function",
19614      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
19615      "memberOf": "Roo.bootstrap.Input"
19616     },
19617     {
19618      "name": "regex",
19619      "type": "RegExp",
19620      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
19621      "memberOf": "Roo.bootstrap.Input"
19622     },
19623     {
19624      "name": "regexText",
19625      "type": "String",
19626      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
19627      "memberOf": "Roo.bootstrap.Input"
19628     },
19629     {
19630      "name": "cls",
19631      "type": "String",
19632      "desc": "css class",
19633      "memberOf": "Roo.bootstrap.Component"
19634     },
19635     {
19636      "name": "style",
19637      "type": "String",
19638      "desc": "any extra css",
19639      "memberOf": "Roo.bootstrap.Component"
19640     },
19641     {
19642      "name": "xattr",
19643      "type": "Object",
19644      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
19645      "memberOf": "Roo.bootstrap.Component"
19646     },
19647     {
19648      "name": "can_build_overlaid",
19649      "type": "Boolean",
19650      "desc": "True if element can be rebuild from a HTML page",
19651      "memberOf": "Roo.bootstrap.Component"
19652     },
19653     {
19654      "name": "dataId",
19655      "type": "string",
19656      "desc": "cutomer id",
19657      "memberOf": "Roo.bootstrap.Component"
19658     },
19659     {
19660      "name": "tooltip",
19661      "type": "string",
19662      "desc": "Text for the tooltip",
19663      "memberOf": "Roo.bootstrap.Component"
19664     },
19665     {
19666      "name": "container_method",
19667      "type": "string",
19668      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
19669      "memberOf": "Roo.bootstrap.Component"
19670     },
19671     {
19672      "name": "disableClass",
19673      "type": "String",
19674      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
19675      "memberOf": "Roo.Component"
19676     },
19677     {
19678      "name": "allowDomMove",
19679      "type": "Boolean",
19680      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
19681      "memberOf": "Roo.Component"
19682     },
19683     {
19684      "name": "hideMode",
19685      "type": "String",
19686      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
19687      "memberOf": "Roo.Component",
19688      "optvals": [
19689       "display",
19690       "visibility"
19691      ]
19692     },
19693     {
19694      "name": "actionMode",
19695      "type": "String",
19696      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
19697      "memberOf": "Roo.Component"
19698     },
19699     {
19700      "name": "listeners",
19701      "type": "Object",
19702      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
19703      "memberOf": "Roo.util.Observable"
19704     }
19705    ],
19706    "events": [
19707     {
19708      "name": "beforedestroy",
19709      "sig": "function (_self)\n{\n\n}",
19710      "type": "function",
19711      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
19712     },
19713     {
19714      "name": "beforehide",
19715      "sig": "function (_self)\n{\n\n}",
19716      "type": "function",
19717      "desc": "Fires before the component is hidden. Return false to stop the hide."
19718     },
19719     {
19720      "name": "beforerender",
19721      "sig": "function (_self)\n{\n\n}",
19722      "type": "function",
19723      "desc": "Fires before the component is rendered. Return false to stop the render."
19724     },
19725     {
19726      "name": "beforeselect",
19727      "sig": "function (_self, date)\n{\n\n}",
19728      "type": "function",
19729      "desc": "Fires when before select a date."
19730     },
19731     {
19732      "name": "beforeshow",
19733      "sig": "function (_self)\n{\n\n}",
19734      "type": "function",
19735      "desc": "Fires before the component is shown.  Return false to stop the show."
19736     },
19737     {
19738      "name": "blur",
19739      "sig": "function (_self)\n{\n\n}",
19740      "type": "function",
19741      "desc": "Fires when this field loses input focus."
19742     },
19743     {
19744      "name": "change",
19745      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
19746      "type": "function",
19747      "desc": "Fires just before the field blurs if the field value has changed."
19748     },
19749     {
19750      "name": "childrenrendered",
19751      "sig": "function (_self)\n{\n\n}",
19752      "type": "function",
19753      "desc": "Fires when the children have been rendered.."
19754     },
19755     {
19756      "name": "destroy",
19757      "sig": "function (_self)\n{\n\n}",
19758      "type": "function",
19759      "desc": "Fires after the component is destroyed."
19760     },
19761     {
19762      "name": "disable",
19763      "sig": "function (_self)\n{\n\n}",
19764      "type": "function",
19765      "desc": "Fires after the component is disabled."
19766     },
19767     {
19768      "name": "enable",
19769      "sig": "function (_self)\n{\n\n}",
19770      "type": "function",
19771      "desc": "Fires after the component is enabled."
19772     },
19773     {
19774      "name": "focus",
19775      "sig": "function (_self)\n{\n\n}",
19776      "type": "function",
19777      "desc": "Fires when this field receives input focus."
19778     },
19779     {
19780      "name": "hide",
19781      "sig": "function (_self)\n{\n\n}",
19782      "type": "function",
19783      "desc": "Fires after the component is hidden."
19784     },
19785     {
19786      "name": "invalid",
19787      "sig": "function (_self, msg)\n{\n\n}",
19788      "type": "function",
19789      "desc": "Fires after the field has been marked as invalid."
19790     },
19791     {
19792      "name": "keyup",
19793      "sig": "function (_self, e)\n{\n\n}",
19794      "type": "function",
19795      "desc": "Fires after the key up"
19796     },
19797     {
19798      "name": "render",
19799      "sig": "function (_self)\n{\n\n}",
19800      "type": "function",
19801      "desc": "Fires after the component is rendered."
19802     },
19803     {
19804      "name": "select",
19805      "sig": "function (_self, date)\n{\n\n}",
19806      "type": "function",
19807      "desc": "Fires when select a date."
19808     },
19809     {
19810      "name": "show",
19811      "sig": "function (_self, date)\n{\n\n}",
19812      "type": "function",
19813      "desc": "Fires when this field show."
19814     },
19815     {
19816      "name": "specialkey",
19817      "sig": "function (_self, e)\n{\n\n}",
19818      "type": "function",
19819      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
19820     },
19821     {
19822      "name": "valid",
19823      "sig": "function (_self)\n{\n\n}",
19824      "type": "function",
19825      "desc": "Fires after the field has been validated with no errors."
19826     }
19827    ],
19828    "methods": [
19829     {
19830      "name": "addEvents",
19831      "sig": "(Object object)",
19832      "type": "function",
19833      "desc": "Used to define events on this Observable"
19834     },
19835     {
19836      "name": "addListener",
19837      "sig": "(String eventName, Function handler, Object scope, Object options)",
19838      "type": "function",
19839      "desc": "Appends an event handler to this component"
19840     },
19841     {
19842      "name": "capture",
19843      "sig": "(Observable o, Function fn, Object scope)",
19844      "type": "function",
19845      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
19846     },
19847     {
19848      "name": "clearInvalid",
19849      "sig": "()",
19850      "type": "function",
19851      "desc": "Clear any invalid styles/messages for this field"
19852     },
19853     {
19854      "name": "destroy",
19855      "sig": "()",
19856      "type": "function",
19857      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
19858     },
19859     {
19860      "name": "disable",
19861      "sig": "()",
19862      "type": "function",
19863      "desc": "Disable this component."
19864     },
19865     {
19866      "name": "enable",
19867      "sig": "()",
19868      "type": "function",
19869      "desc": "Enable this component."
19870     },
19871     {
19872      "name": "fireEvent",
19873      "sig": "(String eventName, Object... args)",
19874      "type": "function",
19875      "desc": "Fires the specified event with the passed parameters (minus the event name)."
19876     },
19877     {
19878      "name": "focus",
19879      "sig": "(Boolean selectText)",
19880      "type": "function",
19881      "desc": "Try to focus this component."
19882     },
19883     {
19884      "name": "getChildContainer",
19885      "sig": "()",
19886      "type": "function",
19887      "desc": "Fetch the element to add children to"
19888     },
19889     {
19890      "name": "getEl",
19891      "sig": "()",
19892      "type": "function",
19893      "desc": "Returns the underlying {@link Roo.Element}."
19894     },
19895     {
19896      "name": "getId",
19897      "sig": "()",
19898      "type": "function",
19899      "desc": "Returns the id of this component."
19900     },
19901     {
19902      "name": "getName",
19903      "sig": "()",
19904      "type": "function",
19905      "desc": "Returns the name of the field"
19906     },
19907     {
19908      "name": "getRawValue",
19909      "sig": "()",
19910      "type": "function",
19911      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
19912     },
19913     {
19914      "name": "getValue",
19915      "sig": "()",
19916      "type": "function",
19917      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
19918     },
19919     {
19920      "name": "hasListener",
19921      "sig": "(String eventName)",
19922      "type": "function",
19923      "desc": "Checks to see if this object has any listeners for a specified event"
19924     },
19925     {
19926      "name": "hide",
19927      "sig": "()",
19928      "type": "function",
19929      "desc": "Hide a component - adds 'hidden' class"
19930     },
19931     {
19932      "name": "initEvents",
19933      "sig": "()",
19934      "type": "function",
19935      "desc": "Initialize Events for the element"
19936     },
19937     {
19938      "name": "inputEl",
19939      "sig": "()",
19940      "type": "function",
19941      "desc": "return the real input element."
19942     },
19943     {
19944      "name": "isVisible",
19945      "sig": "()",
19946      "type": "function",
19947      "desc": "Returns true if this component is visible."
19948     },
19949     {
19950      "name": "markInvalid",
19951      "sig": "(String msg)",
19952      "type": "function",
19953      "desc": "Mark this field as invalid"
19954     },
19955     {
19956      "name": "markValid",
19957      "sig": "()",
19958      "type": "function",
19959      "desc": "Mark this field as valid"
19960     },
19961     {
19962      "name": "on",
19963      "sig": "(String eventName, Function handler, Object scope, Object options)",
19964      "type": "function",
19965      "desc": "Appends an event handler to this element (shorthand for addListener)"
19966     },
19967     {
19968      "name": "purgeListeners",
19969      "sig": "()",
19970      "type": "function",
19971      "desc": "Removes all listeners for this object"
19972     },
19973     {
19974      "name": "releaseCapture",
19975      "sig": "(Observable o)",
19976      "type": "function",
19977      "desc": "Removes <b>all</b> added captures from the Observable."
19978     },
19979     {
19980      "name": "removeListener",
19981      "sig": "(String eventName, Function handler, Object scope)",
19982      "type": "function",
19983      "desc": "Removes a listener"
19984     },
19985     {
19986      "name": "render",
19987      "sig": "(String/HTMLElement/Element container)",
19988      "type": "function",
19989      "desc": "If this is a lazy rendering component, render it to its container element."
19990     },
19991     {
19992      "name": "reset",
19993      "sig": "()",
19994      "type": "function",
19995      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
19996     },
19997     {
19998      "name": "setDisabled",
19999      "sig": "(Boolean disabled)",
20000      "type": "function",
20001      "desc": "Convenience function for setting disabled/enabled by boolean."
20002     },
20003     {
20004      "name": "setRawValue",
20005      "sig": "(Mixed value)",
20006      "type": "function",
20007      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
20008     },
20009     {
20010      "name": "setValue",
20011      "sig": "(Mixed value)",
20012      "type": "function",
20013      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
20014     },
20015     {
20016      "name": "setVisible",
20017      "sig": "(Boolean visible)",
20018      "type": "function",
20019      "desc": "Convenience function to hide or show this component by boolean."
20020     },
20021     {
20022      "name": "show",
20023      "sig": "()",
20024      "type": "function",
20025      "desc": "Show a component - removes 'hidden' class"
20026     },
20027     {
20028      "name": "tooltipEl",
20029      "sig": "()",
20030      "type": "function",
20031      "desc": "Fetch the element to display the tooltip on."
20032     },
20033     {
20034      "name": "un",
20035      "sig": "(String eventName, Function handler, Object scope)",
20036      "type": "function",
20037      "desc": "Removes a listener (shorthand for removeListener)"
20038     },
20039     {
20040      "name": "validate",
20041      "sig": "()",
20042      "type": "function",
20043      "desc": "Validates the field value"
20044     },
20045     {
20046      "name": "validateValue",
20047      "sig": "(Mixed value)",
20048      "type": "function",
20049      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
20050     }
20051    ]
20052   },
20053   "Roo.bootstrap.DateSplitField": {
20054    "props": [
20055     {
20056      "name": "fieldLabel",
20057      "type": "string",
20058      "desc": "- the label associated",
20059      "memberOf": ""
20060     },
20061     {
20062      "name": "labelWidth",
20063      "type": "Number",
20064      "desc": "set the width of label (0-12)",
20065      "memberOf": ""
20066     },
20067     {
20068      "name": "labelAlign",
20069      "type": "String",
20070      "desc": "",
20071      "memberOf": "",
20072      "optvals": [
20073       "top",
20074       "left"
20075      ]
20076     },
20077     {
20078      "name": "dayAllowBlank",
20079      "type": "Boolean",
20080      "desc": "default false",
20081      "memberOf": "",
20082      "optvals": [
20083       "true",
20084       "false"
20085      ]
20086     },
20087     {
20088      "name": "monthAllowBlank",
20089      "type": "Boolean",
20090      "desc": "default false",
20091      "memberOf": "",
20092      "optvals": [
20093       "true",
20094       "false"
20095      ]
20096     },
20097     {
20098      "name": "yearAllowBlank",
20099      "type": "Boolean",
20100      "desc": "default false",
20101      "memberOf": "",
20102      "optvals": [
20103       "true",
20104       "false"
20105      ]
20106     },
20107     {
20108      "name": "dayPlaceholder",
20109      "type": "string",
20110      "desc": "",
20111      "memberOf": ""
20112     },
20113     {
20114      "name": "monthPlaceholder",
20115      "type": "string",
20116      "desc": "",
20117      "memberOf": ""
20118     },
20119     {
20120      "name": "yearPlaceholder",
20121      "type": "string",
20122      "desc": "",
20123      "memberOf": ""
20124     },
20125     {
20126      "name": "dayFormat",
20127      "type": "string",
20128      "desc": "default 'd'",
20129      "memberOf": ""
20130     },
20131     {
20132      "name": "monthFormat",
20133      "type": "string",
20134      "desc": "default 'm'",
20135      "memberOf": ""
20136     },
20137     {
20138      "name": "yearFormat",
20139      "type": "string",
20140      "desc": "default 'Y'",
20141      "memberOf": ""
20142     },
20143     {
20144      "name": "cls",
20145      "type": "String",
20146      "desc": "css class",
20147      "memberOf": "Roo.bootstrap.Component"
20148     },
20149     {
20150      "name": "style",
20151      "type": "String",
20152      "desc": "any extra css",
20153      "memberOf": "Roo.bootstrap.Component"
20154     },
20155     {
20156      "name": "xattr",
20157      "type": "Object",
20158      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
20159      "memberOf": "Roo.bootstrap.Component"
20160     },
20161     {
20162      "name": "can_build_overlaid",
20163      "type": "Boolean",
20164      "desc": "True if element can be rebuild from a HTML page",
20165      "memberOf": "Roo.bootstrap.Component"
20166     },
20167     {
20168      "name": "dataId",
20169      "type": "string",
20170      "desc": "cutomer id",
20171      "memberOf": "Roo.bootstrap.Component"
20172     },
20173     {
20174      "name": "name",
20175      "type": "string",
20176      "desc": "Specifies name attribute",
20177      "memberOf": "Roo.bootstrap.Component"
20178     },
20179     {
20180      "name": "tooltip",
20181      "type": "string",
20182      "desc": "Text for the tooltip",
20183      "memberOf": "Roo.bootstrap.Component"
20184     },
20185     {
20186      "name": "container_method",
20187      "type": "string",
20188      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
20189      "memberOf": "Roo.bootstrap.Component"
20190     },
20191     {
20192      "name": "disableClass",
20193      "type": "String",
20194      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
20195      "memberOf": "Roo.Component"
20196     },
20197     {
20198      "name": "allowDomMove",
20199      "type": "Boolean",
20200      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
20201      "memberOf": "Roo.Component"
20202     },
20203     {
20204      "name": "hideMode",
20205      "type": "String",
20206      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
20207      "memberOf": "Roo.Component",
20208      "optvals": [
20209       "display",
20210       "visibility"
20211      ]
20212     },
20213     {
20214      "name": "actionMode",
20215      "type": "String",
20216      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
20217      "memberOf": "Roo.Component"
20218     },
20219     {
20220      "name": "listeners",
20221      "type": "Object",
20222      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
20223      "memberOf": "Roo.util.Observable"
20224     }
20225    ],
20226    "events": [
20227     {
20228      "name": "beforedestroy",
20229      "sig": "function (_self)\n{\n\n}",
20230      "type": "function",
20231      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
20232     },
20233     {
20234      "name": "beforehide",
20235      "sig": "function (_self)\n{\n\n}",
20236      "type": "function",
20237      "desc": "Fires before the component is hidden. Return false to stop the hide."
20238     },
20239     {
20240      "name": "beforerender",
20241      "sig": "function (_self)\n{\n\n}",
20242      "type": "function",
20243      "desc": "Fires before the component is rendered. Return false to stop the render."
20244     },
20245     {
20246      "name": "beforeshow",
20247      "sig": "function (_self)\n{\n\n}",
20248      "type": "function",
20249      "desc": "Fires before the component is shown.  Return false to stop the show."
20250     },
20251     {
20252      "name": "childrenrendered",
20253      "sig": "function (_self)\n{\n\n}",
20254      "type": "function",
20255      "desc": "Fires when the children have been rendered.."
20256     },
20257     {
20258      "name": "days",
20259      "sig": "function (_self, days)\n{\n\n}",
20260      "type": "function",
20261      "desc": "getting the data of days"
20262     },
20263     {
20264      "name": "destroy",
20265      "sig": "function (_self)\n{\n\n}",
20266      "type": "function",
20267      "desc": "Fires after the component is destroyed."
20268     },
20269     {
20270      "name": "disable",
20271      "sig": "function (_self)\n{\n\n}",
20272      "type": "function",
20273      "desc": "Fires after the component is disabled."
20274     },
20275     {
20276      "name": "enable",
20277      "sig": "function (_self)\n{\n\n}",
20278      "type": "function",
20279      "desc": "Fires after the component is enabled."
20280     },
20281     {
20282      "name": "hide",
20283      "sig": "function (_self)\n{\n\n}",
20284      "type": "function",
20285      "desc": "Fires after the component is hidden."
20286     },
20287     {
20288      "name": "invalid",
20289      "sig": "function (_self, msg)\n{\n\n}",
20290      "type": "function",
20291      "desc": "Fires after the field has been marked as invalid."
20292     },
20293     {
20294      "name": "render",
20295      "sig": "function (_self)\n{\n\n}",
20296      "type": "function",
20297      "desc": "Fires after the component is rendered."
20298     },
20299     {
20300      "name": "show",
20301      "sig": "function (_self)\n{\n\n}",
20302      "type": "function",
20303      "desc": "Fires after the component is shown."
20304     },
20305     {
20306      "name": "valid",
20307      "sig": "function (_self)\n{\n\n}",
20308      "type": "function",
20309      "desc": "Fires after the field has been validated with no errors."
20310     },
20311     {
20312      "name": "years",
20313      "sig": "function (_self, years)\n{\n\n}",
20314      "type": "function",
20315      "desc": "getting the data of years"
20316     }
20317    ],
20318    "methods": [
20319     {
20320      "name": "addEvents",
20321      "sig": "(Object object)",
20322      "type": "function",
20323      "desc": "Used to define events on this Observable"
20324     },
20325     {
20326      "name": "addListener",
20327      "sig": "(String eventName, Function handler, Object scope, Object options)",
20328      "type": "function",
20329      "desc": "Appends an event handler to this component"
20330     },
20331     {
20332      "name": "capture",
20333      "sig": "(Observable o, Function fn, Object scope)",
20334      "type": "function",
20335      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
20336     },
20337     {
20338      "name": "destroy",
20339      "sig": "()",
20340      "type": "function",
20341      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
20342     },
20343     {
20344      "name": "disable",
20345      "sig": "()",
20346      "type": "function",
20347      "desc": "Disable this component."
20348     },
20349     {
20350      "name": "enable",
20351      "sig": "()",
20352      "type": "function",
20353      "desc": "Enable this component."
20354     },
20355     {
20356      "name": "fireEvent",
20357      "sig": "(String eventName, Object... args)",
20358      "type": "function",
20359      "desc": "Fires the specified event with the passed parameters (minus the event name)."
20360     },
20361     {
20362      "name": "focus",
20363      "sig": "(Boolean selectText)",
20364      "type": "function",
20365      "desc": "Try to focus this component."
20366     },
20367     {
20368      "name": "getChildContainer",
20369      "sig": "()",
20370      "type": "function",
20371      "desc": "Fetch the element to add children to"
20372     },
20373     {
20374      "name": "getEl",
20375      "sig": "()",
20376      "type": "function",
20377      "desc": "Returns the underlying {@link Roo.Element}."
20378     },
20379     {
20380      "name": "getId",
20381      "sig": "()",
20382      "type": "function",
20383      "desc": "Returns the id of this component."
20384     },
20385     {
20386      "name": "hasListener",
20387      "sig": "(String eventName)",
20388      "type": "function",
20389      "desc": "Checks to see if this object has any listeners for a specified event"
20390     },
20391     {
20392      "name": "hide",
20393      "sig": "()",
20394      "type": "function",
20395      "desc": "Hide a component - adds 'hidden' class"
20396     },
20397     {
20398      "name": "initEvents",
20399      "sig": "()",
20400      "type": "function",
20401      "desc": "Initialize Events for the element"
20402     },
20403     {
20404      "name": "isVisible",
20405      "sig": "()",
20406      "type": "function",
20407      "desc": "Returns true if this component is visible."
20408     },
20409     {
20410      "name": "markInvalid",
20411      "sig": "(String msg)",
20412      "type": "function",
20413      "desc": "Mark this field as invalid"
20414     },
20415     {
20416      "name": "on",
20417      "sig": "(String eventName, Function handler, Object scope, Object options)",
20418      "type": "function",
20419      "desc": "Appends an event handler to this element (shorthand for addListener)"
20420     },
20421     {
20422      "name": "purgeListeners",
20423      "sig": "()",
20424      "type": "function",
20425      "desc": "Removes all listeners for this object"
20426     },
20427     {
20428      "name": "releaseCapture",
20429      "sig": "(Observable o)",
20430      "type": "function",
20431      "desc": "Removes <b>all</b> added captures from the Observable."
20432     },
20433     {
20434      "name": "removeListener",
20435      "sig": "(String eventName, Function handler, Object scope)",
20436      "type": "function",
20437      "desc": "Removes a listener"
20438     },
20439     {
20440      "name": "render",
20441      "sig": "(String/HTMLElement/Element container)",
20442      "type": "function",
20443      "desc": "If this is a lazy rendering component, render it to its container element."
20444     },
20445     {
20446      "name": "setDisabled",
20447      "sig": "(Boolean disabled)",
20448      "type": "function",
20449      "desc": "Convenience function for setting disabled/enabled by boolean."
20450     },
20451     {
20452      "name": "setVisible",
20453      "sig": "(Boolean visible)",
20454      "type": "function",
20455      "desc": "Convenience function to hide or show this component by boolean."
20456     },
20457     {
20458      "name": "show",
20459      "sig": "()",
20460      "type": "function",
20461      "desc": "Show a component - removes 'hidden' class"
20462     },
20463     {
20464      "name": "tooltipEl",
20465      "sig": "()",
20466      "type": "function",
20467      "desc": "Fetch the element to display the tooltip on."
20468     },
20469     {
20470      "name": "un",
20471      "sig": "(String eventName, Function handler, Object scope)",
20472      "type": "function",
20473      "desc": "Removes a listener (shorthand for removeListener)"
20474     }
20475    ]
20476   },
20477   "Roo.bootstrap.DocumentManager": {
20478    "props": [
20479     {
20480      "name": "paramName",
20481      "type": "String",
20482      "desc": "default 'imageUpload'",
20483      "memberOf": ""
20484     },
20485     {
20486      "name": "toolTipName",
20487      "type": "String",
20488      "desc": "default 'filename'",
20489      "memberOf": ""
20490     },
20491     {
20492      "name": "method",
20493      "type": "String",
20494      "desc": "default POST",
20495      "memberOf": ""
20496     },
20497     {
20498      "name": "url",
20499      "type": "String",
20500      "desc": "action url",
20501      "memberOf": ""
20502     },
20503     {
20504      "name": "boxes",
20505      "type": "Number",
20506      "desc": "number of boxes, 0 is no limit.. default 0",
20507      "memberOf": ""
20508     },
20509     {
20510      "name": "multiple",
20511      "type": "Boolean",
20512      "desc": "multiple upload default true",
20513      "memberOf": ""
20514     },
20515     {
20516      "name": "thumbSize",
20517      "type": "Number",
20518      "desc": "default 300",
20519      "memberOf": ""
20520     },
20521     {
20522      "name": "fieldLabel",
20523      "type": "String",
20524      "desc": "",
20525      "memberOf": ""
20526     },
20527     {
20528      "name": "labelWidth",
20529      "type": "Number",
20530      "desc": "default 4",
20531      "memberOf": ""
20532     },
20533     {
20534      "name": "labelAlign",
20535      "type": "String",
20536      "desc": "default left",
20537      "memberOf": "",
20538      "optvals": [
20539       "left",
20540       "top"
20541      ]
20542     },
20543     {
20544      "name": "editable",
20545      "type": "Boolean",
20546      "desc": "allow edit when upload a image default true",
20547      "memberOf": "",
20548      "optvals": [
20549       "true",
20550       "false"
20551      ]
20552     },
20553     {
20554      "name": "cls",
20555      "type": "String",
20556      "desc": "css class",
20557      "memberOf": "Roo.bootstrap.Component"
20558     },
20559     {
20560      "name": "style",
20561      "type": "String",
20562      "desc": "any extra css",
20563      "memberOf": "Roo.bootstrap.Component"
20564     },
20565     {
20566      "name": "xattr",
20567      "type": "Object",
20568      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
20569      "memberOf": "Roo.bootstrap.Component"
20570     },
20571     {
20572      "name": "can_build_overlaid",
20573      "type": "Boolean",
20574      "desc": "True if element can be rebuild from a HTML page",
20575      "memberOf": "Roo.bootstrap.Component"
20576     },
20577     {
20578      "name": "dataId",
20579      "type": "string",
20580      "desc": "cutomer id",
20581      "memberOf": "Roo.bootstrap.Component"
20582     },
20583     {
20584      "name": "name",
20585      "type": "string",
20586      "desc": "Specifies name attribute",
20587      "memberOf": "Roo.bootstrap.Component"
20588     },
20589     {
20590      "name": "tooltip",
20591      "type": "string",
20592      "desc": "Text for the tooltip",
20593      "memberOf": "Roo.bootstrap.Component"
20594     },
20595     {
20596      "name": "container_method",
20597      "type": "string",
20598      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
20599      "memberOf": "Roo.bootstrap.Component"
20600     },
20601     {
20602      "name": "disableClass",
20603      "type": "String",
20604      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
20605      "memberOf": "Roo.Component"
20606     },
20607     {
20608      "name": "allowDomMove",
20609      "type": "Boolean",
20610      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
20611      "memberOf": "Roo.Component"
20612     },
20613     {
20614      "name": "hideMode",
20615      "type": "String",
20616      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
20617      "memberOf": "Roo.Component",
20618      "optvals": [
20619       "display",
20620       "visibility"
20621      ]
20622     },
20623     {
20624      "name": "actionMode",
20625      "type": "String",
20626      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
20627      "memberOf": "Roo.Component"
20628     },
20629     {
20630      "name": "listeners",
20631      "type": "Object",
20632      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
20633      "memberOf": "Roo.util.Observable"
20634     }
20635    ],
20636    "events": [
20637     {
20638      "name": "afterupload",
20639      "sig": "function (_self, xhr)\n{\n\n}",
20640      "type": "function",
20641      "desc": "Fire when xhr load exception"
20642     },
20643     {
20644      "name": "beforedestroy",
20645      "sig": "function (_self)\n{\n\n}",
20646      "type": "function",
20647      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
20648     },
20649     {
20650      "name": "beforehide",
20651      "sig": "function (_self)\n{\n\n}",
20652      "type": "function",
20653      "desc": "Fires before the component is hidden. Return false to stop the hide."
20654     },
20655     {
20656      "name": "beforerender",
20657      "sig": "function (_self)\n{\n\n}",
20658      "type": "function",
20659      "desc": "Fires before the component is rendered. Return false to stop the render."
20660     },
20661     {
20662      "name": "beforeselectfile",
20663      "sig": "function (_self)\n{\n\n}",
20664      "type": "function",
20665      "desc": "Fire before select file"
20666     },
20667     {
20668      "name": "beforeshow",
20669      "sig": "function (_self)\n{\n\n}",
20670      "type": "function",
20671      "desc": "Fires before the component is shown.  Return false to stop the show."
20672     },
20673     {
20674      "name": "childrenrendered",
20675      "sig": "function (_self)\n{\n\n}",
20676      "type": "function",
20677      "desc": "Fires when the children have been rendered.."
20678     },
20679     {
20680      "name": "click",
20681      "sig": "function (_self, file)\n{\n\n}",
20682      "type": "function",
20683      "desc": "Fire after click the image"
20684     },
20685     {
20686      "name": "destroy",
20687      "sig": "function (_self)\n{\n\n}",
20688      "type": "function",
20689      "desc": "Fires after the component is destroyed."
20690     },
20691     {
20692      "name": "disable",
20693      "sig": "function (_self)\n{\n\n}",
20694      "type": "function",
20695      "desc": "Fires after the component is disabled."
20696     },
20697     {
20698      "name": "edit",
20699      "sig": "function (_self, file)\n{\n\n}",
20700      "type": "function",
20701      "desc": "Fire when upload a image and editable set to true"
20702     },
20703     {
20704      "name": "enable",
20705      "sig": "function (_self)\n{\n\n}",
20706      "type": "function",
20707      "desc": "Fires after the component is enabled."
20708     },
20709     {
20710      "name": "exception",
20711      "sig": "function (_self, xhr)\n{\n\n}",
20712      "type": "function",
20713      "desc": "Fire when xhr load exception"
20714     },
20715     {
20716      "name": "hide",
20717      "sig": "function (_self)\n{\n\n}",
20718      "type": "function",
20719      "desc": "Fires after the component is hidden."
20720     },
20721     {
20722      "name": "initial",
20723      "sig": "function (_self)\n{\n\n}",
20724      "type": "function",
20725      "desc": "Fire when initial the DocumentManager"
20726     },
20727     {
20728      "name": "inspect",
20729      "sig": "function (_self, file)\n{\n\n}",
20730      "type": "function",
20731      "desc": "inspect selected file"
20732     },
20733     {
20734      "name": "prepare",
20735      "sig": "function (_self, formData)\n{\n\n}",
20736      "type": "function",
20737      "desc": "prepare the form data"
20738     },
20739     {
20740      "name": "process",
20741      "sig": "function (_self, file)\n{\n\n}",
20742      "type": "function",
20743      "desc": "Fire before process file"
20744     },
20745     {
20746      "name": "refresh",
20747      "sig": "function (_self)\n{\n\n}",
20748      "type": "function",
20749      "desc": "Fire after refresh the file"
20750     },
20751     {
20752      "name": "remove",
20753      "sig": "function (_self, file)\n{\n\n}",
20754      "type": "function",
20755      "desc": "Fire when remove the file"
20756     },
20757     {
20758      "name": "render",
20759      "sig": "function (_self)\n{\n\n}",
20760      "type": "function",
20761      "desc": "Fires after the component is rendered."
20762     },
20763     {
20764      "name": "show",
20765      "sig": "function (_self)\n{\n\n}",
20766      "type": "function",
20767      "desc": "Fires after the component is shown."
20768     }
20769    ],
20770    "methods": [
20771     {
20772      "name": "addEvents",
20773      "sig": "(Object object)",
20774      "type": "function",
20775      "desc": "Used to define events on this Observable"
20776     },
20777     {
20778      "name": "addListener",
20779      "sig": "(String eventName, Function handler, Object scope, Object options)",
20780      "type": "function",
20781      "desc": "Appends an event handler to this component"
20782     },
20783     {
20784      "name": "capture",
20785      "sig": "(Observable o, Function fn, Object scope)",
20786      "type": "function",
20787      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
20788     },
20789     {
20790      "name": "destroy",
20791      "sig": "()",
20792      "type": "function",
20793      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
20794     },
20795     {
20796      "name": "disable",
20797      "sig": "()",
20798      "type": "function",
20799      "desc": "Disable this component."
20800     },
20801     {
20802      "name": "enable",
20803      "sig": "()",
20804      "type": "function",
20805      "desc": "Enable this component."
20806     },
20807     {
20808      "name": "fireEvent",
20809      "sig": "(String eventName, Object... args)",
20810      "type": "function",
20811      "desc": "Fires the specified event with the passed parameters (minus the event name)."
20812     },
20813     {
20814      "name": "focus",
20815      "sig": "(Boolean selectText)",
20816      "type": "function",
20817      "desc": "Try to focus this component."
20818     },
20819     {
20820      "name": "getChildContainer",
20821      "sig": "()",
20822      "type": "function",
20823      "desc": "Fetch the element to add children to"
20824     },
20825     {
20826      "name": "getEl",
20827      "sig": "()",
20828      "type": "function",
20829      "desc": "Returns the underlying {@link Roo.Element}."
20830     },
20831     {
20832      "name": "getId",
20833      "sig": "()",
20834      "type": "function",
20835      "desc": "Returns the id of this component."
20836     },
20837     {
20838      "name": "hasListener",
20839      "sig": "(String eventName)",
20840      "type": "function",
20841      "desc": "Checks to see if this object has any listeners for a specified event"
20842     },
20843     {
20844      "name": "hide",
20845      "sig": "()",
20846      "type": "function",
20847      "desc": "Hide a component - adds 'hidden' class"
20848     },
20849     {
20850      "name": "initEvents",
20851      "sig": "()",
20852      "type": "function",
20853      "desc": "Initialize Events for the element"
20854     },
20855     {
20856      "name": "isVisible",
20857      "sig": "()",
20858      "type": "function",
20859      "desc": "Returns true if this component is visible."
20860     },
20861     {
20862      "name": "on",
20863      "sig": "(String eventName, Function handler, Object scope, Object options)",
20864      "type": "function",
20865      "desc": "Appends an event handler to this element (shorthand for addListener)"
20866     },
20867     {
20868      "name": "purgeListeners",
20869      "sig": "()",
20870      "type": "function",
20871      "desc": "Removes all listeners for this object"
20872     },
20873     {
20874      "name": "releaseCapture",
20875      "sig": "(Observable o)",
20876      "type": "function",
20877      "desc": "Removes <b>all</b> added captures from the Observable."
20878     },
20879     {
20880      "name": "removeListener",
20881      "sig": "(String eventName, Function handler, Object scope)",
20882      "type": "function",
20883      "desc": "Removes a listener"
20884     },
20885     {
20886      "name": "render",
20887      "sig": "(String/HTMLElement/Element container)",
20888      "type": "function",
20889      "desc": "If this is a lazy rendering component, render it to its container element."
20890     },
20891     {
20892      "name": "setDisabled",
20893      "sig": "(Boolean disabled)",
20894      "type": "function",
20895      "desc": "Convenience function for setting disabled/enabled by boolean."
20896     },
20897     {
20898      "name": "setVisible",
20899      "sig": "(Boolean visible)",
20900      "type": "function",
20901      "desc": "Convenience function to hide or show this component by boolean."
20902     },
20903     {
20904      "name": "show",
20905      "sig": "()",
20906      "type": "function",
20907      "desc": "Show a component - removes 'hidden' class"
20908     },
20909     {
20910      "name": "tooltipEl",
20911      "sig": "()",
20912      "type": "function",
20913      "desc": "Fetch the element to display the tooltip on."
20914     },
20915     {
20916      "name": "un",
20917      "sig": "(String eventName, Function handler, Object scope)",
20918      "type": "function",
20919      "desc": "Removes a listener (shorthand for removeListener)"
20920     }
20921    ]
20922   },
20923   "Roo.bootstrap.DocumentSlider": {
20924    "props": [
20925     {
20926      "name": "cls",
20927      "type": "String",
20928      "desc": "css class",
20929      "memberOf": "Roo.bootstrap.Component"
20930     },
20931     {
20932      "name": "style",
20933      "type": "String",
20934      "desc": "any extra css",
20935      "memberOf": "Roo.bootstrap.Component"
20936     },
20937     {
20938      "name": "xattr",
20939      "type": "Object",
20940      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
20941      "memberOf": "Roo.bootstrap.Component"
20942     },
20943     {
20944      "name": "can_build_overlaid",
20945      "type": "Boolean",
20946      "desc": "True if element can be rebuild from a HTML page",
20947      "memberOf": "Roo.bootstrap.Component"
20948     },
20949     {
20950      "name": "dataId",
20951      "type": "string",
20952      "desc": "cutomer id",
20953      "memberOf": "Roo.bootstrap.Component"
20954     },
20955     {
20956      "name": "name",
20957      "type": "string",
20958      "desc": "Specifies name attribute",
20959      "memberOf": "Roo.bootstrap.Component"
20960     },
20961     {
20962      "name": "tooltip",
20963      "type": "string",
20964      "desc": "Text for the tooltip",
20965      "memberOf": "Roo.bootstrap.Component"
20966     },
20967     {
20968      "name": "container_method",
20969      "type": "string",
20970      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
20971      "memberOf": "Roo.bootstrap.Component"
20972     },
20973     {
20974      "name": "disableClass",
20975      "type": "String",
20976      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
20977      "memberOf": "Roo.Component"
20978     },
20979     {
20980      "name": "allowDomMove",
20981      "type": "Boolean",
20982      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
20983      "memberOf": "Roo.Component"
20984     },
20985     {
20986      "name": "hideMode",
20987      "type": "String",
20988      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
20989      "memberOf": "Roo.Component",
20990      "optvals": [
20991       "display",
20992       "visibility"
20993      ]
20994     },
20995     {
20996      "name": "actionMode",
20997      "type": "String",
20998      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
20999      "memberOf": "Roo.Component"
21000     },
21001     {
21002      "name": "listeners",
21003      "type": "Object",
21004      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
21005      "memberOf": "Roo.util.Observable"
21006     }
21007    ],
21008    "events": [
21009     {
21010      "name": "beforedestroy",
21011      "sig": "function (_self)\n{\n\n}",
21012      "type": "function",
21013      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
21014     },
21015     {
21016      "name": "beforehide",
21017      "sig": "function (_self)\n{\n\n}",
21018      "type": "function",
21019      "desc": "Fires before the component is hidden. Return false to stop the hide."
21020     },
21021     {
21022      "name": "beforerender",
21023      "sig": "function (_self)\n{\n\n}",
21024      "type": "function",
21025      "desc": "Fires before the component is rendered. Return false to stop the render."
21026     },
21027     {
21028      "name": "beforeshow",
21029      "sig": "function (_self)\n{\n\n}",
21030      "type": "function",
21031      "desc": "Fires before the component is shown.  Return false to stop the show."
21032     },
21033     {
21034      "name": "childrenrendered",
21035      "sig": "function (_self)\n{\n\n}",
21036      "type": "function",
21037      "desc": "Fires when the children have been rendered.."
21038     },
21039     {
21040      "name": "click",
21041      "sig": "function (_self)\n{\n\n}",
21042      "type": "function",
21043      "desc": "Fire after click"
21044     },
21045     {
21046      "name": "destroy",
21047      "sig": "function (_self)\n{\n\n}",
21048      "type": "function",
21049      "desc": "Fires after the component is destroyed."
21050     },
21051     {
21052      "name": "disable",
21053      "sig": "function (_self)\n{\n\n}",
21054      "type": "function",
21055      "desc": "Fires after the component is disabled."
21056     },
21057     {
21058      "name": "enable",
21059      "sig": "function (_self)\n{\n\n}",
21060      "type": "function",
21061      "desc": "Fires after the component is enabled."
21062     },
21063     {
21064      "name": "hide",
21065      "sig": "function (_self)\n{\n\n}",
21066      "type": "function",
21067      "desc": "Fires after the component is hidden."
21068     },
21069     {
21070      "name": "initial",
21071      "sig": "function (_self)\n{\n\n}",
21072      "type": "function",
21073      "desc": "Fire after initEvent"
21074     },
21075     {
21076      "name": "render",
21077      "sig": "function (_self)\n{\n\n}",
21078      "type": "function",
21079      "desc": "Fires after the component is rendered."
21080     },
21081     {
21082      "name": "show",
21083      "sig": "function (_self)\n{\n\n}",
21084      "type": "function",
21085      "desc": "Fires after the component is shown."
21086     },
21087     {
21088      "name": "update",
21089      "sig": "function (_self)\n{\n\n}",
21090      "type": "function",
21091      "desc": "Fire after update"
21092     }
21093    ],
21094    "methods": [
21095     {
21096      "name": "addEvents",
21097      "sig": "(Object object)",
21098      "type": "function",
21099      "desc": "Used to define events on this Observable"
21100     },
21101     {
21102      "name": "addListener",
21103      "sig": "(String eventName, Function handler, Object scope, Object options)",
21104      "type": "function",
21105      "desc": "Appends an event handler to this component"
21106     },
21107     {
21108      "name": "capture",
21109      "sig": "(Observable o, Function fn, Object scope)",
21110      "type": "function",
21111      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
21112     },
21113     {
21114      "name": "destroy",
21115      "sig": "()",
21116      "type": "function",
21117      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
21118     },
21119     {
21120      "name": "disable",
21121      "sig": "()",
21122      "type": "function",
21123      "desc": "Disable this component."
21124     },
21125     {
21126      "name": "enable",
21127      "sig": "()",
21128      "type": "function",
21129      "desc": "Enable this component."
21130     },
21131     {
21132      "name": "fireEvent",
21133      "sig": "(String eventName, Object... args)",
21134      "type": "function",
21135      "desc": "Fires the specified event with the passed parameters (minus the event name)."
21136     },
21137     {
21138      "name": "focus",
21139      "sig": "(Boolean selectText)",
21140      "type": "function",
21141      "desc": "Try to focus this component."
21142     },
21143     {
21144      "name": "getChildContainer",
21145      "sig": "()",
21146      "type": "function",
21147      "desc": "Fetch the element to add children to"
21148     },
21149     {
21150      "name": "getEl",
21151      "sig": "()",
21152      "type": "function",
21153      "desc": "Returns the underlying {@link Roo.Element}."
21154     },
21155     {
21156      "name": "getId",
21157      "sig": "()",
21158      "type": "function",
21159      "desc": "Returns the id of this component."
21160     },
21161     {
21162      "name": "hasListener",
21163      "sig": "(String eventName)",
21164      "type": "function",
21165      "desc": "Checks to see if this object has any listeners for a specified event"
21166     },
21167     {
21168      "name": "hide",
21169      "sig": "()",
21170      "type": "function",
21171      "desc": "Hide a component - adds 'hidden' class"
21172     },
21173     {
21174      "name": "initEvents",
21175      "sig": "()",
21176      "type": "function",
21177      "desc": "Initialize Events for the element"
21178     },
21179     {
21180      "name": "isVisible",
21181      "sig": "()",
21182      "type": "function",
21183      "desc": "Returns true if this component is visible."
21184     },
21185     {
21186      "name": "on",
21187      "sig": "(String eventName, Function handler, Object scope, Object options)",
21188      "type": "function",
21189      "desc": "Appends an event handler to this element (shorthand for addListener)"
21190     },
21191     {
21192      "name": "purgeListeners",
21193      "sig": "()",
21194      "type": "function",
21195      "desc": "Removes all listeners for this object"
21196     },
21197     {
21198      "name": "releaseCapture",
21199      "sig": "(Observable o)",
21200      "type": "function",
21201      "desc": "Removes <b>all</b> added captures from the Observable."
21202     },
21203     {
21204      "name": "removeListener",
21205      "sig": "(String eventName, Function handler, Object scope)",
21206      "type": "function",
21207      "desc": "Removes a listener"
21208     },
21209     {
21210      "name": "render",
21211      "sig": "(String/HTMLElement/Element container)",
21212      "type": "function",
21213      "desc": "If this is a lazy rendering component, render it to its container element."
21214     },
21215     {
21216      "name": "setDisabled",
21217      "sig": "(Boolean disabled)",
21218      "type": "function",
21219      "desc": "Convenience function for setting disabled/enabled by boolean."
21220     },
21221     {
21222      "name": "setVisible",
21223      "sig": "(Boolean visible)",
21224      "type": "function",
21225      "desc": "Convenience function to hide or show this component by boolean."
21226     },
21227     {
21228      "name": "show",
21229      "sig": "()",
21230      "type": "function",
21231      "desc": "Show a component - removes 'hidden' class"
21232     },
21233     {
21234      "name": "tooltipEl",
21235      "sig": "()",
21236      "type": "function",
21237      "desc": "Fetch the element to display the tooltip on."
21238     },
21239     {
21240      "name": "un",
21241      "sig": "(String eventName, Function handler, Object scope)",
21242      "type": "function",
21243      "desc": "Removes a listener (shorthand for removeListener)"
21244     }
21245    ]
21246   },
21247   "Roo.bootstrap.DocumentViewer": {
21248    "props": [
21249     {
21250      "name": "showDownload",
21251      "type": "Boolean",
21252      "desc": "show download button (default true)",
21253      "memberOf": "",
21254      "optvals": [
21255       "true",
21256       "false"
21257      ]
21258     },
21259     {
21260      "name": "showTrash",
21261      "type": "Boolean",
21262      "desc": "show trash button (default true)",
21263      "memberOf": "",
21264      "optvals": [
21265       "true",
21266       "false"
21267      ]
21268     },
21269     {
21270      "name": "cls",
21271      "type": "String",
21272      "desc": "css class",
21273      "memberOf": "Roo.bootstrap.Component"
21274     },
21275     {
21276      "name": "style",
21277      "type": "String",
21278      "desc": "any extra css",
21279      "memberOf": "Roo.bootstrap.Component"
21280     },
21281     {
21282      "name": "xattr",
21283      "type": "Object",
21284      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
21285      "memberOf": "Roo.bootstrap.Component"
21286     },
21287     {
21288      "name": "can_build_overlaid",
21289      "type": "Boolean",
21290      "desc": "True if element can be rebuild from a HTML page",
21291      "memberOf": "Roo.bootstrap.Component"
21292     },
21293     {
21294      "name": "dataId",
21295      "type": "string",
21296      "desc": "cutomer id",
21297      "memberOf": "Roo.bootstrap.Component"
21298     },
21299     {
21300      "name": "name",
21301      "type": "string",
21302      "desc": "Specifies name attribute",
21303      "memberOf": "Roo.bootstrap.Component"
21304     },
21305     {
21306      "name": "tooltip",
21307      "type": "string",
21308      "desc": "Text for the tooltip",
21309      "memberOf": "Roo.bootstrap.Component"
21310     },
21311     {
21312      "name": "container_method",
21313      "type": "string",
21314      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
21315      "memberOf": "Roo.bootstrap.Component"
21316     },
21317     {
21318      "name": "disableClass",
21319      "type": "String",
21320      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
21321      "memberOf": "Roo.Component"
21322     },
21323     {
21324      "name": "allowDomMove",
21325      "type": "Boolean",
21326      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
21327      "memberOf": "Roo.Component"
21328     },
21329     {
21330      "name": "hideMode",
21331      "type": "String",
21332      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
21333      "memberOf": "Roo.Component",
21334      "optvals": [
21335       "display",
21336       "visibility"
21337      ]
21338     },
21339     {
21340      "name": "actionMode",
21341      "type": "String",
21342      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
21343      "memberOf": "Roo.Component"
21344     },
21345     {
21346      "name": "listeners",
21347      "type": "Object",
21348      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
21349      "memberOf": "Roo.util.Observable"
21350     }
21351    ],
21352    "events": [
21353     {
21354      "name": "beforedestroy",
21355      "sig": "function (_self)\n{\n\n}",
21356      "type": "function",
21357      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
21358     },
21359     {
21360      "name": "beforehide",
21361      "sig": "function (_self)\n{\n\n}",
21362      "type": "function",
21363      "desc": "Fires before the component is hidden. Return false to stop the hide."
21364     },
21365     {
21366      "name": "beforerender",
21367      "sig": "function (_self)\n{\n\n}",
21368      "type": "function",
21369      "desc": "Fires before the component is rendered. Return false to stop the render."
21370     },
21371     {
21372      "name": "beforeshow",
21373      "sig": "function (_self)\n{\n\n}",
21374      "type": "function",
21375      "desc": "Fires before the component is shown.  Return false to stop the show."
21376     },
21377     {
21378      "name": "childrenrendered",
21379      "sig": "function (_self)\n{\n\n}",
21380      "type": "function",
21381      "desc": "Fires when the children have been rendered.."
21382     },
21383     {
21384      "name": "click",
21385      "sig": "function (_self)\n{\n\n}",
21386      "type": "function",
21387      "desc": "Fire after click"
21388     },
21389     {
21390      "name": "destroy",
21391      "sig": "function (_self)\n{\n\n}",
21392      "type": "function",
21393      "desc": "Fires after the component is destroyed."
21394     },
21395     {
21396      "name": "disable",
21397      "sig": "function (_self)\n{\n\n}",
21398      "type": "function",
21399      "desc": "Fires after the component is disabled."
21400     },
21401     {
21402      "name": "download",
21403      "sig": "function (_self)\n{\n\n}",
21404      "type": "function",
21405      "desc": "Fire after download button"
21406     },
21407     {
21408      "name": "enable",
21409      "sig": "function (_self)\n{\n\n}",
21410      "type": "function",
21411      "desc": "Fires after the component is enabled."
21412     },
21413     {
21414      "name": "hide",
21415      "sig": "function (_self)\n{\n\n}",
21416      "type": "function",
21417      "desc": "Fires after the component is hidden."
21418     },
21419     {
21420      "name": "initial",
21421      "sig": "function (_self)\n{\n\n}",
21422      "type": "function",
21423      "desc": "Fire after initEvent"
21424     },
21425     {
21426      "name": "render",
21427      "sig": "function (_self)\n{\n\n}",
21428      "type": "function",
21429      "desc": "Fires after the component is rendered."
21430     },
21431     {
21432      "name": "show",
21433      "sig": "function (_self)\n{\n\n}",
21434      "type": "function",
21435      "desc": "Fires after the component is shown."
21436     },
21437     {
21438      "name": "trash",
21439      "sig": "function (_self)\n{\n\n}",
21440      "type": "function",
21441      "desc": "Fire after trash button"
21442     }
21443    ],
21444    "methods": [
21445     {
21446      "name": "addEvents",
21447      "sig": "(Object object)",
21448      "type": "function",
21449      "desc": "Used to define events on this Observable"
21450     },
21451     {
21452      "name": "addListener",
21453      "sig": "(String eventName, Function handler, Object scope, Object options)",
21454      "type": "function",
21455      "desc": "Appends an event handler to this component"
21456     },
21457     {
21458      "name": "capture",
21459      "sig": "(Observable o, Function fn, Object scope)",
21460      "type": "function",
21461      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
21462     },
21463     {
21464      "name": "destroy",
21465      "sig": "()",
21466      "type": "function",
21467      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
21468     },
21469     {
21470      "name": "disable",
21471      "sig": "()",
21472      "type": "function",
21473      "desc": "Disable this component."
21474     },
21475     {
21476      "name": "enable",
21477      "sig": "()",
21478      "type": "function",
21479      "desc": "Enable this component."
21480     },
21481     {
21482      "name": "fireEvent",
21483      "sig": "(String eventName, Object... args)",
21484      "type": "function",
21485      "desc": "Fires the specified event with the passed parameters (minus the event name)."
21486     },
21487     {
21488      "name": "focus",
21489      "sig": "(Boolean selectText)",
21490      "type": "function",
21491      "desc": "Try to focus this component."
21492     },
21493     {
21494      "name": "getChildContainer",
21495      "sig": "()",
21496      "type": "function",
21497      "desc": "Fetch the element to add children to"
21498     },
21499     {
21500      "name": "getEl",
21501      "sig": "()",
21502      "type": "function",
21503      "desc": "Returns the underlying {@link Roo.Element}."
21504     },
21505     {
21506      "name": "getId",
21507      "sig": "()",
21508      "type": "function",
21509      "desc": "Returns the id of this component."
21510     },
21511     {
21512      "name": "hasListener",
21513      "sig": "(String eventName)",
21514      "type": "function",
21515      "desc": "Checks to see if this object has any listeners for a specified event"
21516     },
21517     {
21518      "name": "hide",
21519      "sig": "()",
21520      "type": "function",
21521      "desc": "Hide a component - adds 'hidden' class"
21522     },
21523     {
21524      "name": "initEvents",
21525      "sig": "()",
21526      "type": "function",
21527      "desc": "Initialize Events for the element"
21528     },
21529     {
21530      "name": "isVisible",
21531      "sig": "()",
21532      "type": "function",
21533      "desc": "Returns true if this component is visible."
21534     },
21535     {
21536      "name": "on",
21537      "sig": "(String eventName, Function handler, Object scope, Object options)",
21538      "type": "function",
21539      "desc": "Appends an event handler to this element (shorthand for addListener)"
21540     },
21541     {
21542      "name": "purgeListeners",
21543      "sig": "()",
21544      "type": "function",
21545      "desc": "Removes all listeners for this object"
21546     },
21547     {
21548      "name": "releaseCapture",
21549      "sig": "(Observable o)",
21550      "type": "function",
21551      "desc": "Removes <b>all</b> added captures from the Observable."
21552     },
21553     {
21554      "name": "removeListener",
21555      "sig": "(String eventName, Function handler, Object scope)",
21556      "type": "function",
21557      "desc": "Removes a listener"
21558     },
21559     {
21560      "name": "render",
21561      "sig": "(String/HTMLElement/Element container)",
21562      "type": "function",
21563      "desc": "If this is a lazy rendering component, render it to its container element."
21564     },
21565     {
21566      "name": "setDisabled",
21567      "sig": "(Boolean disabled)",
21568      "type": "function",
21569      "desc": "Convenience function for setting disabled/enabled by boolean."
21570     },
21571     {
21572      "name": "setVisible",
21573      "sig": "(Boolean visible)",
21574      "type": "function",
21575      "desc": "Convenience function to hide or show this component by boolean."
21576     },
21577     {
21578      "name": "show",
21579      "sig": "()",
21580      "type": "function",
21581      "desc": "Show a component - removes 'hidden' class"
21582     },
21583     {
21584      "name": "tooltipEl",
21585      "sig": "()",
21586      "type": "function",
21587      "desc": "Fetch the element to display the tooltip on."
21588     },
21589     {
21590      "name": "un",
21591      "sig": "(String eventName, Function handler, Object scope)",
21592      "type": "function",
21593      "desc": "Removes a listener (shorthand for removeListener)"
21594     }
21595    ]
21596   },
21597   "Roo.bootstrap.Element": {
21598    "props": [
21599     {
21600      "name": "html",
21601      "type": "String",
21602      "desc": "contents of the element",
21603      "memberOf": ""
21604     },
21605     {
21606      "name": "tag",
21607      "type": "String",
21608      "desc": "tag of the element",
21609      "memberOf": ""
21610     },
21611     {
21612      "name": "cls",
21613      "type": "String",
21614      "desc": "class of the element",
21615      "memberOf": ""
21616     },
21617     {
21618      "name": "preventDefault",
21619      "type": "Boolean",
21620      "desc": "default false",
21621      "memberOf": "",
21622      "optvals": [
21623       "true",
21624       "false"
21625      ]
21626     },
21627     {
21628      "name": "clickable",
21629      "type": "Boolean",
21630      "desc": "default false",
21631      "memberOf": "",
21632      "optvals": [
21633       "true",
21634       "false"
21635      ]
21636     },
21637     {
21638      "name": "style",
21639      "type": "String",
21640      "desc": "any extra css",
21641      "memberOf": "Roo.bootstrap.Component"
21642     },
21643     {
21644      "name": "xattr",
21645      "type": "Object",
21646      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
21647      "memberOf": "Roo.bootstrap.Component"
21648     },
21649     {
21650      "name": "can_build_overlaid",
21651      "type": "Boolean",
21652      "desc": "True if element can be rebuild from a HTML page",
21653      "memberOf": "Roo.bootstrap.Component"
21654     },
21655     {
21656      "name": "dataId",
21657      "type": "string",
21658      "desc": "cutomer id",
21659      "memberOf": "Roo.bootstrap.Component"
21660     },
21661     {
21662      "name": "name",
21663      "type": "string",
21664      "desc": "Specifies name attribute",
21665      "memberOf": "Roo.bootstrap.Component"
21666     },
21667     {
21668      "name": "tooltip",
21669      "type": "string",
21670      "desc": "Text for the tooltip",
21671      "memberOf": "Roo.bootstrap.Component"
21672     },
21673     {
21674      "name": "container_method",
21675      "type": "string",
21676      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
21677      "memberOf": "Roo.bootstrap.Component"
21678     },
21679     {
21680      "name": "disableClass",
21681      "type": "String",
21682      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
21683      "memberOf": "Roo.Component"
21684     },
21685     {
21686      "name": "allowDomMove",
21687      "type": "Boolean",
21688      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
21689      "memberOf": "Roo.Component"
21690     },
21691     {
21692      "name": "hideMode",
21693      "type": "String",
21694      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
21695      "memberOf": "Roo.Component",
21696      "optvals": [
21697       "display",
21698       "visibility"
21699      ]
21700     },
21701     {
21702      "name": "actionMode",
21703      "type": "String",
21704      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
21705      "memberOf": "Roo.Component"
21706     },
21707     {
21708      "name": "listeners",
21709      "type": "Object",
21710      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
21711      "memberOf": "Roo.util.Observable"
21712     }
21713    ],
21714    "events": [
21715     {
21716      "name": "beforedestroy",
21717      "sig": "function (_self)\n{\n\n}",
21718      "type": "function",
21719      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
21720     },
21721     {
21722      "name": "beforehide",
21723      "sig": "function (_self)\n{\n\n}",
21724      "type": "function",
21725      "desc": "Fires before the component is hidden. Return false to stop the hide."
21726     },
21727     {
21728      "name": "beforerender",
21729      "sig": "function (_self)\n{\n\n}",
21730      "type": "function",
21731      "desc": "Fires before the component is rendered. Return false to stop the render."
21732     },
21733     {
21734      "name": "beforeshow",
21735      "sig": "function (_self)\n{\n\n}",
21736      "type": "function",
21737      "desc": "Fires before the component is shown.  Return false to stop the show."
21738     },
21739     {
21740      "name": "childrenrendered",
21741      "sig": "function (_self)\n{\n\n}",
21742      "type": "function",
21743      "desc": "Fires when the children have been rendered.."
21744     },
21745     {
21746      "name": "click",
21747      "sig": "function (_self, e)\n{\n\n}",
21748      "type": "function",
21749      "desc": "When a element is chick"
21750     },
21751     {
21752      "name": "destroy",
21753      "sig": "function (_self)\n{\n\n}",
21754      "type": "function",
21755      "desc": "Fires after the component is destroyed."
21756     },
21757     {
21758      "name": "disable",
21759      "sig": "function (_self)\n{\n\n}",
21760      "type": "function",
21761      "desc": "Fires after the component is disabled."
21762     },
21763     {
21764      "name": "enable",
21765      "sig": "function (_self)\n{\n\n}",
21766      "type": "function",
21767      "desc": "Fires after the component is enabled."
21768     },
21769     {
21770      "name": "hide",
21771      "sig": "function (_self)\n{\n\n}",
21772      "type": "function",
21773      "desc": "Fires after the component is hidden."
21774     },
21775     {
21776      "name": "render",
21777      "sig": "function (_self)\n{\n\n}",
21778      "type": "function",
21779      "desc": "Fires after the component is rendered."
21780     },
21781     {
21782      "name": "show",
21783      "sig": "function (_self)\n{\n\n}",
21784      "type": "function",
21785      "desc": "Fires after the component is shown."
21786     }
21787    ],
21788    "methods": [
21789     {
21790      "name": "addEvents",
21791      "sig": "(Object object)",
21792      "type": "function",
21793      "desc": "Used to define events on this Observable"
21794     },
21795     {
21796      "name": "addListener",
21797      "sig": "(String eventName, Function handler, Object scope, Object options)",
21798      "type": "function",
21799      "desc": "Appends an event handler to this component"
21800     },
21801     {
21802      "name": "capture",
21803      "sig": "(Observable o, Function fn, Object scope)",
21804      "type": "function",
21805      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
21806     },
21807     {
21808      "name": "destroy",
21809      "sig": "()",
21810      "type": "function",
21811      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
21812     },
21813     {
21814      "name": "disable",
21815      "sig": "()",
21816      "type": "function",
21817      "desc": "Disable this component."
21818     },
21819     {
21820      "name": "enable",
21821      "sig": "()",
21822      "type": "function",
21823      "desc": "Enable this component."
21824     },
21825     {
21826      "name": "fireEvent",
21827      "sig": "(String eventName, Object... args)",
21828      "type": "function",
21829      "desc": "Fires the specified event with the passed parameters (minus the event name)."
21830     },
21831     {
21832      "name": "focus",
21833      "sig": "(Boolean selectText)",
21834      "type": "function",
21835      "desc": "Try to focus this component."
21836     },
21837     {
21838      "name": "getChildContainer",
21839      "sig": "()",
21840      "type": "function",
21841      "desc": "Fetch the element to add children to"
21842     },
21843     {
21844      "name": "getEl",
21845      "sig": "()",
21846      "type": "function",
21847      "desc": "Returns the underlying {@link Roo.Element}."
21848     },
21849     {
21850      "name": "getId",
21851      "sig": "()",
21852      "type": "function",
21853      "desc": "Returns the id of this component."
21854     },
21855     {
21856      "name": "hasListener",
21857      "sig": "(String eventName)",
21858      "type": "function",
21859      "desc": "Checks to see if this object has any listeners for a specified event"
21860     },
21861     {
21862      "name": "hide",
21863      "sig": "()",
21864      "type": "function",
21865      "desc": "Hide a component - adds 'hidden' class"
21866     },
21867     {
21868      "name": "initEvents",
21869      "sig": "()",
21870      "type": "function",
21871      "desc": "Initialize Events for the element"
21872     },
21873     {
21874      "name": "isVisible",
21875      "sig": "()",
21876      "type": "function",
21877      "desc": "Returns true if this component is visible."
21878     },
21879     {
21880      "name": "on",
21881      "sig": "(String eventName, Function handler, Object scope, Object options)",
21882      "type": "function",
21883      "desc": "Appends an event handler to this element (shorthand for addListener)"
21884     },
21885     {
21886      "name": "purgeListeners",
21887      "sig": "()",
21888      "type": "function",
21889      "desc": "Removes all listeners for this object"
21890     },
21891     {
21892      "name": "releaseCapture",
21893      "sig": "(Observable o)",
21894      "type": "function",
21895      "desc": "Removes <b>all</b> added captures from the Observable."
21896     },
21897     {
21898      "name": "removeListener",
21899      "sig": "(String eventName, Function handler, Object scope)",
21900      "type": "function",
21901      "desc": "Removes a listener"
21902     },
21903     {
21904      "name": "render",
21905      "sig": "(String/HTMLElement/Element container)",
21906      "type": "function",
21907      "desc": "If this is a lazy rendering component, render it to its container element."
21908     },
21909     {
21910      "name": "setDisabled",
21911      "sig": "(Boolean disabled)",
21912      "type": "function",
21913      "desc": "Convenience function for setting disabled/enabled by boolean."
21914     },
21915     {
21916      "name": "setVisible",
21917      "sig": "(Boolean visible)",
21918      "type": "function",
21919      "desc": "Convenience function to hide or show this component by boolean."
21920     },
21921     {
21922      "name": "show",
21923      "sig": "()",
21924      "type": "function",
21925      "desc": "Show a component - removes 'hidden' class"
21926     },
21927     {
21928      "name": "tooltipEl",
21929      "sig": "()",
21930      "type": "function",
21931      "desc": "Fetch the element to display the tooltip on."
21932     },
21933     {
21934      "name": "un",
21935      "sig": "(String eventName, Function handler, Object scope)",
21936      "type": "function",
21937      "desc": "Removes a listener (shorthand for removeListener)"
21938     }
21939    ]
21940   },
21941   "Roo.bootstrap.FieldLabel": {
21942    "props": [
21943     {
21944      "name": "html",
21945      "type": "String",
21946      "desc": "contents of the element",
21947      "memberOf": ""
21948     },
21949     {
21950      "name": "tag",
21951      "type": "String",
21952      "desc": "tag of the element default label",
21953      "memberOf": ""
21954     },
21955     {
21956      "name": "cls",
21957      "type": "String",
21958      "desc": "class of the element",
21959      "memberOf": ""
21960     },
21961     {
21962      "name": "target",
21963      "type": "String",
21964      "desc": "label target",
21965      "memberOf": ""
21966     },
21967     {
21968      "name": "allowBlank",
21969      "type": "Boolean",
21970      "desc": "target allowBlank default true",
21971      "memberOf": "",
21972      "optvals": [
21973       "true",
21974       "false"
21975      ]
21976     },
21977     {
21978      "name": "invalidClass",
21979      "type": "String",
21980      "desc": "default \"text-danger fa fa-lg fa-exclamation-triangle\"",
21981      "memberOf": ""
21982     },
21983     {
21984      "name": "validClass",
21985      "type": "String",
21986      "desc": "default \"text-success fa fa-lg fa-check\"",
21987      "memberOf": ""
21988     },
21989     {
21990      "name": "iconTooltip",
21991      "type": "String",
21992      "desc": "default \"This field is required\"",
21993      "memberOf": ""
21994     },
21995     {
21996      "name": "style",
21997      "type": "String",
21998      "desc": "any extra css",
21999      "memberOf": "Roo.bootstrap.Component"
22000     },
22001     {
22002      "name": "xattr",
22003      "type": "Object",
22004      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
22005      "memberOf": "Roo.bootstrap.Component"
22006     },
22007     {
22008      "name": "can_build_overlaid",
22009      "type": "Boolean",
22010      "desc": "True if element can be rebuild from a HTML page",
22011      "memberOf": "Roo.bootstrap.Component"
22012     },
22013     {
22014      "name": "dataId",
22015      "type": "string",
22016      "desc": "cutomer id",
22017      "memberOf": "Roo.bootstrap.Component"
22018     },
22019     {
22020      "name": "name",
22021      "type": "string",
22022      "desc": "Specifies name attribute",
22023      "memberOf": "Roo.bootstrap.Component"
22024     },
22025     {
22026      "name": "tooltip",
22027      "type": "string",
22028      "desc": "Text for the tooltip",
22029      "memberOf": "Roo.bootstrap.Component"
22030     },
22031     {
22032      "name": "container_method",
22033      "type": "string",
22034      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
22035      "memberOf": "Roo.bootstrap.Component"
22036     },
22037     {
22038      "name": "disableClass",
22039      "type": "String",
22040      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
22041      "memberOf": "Roo.Component"
22042     },
22043     {
22044      "name": "allowDomMove",
22045      "type": "Boolean",
22046      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
22047      "memberOf": "Roo.Component"
22048     },
22049     {
22050      "name": "hideMode",
22051      "type": "String",
22052      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
22053      "memberOf": "Roo.Component",
22054      "optvals": [
22055       "display",
22056       "visibility"
22057      ]
22058     },
22059     {
22060      "name": "actionMode",
22061      "type": "String",
22062      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
22063      "memberOf": "Roo.Component"
22064     },
22065     {
22066      "name": "listeners",
22067      "type": "Object",
22068      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
22069      "memberOf": "Roo.util.Observable"
22070     }
22071    ],
22072    "events": [
22073     {
22074      "name": "beforedestroy",
22075      "sig": "function (_self)\n{\n\n}",
22076      "type": "function",
22077      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
22078     },
22079     {
22080      "name": "beforehide",
22081      "sig": "function (_self)\n{\n\n}",
22082      "type": "function",
22083      "desc": "Fires before the component is hidden. Return false to stop the hide."
22084     },
22085     {
22086      "name": "beforerender",
22087      "sig": "function (_self)\n{\n\n}",
22088      "type": "function",
22089      "desc": "Fires before the component is rendered. Return false to stop the render."
22090     },
22091     {
22092      "name": "beforeshow",
22093      "sig": "function (_self)\n{\n\n}",
22094      "type": "function",
22095      "desc": "Fires before the component is shown.  Return false to stop the show."
22096     },
22097     {
22098      "name": "childrenrendered",
22099      "sig": "function (_self)\n{\n\n}",
22100      "type": "function",
22101      "desc": "Fires when the children have been rendered.."
22102     },
22103     {
22104      "name": "destroy",
22105      "sig": "function (_self)\n{\n\n}",
22106      "type": "function",
22107      "desc": "Fires after the component is destroyed."
22108     },
22109     {
22110      "name": "disable",
22111      "sig": "function (_self)\n{\n\n}",
22112      "type": "function",
22113      "desc": "Fires after the component is disabled."
22114     },
22115     {
22116      "name": "enable",
22117      "sig": "function (_self)\n{\n\n}",
22118      "type": "function",
22119      "desc": "Fires after the component is enabled."
22120     },
22121     {
22122      "name": "hide",
22123      "sig": "function (_self)\n{\n\n}",
22124      "type": "function",
22125      "desc": "Fires after the component is hidden."
22126     },
22127     {
22128      "name": "invalid",
22129      "sig": "function (_self, msg)\n{\n\n}",
22130      "type": "function",
22131      "desc": "Fires after the field has been marked as invalid."
22132     },
22133     {
22134      "name": "render",
22135      "sig": "function (_self)\n{\n\n}",
22136      "type": "function",
22137      "desc": "Fires after the component is rendered."
22138     },
22139     {
22140      "name": "show",
22141      "sig": "function (_self)\n{\n\n}",
22142      "type": "function",
22143      "desc": "Fires after the component is shown."
22144     },
22145     {
22146      "name": "valid",
22147      "sig": "function (_self)\n{\n\n}",
22148      "type": "function",
22149      "desc": "Fires after the field has been validated with no errors."
22150     }
22151    ],
22152    "methods": [
22153     {
22154      "name": "addEvents",
22155      "sig": "(Object object)",
22156      "type": "function",
22157      "desc": "Used to define events on this Observable"
22158     },
22159     {
22160      "name": "addListener",
22161      "sig": "(String eventName, Function handler, Object scope, Object options)",
22162      "type": "function",
22163      "desc": "Appends an event handler to this component"
22164     },
22165     {
22166      "name": "capture",
22167      "sig": "(Observable o, Function fn, Object scope)",
22168      "type": "function",
22169      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
22170     },
22171     {
22172      "name": "destroy",
22173      "sig": "()",
22174      "type": "function",
22175      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
22176     },
22177     {
22178      "name": "disable",
22179      "sig": "()",
22180      "type": "function",
22181      "desc": "Disable this component."
22182     },
22183     {
22184      "name": "enable",
22185      "sig": "()",
22186      "type": "function",
22187      "desc": "Enable this component."
22188     },
22189     {
22190      "name": "fireEvent",
22191      "sig": "(String eventName, Object... args)",
22192      "type": "function",
22193      "desc": "Fires the specified event with the passed parameters (minus the event name)."
22194     },
22195     {
22196      "name": "focus",
22197      "sig": "(Boolean selectText)",
22198      "type": "function",
22199      "desc": "Try to focus this component."
22200     },
22201     {
22202      "name": "get",
22203      "sig": "(string target)",
22204      "type": "function",
22205      "desc": "fetch a FieldLabel Group based on the target"
22206     },
22207     {
22208      "name": "getChildContainer",
22209      "sig": "()",
22210      "type": "function",
22211      "desc": "Fetch the element to add children to"
22212     },
22213     {
22214      "name": "getEl",
22215      "sig": "()",
22216      "type": "function",
22217      "desc": "Returns the underlying {@link Roo.Element}."
22218     },
22219     {
22220      "name": "getId",
22221      "sig": "()",
22222      "type": "function",
22223      "desc": "Returns the id of this component."
22224     },
22225     {
22226      "name": "hasListener",
22227      "sig": "(String eventName)",
22228      "type": "function",
22229      "desc": "Checks to see if this object has any listeners for a specified event"
22230     },
22231     {
22232      "name": "hide",
22233      "sig": "()",
22234      "type": "function",
22235      "desc": "Hide a component - adds 'hidden' class"
22236     },
22237     {
22238      "name": "initEvents",
22239      "sig": "()",
22240      "type": "function",
22241      "desc": "Initialize Events for the element"
22242     },
22243     {
22244      "name": "isVisible",
22245      "sig": "()",
22246      "type": "function",
22247      "desc": "Returns true if this component is visible."
22248     },
22249     {
22250      "name": "markInvalid",
22251      "sig": "(String msg)",
22252      "type": "function",
22253      "desc": "Mark this field as invalid"
22254     },
22255     {
22256      "name": "markValid",
22257      "sig": "()",
22258      "type": "function",
22259      "desc": "Mark this field as valid"
22260     },
22261     {
22262      "name": "on",
22263      "sig": "(String eventName, Function handler, Object scope, Object options)",
22264      "type": "function",
22265      "desc": "Appends an event handler to this element (shorthand for addListener)"
22266     },
22267     {
22268      "name": "purgeListeners",
22269      "sig": "()",
22270      "type": "function",
22271      "desc": "Removes all listeners for this object"
22272     },
22273     {
22274      "name": "register",
22275      "sig": "(Roo.bootstrap.FieldLabel the)",
22276      "type": "function",
22277      "desc": "register a FieldLabel Group"
22278     },
22279     {
22280      "name": "releaseCapture",
22281      "sig": "(Observable o)",
22282      "type": "function",
22283      "desc": "Removes <b>all</b> added captures from the Observable."
22284     },
22285     {
22286      "name": "removeListener",
22287      "sig": "(String eventName, Function handler, Object scope)",
22288      "type": "function",
22289      "desc": "Removes a listener"
22290     },
22291     {
22292      "name": "render",
22293      "sig": "(String/HTMLElement/Element container)",
22294      "type": "function",
22295      "desc": "If this is a lazy rendering component, render it to its container element."
22296     },
22297     {
22298      "name": "setDisabled",
22299      "sig": "(Boolean disabled)",
22300      "type": "function",
22301      "desc": "Convenience function for setting disabled/enabled by boolean."
22302     },
22303     {
22304      "name": "setVisible",
22305      "sig": "(Boolean visible)",
22306      "type": "function",
22307      "desc": "Convenience function to hide or show this component by boolean."
22308     },
22309     {
22310      "name": "show",
22311      "sig": "()",
22312      "type": "function",
22313      "desc": "Show a component - removes 'hidden' class"
22314     },
22315     {
22316      "name": "tooltipEl",
22317      "sig": "()",
22318      "type": "function",
22319      "desc": "Fetch the element to display the tooltip on."
22320     },
22321     {
22322      "name": "un",
22323      "sig": "(String eventName, Function handler, Object scope)",
22324      "type": "function",
22325      "desc": "Removes a listener (shorthand for removeListener)"
22326     }
22327    ]
22328   },
22329   "Roo.bootstrap.Form": {
22330    "props": [
22331     {
22332      "name": "method",
22333      "type": "String",
22334      "desc": "GET | POST (default POST)",
22335      "memberOf": ""
22336     },
22337     {
22338      "name": "labelAlign",
22339      "type": "String",
22340      "desc": "top | left (default top)",
22341      "memberOf": ""
22342     },
22343     {
22344      "name": "align",
22345      "type": "String",
22346      "desc": "left  | right - for navbars",
22347      "memberOf": ""
22348     },
22349     {
22350      "name": "loadMask",
22351      "type": "Boolean",
22352      "desc": "load mask when submit (default true)",
22353      "memberOf": ""
22354     },
22355     {
22356      "name": "url",
22357      "type": "String",
22358      "desc": "The URL to use for form actions if one isn't supplied in the action options.",
22359      "memberOf": ""
22360     },
22361     {
22362      "name": "fileUpload",
22363      "type": "Boolean",
22364      "desc": "Set to true if this form is a file upload.",
22365      "memberOf": ""
22366     },
22367     {
22368      "name": "baseParams",
22369      "type": "Object",
22370      "desc": "Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.",
22371      "memberOf": ""
22372     },
22373     {
22374      "name": "timeout",
22375      "type": "Number",
22376      "desc": "Timeout for form actions in seconds (default is 30 seconds).",
22377      "memberOf": ""
22378     },
22379     {
22380      "name": "errPopover",
22381      "type": "Boolean",
22382      "desc": "default false",
22383      "memberOf": "",
22384      "optvals": [
22385       "true",
22386       "false"
22387      ]
22388     },
22389     {
22390      "name": "cls",
22391      "type": "String",
22392      "desc": "css class",
22393      "memberOf": "Roo.bootstrap.Component"
22394     },
22395     {
22396      "name": "style",
22397      "type": "String",
22398      "desc": "any extra css",
22399      "memberOf": "Roo.bootstrap.Component"
22400     },
22401     {
22402      "name": "xattr",
22403      "type": "Object",
22404      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
22405      "memberOf": "Roo.bootstrap.Component"
22406     },
22407     {
22408      "name": "can_build_overlaid",
22409      "type": "Boolean",
22410      "desc": "True if element can be rebuild from a HTML page",
22411      "memberOf": "Roo.bootstrap.Component"
22412     },
22413     {
22414      "name": "dataId",
22415      "type": "string",
22416      "desc": "cutomer id",
22417      "memberOf": "Roo.bootstrap.Component"
22418     },
22419     {
22420      "name": "name",
22421      "type": "string",
22422      "desc": "Specifies name attribute",
22423      "memberOf": "Roo.bootstrap.Component"
22424     },
22425     {
22426      "name": "tooltip",
22427      "type": "string",
22428      "desc": "Text for the tooltip",
22429      "memberOf": "Roo.bootstrap.Component"
22430     },
22431     {
22432      "name": "container_method",
22433      "type": "string",
22434      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
22435      "memberOf": "Roo.bootstrap.Component"
22436     },
22437     {
22438      "name": "disableClass",
22439      "type": "String",
22440      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
22441      "memberOf": "Roo.Component"
22442     },
22443     {
22444      "name": "allowDomMove",
22445      "type": "Boolean",
22446      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
22447      "memberOf": "Roo.Component"
22448     },
22449     {
22450      "name": "hideMode",
22451      "type": "String",
22452      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
22453      "memberOf": "Roo.Component",
22454      "optvals": [
22455       "display",
22456       "visibility"
22457      ]
22458     },
22459     {
22460      "name": "actionMode",
22461      "type": "String",
22462      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
22463      "memberOf": "Roo.Component"
22464     },
22465     {
22466      "name": "listeners",
22467      "type": "Object",
22468      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
22469      "memberOf": "Roo.util.Observable"
22470     }
22471    ],
22472    "events": [
22473     {
22474      "name": "actioncomplete",
22475      "sig": "function (_self, action)\n{\n\n}",
22476      "type": "function",
22477      "desc": "Fires when an action is completed."
22478     },
22479     {
22480      "name": "actionfailed",
22481      "sig": "function (_self, action)\n{\n\n}",
22482      "type": "function",
22483      "desc": "Fires when an action fails."
22484     },
22485     {
22486      "name": "beforeaction",
22487      "sig": "function (_self, action)\n{\n\n}",
22488      "type": "function",
22489      "desc": "Fires before any action is performed. Return false to cancel the action."
22490     },
22491     {
22492      "name": "beforedestroy",
22493      "sig": "function (_self)\n{\n\n}",
22494      "type": "function",
22495      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
22496     },
22497     {
22498      "name": "beforehide",
22499      "sig": "function (_self)\n{\n\n}",
22500      "type": "function",
22501      "desc": "Fires before the component is hidden. Return false to stop the hide."
22502     },
22503     {
22504      "name": "beforerender",
22505      "sig": "function (_self)\n{\n\n}",
22506      "type": "function",
22507      "desc": "Fires before the component is rendered. Return false to stop the render."
22508     },
22509     {
22510      "name": "beforeshow",
22511      "sig": "function (_self)\n{\n\n}",
22512      "type": "function",
22513      "desc": "Fires before the component is shown.  Return false to stop the show."
22514     },
22515     {
22516      "name": "childrenrendered",
22517      "sig": "function (_self)\n{\n\n}",
22518      "type": "function",
22519      "desc": "Fires when the children have been rendered.."
22520     },
22521     {
22522      "name": "clientvalidation",
22523      "sig": "function (_self, valid)\n{\n\n}",
22524      "type": "function",
22525      "desc": "If the monitorValid config option is true, this event fires repetitively to notify of valid state"
22526     },
22527     {
22528      "name": "destroy",
22529      "sig": "function (_self)\n{\n\n}",
22530      "type": "function",
22531      "desc": "Fires after the component is destroyed."
22532     },
22533     {
22534      "name": "disable",
22535      "sig": "function (_self)\n{\n\n}",
22536      "type": "function",
22537      "desc": "Fires after the component is disabled."
22538     },
22539     {
22540      "name": "enable",
22541      "sig": "function (_self)\n{\n\n}",
22542      "type": "function",
22543      "desc": "Fires after the component is enabled."
22544     },
22545     {
22546      "name": "hide",
22547      "sig": "function (_self)\n{\n\n}",
22548      "type": "function",
22549      "desc": "Fires after the component is hidden."
22550     },
22551     {
22552      "name": "render",
22553      "sig": "function (_self)\n{\n\n}",
22554      "type": "function",
22555      "desc": "Fires after the component is rendered."
22556     },
22557     {
22558      "name": "show",
22559      "sig": "function (_self)\n{\n\n}",
22560      "type": "function",
22561      "desc": "Fires after the component is shown."
22562     }
22563    ],
22564    "methods": [
22565     {
22566      "name": "addEvents",
22567      "sig": "(Object object)",
22568      "type": "function",
22569      "desc": "Used to define events on this Observable"
22570     },
22571     {
22572      "name": "addListener",
22573      "sig": "(String eventName, Function handler, Object scope, Object options)",
22574      "type": "function",
22575      "desc": "Appends an event handler to this component"
22576     },
22577     {
22578      "name": "capture",
22579      "sig": "(Observable o, Function fn, Object scope)",
22580      "type": "function",
22581      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
22582     },
22583     {
22584      "name": "clearInvalid",
22585      "sig": "()",
22586      "type": "function",
22587      "desc": "Clears all invalid messages in this form."
22588     },
22589     {
22590      "name": "destroy",
22591      "sig": "()",
22592      "type": "function",
22593      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
22594     },
22595     {
22596      "name": "disable",
22597      "sig": "()",
22598      "type": "function",
22599      "desc": "Disable this component."
22600     },
22601     {
22602      "name": "doAction",
22603      "sig": "(String actionName, Object options)",
22604      "type": "function",
22605      "desc": "Performs a predefined action (submit or load) or custom actions you define on this form."
22606     },
22607     {
22608      "name": "enable",
22609      "sig": "()",
22610      "type": "function",
22611      "desc": "Enable this component."
22612     },
22613     {
22614      "name": "findField",
22615      "sig": "(String id)",
22616      "type": "function",
22617      "desc": "Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName"
22618     },
22619     {
22620      "name": "fireEvent",
22621      "sig": "(String eventName, Object... args)",
22622      "type": "function",
22623      "desc": "Fires the specified event with the passed parameters (minus the event name)."
22624     },
22625     {
22626      "name": "focus",
22627      "sig": "(Boolean selectText)",
22628      "type": "function",
22629      "desc": "Try to focus this component."
22630     },
22631     {
22632      "name": "getChildContainer",
22633      "sig": "()",
22634      "type": "function",
22635      "desc": "Fetch the element to add children to"
22636     },
22637     {
22638      "name": "getEl",
22639      "sig": "()",
22640      "type": "function",
22641      "desc": "Returns the underlying {@link Roo.Element}."
22642     },
22643     {
22644      "name": "getFieldValues",
22645      "sig": "()",
22646      "type": "function",
22647      "desc": "Returns the fields in this form as an object with key/value pairs.\nThis differs from getValues as it calls getValue on each child item, rather than using dom data."
22648     },
22649     {
22650      "name": "getId",
22651      "sig": "()",
22652      "type": "function",
22653      "desc": "Returns the id of this component."
22654     },
22655     {
22656      "name": "getValues",
22657      "sig": "(Boolean asString)",
22658      "type": "function",
22659      "desc": "Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name\nthey are returned as an array."
22660     },
22661     {
22662      "name": "hasListener",
22663      "sig": "(String eventName)",
22664      "type": "function",
22665      "desc": "Checks to see if this object has any listeners for a specified event"
22666     },
22667     {
22668      "name": "hide",
22669      "sig": "()",
22670      "type": "function",
22671      "desc": "Hide a component - adds 'hidden' class"
22672     },
22673     {
22674      "name": "initEvents",
22675      "sig": "()",
22676      "type": "function",
22677      "desc": "Initialize Events for the element"
22678     },
22679     {
22680      "name": "isDirty",
22681      "sig": "()",
22682      "type": "function",
22683      "desc": "Returns true if any fields in this form have changed since their original load."
22684     },
22685     {
22686      "name": "isValid",
22687      "sig": "()",
22688      "type": "function",
22689      "desc": "Returns true if client-side validation on the form is successful."
22690     },
22691     {
22692      "name": "isVisible",
22693      "sig": "()",
22694      "type": "function",
22695      "desc": "Returns true if this component is visible."
22696     },
22697     {
22698      "name": "markInvalid",
22699      "sig": "(Array/Object errors)",
22700      "type": "function",
22701      "desc": "Mark fields in this form invalid in bulk."
22702     },
22703     {
22704      "name": "on",
22705      "sig": "(String eventName, Function handler, Object scope, Object options)",
22706      "type": "function",
22707      "desc": "Appends an event handler to this element (shorthand for addListener)"
22708     },
22709     {
22710      "name": "purgeListeners",
22711      "sig": "()",
22712      "type": "function",
22713      "desc": "Removes all listeners for this object"
22714     },
22715     {
22716      "name": "releaseCapture",
22717      "sig": "(Observable o)",
22718      "type": "function",
22719      "desc": "Removes <b>all</b> added captures from the Observable."
22720     },
22721     {
22722      "name": "removeListener",
22723      "sig": "(String eventName, Function handler, Object scope)",
22724      "type": "function",
22725      "desc": "Removes a listener"
22726     },
22727     {
22728      "name": "render",
22729      "sig": "(String/HTMLElement/Element container)",
22730      "type": "function",
22731      "desc": "If this is a lazy rendering component, render it to its container element."
22732     },
22733     {
22734      "name": "reset",
22735      "sig": "()",
22736      "type": "function",
22737      "desc": "Resets this form."
22738     },
22739     {
22740      "name": "setDisabled",
22741      "sig": "(Boolean disabled)",
22742      "type": "function",
22743      "desc": "Convenience function for setting disabled/enabled by boolean."
22744     },
22745     {
22746      "name": "setValues",
22747      "sig": "(Array/Object values)",
22748      "type": "function",
22749      "desc": "Set values for fields in this form in bulk."
22750     },
22751     {
22752      "name": "setVisible",
22753      "sig": "(Boolean visible)",
22754      "type": "function",
22755      "desc": "Convenience function to hide or show this component by boolean."
22756     },
22757     {
22758      "name": "show",
22759      "sig": "()",
22760      "type": "function",
22761      "desc": "Show a component - removes 'hidden' class"
22762     },
22763     {
22764      "name": "tooltipEl",
22765      "sig": "()",
22766      "type": "function",
22767      "desc": "Fetch the element to display the tooltip on."
22768     },
22769     {
22770      "name": "un",
22771      "sig": "(String eventName, Function handler, Object scope)",
22772      "type": "function",
22773      "desc": "Removes a listener (shorthand for removeListener)"
22774     }
22775    ]
22776   },
22777   "Roo.bootstrap.Graph": {
22778    "props": [
22779     {
22780      "name": "graphtype",
22781      "type": "String",
22782      "desc": "bar | vbar | pie",
22783      "memberOf": ""
22784     },
22785     {
22786      "name": "g_x",
22787      "type": "number",
22788      "desc": "coodinator | centre x (pie)",
22789      "memberOf": ""
22790     },
22791     {
22792      "name": "g_y",
22793      "type": "number",
22794      "desc": "coodinator | centre y (pie)",
22795      "memberOf": ""
22796     },
22797     {
22798      "name": "g_r",
22799      "type": "number",
22800      "desc": "radius (pie)",
22801      "memberOf": ""
22802     },
22803     {
22804      "name": "g_height",
22805      "type": "number",
22806      "desc": "height of the chart (respected by all elements in the set)",
22807      "memberOf": ""
22808     },
22809     {
22810      "name": "g_width",
22811      "type": "number",
22812      "desc": "width of the chart (respected by all elements in the set)",
22813      "memberOf": ""
22814     },
22815     {
22816      "name": "title",
22817      "type": "Object",
22818      "desc": "The title of the chart\n    \n -{Array}  values\n -opts (object) options for the chart \n     o {\n     o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.\n     o gutter (number)(string) default '20%' (WHAT DOES IT DO?)\n     o vgutter (number)\n     o colors (array) colors be used repeatedly to plot the bars. If multicolumn bar is used each sequence of bars with use a different color.\n     o stacked (boolean) whether or not to tread values as in a stacked bar chart\n     o to\n     o stretch (boolean)\n     o }\n -opts (object) options for the pie\n     o{\n     o cut\n     o startAngle (number)\n     o endAngle (number)\n     }",
22819      "memberOf": ""
22820     },
22821     {
22822      "name": "cls",
22823      "type": "String",
22824      "desc": "css class",
22825      "memberOf": "Roo.bootstrap.Component"
22826     },
22827     {
22828      "name": "style",
22829      "type": "String",
22830      "desc": "any extra css",
22831      "memberOf": "Roo.bootstrap.Component"
22832     },
22833     {
22834      "name": "xattr",
22835      "type": "Object",
22836      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
22837      "memberOf": "Roo.bootstrap.Component"
22838     },
22839     {
22840      "name": "can_build_overlaid",
22841      "type": "Boolean",
22842      "desc": "True if element can be rebuild from a HTML page",
22843      "memberOf": "Roo.bootstrap.Component"
22844     },
22845     {
22846      "name": "dataId",
22847      "type": "string",
22848      "desc": "cutomer id",
22849      "memberOf": "Roo.bootstrap.Component"
22850     },
22851     {
22852      "name": "name",
22853      "type": "string",
22854      "desc": "Specifies name attribute",
22855      "memberOf": "Roo.bootstrap.Component"
22856     },
22857     {
22858      "name": "tooltip",
22859      "type": "string",
22860      "desc": "Text for the tooltip",
22861      "memberOf": "Roo.bootstrap.Component"
22862     },
22863     {
22864      "name": "container_method",
22865      "type": "string",
22866      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
22867      "memberOf": "Roo.bootstrap.Component"
22868     },
22869     {
22870      "name": "disableClass",
22871      "type": "String",
22872      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
22873      "memberOf": "Roo.Component"
22874     },
22875     {
22876      "name": "allowDomMove",
22877      "type": "Boolean",
22878      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
22879      "memberOf": "Roo.Component"
22880     },
22881     {
22882      "name": "hideMode",
22883      "type": "String",
22884      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
22885      "memberOf": "Roo.Component",
22886      "optvals": [
22887       "display",
22888       "visibility"
22889      ]
22890     },
22891     {
22892      "name": "actionMode",
22893      "type": "String",
22894      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
22895      "memberOf": "Roo.Component"
22896     },
22897     {
22898      "name": "listeners",
22899      "type": "Object",
22900      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
22901      "memberOf": "Roo.util.Observable"
22902     }
22903    ],
22904    "events": [
22905     {
22906      "name": "beforedestroy",
22907      "sig": "function (_self)\n{\n\n}",
22908      "type": "function",
22909      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
22910     },
22911     {
22912      "name": "beforehide",
22913      "sig": "function (_self)\n{\n\n}",
22914      "type": "function",
22915      "desc": "Fires before the component is hidden. Return false to stop the hide."
22916     },
22917     {
22918      "name": "beforerender",
22919      "sig": "function (_self)\n{\n\n}",
22920      "type": "function",
22921      "desc": "Fires before the component is rendered. Return false to stop the render."
22922     },
22923     {
22924      "name": "beforeshow",
22925      "sig": "function (_self)\n{\n\n}",
22926      "type": "function",
22927      "desc": "Fires before the component is shown.  Return false to stop the show."
22928     },
22929     {
22930      "name": "childrenrendered",
22931      "sig": "function (_self)\n{\n\n}",
22932      "type": "function",
22933      "desc": "Fires when the children have been rendered.."
22934     },
22935     {
22936      "name": "click",
22937      "sig": "function (e)\n{\n\n}",
22938      "type": "function",
22939      "desc": "The img click event for the img."
22940     },
22941     {
22942      "name": "destroy",
22943      "sig": "function (_self)\n{\n\n}",
22944      "type": "function",
22945      "desc": "Fires after the component is destroyed."
22946     },
22947     {
22948      "name": "disable",
22949      "sig": "function (_self)\n{\n\n}",
22950      "type": "function",
22951      "desc": "Fires after the component is disabled."
22952     },
22953     {
22954      "name": "enable",
22955      "sig": "function (_self)\n{\n\n}",
22956      "type": "function",
22957      "desc": "Fires after the component is enabled."
22958     },
22959     {
22960      "name": "hide",
22961      "sig": "function (_self)\n{\n\n}",
22962      "type": "function",
22963      "desc": "Fires after the component is hidden."
22964     },
22965     {
22966      "name": "render",
22967      "sig": "function (_self)\n{\n\n}",
22968      "type": "function",
22969      "desc": "Fires after the component is rendered."
22970     },
22971     {
22972      "name": "show",
22973      "sig": "function (_self)\n{\n\n}",
22974      "type": "function",
22975      "desc": "Fires after the component is shown."
22976     }
22977    ],
22978    "methods": [
22979     {
22980      "name": "addEvents",
22981      "sig": "(Object object)",
22982      "type": "function",
22983      "desc": "Used to define events on this Observable"
22984     },
22985     {
22986      "name": "addListener",
22987      "sig": "(String eventName, Function handler, Object scope, Object options)",
22988      "type": "function",
22989      "desc": "Appends an event handler to this component"
22990     },
22991     {
22992      "name": "capture",
22993      "sig": "(Observable o, Function fn, Object scope)",
22994      "type": "function",
22995      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
22996     },
22997     {
22998      "name": "destroy",
22999      "sig": "()",
23000      "type": "function",
23001      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
23002     },
23003     {
23004      "name": "disable",
23005      "sig": "()",
23006      "type": "function",
23007      "desc": "Disable this component."
23008     },
23009     {
23010      "name": "enable",
23011      "sig": "()",
23012      "type": "function",
23013      "desc": "Enable this component."
23014     },
23015     {
23016      "name": "fireEvent",
23017      "sig": "(String eventName, Object... args)",
23018      "type": "function",
23019      "desc": "Fires the specified event with the passed parameters (minus the event name)."
23020     },
23021     {
23022      "name": "focus",
23023      "sig": "(Boolean selectText)",
23024      "type": "function",
23025      "desc": "Try to focus this component."
23026     },
23027     {
23028      "name": "getChildContainer",
23029      "sig": "()",
23030      "type": "function",
23031      "desc": "Fetch the element to add children to"
23032     },
23033     {
23034      "name": "getEl",
23035      "sig": "()",
23036      "type": "function",
23037      "desc": "Returns the underlying {@link Roo.Element}."
23038     },
23039     {
23040      "name": "getId",
23041      "sig": "()",
23042      "type": "function",
23043      "desc": "Returns the id of this component."
23044     },
23045     {
23046      "name": "hasListener",
23047      "sig": "(String eventName)",
23048      "type": "function",
23049      "desc": "Checks to see if this object has any listeners for a specified event"
23050     },
23051     {
23052      "name": "hide",
23053      "sig": "()",
23054      "type": "function",
23055      "desc": "Hide a component - adds 'hidden' class"
23056     },
23057     {
23058      "name": "initEvents",
23059      "sig": "()",
23060      "type": "function",
23061      "desc": "Initialize Events for the element"
23062     },
23063     {
23064      "name": "isVisible",
23065      "sig": "()",
23066      "type": "function",
23067      "desc": "Returns true if this component is visible."
23068     },
23069     {
23070      "name": "on",
23071      "sig": "(String eventName, Function handler, Object scope, Object options)",
23072      "type": "function",
23073      "desc": "Appends an event handler to this element (shorthand for addListener)"
23074     },
23075     {
23076      "name": "purgeListeners",
23077      "sig": "()",
23078      "type": "function",
23079      "desc": "Removes all listeners for this object"
23080     },
23081     {
23082      "name": "releaseCapture",
23083      "sig": "(Observable o)",
23084      "type": "function",
23085      "desc": "Removes <b>all</b> added captures from the Observable."
23086     },
23087     {
23088      "name": "removeListener",
23089      "sig": "(String eventName, Function handler, Object scope)",
23090      "type": "function",
23091      "desc": "Removes a listener"
23092     },
23093     {
23094      "name": "render",
23095      "sig": "(String/HTMLElement/Element container)",
23096      "type": "function",
23097      "desc": "If this is a lazy rendering component, render it to its container element."
23098     },
23099     {
23100      "name": "setDisabled",
23101      "sig": "(Boolean disabled)",
23102      "type": "function",
23103      "desc": "Convenience function for setting disabled/enabled by boolean."
23104     },
23105     {
23106      "name": "setVisible",
23107      "sig": "(Boolean visible)",
23108      "type": "function",
23109      "desc": "Convenience function to hide or show this component by boolean."
23110     },
23111     {
23112      "name": "show",
23113      "sig": "()",
23114      "type": "function",
23115      "desc": "Show a component - removes 'hidden' class"
23116     },
23117     {
23118      "name": "tooltipEl",
23119      "sig": "()",
23120      "type": "function",
23121      "desc": "Fetch the element to display the tooltip on."
23122     },
23123     {
23124      "name": "un",
23125      "sig": "(String eventName, Function handler, Object scope)",
23126      "type": "function",
23127      "desc": "Removes a listener (shorthand for removeListener)"
23128     }
23129    ]
23130   },
23131   "Roo.bootstrap.Header": {
23132    "props": [
23133     {
23134      "name": "html",
23135      "type": "String",
23136      "desc": "content of header",
23137      "memberOf": ""
23138     },
23139     {
23140      "name": "level",
23141      "type": "Number",
23142      "desc": "default 1",
23143      "memberOf": "",
23144      "optvals": [
23145       "1",
23146       "2",
23147       "3",
23148       "4",
23149       "5",
23150       "6"
23151      ]
23152     },
23153     {
23154      "name": "cls",
23155      "type": "String",
23156      "desc": "css class",
23157      "memberOf": "Roo.bootstrap.Component"
23158     },
23159     {
23160      "name": "style",
23161      "type": "String",
23162      "desc": "any extra css",
23163      "memberOf": "Roo.bootstrap.Component"
23164     },
23165     {
23166      "name": "xattr",
23167      "type": "Object",
23168      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
23169      "memberOf": "Roo.bootstrap.Component"
23170     },
23171     {
23172      "name": "can_build_overlaid",
23173      "type": "Boolean",
23174      "desc": "True if element can be rebuild from a HTML page",
23175      "memberOf": "Roo.bootstrap.Component"
23176     },
23177     {
23178      "name": "dataId",
23179      "type": "string",
23180      "desc": "cutomer id",
23181      "memberOf": "Roo.bootstrap.Component"
23182     },
23183     {
23184      "name": "name",
23185      "type": "string",
23186      "desc": "Specifies name attribute",
23187      "memberOf": "Roo.bootstrap.Component"
23188     },
23189     {
23190      "name": "tooltip",
23191      "type": "string",
23192      "desc": "Text for the tooltip",
23193      "memberOf": "Roo.bootstrap.Component"
23194     },
23195     {
23196      "name": "container_method",
23197      "type": "string",
23198      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
23199      "memberOf": "Roo.bootstrap.Component"
23200     },
23201     {
23202      "name": "disableClass",
23203      "type": "String",
23204      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
23205      "memberOf": "Roo.Component"
23206     },
23207     {
23208      "name": "allowDomMove",
23209      "type": "Boolean",
23210      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
23211      "memberOf": "Roo.Component"
23212     },
23213     {
23214      "name": "hideMode",
23215      "type": "String",
23216      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
23217      "memberOf": "Roo.Component",
23218      "optvals": [
23219       "display",
23220       "visibility"
23221      ]
23222     },
23223     {
23224      "name": "actionMode",
23225      "type": "String",
23226      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
23227      "memberOf": "Roo.Component"
23228     },
23229     {
23230      "name": "listeners",
23231      "type": "Object",
23232      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
23233      "memberOf": "Roo.util.Observable"
23234     }
23235    ],
23236    "events": [
23237     {
23238      "name": "beforedestroy",
23239      "sig": "function (_self)\n{\n\n}",
23240      "type": "function",
23241      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
23242     },
23243     {
23244      "name": "beforehide",
23245      "sig": "function (_self)\n{\n\n}",
23246      "type": "function",
23247      "desc": "Fires before the component is hidden. Return false to stop the hide."
23248     },
23249     {
23250      "name": "beforerender",
23251      "sig": "function (_self)\n{\n\n}",
23252      "type": "function",
23253      "desc": "Fires before the component is rendered. Return false to stop the render."
23254     },
23255     {
23256      "name": "beforeshow",
23257      "sig": "function (_self)\n{\n\n}",
23258      "type": "function",
23259      "desc": "Fires before the component is shown.  Return false to stop the show."
23260     },
23261     {
23262      "name": "childrenrendered",
23263      "sig": "function (_self)\n{\n\n}",
23264      "type": "function",
23265      "desc": "Fires when the children have been rendered.."
23266     },
23267     {
23268      "name": "destroy",
23269      "sig": "function (_self)\n{\n\n}",
23270      "type": "function",
23271      "desc": "Fires after the component is destroyed."
23272     },
23273     {
23274      "name": "disable",
23275      "sig": "function (_self)\n{\n\n}",
23276      "type": "function",
23277      "desc": "Fires after the component is disabled."
23278     },
23279     {
23280      "name": "enable",
23281      "sig": "function (_self)\n{\n\n}",
23282      "type": "function",
23283      "desc": "Fires after the component is enabled."
23284     },
23285     {
23286      "name": "hide",
23287      "sig": "function (_self)\n{\n\n}",
23288      "type": "function",
23289      "desc": "Fires after the component is hidden."
23290     },
23291     {
23292      "name": "render",
23293      "sig": "function (_self)\n{\n\n}",
23294      "type": "function",
23295      "desc": "Fires after the component is rendered."
23296     },
23297     {
23298      "name": "show",
23299      "sig": "function (_self)\n{\n\n}",
23300      "type": "function",
23301      "desc": "Fires after the component is shown."
23302     }
23303    ],
23304    "methods": [
23305     {
23306      "name": "addEvents",
23307      "sig": "(Object object)",
23308      "type": "function",
23309      "desc": "Used to define events on this Observable"
23310     },
23311     {
23312      "name": "addListener",
23313      "sig": "(String eventName, Function handler, Object scope, Object options)",
23314      "type": "function",
23315      "desc": "Appends an event handler to this component"
23316     },
23317     {
23318      "name": "capture",
23319      "sig": "(Observable o, Function fn, Object scope)",
23320      "type": "function",
23321      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
23322     },
23323     {
23324      "name": "destroy",
23325      "sig": "()",
23326      "type": "function",
23327      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
23328     },
23329     {
23330      "name": "disable",
23331      "sig": "()",
23332      "type": "function",
23333      "desc": "Disable this component."
23334     },
23335     {
23336      "name": "enable",
23337      "sig": "()",
23338      "type": "function",
23339      "desc": "Enable this component."
23340     },
23341     {
23342      "name": "fireEvent",
23343      "sig": "(String eventName, Object... args)",
23344      "type": "function",
23345      "desc": "Fires the specified event with the passed parameters (minus the event name)."
23346     },
23347     {
23348      "name": "focus",
23349      "sig": "(Boolean selectText)",
23350      "type": "function",
23351      "desc": "Try to focus this component."
23352     },
23353     {
23354      "name": "getChildContainer",
23355      "sig": "()",
23356      "type": "function",
23357      "desc": "Fetch the element to add children to"
23358     },
23359     {
23360      "name": "getEl",
23361      "sig": "()",
23362      "type": "function",
23363      "desc": "Returns the underlying {@link Roo.Element}."
23364     },
23365     {
23366      "name": "getId",
23367      "sig": "()",
23368      "type": "function",
23369      "desc": "Returns the id of this component."
23370     },
23371     {
23372      "name": "hasListener",
23373      "sig": "(String eventName)",
23374      "type": "function",
23375      "desc": "Checks to see if this object has any listeners for a specified event"
23376     },
23377     {
23378      "name": "hide",
23379      "sig": "()",
23380      "type": "function",
23381      "desc": "Hide a component - adds 'hidden' class"
23382     },
23383     {
23384      "name": "initEvents",
23385      "sig": "()",
23386      "type": "function",
23387      "desc": "Initialize Events for the element"
23388     },
23389     {
23390      "name": "isVisible",
23391      "sig": "()",
23392      "type": "function",
23393      "desc": "Returns true if this component is visible."
23394     },
23395     {
23396      "name": "on",
23397      "sig": "(String eventName, Function handler, Object scope, Object options)",
23398      "type": "function",
23399      "desc": "Appends an event handler to this element (shorthand for addListener)"
23400     },
23401     {
23402      "name": "purgeListeners",
23403      "sig": "()",
23404      "type": "function",
23405      "desc": "Removes all listeners for this object"
23406     },
23407     {
23408      "name": "releaseCapture",
23409      "sig": "(Observable o)",
23410      "type": "function",
23411      "desc": "Removes <b>all</b> added captures from the Observable."
23412     },
23413     {
23414      "name": "removeListener",
23415      "sig": "(String eventName, Function handler, Object scope)",
23416      "type": "function",
23417      "desc": "Removes a listener"
23418     },
23419     {
23420      "name": "render",
23421      "sig": "(String/HTMLElement/Element container)",
23422      "type": "function",
23423      "desc": "If this is a lazy rendering component, render it to its container element."
23424     },
23425     {
23426      "name": "setDisabled",
23427      "sig": "(Boolean disabled)",
23428      "type": "function",
23429      "desc": "Convenience function for setting disabled/enabled by boolean."
23430     },
23431     {
23432      "name": "setVisible",
23433      "sig": "(Boolean visible)",
23434      "type": "function",
23435      "desc": "Convenience function to hide or show this component by boolean."
23436     },
23437     {
23438      "name": "show",
23439      "sig": "()",
23440      "type": "function",
23441      "desc": "Show a component - removes 'hidden' class"
23442     },
23443     {
23444      "name": "tooltipEl",
23445      "sig": "()",
23446      "type": "function",
23447      "desc": "Fetch the element to display the tooltip on."
23448     },
23449     {
23450      "name": "un",
23451      "sig": "(String eventName, Function handler, Object scope)",
23452      "type": "function",
23453      "desc": "Removes a listener (shorthand for removeListener)"
23454     }
23455    ]
23456   },
23457   "Roo.bootstrap.HtmlEditor": {
23458    "props": [
23459     {
23460      "name": "toolbars",
23461      "type": "Array",
23462      "desc": "Array of toolbars. - defaults to just the Standard one",
23463      "memberOf": ""
23464     },
23465     {
23466      "name": "resizable",
23467      "type": "String",
23468      "desc": "'s' or 'se' or 'e' - wrapps the element in a\n                       Roo.resizable.",
23469      "memberOf": ""
23470     },
23471     {
23472      "name": "height",
23473      "type": "Number",
23474      "desc": "(in pixels)",
23475      "memberOf": ""
23476     },
23477     {
23478      "name": "width",
23479      "type": "Number",
23480      "desc": "(in pixels)",
23481      "memberOf": ""
23482     },
23483     {
23484      "name": "stylesheets",
23485      "type": "Array",
23486      "desc": "url of stylesheets. set to [] to disable stylesheets.",
23487      "memberOf": ""
23488     },
23489     {
23490      "name": "cols",
23491      "type": "Number",
23492      "desc": "Specifies the visible width of a text area",
23493      "memberOf": "Roo.bootstrap.TextArea"
23494     },
23495     {
23496      "name": "rows",
23497      "type": "Number",
23498      "desc": "Specifies the visible number of lines in a text area",
23499      "memberOf": "Roo.bootstrap.TextArea"
23500     },
23501     {
23502      "name": "wrap",
23503      "type": "string",
23504      "desc": "Specifies how the text in a text area is to be wrapped when submitted in a form",
23505      "memberOf": "Roo.bootstrap.TextArea",
23506      "optvals": [
23507       "soft",
23508       "hard"
23509      ]
23510     },
23511     {
23512      "name": "resize",
23513      "type": "string",
23514      "desc": "",
23515      "memberOf": "Roo.bootstrap.TextArea",
23516      "optvals": [
23517       "none",
23518       "both",
23519       "horizontal",
23520       "vertical",
23521       "inherit",
23522       "initial"
23523      ]
23524     },
23525     {
23526      "name": "html",
23527      "type": "string",
23528      "desc": "text",
23529      "memberOf": "Roo.bootstrap.TextArea"
23530     },
23531     {
23532      "name": "disabled",
23533      "type": "Boolean",
23534      "desc": "is it disabled",
23535      "memberOf": "Roo.bootstrap.Input"
23536     },
23537     {
23538      "name": "name",
23539      "type": "String",
23540      "desc": "name of the input",
23541      "memberOf": "Roo.bootstrap.Input"
23542     },
23543     {
23544      "name": "fieldLabel",
23545      "type": "string",
23546      "desc": "- the label associated",
23547      "memberOf": "Roo.bootstrap.Input"
23548     },
23549     {
23550      "name": "placeholder",
23551      "type": "string",
23552      "desc": "- placeholder to put in text.",
23553      "memberOf": "Roo.bootstrap.Input"
23554     },
23555     {
23556      "name": "before",
23557      "type": "string",
23558      "desc": "- input group add on before",
23559      "memberOf": "Roo.bootstrap.Input"
23560     },
23561     {
23562      "name": "after",
23563      "type": "string",
23564      "desc": "- input group add on after",
23565      "memberOf": "Roo.bootstrap.Input"
23566     },
23567     {
23568      "name": "size",
23569      "type": "string",
23570      "desc": "- (lg|sm) or leave empty..",
23571      "memberOf": "Roo.bootstrap.Input"
23572     },
23573     {
23574      "name": "xs",
23575      "type": "Number",
23576      "desc": "colspan out of 12 for mobile-sized screens",
23577      "memberOf": "Roo.bootstrap.Input"
23578     },
23579     {
23580      "name": "sm",
23581      "type": "Number",
23582      "desc": "colspan out of 12 for tablet-sized screens",
23583      "memberOf": "Roo.bootstrap.Input"
23584     },
23585     {
23586      "name": "md",
23587      "type": "Number",
23588      "desc": "colspan out of 12 for computer-sized screens",
23589      "memberOf": "Roo.bootstrap.Input"
23590     },
23591     {
23592      "name": "lg",
23593      "type": "Number",
23594      "desc": "colspan out of 12 for large computer-sized screens",
23595      "memberOf": "Roo.bootstrap.Input"
23596     },
23597     {
23598      "name": "value",
23599      "type": "string",
23600      "desc": "default value of the input",
23601      "memberOf": "Roo.bootstrap.Input"
23602     },
23603     {
23604      "name": "labelWidth",
23605      "type": "Number",
23606      "desc": "set the width of label (0-12)",
23607      "memberOf": "Roo.bootstrap.Input"
23608     },
23609     {
23610      "name": "labelAlign",
23611      "type": "String",
23612      "desc": "",
23613      "memberOf": "Roo.bootstrap.Input",
23614      "optvals": [
23615       "top",
23616       "left"
23617      ]
23618     },
23619     {
23620      "name": "readOnly",
23621      "type": "Boolean",
23622      "desc": "Specifies that the field should be read-only",
23623      "memberOf": "Roo.bootstrap.Input"
23624     },
23625     {
23626      "name": "autocomplete",
23627      "type": "String",
23628      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
23629      "memberOf": "Roo.bootstrap.Input"
23630     },
23631     {
23632      "name": "indicatorpos",
23633      "type": "String",
23634      "desc": "default left",
23635      "memberOf": "Roo.bootstrap.Input",
23636      "optvals": [
23637       "left",
23638       "right"
23639      ]
23640     },
23641     {
23642      "name": "align",
23643      "type": "String",
23644      "desc": "Default left",
23645      "memberOf": "Roo.bootstrap.Input",
23646      "optvals": [
23647       "left",
23648       "center",
23649       "right"
23650      ]
23651     },
23652     {
23653      "name": "forceFeedback",
23654      "type": "Boolean",
23655      "desc": "Default false",
23656      "memberOf": "Roo.bootstrap.Input",
23657      "optvals": [
23658       "true",
23659       "false"
23660      ]
23661     },
23662     {
23663      "name": "validationEvent",
23664      "type": "String/Boolean",
23665      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
23666      "memberOf": "Roo.bootstrap.Input"
23667     },
23668     {
23669      "name": "validationDelay",
23670      "type": "Number",
23671      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
23672      "memberOf": "Roo.bootstrap.Input"
23673     },
23674     {
23675      "name": "validClass",
23676      "type": "String",
23677      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
23678      "memberOf": "Roo.bootstrap.Input"
23679     },
23680     {
23681      "name": "hasFeedback",
23682      "type": "Boolean",
23683      "desc": "default true",
23684      "memberOf": "Roo.bootstrap.Input",
23685      "optvals": [
23686       "true",
23687       "false"
23688      ]
23689     },
23690     {
23691      "name": "invalidFeedbackIcon",
23692      "type": "String",
23693      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
23694      "memberOf": "Roo.bootstrap.Input"
23695     },
23696     {
23697      "name": "validFeedbackIcon",
23698      "type": "String",
23699      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
23700      "memberOf": "Roo.bootstrap.Input"
23701     },
23702     {
23703      "name": "selectOnFocus",
23704      "type": "Boolean",
23705      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
23706      "memberOf": "Roo.bootstrap.Input"
23707     },
23708     {
23709      "name": "maskRe",
23710      "type": "String",
23711      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
23712      "memberOf": "Roo.bootstrap.Input"
23713     },
23714     {
23715      "name": "vtype",
23716      "type": "String",
23717      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
23718      "memberOf": "Roo.bootstrap.Input"
23719     },
23720     {
23721      "name": "disableKeyFilter",
23722      "type": "Boolean",
23723      "desc": "True to disable input keystroke filtering (defaults to false)",
23724      "memberOf": "Roo.bootstrap.Input"
23725     },
23726     {
23727      "name": "allowBlank",
23728      "type": "Boolean",
23729      "desc": "False to validate that the value length > 0 (defaults to true)",
23730      "memberOf": "Roo.bootstrap.Input"
23731     },
23732     {
23733      "name": "blankText",
23734      "type": "String",
23735      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
23736      "memberOf": "Roo.bootstrap.Input"
23737     },
23738     {
23739      "name": "minLength",
23740      "type": "Number",
23741      "desc": "Minimum input field length required (defaults to 0)",
23742      "memberOf": "Roo.bootstrap.Input"
23743     },
23744     {
23745      "name": "maxLength",
23746      "type": "Number",
23747      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
23748      "memberOf": "Roo.bootstrap.Input"
23749     },
23750     {
23751      "name": "minLengthText",
23752      "type": "String",
23753      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
23754      "memberOf": "Roo.bootstrap.Input"
23755     },
23756     {
23757      "name": "maxLengthText",
23758      "type": "String",
23759      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
23760      "memberOf": "Roo.bootstrap.Input"
23761     },
23762     {
23763      "name": "validator",
23764      "type": "Function",
23765      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
23766      "memberOf": "Roo.bootstrap.Input"
23767     },
23768     {
23769      "name": "regex",
23770      "type": "RegExp",
23771      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
23772      "memberOf": "Roo.bootstrap.Input"
23773     },
23774     {
23775      "name": "regexText",
23776      "type": "String",
23777      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
23778      "memberOf": "Roo.bootstrap.Input"
23779     },
23780     {
23781      "name": "cls",
23782      "type": "String",
23783      "desc": "css class",
23784      "memberOf": "Roo.bootstrap.Component"
23785     },
23786     {
23787      "name": "style",
23788      "type": "String",
23789      "desc": "any extra css",
23790      "memberOf": "Roo.bootstrap.Component"
23791     },
23792     {
23793      "name": "xattr",
23794      "type": "Object",
23795      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
23796      "memberOf": "Roo.bootstrap.Component"
23797     },
23798     {
23799      "name": "can_build_overlaid",
23800      "type": "Boolean",
23801      "desc": "True if element can be rebuild from a HTML page",
23802      "memberOf": "Roo.bootstrap.Component"
23803     },
23804     {
23805      "name": "dataId",
23806      "type": "string",
23807      "desc": "cutomer id",
23808      "memberOf": "Roo.bootstrap.Component"
23809     },
23810     {
23811      "name": "tooltip",
23812      "type": "string",
23813      "desc": "Text for the tooltip",
23814      "memberOf": "Roo.bootstrap.Component"
23815     },
23816     {
23817      "name": "container_method",
23818      "type": "string",
23819      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
23820      "memberOf": "Roo.bootstrap.Component"
23821     },
23822     {
23823      "name": "disableClass",
23824      "type": "String",
23825      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
23826      "memberOf": "Roo.Component"
23827     },
23828     {
23829      "name": "allowDomMove",
23830      "type": "Boolean",
23831      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
23832      "memberOf": "Roo.Component"
23833     },
23834     {
23835      "name": "hideMode",
23836      "type": "String",
23837      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
23838      "memberOf": "Roo.Component",
23839      "optvals": [
23840       "display",
23841       "visibility"
23842      ]
23843     },
23844     {
23845      "name": "actionMode",
23846      "type": "String",
23847      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
23848      "memberOf": "Roo.Component"
23849     },
23850     {
23851      "name": "listeners",
23852      "type": "Object",
23853      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
23854      "memberOf": "Roo.util.Observable"
23855     }
23856    ],
23857    "events": [
23858     {
23859      "name": "activate",
23860      "sig": "function (_self)\n{\n\n}",
23861      "type": "function",
23862      "desc": "Fires when the editor is first receives the focus. Any insertion must wait\nuntil after this event."
23863     },
23864     {
23865      "name": "autosave",
23866      "sig": "function (_self)\n{\n\n}",
23867      "type": "function",
23868      "desc": "Auto save the htmlEditor value as a file into Events"
23869     },
23870     {
23871      "name": "beforedestroy",
23872      "sig": "function (_self)\n{\n\n}",
23873      "type": "function",
23874      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
23875     },
23876     {
23877      "name": "beforehide",
23878      "sig": "function (_self)\n{\n\n}",
23879      "type": "function",
23880      "desc": "Fires before the component is hidden. Return false to stop the hide."
23881     },
23882     {
23883      "name": "beforepush",
23884      "sig": "function (_self, html)\n{\n\n}",
23885      "type": "function",
23886      "desc": "Fires before the iframe editor is updated with content from the textarea. Return false\nto cancel the push."
23887     },
23888     {
23889      "name": "beforerender",
23890      "sig": "function (_self)\n{\n\n}",
23891      "type": "function",
23892      "desc": "Fires before the component is rendered. Return false to stop the render."
23893     },
23894     {
23895      "name": "beforeshow",
23896      "sig": "function (_self)\n{\n\n}",
23897      "type": "function",
23898      "desc": "Fires before the component is shown.  Return false to stop the show."
23899     },
23900     {
23901      "name": "beforesync",
23902      "sig": "function (_self, html)\n{\n\n}",
23903      "type": "function",
23904      "desc": "Fires before the textarea is updated with content from the editor iframe. Return false\nto cancel the sync."
23905     },
23906     {
23907      "name": "childrenrendered",
23908      "sig": "function (_self)\n{\n\n}",
23909      "type": "function",
23910      "desc": "Fires when the children have been rendered.."
23911     },
23912     {
23913      "name": "destroy",
23914      "sig": "function (_self)\n{\n\n}",
23915      "type": "function",
23916      "desc": "Fires after the component is destroyed."
23917     },
23918     {
23919      "name": "disable",
23920      "sig": "function (_self)\n{\n\n}",
23921      "type": "function",
23922      "desc": "Fires after the component is disabled."
23923     },
23924     {
23925      "name": "editmodechange",
23926      "sig": "function (_self, sourceEdit)\n{\n\n}",
23927      "type": "function",
23928      "desc": "Fires when the editor switches edit modes"
23929     },
23930     {
23931      "name": "editorevent",
23932      "sig": "function (_self)\n{\n\n}",
23933      "type": "function",
23934      "desc": "Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks."
23935     },
23936     {
23937      "name": "enable",
23938      "sig": "function (_self)\n{\n\n}",
23939      "type": "function",
23940      "desc": "Fires after the component is enabled."
23941     },
23942     {
23943      "name": "firstfocus",
23944      "sig": "function (_self)\n{\n\n}",
23945      "type": "function",
23946      "desc": "Fires when on first focus - needed by toolbars.."
23947     },
23948     {
23949      "name": "hide",
23950      "sig": "function (_self)\n{\n\n}",
23951      "type": "function",
23952      "desc": "Fires after the component is hidden."
23953     },
23954     {
23955      "name": "initialize",
23956      "sig": "function (_self)\n{\n\n}",
23957      "type": "function",
23958      "desc": "Fires when the editor is fully initialized (including the iframe)"
23959     },
23960     {
23961      "name": "invalid",
23962      "sig": "function (_self, msg)\n{\n\n}",
23963      "type": "function",
23964      "desc": "Fires after the field has been marked as invalid."
23965     },
23966     {
23967      "name": "keyup",
23968      "sig": "function (_self, e)\n{\n\n}",
23969      "type": "function",
23970      "desc": "Fires after the key up"
23971     },
23972     {
23973      "name": "push",
23974      "sig": "function (_self, html)\n{\n\n}",
23975      "type": "function",
23976      "desc": "Fires when the iframe editor is updated with content from the textarea."
23977     },
23978     {
23979      "name": "render",
23980      "sig": "function (_self)\n{\n\n}",
23981      "type": "function",
23982      "desc": "Fires after the component is rendered."
23983     },
23984     {
23985      "name": "savedpreview",
23986      "sig": "function (_self)\n{\n\n}",
23987      "type": "function",
23988      "desc": "preview the saved version of htmlEditor"
23989     },
23990     {
23991      "name": "show",
23992      "sig": "function (_self)\n{\n\n}",
23993      "type": "function",
23994      "desc": "Fires after the component is shown."
23995     },
23996     {
23997      "name": "sync",
23998      "sig": "function (_self, html)\n{\n\n}",
23999      "type": "function",
24000      "desc": "Fires when the textarea is updated with content from the editor iframe."
24001     },
24002     {
24003      "name": "valid",
24004      "sig": "function (_self)\n{\n\n}",
24005      "type": "function",
24006      "desc": "Fires after the field has been validated with no errors."
24007     }
24008    ],
24009    "methods": [
24010     {
24011      "name": "addEvents",
24012      "sig": "(Object object)",
24013      "type": "function",
24014      "desc": "Used to define events on this Observable"
24015     },
24016     {
24017      "name": "addListener",
24018      "sig": "(String eventName, Function handler, Object scope, Object options)",
24019      "type": "function",
24020      "desc": "Appends an event handler to this component"
24021     },
24022     {
24023      "name": "capture",
24024      "sig": "(Observable o, Function fn, Object scope)",
24025      "type": "function",
24026      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
24027     },
24028     {
24029      "name": "clearInvalid",
24030      "sig": "()",
24031      "type": "function",
24032      "desc": "Clear any invalid styles/messages for this field"
24033     },
24034     {
24035      "name": "createToolbar",
24036      "sig": "(HtmlEditor editor)",
24037      "type": "function",
24038      "desc": "Protected method that will not generally be called directly. It\nis called when the editor creates its toolbar. Override this method if you need to\nadd custom toolbar buttons."
24039     },
24040     {
24041      "name": "destroy",
24042      "sig": "()",
24043      "type": "function",
24044      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
24045     },
24046     {
24047      "name": "disable",
24048      "sig": "()",
24049      "type": "function",
24050      "desc": "Disable this component."
24051     },
24052     {
24053      "name": "enable",
24054      "sig": "()",
24055      "type": "function",
24056      "desc": "Enable this component."
24057     },
24058     {
24059      "name": "fireEvent",
24060      "sig": "(String eventName, Object... args)",
24061      "type": "function",
24062      "desc": "Fires the specified event with the passed parameters (minus the event name)."
24063     },
24064     {
24065      "name": "focus",
24066      "sig": "(Boolean selectText)",
24067      "type": "function",
24068      "desc": "Try to focus this component."
24069     },
24070     {
24071      "name": "getChildContainer",
24072      "sig": "()",
24073      "type": "function",
24074      "desc": "Fetch the element to add children to"
24075     },
24076     {
24077      "name": "getEl",
24078      "sig": "()",
24079      "type": "function",
24080      "desc": "Returns the underlying {@link Roo.Element}."
24081     },
24082     {
24083      "name": "getId",
24084      "sig": "()",
24085      "type": "function",
24086      "desc": "Returns the id of this component."
24087     },
24088     {
24089      "name": "getName",
24090      "sig": "()",
24091      "type": "function",
24092      "desc": "Returns the name of the field"
24093     },
24094     {
24095      "name": "getRawValue",
24096      "sig": "()",
24097      "type": "function",
24098      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
24099     },
24100     {
24101      "name": "getValue",
24102      "sig": "()",
24103      "type": "function",
24104      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
24105     },
24106     {
24107      "name": "hasListener",
24108      "sig": "(String eventName)",
24109      "type": "function",
24110      "desc": "Checks to see if this object has any listeners for a specified event"
24111     },
24112     {
24113      "name": "hide",
24114      "sig": "()",
24115      "type": "function",
24116      "desc": "Hide a component - adds 'hidden' class"
24117     },
24118     {
24119      "name": "initEvents",
24120      "sig": "()",
24121      "type": "function",
24122      "desc": "Initialize Events for the element"
24123     },
24124     {
24125      "name": "inputEl",
24126      "sig": "()",
24127      "type": "function",
24128      "desc": "return the real textarea element."
24129     },
24130     {
24131      "name": "isVisible",
24132      "sig": "()",
24133      "type": "function",
24134      "desc": "Returns true if this component is visible."
24135     },
24136     {
24137      "name": "markInvalid",
24138      "sig": "(String msg)",
24139      "type": "function",
24140      "desc": "Mark this field as invalid"
24141     },
24142     {
24143      "name": "markValid",
24144      "sig": "()",
24145      "type": "function",
24146      "desc": "Mark this field as valid"
24147     },
24148     {
24149      "name": "on",
24150      "sig": "(String eventName, Function handler, Object scope, Object options)",
24151      "type": "function",
24152      "desc": "Appends an event handler to this element (shorthand for addListener)"
24153     },
24154     {
24155      "name": "purgeListeners",
24156      "sig": "()",
24157      "type": "function",
24158      "desc": "Removes all listeners for this object"
24159     },
24160     {
24161      "name": "releaseCapture",
24162      "sig": "(Observable o)",
24163      "type": "function",
24164      "desc": "Removes <b>all</b> added captures from the Observable."
24165     },
24166     {
24167      "name": "removeListener",
24168      "sig": "(String eventName, Function handler, Object scope)",
24169      "type": "function",
24170      "desc": "Removes a listener"
24171     },
24172     {
24173      "name": "render",
24174      "sig": "(String/HTMLElement/Element container)",
24175      "type": "function",
24176      "desc": "If this is a lazy rendering component, render it to its container element."
24177     },
24178     {
24179      "name": "reset",
24180      "sig": "()",
24181      "type": "function",
24182      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
24183     },
24184     {
24185      "name": "setDisabled",
24186      "sig": "(Boolean disabled)",
24187      "type": "function",
24188      "desc": "Convenience function for setting disabled/enabled by boolean."
24189     },
24190     {
24191      "name": "setRawValue",
24192      "sig": "(Mixed value)",
24193      "type": "function",
24194      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
24195     },
24196     {
24197      "name": "setValue",
24198      "sig": "(Mixed value)",
24199      "type": "function",
24200      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
24201     },
24202     {
24203      "name": "setVisible",
24204      "sig": "(Boolean visible)",
24205      "type": "function",
24206      "desc": "Convenience function to hide or show this component by boolean."
24207     },
24208     {
24209      "name": "show",
24210      "sig": "()",
24211      "type": "function",
24212      "desc": "Show a component - removes 'hidden' class"
24213     },
24214     {
24215      "name": "toggleSourceEdit",
24216      "sig": "(Boolean sourceEdit)",
24217      "type": "function",
24218      "desc": "Toggles the editor between standard and source edit mode."
24219     },
24220     {
24221      "name": "tooltipEl",
24222      "sig": "()",
24223      "type": "function",
24224      "desc": "Fetch the element to display the tooltip on."
24225     },
24226     {
24227      "name": "un",
24228      "sig": "(String eventName, Function handler, Object scope)",
24229      "type": "function",
24230      "desc": "Removes a listener (shorthand for removeListener)"
24231     },
24232     {
24233      "name": "validate",
24234      "sig": "()",
24235      "type": "function",
24236      "desc": "Validates the field value"
24237     },
24238     {
24239      "name": "validateValue",
24240      "sig": "(Mixed value)",
24241      "type": "function",
24242      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
24243     }
24244    ]
24245   },
24246   "Roo.bootstrap.Img": {
24247    "props": [
24248     {
24249      "name": "imgResponsive",
24250      "type": "Boolean",
24251      "desc": "false | true",
24252      "memberOf": ""
24253     },
24254     {
24255      "name": "border",
24256      "type": "String",
24257      "desc": "rounded | circle | thumbnail",
24258      "memberOf": ""
24259     },
24260     {
24261      "name": "src",
24262      "type": "String",
24263      "desc": "image source",
24264      "memberOf": ""
24265     },
24266     {
24267      "name": "alt",
24268      "type": "String",
24269      "desc": "image alternative text",
24270      "memberOf": ""
24271     },
24272     {
24273      "name": "href",
24274      "type": "String",
24275      "desc": "a tag href",
24276      "memberOf": ""
24277     },
24278     {
24279      "name": "target",
24280      "type": "String",
24281      "desc": "target for a href.",
24282      "memberOf": "",
24283      "optvals": [
24284       "_self",
24285       "_blank",
24286       "_parent",
24287       "_top"
24288      ]
24289     },
24290     {
24291      "name": "xsUrl",
24292      "type": "String",
24293      "desc": "xs image source",
24294      "memberOf": ""
24295     },
24296     {
24297      "name": "smUrl",
24298      "type": "String",
24299      "desc": "sm image source",
24300      "memberOf": ""
24301     },
24302     {
24303      "name": "mdUrl",
24304      "type": "String",
24305      "desc": "md image source",
24306      "memberOf": ""
24307     },
24308     {
24309      "name": "lgUrl",
24310      "type": "String",
24311      "desc": "lg image source",
24312      "memberOf": ""
24313     },
24314     {
24315      "name": "cls",
24316      "type": "String",
24317      "desc": "css class",
24318      "memberOf": "Roo.bootstrap.Component"
24319     },
24320     {
24321      "name": "style",
24322      "type": "String",
24323      "desc": "any extra css",
24324      "memberOf": "Roo.bootstrap.Component"
24325     },
24326     {
24327      "name": "xattr",
24328      "type": "Object",
24329      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
24330      "memberOf": "Roo.bootstrap.Component"
24331     },
24332     {
24333      "name": "can_build_overlaid",
24334      "type": "Boolean",
24335      "desc": "True if element can be rebuild from a HTML page",
24336      "memberOf": "Roo.bootstrap.Component"
24337     },
24338     {
24339      "name": "dataId",
24340      "type": "string",
24341      "desc": "cutomer id",
24342      "memberOf": "Roo.bootstrap.Component"
24343     },
24344     {
24345      "name": "name",
24346      "type": "string",
24347      "desc": "Specifies name attribute",
24348      "memberOf": "Roo.bootstrap.Component"
24349     },
24350     {
24351      "name": "tooltip",
24352      "type": "string",
24353      "desc": "Text for the tooltip",
24354      "memberOf": "Roo.bootstrap.Component"
24355     },
24356     {
24357      "name": "container_method",
24358      "type": "string",
24359      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
24360      "memberOf": "Roo.bootstrap.Component"
24361     },
24362     {
24363      "name": "disableClass",
24364      "type": "String",
24365      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
24366      "memberOf": "Roo.Component"
24367     },
24368     {
24369      "name": "allowDomMove",
24370      "type": "Boolean",
24371      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
24372      "memberOf": "Roo.Component"
24373     },
24374     {
24375      "name": "hideMode",
24376      "type": "String",
24377      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
24378      "memberOf": "Roo.Component",
24379      "optvals": [
24380       "display",
24381       "visibility"
24382      ]
24383     },
24384     {
24385      "name": "actionMode",
24386      "type": "String",
24387      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
24388      "memberOf": "Roo.Component"
24389     },
24390     {
24391      "name": "listeners",
24392      "type": "Object",
24393      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
24394      "memberOf": "Roo.util.Observable"
24395     }
24396    ],
24397    "events": [
24398     {
24399      "name": "beforedestroy",
24400      "sig": "function (_self)\n{\n\n}",
24401      "type": "function",
24402      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
24403     },
24404     {
24405      "name": "beforehide",
24406      "sig": "function (_self)\n{\n\n}",
24407      "type": "function",
24408      "desc": "Fires before the component is hidden. Return false to stop the hide."
24409     },
24410     {
24411      "name": "beforerender",
24412      "sig": "function (_self)\n{\n\n}",
24413      "type": "function",
24414      "desc": "Fires before the component is rendered. Return false to stop the render."
24415     },
24416     {
24417      "name": "beforeshow",
24418      "sig": "function (_self)\n{\n\n}",
24419      "type": "function",
24420      "desc": "Fires before the component is shown.  Return false to stop the show."
24421     },
24422     {
24423      "name": "childrenrendered",
24424      "sig": "function (_self)\n{\n\n}",
24425      "type": "function",
24426      "desc": "Fires when the children have been rendered.."
24427     },
24428     {
24429      "name": "click",
24430      "sig": "function (e)\n{\n\n}",
24431      "type": "function",
24432      "desc": "The img click event for the img."
24433     },
24434     {
24435      "name": "destroy",
24436      "sig": "function (_self)\n{\n\n}",
24437      "type": "function",
24438      "desc": "Fires after the component is destroyed."
24439     },
24440     {
24441      "name": "disable",
24442      "sig": "function (_self)\n{\n\n}",
24443      "type": "function",
24444      "desc": "Fires after the component is disabled."
24445     },
24446     {
24447      "name": "enable",
24448      "sig": "function (_self)\n{\n\n}",
24449      "type": "function",
24450      "desc": "Fires after the component is enabled."
24451     },
24452     {
24453      "name": "hide",
24454      "sig": "function (_self)\n{\n\n}",
24455      "type": "function",
24456      "desc": "Fires after the component is hidden."
24457     },
24458     {
24459      "name": "render",
24460      "sig": "function (_self)\n{\n\n}",
24461      "type": "function",
24462      "desc": "Fires after the component is rendered."
24463     },
24464     {
24465      "name": "show",
24466      "sig": "function (_self)\n{\n\n}",
24467      "type": "function",
24468      "desc": "Fires after the component is shown."
24469     }
24470    ],
24471    "methods": [
24472     {
24473      "name": "addEvents",
24474      "sig": "(Object object)",
24475      "type": "function",
24476      "desc": "Used to define events on this Observable"
24477     },
24478     {
24479      "name": "addListener",
24480      "sig": "(String eventName, Function handler, Object scope, Object options)",
24481      "type": "function",
24482      "desc": "Appends an event handler to this component"
24483     },
24484     {
24485      "name": "capture",
24486      "sig": "(Observable o, Function fn, Object scope)",
24487      "type": "function",
24488      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
24489     },
24490     {
24491      "name": "destroy",
24492      "sig": "()",
24493      "type": "function",
24494      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
24495     },
24496     {
24497      "name": "disable",
24498      "sig": "()",
24499      "type": "function",
24500      "desc": "Disable this component."
24501     },
24502     {
24503      "name": "enable",
24504      "sig": "()",
24505      "type": "function",
24506      "desc": "Enable this component."
24507     },
24508     {
24509      "name": "fireEvent",
24510      "sig": "(String eventName, Object... args)",
24511      "type": "function",
24512      "desc": "Fires the specified event with the passed parameters (minus the event name)."
24513     },
24514     {
24515      "name": "focus",
24516      "sig": "(Boolean selectText)",
24517      "type": "function",
24518      "desc": "Try to focus this component."
24519     },
24520     {
24521      "name": "getChildContainer",
24522      "sig": "()",
24523      "type": "function",
24524      "desc": "Fetch the element to add children to"
24525     },
24526     {
24527      "name": "getEl",
24528      "sig": "()",
24529      "type": "function",
24530      "desc": "Returns the underlying {@link Roo.Element}."
24531     },
24532     {
24533      "name": "getId",
24534      "sig": "()",
24535      "type": "function",
24536      "desc": "Returns the id of this component."
24537     },
24538     {
24539      "name": "hasListener",
24540      "sig": "(String eventName)",
24541      "type": "function",
24542      "desc": "Checks to see if this object has any listeners for a specified event"
24543     },
24544     {
24545      "name": "hide",
24546      "sig": "()",
24547      "type": "function",
24548      "desc": "Hide a component - adds 'hidden' class"
24549     },
24550     {
24551      "name": "initEvents",
24552      "sig": "()",
24553      "type": "function",
24554      "desc": "Initialize Events for the element"
24555     },
24556     {
24557      "name": "isVisible",
24558      "sig": "()",
24559      "type": "function",
24560      "desc": "Returns true if this component is visible."
24561     },
24562     {
24563      "name": "on",
24564      "sig": "(String eventName, Function handler, Object scope, Object options)",
24565      "type": "function",
24566      "desc": "Appends an event handler to this element (shorthand for addListener)"
24567     },
24568     {
24569      "name": "purgeListeners",
24570      "sig": "()",
24571      "type": "function",
24572      "desc": "Removes all listeners for this object"
24573     },
24574     {
24575      "name": "releaseCapture",
24576      "sig": "(Observable o)",
24577      "type": "function",
24578      "desc": "Removes <b>all</b> added captures from the Observable."
24579     },
24580     {
24581      "name": "removeListener",
24582      "sig": "(String eventName, Function handler, Object scope)",
24583      "type": "function",
24584      "desc": "Removes a listener"
24585     },
24586     {
24587      "name": "render",
24588      "sig": "(String/HTMLElement/Element container)",
24589      "type": "function",
24590      "desc": "If this is a lazy rendering component, render it to its container element."
24591     },
24592     {
24593      "name": "setDisabled",
24594      "sig": "(Boolean disabled)",
24595      "type": "function",
24596      "desc": "Convenience function for setting disabled/enabled by boolean."
24597     },
24598     {
24599      "name": "setSrc",
24600      "sig": "(String url)",
24601      "type": "function",
24602      "desc": "Sets the url of the image - used to update it"
24603     },
24604     {
24605      "name": "setVisible",
24606      "sig": "(Boolean visible)",
24607      "type": "function",
24608      "desc": "Convenience function to hide or show this component by boolean."
24609     },
24610     {
24611      "name": "show",
24612      "sig": "()",
24613      "type": "function",
24614      "desc": "Show a component - removes 'hidden' class"
24615     },
24616     {
24617      "name": "tooltipEl",
24618      "sig": "()",
24619      "type": "function",
24620      "desc": "Fetch the element to display the tooltip on."
24621     },
24622     {
24623      "name": "un",
24624      "sig": "(String eventName, Function handler, Object scope)",
24625      "type": "function",
24626      "desc": "Removes a listener (shorthand for removeListener)"
24627     }
24628    ]
24629   },
24630   "Roo.bootstrap.Input": {
24631    "props": [
24632     {
24633      "name": "disabled",
24634      "type": "Boolean",
24635      "desc": "is it disabled",
24636      "memberOf": ""
24637     },
24638     {
24639      "name": "inputType",
24640      "type": "String",
24641      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
24642      "memberOf": ""
24643     },
24644     {
24645      "name": "name",
24646      "type": "String",
24647      "desc": "name of the input",
24648      "memberOf": ""
24649     },
24650     {
24651      "name": "fieldLabel",
24652      "type": "string",
24653      "desc": "- the label associated",
24654      "memberOf": ""
24655     },
24656     {
24657      "name": "placeholder",
24658      "type": "string",
24659      "desc": "- placeholder to put in text.",
24660      "memberOf": ""
24661     },
24662     {
24663      "name": "before",
24664      "type": "string",
24665      "desc": "- input group add on before",
24666      "memberOf": ""
24667     },
24668     {
24669      "name": "after",
24670      "type": "string",
24671      "desc": "- input group add on after",
24672      "memberOf": ""
24673     },
24674     {
24675      "name": "size",
24676      "type": "string",
24677      "desc": "- (lg|sm) or leave empty..",
24678      "memberOf": ""
24679     },
24680     {
24681      "name": "xs",
24682      "type": "Number",
24683      "desc": "colspan out of 12 for mobile-sized screens",
24684      "memberOf": ""
24685     },
24686     {
24687      "name": "sm",
24688      "type": "Number",
24689      "desc": "colspan out of 12 for tablet-sized screens",
24690      "memberOf": ""
24691     },
24692     {
24693      "name": "md",
24694      "type": "Number",
24695      "desc": "colspan out of 12 for computer-sized screens",
24696      "memberOf": ""
24697     },
24698     {
24699      "name": "lg",
24700      "type": "Number",
24701      "desc": "colspan out of 12 for large computer-sized screens",
24702      "memberOf": ""
24703     },
24704     {
24705      "name": "value",
24706      "type": "string",
24707      "desc": "default value of the input",
24708      "memberOf": ""
24709     },
24710     {
24711      "name": "labelWidth",
24712      "type": "Number",
24713      "desc": "set the width of label (0-12)",
24714      "memberOf": ""
24715     },
24716     {
24717      "name": "labelAlign",
24718      "type": "String",
24719      "desc": "",
24720      "memberOf": "",
24721      "optvals": [
24722       "top",
24723       "left"
24724      ]
24725     },
24726     {
24727      "name": "readOnly",
24728      "type": "Boolean",
24729      "desc": "Specifies that the field should be read-only",
24730      "memberOf": ""
24731     },
24732     {
24733      "name": "autocomplete",
24734      "type": "String",
24735      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
24736      "memberOf": ""
24737     },
24738     {
24739      "name": "indicatorpos",
24740      "type": "String",
24741      "desc": "default left",
24742      "memberOf": "",
24743      "optvals": [
24744       "left",
24745       "right"
24746      ]
24747     },
24748     {
24749      "name": "align",
24750      "type": "String",
24751      "desc": "Default left",
24752      "memberOf": "",
24753      "optvals": [
24754       "left",
24755       "center",
24756       "right"
24757      ]
24758     },
24759     {
24760      "name": "forceFeedback",
24761      "type": "Boolean",
24762      "desc": "Default false",
24763      "memberOf": "",
24764      "optvals": [
24765       "true",
24766       "false"
24767      ]
24768     },
24769     {
24770      "name": "validationEvent",
24771      "type": "String/Boolean",
24772      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
24773      "memberOf": ""
24774     },
24775     {
24776      "name": "validateOnBlur",
24777      "type": "Boolean",
24778      "desc": "Whether the field should validate when it loses focus (defaults to true).",
24779      "memberOf": ""
24780     },
24781     {
24782      "name": "validationDelay",
24783      "type": "Number",
24784      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
24785      "memberOf": ""
24786     },
24787     {
24788      "name": "focusClass",
24789      "type": "String",
24790      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
24791      "memberOf": ""
24792     },
24793     {
24794      "name": "invalidClass",
24795      "type": "String",
24796      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
24797      "memberOf": ""
24798     },
24799     {
24800      "name": "validClass",
24801      "type": "String",
24802      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
24803      "memberOf": ""
24804     },
24805     {
24806      "name": "hasFeedback",
24807      "type": "Boolean",
24808      "desc": "default true",
24809      "memberOf": "",
24810      "optvals": [
24811       "true",
24812       "false"
24813      ]
24814     },
24815     {
24816      "name": "invalidFeedbackIcon",
24817      "type": "String",
24818      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
24819      "memberOf": ""
24820     },
24821     {
24822      "name": "validFeedbackIcon",
24823      "type": "String",
24824      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
24825      "memberOf": ""
24826     },
24827     {
24828      "name": "selectOnFocus",
24829      "type": "Boolean",
24830      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
24831      "memberOf": ""
24832     },
24833     {
24834      "name": "maskRe",
24835      "type": "String",
24836      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
24837      "memberOf": ""
24838     },
24839     {
24840      "name": "vtype",
24841      "type": "String",
24842      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
24843      "memberOf": ""
24844     },
24845     {
24846      "name": "disableKeyFilter",
24847      "type": "Boolean",
24848      "desc": "True to disable input keystroke filtering (defaults to false)",
24849      "memberOf": ""
24850     },
24851     {
24852      "name": "allowBlank",
24853      "type": "Boolean",
24854      "desc": "False to validate that the value length > 0 (defaults to true)",
24855      "memberOf": ""
24856     },
24857     {
24858      "name": "blankText",
24859      "type": "String",
24860      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
24861      "memberOf": ""
24862     },
24863     {
24864      "name": "minLength",
24865      "type": "Number",
24866      "desc": "Minimum input field length required (defaults to 0)",
24867      "memberOf": ""
24868     },
24869     {
24870      "name": "maxLength",
24871      "type": "Number",
24872      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
24873      "memberOf": ""
24874     },
24875     {
24876      "name": "minLengthText",
24877      "type": "String",
24878      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
24879      "memberOf": ""
24880     },
24881     {
24882      "name": "maxLengthText",
24883      "type": "String",
24884      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
24885      "memberOf": ""
24886     },
24887     {
24888      "name": "validator",
24889      "type": "Function",
24890      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
24891      "memberOf": ""
24892     },
24893     {
24894      "name": "regex",
24895      "type": "RegExp",
24896      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
24897      "memberOf": ""
24898     },
24899     {
24900      "name": "regexText",
24901      "type": "String",
24902      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
24903      "memberOf": ""
24904     },
24905     {
24906      "name": "cls",
24907      "type": "String",
24908      "desc": "css class",
24909      "memberOf": "Roo.bootstrap.Component"
24910     },
24911     {
24912      "name": "style",
24913      "type": "String",
24914      "desc": "any extra css",
24915      "memberOf": "Roo.bootstrap.Component"
24916     },
24917     {
24918      "name": "xattr",
24919      "type": "Object",
24920      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
24921      "memberOf": "Roo.bootstrap.Component"
24922     },
24923     {
24924      "name": "can_build_overlaid",
24925      "type": "Boolean",
24926      "desc": "True if element can be rebuild from a HTML page",
24927      "memberOf": "Roo.bootstrap.Component"
24928     },
24929     {
24930      "name": "dataId",
24931      "type": "string",
24932      "desc": "cutomer id",
24933      "memberOf": "Roo.bootstrap.Component"
24934     },
24935     {
24936      "name": "tooltip",
24937      "type": "string",
24938      "desc": "Text for the tooltip",
24939      "memberOf": "Roo.bootstrap.Component"
24940     },
24941     {
24942      "name": "container_method",
24943      "type": "string",
24944      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
24945      "memberOf": "Roo.bootstrap.Component"
24946     },
24947     {
24948      "name": "disableClass",
24949      "type": "String",
24950      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
24951      "memberOf": "Roo.Component"
24952     },
24953     {
24954      "name": "allowDomMove",
24955      "type": "Boolean",
24956      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
24957      "memberOf": "Roo.Component"
24958     },
24959     {
24960      "name": "hideMode",
24961      "type": "String",
24962      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
24963      "memberOf": "Roo.Component",
24964      "optvals": [
24965       "display",
24966       "visibility"
24967      ]
24968     },
24969     {
24970      "name": "actionMode",
24971      "type": "String",
24972      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
24973      "memberOf": "Roo.Component"
24974     },
24975     {
24976      "name": "listeners",
24977      "type": "Object",
24978      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
24979      "memberOf": "Roo.util.Observable"
24980     }
24981    ],
24982    "events": [
24983     {
24984      "name": "beforedestroy",
24985      "sig": "function (_self)\n{\n\n}",
24986      "type": "function",
24987      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
24988     },
24989     {
24990      "name": "beforehide",
24991      "sig": "function (_self)\n{\n\n}",
24992      "type": "function",
24993      "desc": "Fires before the component is hidden. Return false to stop the hide."
24994     },
24995     {
24996      "name": "beforerender",
24997      "sig": "function (_self)\n{\n\n}",
24998      "type": "function",
24999      "desc": "Fires before the component is rendered. Return false to stop the render."
25000     },
25001     {
25002      "name": "beforeshow",
25003      "sig": "function (_self)\n{\n\n}",
25004      "type": "function",
25005      "desc": "Fires before the component is shown.  Return false to stop the show."
25006     },
25007     {
25008      "name": "blur",
25009      "sig": "function (_self)\n{\n\n}",
25010      "type": "function",
25011      "desc": "Fires when this field loses input focus."
25012     },
25013     {
25014      "name": "change",
25015      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
25016      "type": "function",
25017      "desc": "Fires just before the field blurs if the field value has changed."
25018     },
25019     {
25020      "name": "childrenrendered",
25021      "sig": "function (_self)\n{\n\n}",
25022      "type": "function",
25023      "desc": "Fires when the children have been rendered.."
25024     },
25025     {
25026      "name": "destroy",
25027      "sig": "function (_self)\n{\n\n}",
25028      "type": "function",
25029      "desc": "Fires after the component is destroyed."
25030     },
25031     {
25032      "name": "disable",
25033      "sig": "function (_self)\n{\n\n}",
25034      "type": "function",
25035      "desc": "Fires after the component is disabled."
25036     },
25037     {
25038      "name": "enable",
25039      "sig": "function (_self)\n{\n\n}",
25040      "type": "function",
25041      "desc": "Fires after the component is enabled."
25042     },
25043     {
25044      "name": "focus",
25045      "sig": "function (_self)\n{\n\n}",
25046      "type": "function",
25047      "desc": "Fires when this field receives input focus."
25048     },
25049     {
25050      "name": "hide",
25051      "sig": "function (_self)\n{\n\n}",
25052      "type": "function",
25053      "desc": "Fires after the component is hidden."
25054     },
25055     {
25056      "name": "invalid",
25057      "sig": "function (_self, msg)\n{\n\n}",
25058      "type": "function",
25059      "desc": "Fires after the field has been marked as invalid."
25060     },
25061     {
25062      "name": "keyup",
25063      "sig": "function (_self, e)\n{\n\n}",
25064      "type": "function",
25065      "desc": "Fires after the key up"
25066     },
25067     {
25068      "name": "render",
25069      "sig": "function (_self)\n{\n\n}",
25070      "type": "function",
25071      "desc": "Fires after the component is rendered."
25072     },
25073     {
25074      "name": "show",
25075      "sig": "function (_self)\n{\n\n}",
25076      "type": "function",
25077      "desc": "Fires after the component is shown."
25078     },
25079     {
25080      "name": "specialkey",
25081      "sig": "function (_self, e)\n{\n\n}",
25082      "type": "function",
25083      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
25084     },
25085     {
25086      "name": "valid",
25087      "sig": "function (_self)\n{\n\n}",
25088      "type": "function",
25089      "desc": "Fires after the field has been validated with no errors."
25090     }
25091    ],
25092    "methods": [
25093     {
25094      "name": "addEvents",
25095      "sig": "(Object object)",
25096      "type": "function",
25097      "desc": "Used to define events on this Observable"
25098     },
25099     {
25100      "name": "addListener",
25101      "sig": "(String eventName, Function handler, Object scope, Object options)",
25102      "type": "function",
25103      "desc": "Appends an event handler to this component"
25104     },
25105     {
25106      "name": "capture",
25107      "sig": "(Observable o, Function fn, Object scope)",
25108      "type": "function",
25109      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
25110     },
25111     {
25112      "name": "clearInvalid",
25113      "sig": "()",
25114      "type": "function",
25115      "desc": "Clear any invalid styles/messages for this field"
25116     },
25117     {
25118      "name": "destroy",
25119      "sig": "()",
25120      "type": "function",
25121      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
25122     },
25123     {
25124      "name": "disable",
25125      "sig": "()",
25126      "type": "function",
25127      "desc": "Disable this component."
25128     },
25129     {
25130      "name": "enable",
25131      "sig": "()",
25132      "type": "function",
25133      "desc": "Enable this component."
25134     },
25135     {
25136      "name": "fireEvent",
25137      "sig": "(String eventName, Object... args)",
25138      "type": "function",
25139      "desc": "Fires the specified event with the passed parameters (minus the event name)."
25140     },
25141     {
25142      "name": "focus",
25143      "sig": "(Boolean selectText)",
25144      "type": "function",
25145      "desc": "Try to focus this component."
25146     },
25147     {
25148      "name": "getChildContainer",
25149      "sig": "()",
25150      "type": "function",
25151      "desc": "Fetch the element to add children to"
25152     },
25153     {
25154      "name": "getEl",
25155      "sig": "()",
25156      "type": "function",
25157      "desc": "Returns the underlying {@link Roo.Element}."
25158     },
25159     {
25160      "name": "getId",
25161      "sig": "()",
25162      "type": "function",
25163      "desc": "Returns the id of this component."
25164     },
25165     {
25166      "name": "getName",
25167      "sig": "()",
25168      "type": "function",
25169      "desc": "Returns the name of the field"
25170     },
25171     {
25172      "name": "getRawValue",
25173      "sig": "()",
25174      "type": "function",
25175      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
25176     },
25177     {
25178      "name": "getValue",
25179      "sig": "()",
25180      "type": "function",
25181      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
25182     },
25183     {
25184      "name": "hasListener",
25185      "sig": "(String eventName)",
25186      "type": "function",
25187      "desc": "Checks to see if this object has any listeners for a specified event"
25188     },
25189     {
25190      "name": "hide",
25191      "sig": "()",
25192      "type": "function",
25193      "desc": "Hide a component - adds 'hidden' class"
25194     },
25195     {
25196      "name": "initEvents",
25197      "sig": "()",
25198      "type": "function",
25199      "desc": "Initialize Events for the element"
25200     },
25201     {
25202      "name": "inputEl",
25203      "sig": "()",
25204      "type": "function",
25205      "desc": "return the real input element."
25206     },
25207     {
25208      "name": "isVisible",
25209      "sig": "()",
25210      "type": "function",
25211      "desc": "Returns true if this component is visible."
25212     },
25213     {
25214      "name": "markInvalid",
25215      "sig": "(String msg)",
25216      "type": "function",
25217      "desc": "Mark this field as invalid"
25218     },
25219     {
25220      "name": "markValid",
25221      "sig": "()",
25222      "type": "function",
25223      "desc": "Mark this field as valid"
25224     },
25225     {
25226      "name": "on",
25227      "sig": "(String eventName, Function handler, Object scope, Object options)",
25228      "type": "function",
25229      "desc": "Appends an event handler to this element (shorthand for addListener)"
25230     },
25231     {
25232      "name": "purgeListeners",
25233      "sig": "()",
25234      "type": "function",
25235      "desc": "Removes all listeners for this object"
25236     },
25237     {
25238      "name": "releaseCapture",
25239      "sig": "(Observable o)",
25240      "type": "function",
25241      "desc": "Removes <b>all</b> added captures from the Observable."
25242     },
25243     {
25244      "name": "removeListener",
25245      "sig": "(String eventName, Function handler, Object scope)",
25246      "type": "function",
25247      "desc": "Removes a listener"
25248     },
25249     {
25250      "name": "render",
25251      "sig": "(String/HTMLElement/Element container)",
25252      "type": "function",
25253      "desc": "If this is a lazy rendering component, render it to its container element."
25254     },
25255     {
25256      "name": "reset",
25257      "sig": "()",
25258      "type": "function",
25259      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
25260     },
25261     {
25262      "name": "setDisabled",
25263      "sig": "(Boolean disabled)",
25264      "type": "function",
25265      "desc": "Convenience function for setting disabled/enabled by boolean."
25266     },
25267     {
25268      "name": "setRawValue",
25269      "sig": "(Mixed value)",
25270      "type": "function",
25271      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
25272     },
25273     {
25274      "name": "setValue",
25275      "sig": "(Mixed value)",
25276      "type": "function",
25277      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
25278     },
25279     {
25280      "name": "setVisible",
25281      "sig": "(Boolean visible)",
25282      "type": "function",
25283      "desc": "Convenience function to hide or show this component by boolean."
25284     },
25285     {
25286      "name": "show",
25287      "sig": "()",
25288      "type": "function",
25289      "desc": "Show a component - removes 'hidden' class"
25290     },
25291     {
25292      "name": "tooltipEl",
25293      "sig": "()",
25294      "type": "function",
25295      "desc": "Fetch the element to display the tooltip on."
25296     },
25297     {
25298      "name": "un",
25299      "sig": "(String eventName, Function handler, Object scope)",
25300      "type": "function",
25301      "desc": "Removes a listener (shorthand for removeListener)"
25302     },
25303     {
25304      "name": "validate",
25305      "sig": "()",
25306      "type": "function",
25307      "desc": "Validates the field value"
25308     },
25309     {
25310      "name": "validateValue",
25311      "sig": "(Mixed value)",
25312      "type": "function",
25313      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
25314     }
25315    ]
25316   },
25317   "Roo.bootstrap.LayoutMasonry": {
25318    "props": [
25319     {
25320      "name": "isLayoutInstant",
25321      "type": "Boolean",
25322      "desc": "= no animation?",
25323      "memberOf": ""
25324     },
25325     {
25326      "name": "boxWidth",
25327      "type": "Number",
25328      "desc": "width of the columns",
25329      "memberOf": ""
25330     },
25331     {
25332      "name": "boxHeight",
25333      "type": "Number",
25334      "desc": "- 0 for square, or fix it at a certian height",
25335      "memberOf": ""
25336     },
25337     {
25338      "name": "padWidth",
25339      "type": "Number",
25340      "desc": "padding below box..",
25341      "memberOf": ""
25342     },
25343     {
25344      "name": "gutter",
25345      "type": "Number",
25346      "desc": "gutter width..",
25347      "memberOf": ""
25348     },
25349     {
25350      "name": "maxCols",
25351      "type": "Number",
25352      "desc": "maximum number of columns",
25353      "memberOf": ""
25354     },
25355     {
25356      "name": "isAutoInitial",
25357      "type": "Boolean",
25358      "desc": "defalut true",
25359      "memberOf": ""
25360     },
25361     {
25362      "name": "isHorizontal",
25363      "type": "Boolean",
25364      "desc": "defalut false",
25365      "memberOf": ""
25366     },
25367     {
25368      "name": "alternativePadWidth",
25369      "type": "Number",
25370      "desc": "padding below box..",
25371      "memberOf": ""
25372     },
25373     {
25374      "name": "cls",
25375      "type": "String",
25376      "desc": "css class",
25377      "memberOf": "Roo.bootstrap.Component"
25378     },
25379     {
25380      "name": "style",
25381      "type": "String",
25382      "desc": "any extra css",
25383      "memberOf": "Roo.bootstrap.Component"
25384     },
25385     {
25386      "name": "xattr",
25387      "type": "Object",
25388      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
25389      "memberOf": "Roo.bootstrap.Component"
25390     },
25391     {
25392      "name": "can_build_overlaid",
25393      "type": "Boolean",
25394      "desc": "True if element can be rebuild from a HTML page",
25395      "memberOf": "Roo.bootstrap.Component"
25396     },
25397     {
25398      "name": "dataId",
25399      "type": "string",
25400      "desc": "cutomer id",
25401      "memberOf": "Roo.bootstrap.Component"
25402     },
25403     {
25404      "name": "name",
25405      "type": "string",
25406      "desc": "Specifies name attribute",
25407      "memberOf": "Roo.bootstrap.Component"
25408     },
25409     {
25410      "name": "tooltip",
25411      "type": "string",
25412      "desc": "Text for the tooltip",
25413      "memberOf": "Roo.bootstrap.Component"
25414     },
25415     {
25416      "name": "container_method",
25417      "type": "string",
25418      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
25419      "memberOf": "Roo.bootstrap.Component"
25420     },
25421     {
25422      "name": "disableClass",
25423      "type": "String",
25424      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
25425      "memberOf": "Roo.Component"
25426     },
25427     {
25428      "name": "allowDomMove",
25429      "type": "Boolean",
25430      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
25431      "memberOf": "Roo.Component"
25432     },
25433     {
25434      "name": "hideMode",
25435      "type": "String",
25436      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
25437      "memberOf": "Roo.Component",
25438      "optvals": [
25439       "display",
25440       "visibility"
25441      ]
25442     },
25443     {
25444      "name": "actionMode",
25445      "type": "String",
25446      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
25447      "memberOf": "Roo.Component"
25448     },
25449     {
25450      "name": "listeners",
25451      "type": "Object",
25452      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
25453      "memberOf": "Roo.util.Observable"
25454     }
25455    ],
25456    "events": [
25457     {
25458      "name": "beforedestroy",
25459      "sig": "function (_self)\n{\n\n}",
25460      "type": "function",
25461      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
25462     },
25463     {
25464      "name": "beforehide",
25465      "sig": "function (_self)\n{\n\n}",
25466      "type": "function",
25467      "desc": "Fires before the component is hidden. Return false to stop the hide."
25468     },
25469     {
25470      "name": "beforerender",
25471      "sig": "function (_self)\n{\n\n}",
25472      "type": "function",
25473      "desc": "Fires before the component is rendered. Return false to stop the render."
25474     },
25475     {
25476      "name": "beforeshow",
25477      "sig": "function (_self)\n{\n\n}",
25478      "type": "function",
25479      "desc": "Fires before the component is shown.  Return false to stop the show."
25480     },
25481     {
25482      "name": "childrenrendered",
25483      "sig": "function (_self)\n{\n\n}",
25484      "type": "function",
25485      "desc": "Fires when the children have been rendered.."
25486     },
25487     {
25488      "name": "destroy",
25489      "sig": "function (_self)\n{\n\n}",
25490      "type": "function",
25491      "desc": "Fires after the component is destroyed."
25492     },
25493     {
25494      "name": "disable",
25495      "sig": "function (_self)\n{\n\n}",
25496      "type": "function",
25497      "desc": "Fires after the component is disabled."
25498     },
25499     {
25500      "name": "enable",
25501      "sig": "function (_self)\n{\n\n}",
25502      "type": "function",
25503      "desc": "Fires after the component is enabled."
25504     },
25505     {
25506      "name": "hide",
25507      "sig": "function (_self)\n{\n\n}",
25508      "type": "function",
25509      "desc": "Fires after the component is hidden."
25510     },
25511     {
25512      "name": "render",
25513      "sig": "function (_self)\n{\n\n}",
25514      "type": "function",
25515      "desc": "Fires after the component is rendered."
25516     },
25517     {
25518      "name": "show",
25519      "sig": "function (_self)\n{\n\n}",
25520      "type": "function",
25521      "desc": "Fires after the component is shown."
25522     }
25523    ],
25524    "methods": [
25525     {
25526      "name": "addEvents",
25527      "sig": "(Object object)",
25528      "type": "function",
25529      "desc": "Used to define events on this Observable"
25530     },
25531     {
25532      "name": "addListener",
25533      "sig": "(String eventName, Function handler, Object scope, Object options)",
25534      "type": "function",
25535      "desc": "Appends an event handler to this component"
25536     },
25537     {
25538      "name": "capture",
25539      "sig": "(Observable o, Function fn, Object scope)",
25540      "type": "function",
25541      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
25542     },
25543     {
25544      "name": "destroy",
25545      "sig": "()",
25546      "type": "function",
25547      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
25548     },
25549     {
25550      "name": "disable",
25551      "sig": "()",
25552      "type": "function",
25553      "desc": "Disable this component."
25554     },
25555     {
25556      "name": "enable",
25557      "sig": "()",
25558      "type": "function",
25559      "desc": "Enable this component."
25560     },
25561     {
25562      "name": "fireEvent",
25563      "sig": "(String eventName, Object... args)",
25564      "type": "function",
25565      "desc": "Fires the specified event with the passed parameters (minus the event name)."
25566     },
25567     {
25568      "name": "focus",
25569      "sig": "(Boolean selectText)",
25570      "type": "function",
25571      "desc": "Try to focus this component."
25572     },
25573     {
25574      "name": "getChildContainer",
25575      "sig": "()",
25576      "type": "function",
25577      "desc": "Fetch the element to add children to"
25578     },
25579     {
25580      "name": "getEl",
25581      "sig": "()",
25582      "type": "function",
25583      "desc": "Returns the underlying {@link Roo.Element}."
25584     },
25585     {
25586      "name": "getId",
25587      "sig": "()",
25588      "type": "function",
25589      "desc": "Returns the id of this component."
25590     },
25591     {
25592      "name": "hasListener",
25593      "sig": "(String eventName)",
25594      "type": "function",
25595      "desc": "Checks to see if this object has any listeners for a specified event"
25596     },
25597     {
25598      "name": "hide",
25599      "sig": "()",
25600      "type": "function",
25601      "desc": "Hide a component - adds 'hidden' class"
25602     },
25603     {
25604      "name": "initEvents",
25605      "sig": "()",
25606      "type": "function",
25607      "desc": "Initialize Events for the element"
25608     },
25609     {
25610      "name": "isVisible",
25611      "sig": "()",
25612      "type": "function",
25613      "desc": "Returns true if this component is visible."
25614     },
25615     {
25616      "name": "on",
25617      "sig": "(String eventName, Function handler, Object scope, Object options)",
25618      "type": "function",
25619      "desc": "Appends an event handler to this element (shorthand for addListener)"
25620     },
25621     {
25622      "name": "purgeListeners",
25623      "sig": "()",
25624      "type": "function",
25625      "desc": "Removes all listeners for this object"
25626     },
25627     {
25628      "name": "releaseCapture",
25629      "sig": "(Observable o)",
25630      "type": "function",
25631      "desc": "Removes <b>all</b> added captures from the Observable."
25632     },
25633     {
25634      "name": "removeListener",
25635      "sig": "(String eventName, Function handler, Object scope)",
25636      "type": "function",
25637      "desc": "Removes a listener"
25638     },
25639     {
25640      "name": "render",
25641      "sig": "(String/HTMLElement/Element container)",
25642      "type": "function",
25643      "desc": "If this is a lazy rendering component, render it to its container element."
25644     },
25645     {
25646      "name": "setDisabled",
25647      "sig": "(Boolean disabled)",
25648      "type": "function",
25649      "desc": "Convenience function for setting disabled/enabled by boolean."
25650     },
25651     {
25652      "name": "setVisible",
25653      "sig": "(Boolean visible)",
25654      "type": "function",
25655      "desc": "Convenience function to hide or show this component by boolean."
25656     },
25657     {
25658      "name": "show",
25659      "sig": "()",
25660      "type": "function",
25661      "desc": "Show a component - removes 'hidden' class"
25662     },
25663     {
25664      "name": "tooltipEl",
25665      "sig": "()",
25666      "type": "function",
25667      "desc": "Fetch the element to display the tooltip on."
25668     },
25669     {
25670      "name": "un",
25671      "sig": "(String eventName, Function handler, Object scope)",
25672      "type": "function",
25673      "desc": "Removes a listener (shorthand for removeListener)"
25674     }
25675    ]
25676   },
25677   "Roo.bootstrap.LayoutMasonryAuto": {
25678    "props": [
25679     {
25680      "name": "isFitWidth",
25681      "type": "Boolean",
25682      "desc": "- resize the width..",
25683      "memberOf": ""
25684     },
25685     {
25686      "name": "isOriginLeft",
25687      "type": "Boolean",
25688      "desc": "= left align?",
25689      "memberOf": ""
25690     },
25691     {
25692      "name": "isOriginTop",
25693      "type": "Boolean",
25694      "desc": "= top align?",
25695      "memberOf": ""
25696     },
25697     {
25698      "name": "isLayoutInstant",
25699      "type": "Boolean",
25700      "desc": "= no animation?",
25701      "memberOf": ""
25702     },
25703     {
25704      "name": "isResizingContainer",
25705      "type": "Boolean",
25706      "desc": "= not sure if this is used..",
25707      "memberOf": ""
25708     },
25709     {
25710      "name": "columnWidth",
25711      "type": "Number",
25712      "desc": "width of the columns",
25713      "memberOf": ""
25714     },
25715     {
25716      "name": "maxCols",
25717      "type": "Number",
25718      "desc": "maximum number of columns",
25719      "memberOf": ""
25720     },
25721     {
25722      "name": "padHeight",
25723      "type": "Number",
25724      "desc": "padding below box..",
25725      "memberOf": ""
25726     },
25727     {
25728      "name": "isAutoInitial",
25729      "type": "Boolean",
25730      "desc": "defalut true",
25731      "memberOf": ""
25732     },
25733     {
25734      "name": "cls",
25735      "type": "String",
25736      "desc": "css class",
25737      "memberOf": "Roo.bootstrap.Component"
25738     },
25739     {
25740      "name": "style",
25741      "type": "String",
25742      "desc": "any extra css",
25743      "memberOf": "Roo.bootstrap.Component"
25744     },
25745     {
25746      "name": "xattr",
25747      "type": "Object",
25748      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
25749      "memberOf": "Roo.bootstrap.Component"
25750     },
25751     {
25752      "name": "can_build_overlaid",
25753      "type": "Boolean",
25754      "desc": "True if element can be rebuild from a HTML page",
25755      "memberOf": "Roo.bootstrap.Component"
25756     },
25757     {
25758      "name": "dataId",
25759      "type": "string",
25760      "desc": "cutomer id",
25761      "memberOf": "Roo.bootstrap.Component"
25762     },
25763     {
25764      "name": "name",
25765      "type": "string",
25766      "desc": "Specifies name attribute",
25767      "memberOf": "Roo.bootstrap.Component"
25768     },
25769     {
25770      "name": "tooltip",
25771      "type": "string",
25772      "desc": "Text for the tooltip",
25773      "memberOf": "Roo.bootstrap.Component"
25774     },
25775     {
25776      "name": "container_method",
25777      "type": "string",
25778      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
25779      "memberOf": "Roo.bootstrap.Component"
25780     },
25781     {
25782      "name": "disableClass",
25783      "type": "String",
25784      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
25785      "memberOf": "Roo.Component"
25786     },
25787     {
25788      "name": "allowDomMove",
25789      "type": "Boolean",
25790      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
25791      "memberOf": "Roo.Component"
25792     },
25793     {
25794      "name": "hideMode",
25795      "type": "String",
25796      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
25797      "memberOf": "Roo.Component",
25798      "optvals": [
25799       "display",
25800       "visibility"
25801      ]
25802     },
25803     {
25804      "name": "actionMode",
25805      "type": "String",
25806      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
25807      "memberOf": "Roo.Component"
25808     },
25809     {
25810      "name": "listeners",
25811      "type": "Object",
25812      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
25813      "memberOf": "Roo.util.Observable"
25814     }
25815    ],
25816    "events": [
25817     {
25818      "name": "beforedestroy",
25819      "sig": "function (_self)\n{\n\n}",
25820      "type": "function",
25821      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
25822     },
25823     {
25824      "name": "beforehide",
25825      "sig": "function (_self)\n{\n\n}",
25826      "type": "function",
25827      "desc": "Fires before the component is hidden. Return false to stop the hide."
25828     },
25829     {
25830      "name": "beforerender",
25831      "sig": "function (_self)\n{\n\n}",
25832      "type": "function",
25833      "desc": "Fires before the component is rendered. Return false to stop the render."
25834     },
25835     {
25836      "name": "beforeshow",
25837      "sig": "function (_self)\n{\n\n}",
25838      "type": "function",
25839      "desc": "Fires before the component is shown.  Return false to stop the show."
25840     },
25841     {
25842      "name": "childrenrendered",
25843      "sig": "function (_self)\n{\n\n}",
25844      "type": "function",
25845      "desc": "Fires when the children have been rendered.."
25846     },
25847     {
25848      "name": "destroy",
25849      "sig": "function (_self)\n{\n\n}",
25850      "type": "function",
25851      "desc": "Fires after the component is destroyed."
25852     },
25853     {
25854      "name": "disable",
25855      "sig": "function (_self)\n{\n\n}",
25856      "type": "function",
25857      "desc": "Fires after the component is disabled."
25858     },
25859     {
25860      "name": "enable",
25861      "sig": "function (_self)\n{\n\n}",
25862      "type": "function",
25863      "desc": "Fires after the component is enabled."
25864     },
25865     {
25866      "name": "hide",
25867      "sig": "function (_self)\n{\n\n}",
25868      "type": "function",
25869      "desc": "Fires after the component is hidden."
25870     },
25871     {
25872      "name": "render",
25873      "sig": "function (_self)\n{\n\n}",
25874      "type": "function",
25875      "desc": "Fires after the component is rendered."
25876     },
25877     {
25878      "name": "show",
25879      "sig": "function (_self)\n{\n\n}",
25880      "type": "function",
25881      "desc": "Fires after the component is shown."
25882     }
25883    ],
25884    "methods": [
25885     {
25886      "name": "addEvents",
25887      "sig": "(Object object)",
25888      "type": "function",
25889      "desc": "Used to define events on this Observable"
25890     },
25891     {
25892      "name": "addListener",
25893      "sig": "(String eventName, Function handler, Object scope, Object options)",
25894      "type": "function",
25895      "desc": "Appends an event handler to this component"
25896     },
25897     {
25898      "name": "capture",
25899      "sig": "(Observable o, Function fn, Object scope)",
25900      "type": "function",
25901      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
25902     },
25903     {
25904      "name": "destroy",
25905      "sig": "()",
25906      "type": "function",
25907      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
25908     },
25909     {
25910      "name": "disable",
25911      "sig": "()",
25912      "type": "function",
25913      "desc": "Disable this component."
25914     },
25915     {
25916      "name": "enable",
25917      "sig": "()",
25918      "type": "function",
25919      "desc": "Enable this component."
25920     },
25921     {
25922      "name": "fireEvent",
25923      "sig": "(String eventName, Object... args)",
25924      "type": "function",
25925      "desc": "Fires the specified event with the passed parameters (minus the event name)."
25926     },
25927     {
25928      "name": "focus",
25929      "sig": "(Boolean selectText)",
25930      "type": "function",
25931      "desc": "Try to focus this component."
25932     },
25933     {
25934      "name": "getChildContainer",
25935      "sig": "()",
25936      "type": "function",
25937      "desc": "Fetch the element to add children to"
25938     },
25939     {
25940      "name": "getEl",
25941      "sig": "()",
25942      "type": "function",
25943      "desc": "Returns the underlying {@link Roo.Element}."
25944     },
25945     {
25946      "name": "getId",
25947      "sig": "()",
25948      "type": "function",
25949      "desc": "Returns the id of this component."
25950     },
25951     {
25952      "name": "hasListener",
25953      "sig": "(String eventName)",
25954      "type": "function",
25955      "desc": "Checks to see if this object has any listeners for a specified event"
25956     },
25957     {
25958      "name": "hide",
25959      "sig": "()",
25960      "type": "function",
25961      "desc": "Hide a component - adds 'hidden' class"
25962     },
25963     {
25964      "name": "initEvents",
25965      "sig": "()",
25966      "type": "function",
25967      "desc": "Initialize Events for the element"
25968     },
25969     {
25970      "name": "isVisible",
25971      "sig": "()",
25972      "type": "function",
25973      "desc": "Returns true if this component is visible."
25974     },
25975     {
25976      "name": "on",
25977      "sig": "(String eventName, Function handler, Object scope, Object options)",
25978      "type": "function",
25979      "desc": "Appends an event handler to this element (shorthand for addListener)"
25980     },
25981     {
25982      "name": "purgeListeners",
25983      "sig": "()",
25984      "type": "function",
25985      "desc": "Removes all listeners for this object"
25986     },
25987     {
25988      "name": "releaseCapture",
25989      "sig": "(Observable o)",
25990      "type": "function",
25991      "desc": "Removes <b>all</b> added captures from the Observable."
25992     },
25993     {
25994      "name": "removeListener",
25995      "sig": "(String eventName, Function handler, Object scope)",
25996      "type": "function",
25997      "desc": "Removes a listener"
25998     },
25999     {
26000      "name": "render",
26001      "sig": "(String/HTMLElement/Element container)",
26002      "type": "function",
26003      "desc": "If this is a lazy rendering component, render it to its container element."
26004     },
26005     {
26006      "name": "setDisabled",
26007      "sig": "(Boolean disabled)",
26008      "type": "function",
26009      "desc": "Convenience function for setting disabled/enabled by boolean."
26010     },
26011     {
26012      "name": "setVisible",
26013      "sig": "(Boolean visible)",
26014      "type": "function",
26015      "desc": "Convenience function to hide or show this component by boolean."
26016     },
26017     {
26018      "name": "show",
26019      "sig": "()",
26020      "type": "function",
26021      "desc": "Show a component - removes 'hidden' class"
26022     },
26023     {
26024      "name": "tooltipEl",
26025      "sig": "()",
26026      "type": "function",
26027      "desc": "Fetch the element to display the tooltip on."
26028     },
26029     {
26030      "name": "un",
26031      "sig": "(String eventName, Function handler, Object scope)",
26032      "type": "function",
26033      "desc": "Removes a listener (shorthand for removeListener)"
26034     }
26035    ]
26036   },
26037   "Roo.bootstrap.Link": {
26038    "props": [
26039     {
26040      "name": "alt",
26041      "type": "String",
26042      "desc": "image alternative text",
26043      "memberOf": ""
26044     },
26045     {
26046      "name": "href",
26047      "type": "String",
26048      "desc": "a tag href",
26049      "memberOf": ""
26050     },
26051     {
26052      "name": "target",
26053      "type": "String",
26054      "desc": "target for a href.",
26055      "memberOf": "",
26056      "optvals": [
26057       "_self",
26058       "_blank",
26059       "_parent",
26060       "_top"
26061      ]
26062     },
26063     {
26064      "name": "html",
26065      "type": "String",
26066      "desc": "the content of the link.",
26067      "memberOf": ""
26068     },
26069     {
26070      "name": "anchor",
26071      "type": "String",
26072      "desc": "name for the anchor link",
26073      "memberOf": ""
26074     },
26075     {
26076      "name": "fa",
26077      "type": "String",
26078      "desc": "- favicon",
26079      "memberOf": ""
26080     },
26081     {
26082      "name": "preventDefault",
26083      "type": "Boolean",
26084      "desc": "default false",
26085      "memberOf": "",
26086      "optvals": [
26087       "true",
26088       "false"
26089      ]
26090     },
26091     {
26092      "name": "cls",
26093      "type": "String",
26094      "desc": "css class",
26095      "memberOf": "Roo.bootstrap.Component"
26096     },
26097     {
26098      "name": "style",
26099      "type": "String",
26100      "desc": "any extra css",
26101      "memberOf": "Roo.bootstrap.Component"
26102     },
26103     {
26104      "name": "xattr",
26105      "type": "Object",
26106      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
26107      "memberOf": "Roo.bootstrap.Component"
26108     },
26109     {
26110      "name": "can_build_overlaid",
26111      "type": "Boolean",
26112      "desc": "True if element can be rebuild from a HTML page",
26113      "memberOf": "Roo.bootstrap.Component"
26114     },
26115     {
26116      "name": "dataId",
26117      "type": "string",
26118      "desc": "cutomer id",
26119      "memberOf": "Roo.bootstrap.Component"
26120     },
26121     {
26122      "name": "name",
26123      "type": "string",
26124      "desc": "Specifies name attribute",
26125      "memberOf": "Roo.bootstrap.Component"
26126     },
26127     {
26128      "name": "tooltip",
26129      "type": "string",
26130      "desc": "Text for the tooltip",
26131      "memberOf": "Roo.bootstrap.Component"
26132     },
26133     {
26134      "name": "container_method",
26135      "type": "string",
26136      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
26137      "memberOf": "Roo.bootstrap.Component"
26138     },
26139     {
26140      "name": "disableClass",
26141      "type": "String",
26142      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
26143      "memberOf": "Roo.Component"
26144     },
26145     {
26146      "name": "allowDomMove",
26147      "type": "Boolean",
26148      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
26149      "memberOf": "Roo.Component"
26150     },
26151     {
26152      "name": "hideMode",
26153      "type": "String",
26154      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
26155      "memberOf": "Roo.Component",
26156      "optvals": [
26157       "display",
26158       "visibility"
26159      ]
26160     },
26161     {
26162      "name": "actionMode",
26163      "type": "String",
26164      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
26165      "memberOf": "Roo.Component"
26166     },
26167     {
26168      "name": "listeners",
26169      "type": "Object",
26170      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
26171      "memberOf": "Roo.util.Observable"
26172     }
26173    ],
26174    "events": [
26175     {
26176      "name": "beforedestroy",
26177      "sig": "function (_self)\n{\n\n}",
26178      "type": "function",
26179      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
26180     },
26181     {
26182      "name": "beforehide",
26183      "sig": "function (_self)\n{\n\n}",
26184      "type": "function",
26185      "desc": "Fires before the component is hidden. Return false to stop the hide."
26186     },
26187     {
26188      "name": "beforerender",
26189      "sig": "function (_self)\n{\n\n}",
26190      "type": "function",
26191      "desc": "Fires before the component is rendered. Return false to stop the render."
26192     },
26193     {
26194      "name": "beforeshow",
26195      "sig": "function (_self)\n{\n\n}",
26196      "type": "function",
26197      "desc": "Fires before the component is shown.  Return false to stop the show."
26198     },
26199     {
26200      "name": "childrenrendered",
26201      "sig": "function (_self)\n{\n\n}",
26202      "type": "function",
26203      "desc": "Fires when the children have been rendered.."
26204     },
26205     {
26206      "name": "click",
26207      "sig": "function (e)\n{\n\n}",
26208      "type": "function",
26209      "desc": "The img click event for the img."
26210     },
26211     {
26212      "name": "destroy",
26213      "sig": "function (_self)\n{\n\n}",
26214      "type": "function",
26215      "desc": "Fires after the component is destroyed."
26216     },
26217     {
26218      "name": "disable",
26219      "sig": "function (_self)\n{\n\n}",
26220      "type": "function",
26221      "desc": "Fires after the component is disabled."
26222     },
26223     {
26224      "name": "enable",
26225      "sig": "function (_self)\n{\n\n}",
26226      "type": "function",
26227      "desc": "Fires after the component is enabled."
26228     },
26229     {
26230      "name": "hide",
26231      "sig": "function (_self)\n{\n\n}",
26232      "type": "function",
26233      "desc": "Fires after the component is hidden."
26234     },
26235     {
26236      "name": "render",
26237      "sig": "function (_self)\n{\n\n}",
26238      "type": "function",
26239      "desc": "Fires after the component is rendered."
26240     },
26241     {
26242      "name": "show",
26243      "sig": "function (_self)\n{\n\n}",
26244      "type": "function",
26245      "desc": "Fires after the component is shown."
26246     }
26247    ],
26248    "methods": [
26249     {
26250      "name": "addEvents",
26251      "sig": "(Object object)",
26252      "type": "function",
26253      "desc": "Used to define events on this Observable"
26254     },
26255     {
26256      "name": "addListener",
26257      "sig": "(String eventName, Function handler, Object scope, Object options)",
26258      "type": "function",
26259      "desc": "Appends an event handler to this component"
26260     },
26261     {
26262      "name": "capture",
26263      "sig": "(Observable o, Function fn, Object scope)",
26264      "type": "function",
26265      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
26266     },
26267     {
26268      "name": "destroy",
26269      "sig": "()",
26270      "type": "function",
26271      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
26272     },
26273     {
26274      "name": "disable",
26275      "sig": "()",
26276      "type": "function",
26277      "desc": "Disable this component."
26278     },
26279     {
26280      "name": "enable",
26281      "sig": "()",
26282      "type": "function",
26283      "desc": "Enable this component."
26284     },
26285     {
26286      "name": "fireEvent",
26287      "sig": "(String eventName, Object... args)",
26288      "type": "function",
26289      "desc": "Fires the specified event with the passed parameters (minus the event name)."
26290     },
26291     {
26292      "name": "focus",
26293      "sig": "(Boolean selectText)",
26294      "type": "function",
26295      "desc": "Try to focus this component."
26296     },
26297     {
26298      "name": "getChildContainer",
26299      "sig": "()",
26300      "type": "function",
26301      "desc": "Fetch the element to add children to"
26302     },
26303     {
26304      "name": "getEl",
26305      "sig": "()",
26306      "type": "function",
26307      "desc": "Returns the underlying {@link Roo.Element}."
26308     },
26309     {
26310      "name": "getId",
26311      "sig": "()",
26312      "type": "function",
26313      "desc": "Returns the id of this component."
26314     },
26315     {
26316      "name": "hasListener",
26317      "sig": "(String eventName)",
26318      "type": "function",
26319      "desc": "Checks to see if this object has any listeners for a specified event"
26320     },
26321     {
26322      "name": "hide",
26323      "sig": "()",
26324      "type": "function",
26325      "desc": "Hide a component - adds 'hidden' class"
26326     },
26327     {
26328      "name": "initEvents",
26329      "sig": "()",
26330      "type": "function",
26331      "desc": "Initialize Events for the element"
26332     },
26333     {
26334      "name": "isVisible",
26335      "sig": "()",
26336      "type": "function",
26337      "desc": "Returns true if this component is visible."
26338     },
26339     {
26340      "name": "on",
26341      "sig": "(String eventName, Function handler, Object scope, Object options)",
26342      "type": "function",
26343      "desc": "Appends an event handler to this element (shorthand for addListener)"
26344     },
26345     {
26346      "name": "purgeListeners",
26347      "sig": "()",
26348      "type": "function",
26349      "desc": "Removes all listeners for this object"
26350     },
26351     {
26352      "name": "releaseCapture",
26353      "sig": "(Observable o)",
26354      "type": "function",
26355      "desc": "Removes <b>all</b> added captures from the Observable."
26356     },
26357     {
26358      "name": "removeListener",
26359      "sig": "(String eventName, Function handler, Object scope)",
26360      "type": "function",
26361      "desc": "Removes a listener"
26362     },
26363     {
26364      "name": "render",
26365      "sig": "(String/HTMLElement/Element container)",
26366      "type": "function",
26367      "desc": "If this is a lazy rendering component, render it to its container element."
26368     },
26369     {
26370      "name": "setDisabled",
26371      "sig": "(Boolean disabled)",
26372      "type": "function",
26373      "desc": "Convenience function for setting disabled/enabled by boolean."
26374     },
26375     {
26376      "name": "setVisible",
26377      "sig": "(Boolean visible)",
26378      "type": "function",
26379      "desc": "Convenience function to hide or show this component by boolean."
26380     },
26381     {
26382      "name": "show",
26383      "sig": "()",
26384      "type": "function",
26385      "desc": "Show a component - removes 'hidden' class"
26386     },
26387     {
26388      "name": "tooltipEl",
26389      "sig": "()",
26390      "type": "function",
26391      "desc": "Fetch the element to display the tooltip on."
26392     },
26393     {
26394      "name": "un",
26395      "sig": "(String eventName, Function handler, Object scope)",
26396      "type": "function",
26397      "desc": "Removes a listener (shorthand for removeListener)"
26398     }
26399    ]
26400   },
26401   "Roo.bootstrap.LocationPicker": {
26402    "props": [
26403     {
26404      "name": "latitude",
26405      "type": "Number",
26406      "desc": "Position when init default 0",
26407      "memberOf": ""
26408     },
26409     {
26410      "name": "longitude",
26411      "type": "Number",
26412      "desc": "Position when init default 0",
26413      "memberOf": ""
26414     },
26415     {
26416      "name": "zoom",
26417      "type": "Number",
26418      "desc": "default 15",
26419      "memberOf": ""
26420     },
26421     {
26422      "name": "mapTypeId",
26423      "type": "String",
26424      "desc": "default google.maps.MapTypeId.ROADMAP",
26425      "memberOf": ""
26426     },
26427     {
26428      "name": "mapTypeControl",
26429      "type": "Boolean",
26430      "desc": "default false",
26431      "memberOf": ""
26432     },
26433     {
26434      "name": "disableDoubleClickZoom",
26435      "type": "Boolean",
26436      "desc": "default false",
26437      "memberOf": ""
26438     },
26439     {
26440      "name": "scrollwheel",
26441      "type": "Boolean",
26442      "desc": "default true",
26443      "memberOf": ""
26444     },
26445     {
26446      "name": "streetViewControl",
26447      "type": "Boolean",
26448      "desc": "default false",
26449      "memberOf": ""
26450     },
26451     {
26452      "name": "radius",
26453      "type": "Number",
26454      "desc": "default 0",
26455      "memberOf": ""
26456     },
26457     {
26458      "name": "locationName",
26459      "type": "String",
26460      "desc": "",
26461      "memberOf": ""
26462     },
26463     {
26464      "name": "draggable",
26465      "type": "Boolean",
26466      "desc": "default true",
26467      "memberOf": ""
26468     },
26469     {
26470      "name": "enableAutocomplete",
26471      "type": "Boolean",
26472      "desc": "default false",
26473      "memberOf": ""
26474     },
26475     {
26476      "name": "enableReverseGeocode",
26477      "type": "Boolean",
26478      "desc": "default true",
26479      "memberOf": ""
26480     },
26481     {
26482      "name": "markerTitle",
26483      "type": "String",
26484      "desc": "",
26485      "memberOf": ""
26486     },
26487     {
26488      "name": "cls",
26489      "type": "String",
26490      "desc": "css class",
26491      "memberOf": "Roo.bootstrap.Component"
26492     },
26493     {
26494      "name": "style",
26495      "type": "String",
26496      "desc": "any extra css",
26497      "memberOf": "Roo.bootstrap.Component"
26498     },
26499     {
26500      "name": "xattr",
26501      "type": "Object",
26502      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
26503      "memberOf": "Roo.bootstrap.Component"
26504     },
26505     {
26506      "name": "can_build_overlaid",
26507      "type": "Boolean",
26508      "desc": "True if element can be rebuild from a HTML page",
26509      "memberOf": "Roo.bootstrap.Component"
26510     },
26511     {
26512      "name": "dataId",
26513      "type": "string",
26514      "desc": "cutomer id",
26515      "memberOf": "Roo.bootstrap.Component"
26516     },
26517     {
26518      "name": "name",
26519      "type": "string",
26520      "desc": "Specifies name attribute",
26521      "memberOf": "Roo.bootstrap.Component"
26522     },
26523     {
26524      "name": "tooltip",
26525      "type": "string",
26526      "desc": "Text for the tooltip",
26527      "memberOf": "Roo.bootstrap.Component"
26528     },
26529     {
26530      "name": "container_method",
26531      "type": "string",
26532      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
26533      "memberOf": "Roo.bootstrap.Component"
26534     },
26535     {
26536      "name": "disableClass",
26537      "type": "String",
26538      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
26539      "memberOf": "Roo.Component"
26540     },
26541     {
26542      "name": "allowDomMove",
26543      "type": "Boolean",
26544      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
26545      "memberOf": "Roo.Component"
26546     },
26547     {
26548      "name": "hideMode",
26549      "type": "String",
26550      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
26551      "memberOf": "Roo.Component",
26552      "optvals": [
26553       "display",
26554       "visibility"
26555      ]
26556     },
26557     {
26558      "name": "actionMode",
26559      "type": "String",
26560      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
26561      "memberOf": "Roo.Component"
26562     },
26563     {
26564      "name": "listeners",
26565      "type": "Object",
26566      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
26567      "memberOf": "Roo.util.Observable"
26568     }
26569    ],
26570    "events": [
26571     {
26572      "name": "OverlayViewDraw",
26573      "sig": "function (_self)\n{\n\n}",
26574      "type": "function",
26575      "desc": "Fires when OverlayView Draw"
26576     },
26577     {
26578      "name": "OverlayViewHide",
26579      "sig": "function (_self)\n{\n\n}",
26580      "type": "function",
26581      "desc": "Fires when OverlayView Draw"
26582     },
26583     {
26584      "name": "OverlayViewOnAdd",
26585      "sig": "function (_self)\n{\n\n}",
26586      "type": "function",
26587      "desc": "Fires when OverlayView Draw"
26588     },
26589     {
26590      "name": "OverlayViewOnRemove",
26591      "sig": "function (_self)\n{\n\n}",
26592      "type": "function",
26593      "desc": "Fires when OverlayView Draw"
26594     },
26595     {
26596      "name": "OverlayViewShow",
26597      "sig": "function (_self, cpx)\n{\n\n}",
26598      "type": "function",
26599      "desc": "Fires when OverlayView Draw"
26600     },
26601     {
26602      "name": "beforedestroy",
26603      "sig": "function (_self)\n{\n\n}",
26604      "type": "function",
26605      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
26606     },
26607     {
26608      "name": "beforehide",
26609      "sig": "function (_self)\n{\n\n}",
26610      "type": "function",
26611      "desc": "Fires before the component is hidden. Return false to stop the hide."
26612     },
26613     {
26614      "name": "beforerender",
26615      "sig": "function (_self)\n{\n\n}",
26616      "type": "function",
26617      "desc": "Fires before the component is rendered. Return false to stop the render."
26618     },
26619     {
26620      "name": "beforeshow",
26621      "sig": "function (_self)\n{\n\n}",
26622      "type": "function",
26623      "desc": "Fires before the component is shown.  Return false to stop the show."
26624     },
26625     {
26626      "name": "childrenrendered",
26627      "sig": "function (_self)\n{\n\n}",
26628      "type": "function",
26629      "desc": "Fires when the children have been rendered.."
26630     },
26631     {
26632      "name": "destroy",
26633      "sig": "function (_self)\n{\n\n}",
26634      "type": "function",
26635      "desc": "Fires after the component is destroyed."
26636     },
26637     {
26638      "name": "disable",
26639      "sig": "function (_self)\n{\n\n}",
26640      "type": "function",
26641      "desc": "Fires after the component is disabled."
26642     },
26643     {
26644      "name": "enable",
26645      "sig": "function (_self)\n{\n\n}",
26646      "type": "function",
26647      "desc": "Fires after the component is enabled."
26648     },
26649     {
26650      "name": "hide",
26651      "sig": "function (_self)\n{\n\n}",
26652      "type": "function",
26653      "desc": "Fires when the map hide."
26654     },
26655     {
26656      "name": "initial",
26657      "sig": "function (_self, location)\n{\n\n}",
26658      "type": "function",
26659      "desc": "Fires when the picker initialized."
26660     },
26661     {
26662      "name": "loadexception",
26663      "sig": "function (_self)\n{\n\n}",
26664      "type": "function",
26665      "desc": "Fires when load google lib failed."
26666     },
26667     {
26668      "name": "mapClick",
26669      "sig": "function (_self, e)\n{\n\n}",
26670      "type": "function",
26671      "desc": "Fires when click the map."
26672     },
26673     {
26674      "name": "mapRightClick",
26675      "sig": "function (_self, e)\n{\n\n}",
26676      "type": "function",
26677      "desc": "Fires when right click the map."
26678     },
26679     {
26680      "name": "markerClick",
26681      "sig": "function (_self, e)\n{\n\n}",
26682      "type": "function",
26683      "desc": "Fires when click the marker."
26684     },
26685     {
26686      "name": "markerRightClick",
26687      "sig": "function (_self, e)\n{\n\n}",
26688      "type": "function",
26689      "desc": "Fires when right click the marker."
26690     },
26691     {
26692      "name": "positionchanged",
26693      "sig": "function (_self, location)\n{\n\n}",
26694      "type": "function",
26695      "desc": "Fires when the picker position changed."
26696     },
26697     {
26698      "name": "render",
26699      "sig": "function (_self)\n{\n\n}",
26700      "type": "function",
26701      "desc": "Fires after the component is rendered."
26702     },
26703     {
26704      "name": "resize",
26705      "sig": "function (_self)\n{\n\n}",
26706      "type": "function",
26707      "desc": "Fires when the map resize."
26708     },
26709     {
26710      "name": "show",
26711      "sig": "function (_self)\n{\n\n}",
26712      "type": "function",
26713      "desc": "Fires when the map show."
26714     }
26715    ],
26716    "methods": [
26717     {
26718      "name": "addEvents",
26719      "sig": "(Object object)",
26720      "type": "function",
26721      "desc": "Used to define events on this Observable"
26722     },
26723     {
26724      "name": "addListener",
26725      "sig": "(String eventName, Function handler, Object scope, Object options)",
26726      "type": "function",
26727      "desc": "Appends an event handler to this component"
26728     },
26729     {
26730      "name": "capture",
26731      "sig": "(Observable o, Function fn, Object scope)",
26732      "type": "function",
26733      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
26734     },
26735     {
26736      "name": "destroy",
26737      "sig": "()",
26738      "type": "function",
26739      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
26740     },
26741     {
26742      "name": "disable",
26743      "sig": "()",
26744      "type": "function",
26745      "desc": "Disable this component."
26746     },
26747     {
26748      "name": "enable",
26749      "sig": "()",
26750      "type": "function",
26751      "desc": "Enable this component."
26752     },
26753     {
26754      "name": "fireEvent",
26755      "sig": "(String eventName, Object... args)",
26756      "type": "function",
26757      "desc": "Fires the specified event with the passed parameters (minus the event name)."
26758     },
26759     {
26760      "name": "focus",
26761      "sig": "(Boolean selectText)",
26762      "type": "function",
26763      "desc": "Try to focus this component."
26764     },
26765     {
26766      "name": "getChildContainer",
26767      "sig": "()",
26768      "type": "function",
26769      "desc": "Fetch the element to add children to"
26770     },
26771     {
26772      "name": "getEl",
26773      "sig": "()",
26774      "type": "function",
26775      "desc": "Returns the underlying {@link Roo.Element}."
26776     },
26777     {
26778      "name": "getId",
26779      "sig": "()",
26780      "type": "function",
26781      "desc": "Returns the id of this component."
26782     },
26783     {
26784      "name": "hasListener",
26785      "sig": "(String eventName)",
26786      "type": "function",
26787      "desc": "Checks to see if this object has any listeners for a specified event"
26788     },
26789     {
26790      "name": "hide",
26791      "sig": "()",
26792      "type": "function",
26793      "desc": "Hide a component - adds 'hidden' class"
26794     },
26795     {
26796      "name": "initEvents",
26797      "sig": "()",
26798      "type": "function",
26799      "desc": "Initialize Events for the element"
26800     },
26801     {
26802      "name": "isVisible",
26803      "sig": "()",
26804      "type": "function",
26805      "desc": "Returns true if this component is visible."
26806     },
26807     {
26808      "name": "on",
26809      "sig": "(String eventName, Function handler, Object scope, Object options)",
26810      "type": "function",
26811      "desc": "Appends an event handler to this element (shorthand for addListener)"
26812     },
26813     {
26814      "name": "purgeListeners",
26815      "sig": "()",
26816      "type": "function",
26817      "desc": "Removes all listeners for this object"
26818     },
26819     {
26820      "name": "releaseCapture",
26821      "sig": "(Observable o)",
26822      "type": "function",
26823      "desc": "Removes <b>all</b> added captures from the Observable."
26824     },
26825     {
26826      "name": "removeListener",
26827      "sig": "(String eventName, Function handler, Object scope)",
26828      "type": "function",
26829      "desc": "Removes a listener"
26830     },
26831     {
26832      "name": "render",
26833      "sig": "(String/HTMLElement/Element container)",
26834      "type": "function",
26835      "desc": "If this is a lazy rendering component, render it to its container element."
26836     },
26837     {
26838      "name": "setDisabled",
26839      "sig": "(Boolean disabled)",
26840      "type": "function",
26841      "desc": "Convenience function for setting disabled/enabled by boolean."
26842     },
26843     {
26844      "name": "setVisible",
26845      "sig": "(Boolean visible)",
26846      "type": "function",
26847      "desc": "Convenience function to hide or show this component by boolean."
26848     },
26849     {
26850      "name": "show",
26851      "sig": "()",
26852      "type": "function",
26853      "desc": "Show a component - removes 'hidden' class"
26854     },
26855     {
26856      "name": "tooltipEl",
26857      "sig": "()",
26858      "type": "function",
26859      "desc": "Fetch the element to display the tooltip on."
26860     },
26861     {
26862      "name": "un",
26863      "sig": "(String eventName, Function handler, Object scope)",
26864      "type": "function",
26865      "desc": "Removes a listener (shorthand for removeListener)"
26866     }
26867    ]
26868   },
26869   "Roo.bootstrap.MasonryBrick": {
26870    "props": [
26871     {
26872      "name": "title",
26873      "type": "String",
26874      "desc": "",
26875      "memberOf": ""
26876     },
26877     {
26878      "name": "html",
26879      "type": "String",
26880      "desc": "",
26881      "memberOf": ""
26882     },
26883     {
26884      "name": "bgimage",
26885      "type": "String",
26886      "desc": "",
26887      "memberOf": ""
26888     },
26889     {
26890      "name": "videourl",
26891      "type": "String",
26892      "desc": "",
26893      "memberOf": ""
26894     },
26895     {
26896      "name": "cls",
26897      "type": "String",
26898      "desc": "",
26899      "memberOf": ""
26900     },
26901     {
26902      "name": "href",
26903      "type": "String",
26904      "desc": "",
26905      "memberOf": ""
26906     },
26907     {
26908      "name": "(xs|sm|md|md-left|md-right|tall|wide)",
26909      "type": "String",
26910      "desc": "size",
26911      "memberOf": ""
26912     },
26913     {
26914      "name": "(center|bottom)",
26915      "type": "String",
26916      "desc": "placetitle",
26917      "memberOf": ""
26918     },
26919     {
26920      "name": "isFitContainer",
26921      "type": "Boolean",
26922      "desc": "defalut true",
26923      "memberOf": ""
26924     },
26925     {
26926      "name": "preventDefault",
26927      "type": "Boolean",
26928      "desc": "defalut false",
26929      "memberOf": ""
26930     },
26931     {
26932      "name": "style",
26933      "type": "String",
26934      "desc": "any extra css",
26935      "memberOf": "Roo.bootstrap.Component"
26936     },
26937     {
26938      "name": "xattr",
26939      "type": "Object",
26940      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
26941      "memberOf": "Roo.bootstrap.Component"
26942     },
26943     {
26944      "name": "can_build_overlaid",
26945      "type": "Boolean",
26946      "desc": "True if element can be rebuild from a HTML page",
26947      "memberOf": "Roo.bootstrap.Component"
26948     },
26949     {
26950      "name": "dataId",
26951      "type": "string",
26952      "desc": "cutomer id",
26953      "memberOf": "Roo.bootstrap.Component"
26954     },
26955     {
26956      "name": "name",
26957      "type": "string",
26958      "desc": "Specifies name attribute",
26959      "memberOf": "Roo.bootstrap.Component"
26960     },
26961     {
26962      "name": "tooltip",
26963      "type": "string",
26964      "desc": "Text for the tooltip",
26965      "memberOf": "Roo.bootstrap.Component"
26966     },
26967     {
26968      "name": "container_method",
26969      "type": "string",
26970      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
26971      "memberOf": "Roo.bootstrap.Component"
26972     },
26973     {
26974      "name": "disableClass",
26975      "type": "String",
26976      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
26977      "memberOf": "Roo.Component"
26978     },
26979     {
26980      "name": "allowDomMove",
26981      "type": "Boolean",
26982      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
26983      "memberOf": "Roo.Component"
26984     },
26985     {
26986      "name": "hideMode",
26987      "type": "String",
26988      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
26989      "memberOf": "Roo.Component",
26990      "optvals": [
26991       "display",
26992       "visibility"
26993      ]
26994     },
26995     {
26996      "name": "actionMode",
26997      "type": "String",
26998      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
26999      "memberOf": "Roo.Component"
27000     },
27001     {
27002      "name": "listeners",
27003      "type": "Object",
27004      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
27005      "memberOf": "Roo.util.Observable"
27006     }
27007    ],
27008    "events": [
27009     {
27010      "name": "beforedestroy",
27011      "sig": "function (_self)\n{\n\n}",
27012      "type": "function",
27013      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
27014     },
27015     {
27016      "name": "beforehide",
27017      "sig": "function (_self)\n{\n\n}",
27018      "type": "function",
27019      "desc": "Fires before the component is hidden. Return false to stop the hide."
27020     },
27021     {
27022      "name": "beforerender",
27023      "sig": "function (_self)\n{\n\n}",
27024      "type": "function",
27025      "desc": "Fires before the component is rendered. Return false to stop the render."
27026     },
27027     {
27028      "name": "beforeshow",
27029      "sig": "function (_self)\n{\n\n}",
27030      "type": "function",
27031      "desc": "Fires before the component is shown.  Return false to stop the show."
27032     },
27033     {
27034      "name": "childrenrendered",
27035      "sig": "function (_self)\n{\n\n}",
27036      "type": "function",
27037      "desc": "Fires when the children have been rendered.."
27038     },
27039     {
27040      "name": "click",
27041      "sig": "function (_self, e)\n{\n\n}",
27042      "type": "function",
27043      "desc": "When a MasonryBrick is clcik"
27044     },
27045     {
27046      "name": "destroy",
27047      "sig": "function (_self)\n{\n\n}",
27048      "type": "function",
27049      "desc": "Fires after the component is destroyed."
27050     },
27051     {
27052      "name": "disable",
27053      "sig": "function (_self)\n{\n\n}",
27054      "type": "function",
27055      "desc": "Fires after the component is disabled."
27056     },
27057     {
27058      "name": "enable",
27059      "sig": "function (_self)\n{\n\n}",
27060      "type": "function",
27061      "desc": "Fires after the component is enabled."
27062     },
27063     {
27064      "name": "hide",
27065      "sig": "function (_self)\n{\n\n}",
27066      "type": "function",
27067      "desc": "Fires after the component is hidden."
27068     },
27069     {
27070      "name": "render",
27071      "sig": "function (_self)\n{\n\n}",
27072      "type": "function",
27073      "desc": "Fires after the component is rendered."
27074     },
27075     {
27076      "name": "show",
27077      "sig": "function (_self)\n{\n\n}",
27078      "type": "function",
27079      "desc": "Fires after the component is shown."
27080     }
27081    ],
27082    "methods": [
27083     {
27084      "name": "addEvents",
27085      "sig": "(Object object)",
27086      "type": "function",
27087      "desc": "Used to define events on this Observable"
27088     },
27089     {
27090      "name": "addListener",
27091      "sig": "(String eventName, Function handler, Object scope, Object options)",
27092      "type": "function",
27093      "desc": "Appends an event handler to this component"
27094     },
27095     {
27096      "name": "capture",
27097      "sig": "(Observable o, Function fn, Object scope)",
27098      "type": "function",
27099      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
27100     },
27101     {
27102      "name": "destroy",
27103      "sig": "()",
27104      "type": "function",
27105      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
27106     },
27107     {
27108      "name": "disable",
27109      "sig": "()",
27110      "type": "function",
27111      "desc": "Disable this component."
27112     },
27113     {
27114      "name": "enable",
27115      "sig": "()",
27116      "type": "function",
27117      "desc": "Enable this component."
27118     },
27119     {
27120      "name": "fireEvent",
27121      "sig": "(String eventName, Object... args)",
27122      "type": "function",
27123      "desc": "Fires the specified event with the passed parameters (minus the event name)."
27124     },
27125     {
27126      "name": "focus",
27127      "sig": "(Boolean selectText)",
27128      "type": "function",
27129      "desc": "Try to focus this component."
27130     },
27131     {
27132      "name": "getChildContainer",
27133      "sig": "()",
27134      "type": "function",
27135      "desc": "Fetch the element to add children to"
27136     },
27137     {
27138      "name": "getEl",
27139      "sig": "()",
27140      "type": "function",
27141      "desc": "Returns the underlying {@link Roo.Element}."
27142     },
27143     {
27144      "name": "getId",
27145      "sig": "()",
27146      "type": "function",
27147      "desc": "Returns the id of this component."
27148     },
27149     {
27150      "name": "hasListener",
27151      "sig": "(String eventName)",
27152      "type": "function",
27153      "desc": "Checks to see if this object has any listeners for a specified event"
27154     },
27155     {
27156      "name": "hide",
27157      "sig": "()",
27158      "type": "function",
27159      "desc": "Hide a component - adds 'hidden' class"
27160     },
27161     {
27162      "name": "initEvents",
27163      "sig": "()",
27164      "type": "function",
27165      "desc": "Initialize Events for the element"
27166     },
27167     {
27168      "name": "isVisible",
27169      "sig": "()",
27170      "type": "function",
27171      "desc": "Returns true if this component is visible."
27172     },
27173     {
27174      "name": "on",
27175      "sig": "(String eventName, Function handler, Object scope, Object options)",
27176      "type": "function",
27177      "desc": "Appends an event handler to this element (shorthand for addListener)"
27178     },
27179     {
27180      "name": "purgeListeners",
27181      "sig": "()",
27182      "type": "function",
27183      "desc": "Removes all listeners for this object"
27184     },
27185     {
27186      "name": "releaseCapture",
27187      "sig": "(Observable o)",
27188      "type": "function",
27189      "desc": "Removes <b>all</b> added captures from the Observable."
27190     },
27191     {
27192      "name": "removeListener",
27193      "sig": "(String eventName, Function handler, Object scope)",
27194      "type": "function",
27195      "desc": "Removes a listener"
27196     },
27197     {
27198      "name": "render",
27199      "sig": "(String/HTMLElement/Element container)",
27200      "type": "function",
27201      "desc": "If this is a lazy rendering component, render it to its container element."
27202     },
27203     {
27204      "name": "setDisabled",
27205      "sig": "(Boolean disabled)",
27206      "type": "function",
27207      "desc": "Convenience function for setting disabled/enabled by boolean."
27208     },
27209     {
27210      "name": "setVisible",
27211      "sig": "(Boolean visible)",
27212      "type": "function",
27213      "desc": "Convenience function to hide or show this component by boolean."
27214     },
27215     {
27216      "name": "show",
27217      "sig": "()",
27218      "type": "function",
27219      "desc": "Show a component - removes 'hidden' class"
27220     },
27221     {
27222      "name": "tooltipEl",
27223      "sig": "()",
27224      "type": "function",
27225      "desc": "Fetch the element to display the tooltip on."
27226     },
27227     {
27228      "name": "un",
27229      "sig": "(String eventName, Function handler, Object scope)",
27230      "type": "function",
27231      "desc": "Removes a listener (shorthand for removeListener)"
27232     }
27233    ]
27234   },
27235   "Roo.bootstrap.Menu": {
27236    "props": [
27237     {
27238      "name": "type",
27239      "type": "String",
27240      "desc": "type of menu",
27241      "memberOf": "",
27242      "optvals": [
27243       "dropdown",
27244       "treeview",
27245       "submenu"
27246      ]
27247     },
27248     {
27249      "name": "hidden",
27250      "type": "bool",
27251      "desc": "if the menu should be hidden when rendered.",
27252      "memberOf": ""
27253     },
27254     {
27255      "name": "stopEvent",
27256      "type": "bool",
27257      "desc": "Stop event after trigger press (default true)",
27258      "memberOf": "",
27259      "optvals": [
27260       "true",
27261       "false"
27262      ]
27263     },
27264     {
27265      "name": "isLink",
27266      "type": "bool",
27267      "desc": "the menu has link disable auto expand and collaspe (default false)",
27268      "memberOf": "",
27269      "optvals": [
27270       "true",
27271       "false"
27272      ]
27273     },
27274     {
27275      "name": "registerMenu",
27276      "type": "Boolean",
27277      "desc": "True (default) - means that clicking on screen etc. hides it.",
27278      "memberOf": ""
27279     },
27280     {
27281      "name": "cls",
27282      "type": "String",
27283      "desc": "css class",
27284      "memberOf": "Roo.bootstrap.Component"
27285     },
27286     {
27287      "name": "style",
27288      "type": "String",
27289      "desc": "any extra css",
27290      "memberOf": "Roo.bootstrap.Component"
27291     },
27292     {
27293      "name": "xattr",
27294      "type": "Object",
27295      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
27296      "memberOf": "Roo.bootstrap.Component"
27297     },
27298     {
27299      "name": "can_build_overlaid",
27300      "type": "Boolean",
27301      "desc": "True if element can be rebuild from a HTML page",
27302      "memberOf": "Roo.bootstrap.Component"
27303     },
27304     {
27305      "name": "dataId",
27306      "type": "string",
27307      "desc": "cutomer id",
27308      "memberOf": "Roo.bootstrap.Component"
27309     },
27310     {
27311      "name": "name",
27312      "type": "string",
27313      "desc": "Specifies name attribute",
27314      "memberOf": "Roo.bootstrap.Component"
27315     },
27316     {
27317      "name": "tooltip",
27318      "type": "string",
27319      "desc": "Text for the tooltip",
27320      "memberOf": "Roo.bootstrap.Component"
27321     },
27322     {
27323      "name": "container_method",
27324      "type": "string",
27325      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
27326      "memberOf": "Roo.bootstrap.Component"
27327     },
27328     {
27329      "name": "disableClass",
27330      "type": "String",
27331      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
27332      "memberOf": "Roo.Component"
27333     },
27334     {
27335      "name": "allowDomMove",
27336      "type": "Boolean",
27337      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
27338      "memberOf": "Roo.Component"
27339     },
27340     {
27341      "name": "hideMode",
27342      "type": "String",
27343      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
27344      "memberOf": "Roo.Component",
27345      "optvals": [
27346       "display",
27347       "visibility"
27348      ]
27349     },
27350     {
27351      "name": "actionMode",
27352      "type": "String",
27353      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
27354      "memberOf": "Roo.Component"
27355     },
27356     {
27357      "name": "listeners",
27358      "type": "Object",
27359      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
27360      "memberOf": "Roo.util.Observable"
27361     }
27362    ],
27363    "events": [
27364     {
27365      "name": "beforedestroy",
27366      "sig": "function (_self)\n{\n\n}",
27367      "type": "function",
27368      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
27369     },
27370     {
27371      "name": "beforehide",
27372      "sig": "function (_self)\n{\n\n}",
27373      "type": "function",
27374      "desc": "Fires before this menu is hidden"
27375     },
27376     {
27377      "name": "beforerender",
27378      "sig": "function (_self)\n{\n\n}",
27379      "type": "function",
27380      "desc": "Fires before the component is rendered. Return false to stop the render."
27381     },
27382     {
27383      "name": "beforeshow",
27384      "sig": "function (_self)\n{\n\n}",
27385      "type": "function",
27386      "desc": "Fires before this menu is displayed"
27387     },
27388     {
27389      "name": "childrenrendered",
27390      "sig": "function (_self)\n{\n\n}",
27391      "type": "function",
27392      "desc": "Fires when the children have been rendered.."
27393     },
27394     {
27395      "name": "click",
27396      "sig": "function (_self, menuItem, e)\n{\n\n}",
27397      "type": "function",
27398      "desc": "Fires when this menu is clicked (or when the enter key is pressed while it is active)"
27399     },
27400     {
27401      "name": "destroy",
27402      "sig": "function (_self)\n{\n\n}",
27403      "type": "function",
27404      "desc": "Fires after the component is destroyed."
27405     },
27406     {
27407      "name": "disable",
27408      "sig": "function (_self)\n{\n\n}",
27409      "type": "function",
27410      "desc": "Fires after the component is disabled."
27411     },
27412     {
27413      "name": "enable",
27414      "sig": "function (_self)\n{\n\n}",
27415      "type": "function",
27416      "desc": "Fires after the component is enabled."
27417     },
27418     {
27419      "name": "hide",
27420      "sig": "function (_self)\n{\n\n}",
27421      "type": "function",
27422      "desc": "Fires after this menu is hidden"
27423     },
27424     {
27425      "name": "itemclick",
27426      "sig": "function (baseItem, e)\n{\n\n}",
27427      "type": "function",
27428      "desc": "Fires when a menu item contained in this menu is clicked"
27429     },
27430     {
27431      "name": "mouseout",
27432      "sig": "function (_self, e, menuItem)\n{\n\n}",
27433      "type": "function",
27434      "desc": "Fires when the mouse exits this menu"
27435     },
27436     {
27437      "name": "mouseover",
27438      "sig": "function (_self, e, menuItem)\n{\n\n}",
27439      "type": "function",
27440      "desc": "Fires when the mouse is hovering over this menu"
27441     },
27442     {
27443      "name": "render",
27444      "sig": "function (_self)\n{\n\n}",
27445      "type": "function",
27446      "desc": "Fires after the component is rendered."
27447     },
27448     {
27449      "name": "show",
27450      "sig": "function (_self)\n{\n\n}",
27451      "type": "function",
27452      "desc": "Fires after this menu is displayed"
27453     }
27454    ],
27455    "methods": [
27456     {
27457      "name": "addEvents",
27458      "sig": "(Object object)",
27459      "type": "function",
27460      "desc": "Used to define events on this Observable"
27461     },
27462     {
27463      "name": "addListener",
27464      "sig": "(String eventName, Function handler, Object scope, Object options)",
27465      "type": "function",
27466      "desc": "Appends an event handler to this component"
27467     },
27468     {
27469      "name": "capture",
27470      "sig": "(Observable o, Function fn, Object scope)",
27471      "type": "function",
27472      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
27473     },
27474     {
27475      "name": "destroy",
27476      "sig": "()",
27477      "type": "function",
27478      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
27479     },
27480     {
27481      "name": "disable",
27482      "sig": "()",
27483      "type": "function",
27484      "desc": "Disable this component."
27485     },
27486     {
27487      "name": "enable",
27488      "sig": "()",
27489      "type": "function",
27490      "desc": "Enable this component."
27491     },
27492     {
27493      "name": "fireEvent",
27494      "sig": "(String eventName, Object... args)",
27495      "type": "function",
27496      "desc": "Fires the specified event with the passed parameters (minus the event name)."
27497     },
27498     {
27499      "name": "focus",
27500      "sig": "(Boolean selectText)",
27501      "type": "function",
27502      "desc": "Try to focus this component."
27503     },
27504     {
27505      "name": "getChildContainer",
27506      "sig": "()",
27507      "type": "function",
27508      "desc": "Fetch the element to add children to"
27509     },
27510     {
27511      "name": "getEl",
27512      "sig": "()",
27513      "type": "function",
27514      "desc": "Returns the underlying {@link Roo.Element}."
27515     },
27516     {
27517      "name": "getId",
27518      "sig": "()",
27519      "type": "function",
27520      "desc": "Returns the id of this component."
27521     },
27522     {
27523      "name": "hasListener",
27524      "sig": "(String eventName)",
27525      "type": "function",
27526      "desc": "Checks to see if this object has any listeners for a specified event"
27527     },
27528     {
27529      "name": "hide",
27530      "sig": "(Boolean deep)",
27531      "type": "function",
27532      "desc": "Hides this menu and optionally all parent menus"
27533     },
27534     {
27535      "name": "initEvents",
27536      "sig": "()",
27537      "type": "function",
27538      "desc": "Initialize Events for the element"
27539     },
27540     {
27541      "name": "isVisible",
27542      "sig": "()",
27543      "type": "function",
27544      "desc": "Returns true if this component is visible."
27545     },
27546     {
27547      "name": "on",
27548      "sig": "(String eventName, Function handler, Object scope, Object options)",
27549      "type": "function",
27550      "desc": "Appends an event handler to this element (shorthand for addListener)"
27551     },
27552     {
27553      "name": "purgeListeners",
27554      "sig": "()",
27555      "type": "function",
27556      "desc": "Removes all listeners for this object"
27557     },
27558     {
27559      "name": "releaseCapture",
27560      "sig": "(Observable o)",
27561      "type": "function",
27562      "desc": "Removes <b>all</b> added captures from the Observable."
27563     },
27564     {
27565      "name": "removeListener",
27566      "sig": "(String eventName, Function handler, Object scope)",
27567      "type": "function",
27568      "desc": "Removes a listener"
27569     },
27570     {
27571      "name": "render",
27572      "sig": "(String/HTMLElement/Element container)",
27573      "type": "function",
27574      "desc": "If this is a lazy rendering component, render it to its container element."
27575     },
27576     {
27577      "name": "setDisabled",
27578      "sig": "(Boolean disabled)",
27579      "type": "function",
27580      "desc": "Convenience function for setting disabled/enabled by boolean."
27581     },
27582     {
27583      "name": "setVisible",
27584      "sig": "(Boolean visible)",
27585      "type": "function",
27586      "desc": "Convenience function to hide or show this component by boolean."
27587     },
27588     {
27589      "name": "show",
27590      "sig": "(String/HTMLElement/Roo.Element element, String position, Roo.menu.Menu parentMenu)",
27591      "type": "function",
27592      "desc": "Displays this menu relative to another element"
27593     },
27594     {
27595      "name": "showAt",
27596      "sig": "(Array xyPosition, Roo.menu.Menu parentMenu)",
27597      "type": "function",
27598      "desc": "Displays this menu at a specific xy position"
27599     },
27600     {
27601      "name": "tooltipEl",
27602      "sig": "()",
27603      "type": "function",
27604      "desc": "Fetch the element to display the tooltip on."
27605     },
27606     {
27607      "name": "un",
27608      "sig": "(String eventName, Function handler, Object scope)",
27609      "type": "function",
27610      "desc": "Removes a listener (shorthand for removeListener)"
27611     }
27612    ]
27613   },
27614   "Roo.bootstrap.MenuItem": {
27615    "props": [
27616     {
27617      "name": "html",
27618      "type": "String",
27619      "desc": "the menu label",
27620      "memberOf": ""
27621     },
27622     {
27623      "name": "href",
27624      "type": "String",
27625      "desc": "the link",
27626      "memberOf": ""
27627     },
27628     {
27629      "name": "preventDefault",
27630      "type": "Boolean",
27631      "desc": "do not trigger A href on clicks (default false).",
27632      "memberOf": ""
27633     },
27634     {
27635      "name": "isContainer",
27636      "type": "Boolean",
27637      "desc": "is it a container - just returns a drop down item..",
27638      "memberOf": ""
27639     },
27640     {
27641      "name": "active",
27642      "type": "Boolean",
27643      "desc": "used on sidebars to highlight active itesm",
27644      "memberOf": ""
27645     },
27646     {
27647      "name": "fa",
27648      "type": "String",
27649      "desc": "favicon to show on left of menu item.",
27650      "memberOf": ""
27651     },
27652     {
27653      "name": "menu",
27654      "type": "Roo.bootsrap.Menu",
27655      "desc": "the child menu.",
27656      "memberOf": ""
27657     },
27658     {
27659      "name": "cls",
27660      "type": "String",
27661      "desc": "css class",
27662      "memberOf": "Roo.bootstrap.Component"
27663     },
27664     {
27665      "name": "style",
27666      "type": "String",
27667      "desc": "any extra css",
27668      "memberOf": "Roo.bootstrap.Component"
27669     },
27670     {
27671      "name": "xattr",
27672      "type": "Object",
27673      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
27674      "memberOf": "Roo.bootstrap.Component"
27675     },
27676     {
27677      "name": "can_build_overlaid",
27678      "type": "Boolean",
27679      "desc": "True if element can be rebuild from a HTML page",
27680      "memberOf": "Roo.bootstrap.Component"
27681     },
27682     {
27683      "name": "dataId",
27684      "type": "string",
27685      "desc": "cutomer id",
27686      "memberOf": "Roo.bootstrap.Component"
27687     },
27688     {
27689      "name": "name",
27690      "type": "string",
27691      "desc": "Specifies name attribute",
27692      "memberOf": "Roo.bootstrap.Component"
27693     },
27694     {
27695      "name": "tooltip",
27696      "type": "string",
27697      "desc": "Text for the tooltip",
27698      "memberOf": "Roo.bootstrap.Component"
27699     },
27700     {
27701      "name": "container_method",
27702      "type": "string",
27703      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
27704      "memberOf": "Roo.bootstrap.Component"
27705     },
27706     {
27707      "name": "disableClass",
27708      "type": "String",
27709      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
27710      "memberOf": "Roo.Component"
27711     },
27712     {
27713      "name": "allowDomMove",
27714      "type": "Boolean",
27715      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
27716      "memberOf": "Roo.Component"
27717     },
27718     {
27719      "name": "hideMode",
27720      "type": "String",
27721      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
27722      "memberOf": "Roo.Component",
27723      "optvals": [
27724       "display",
27725       "visibility"
27726      ]
27727     },
27728     {
27729      "name": "actionMode",
27730      "type": "String",
27731      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
27732      "memberOf": "Roo.Component"
27733     },
27734     {
27735      "name": "listeners",
27736      "type": "Object",
27737      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
27738      "memberOf": "Roo.util.Observable"
27739     }
27740    ],
27741    "events": [
27742     {
27743      "name": "beforedestroy",
27744      "sig": "function (_self)\n{\n\n}",
27745      "type": "function",
27746      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
27747     },
27748     {
27749      "name": "beforehide",
27750      "sig": "function (_self)\n{\n\n}",
27751      "type": "function",
27752      "desc": "Fires before the component is hidden. Return false to stop the hide."
27753     },
27754     {
27755      "name": "beforerender",
27756      "sig": "function (_self)\n{\n\n}",
27757      "type": "function",
27758      "desc": "Fires before the component is rendered. Return false to stop the render."
27759     },
27760     {
27761      "name": "beforeshow",
27762      "sig": "function (_self)\n{\n\n}",
27763      "type": "function",
27764      "desc": "Fires before the component is shown.  Return false to stop the show."
27765     },
27766     {
27767      "name": "childrenrendered",
27768      "sig": "function (_self)\n{\n\n}",
27769      "type": "function",
27770      "desc": "Fires when the children have been rendered.."
27771     },
27772     {
27773      "name": "click",
27774      "sig": "function (_self, e)\n{\n\n}",
27775      "type": "function",
27776      "desc": "The raw click event for the entire grid."
27777     },
27778     {
27779      "name": "destroy",
27780      "sig": "function (_self)\n{\n\n}",
27781      "type": "function",
27782      "desc": "Fires after the component is destroyed."
27783     },
27784     {
27785      "name": "disable",
27786      "sig": "function (_self)\n{\n\n}",
27787      "type": "function",
27788      "desc": "Fires after the component is disabled."
27789     },
27790     {
27791      "name": "enable",
27792      "sig": "function (_self)\n{\n\n}",
27793      "type": "function",
27794      "desc": "Fires after the component is enabled."
27795     },
27796     {
27797      "name": "hide",
27798      "sig": "function (_self)\n{\n\n}",
27799      "type": "function",
27800      "desc": "Fires after the component is hidden."
27801     },
27802     {
27803      "name": "render",
27804      "sig": "function (_self)\n{\n\n}",
27805      "type": "function",
27806      "desc": "Fires after the component is rendered."
27807     },
27808     {
27809      "name": "show",
27810      "sig": "function (_self)\n{\n\n}",
27811      "type": "function",
27812      "desc": "Fires after the component is shown."
27813     }
27814    ],
27815    "methods": [
27816     {
27817      "name": "addEvents",
27818      "sig": "(Object object)",
27819      "type": "function",
27820      "desc": "Used to define events on this Observable"
27821     },
27822     {
27823      "name": "addListener",
27824      "sig": "(String eventName, Function handler, Object scope, Object options)",
27825      "type": "function",
27826      "desc": "Appends an event handler to this component"
27827     },
27828     {
27829      "name": "capture",
27830      "sig": "(Observable o, Function fn, Object scope)",
27831      "type": "function",
27832      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
27833     },
27834     {
27835      "name": "destroy",
27836      "sig": "()",
27837      "type": "function",
27838      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
27839     },
27840     {
27841      "name": "disable",
27842      "sig": "()",
27843      "type": "function",
27844      "desc": "Disable this component."
27845     },
27846     {
27847      "name": "enable",
27848      "sig": "()",
27849      "type": "function",
27850      "desc": "Enable this component."
27851     },
27852     {
27853      "name": "fireEvent",
27854      "sig": "(String eventName, Object... args)",
27855      "type": "function",
27856      "desc": "Fires the specified event with the passed parameters (minus the event name)."
27857     },
27858     {
27859      "name": "focus",
27860      "sig": "(Boolean selectText)",
27861      "type": "function",
27862      "desc": "Try to focus this component."
27863     },
27864     {
27865      "name": "getChildContainer",
27866      "sig": "()",
27867      "type": "function",
27868      "desc": "Fetch the element to add children to"
27869     },
27870     {
27871      "name": "getEl",
27872      "sig": "()",
27873      "type": "function",
27874      "desc": "Returns the underlying {@link Roo.Element}."
27875     },
27876     {
27877      "name": "getId",
27878      "sig": "()",
27879      "type": "function",
27880      "desc": "Returns the id of this component."
27881     },
27882     {
27883      "name": "hasListener",
27884      "sig": "(String eventName)",
27885      "type": "function",
27886      "desc": "Checks to see if this object has any listeners for a specified event"
27887     },
27888     {
27889      "name": "hide",
27890      "sig": "()",
27891      "type": "function",
27892      "desc": "Hide a component - adds 'hidden' class"
27893     },
27894     {
27895      "name": "initEvents",
27896      "sig": "()",
27897      "type": "function",
27898      "desc": "Initialize Events for the element"
27899     },
27900     {
27901      "name": "isVisible",
27902      "sig": "()",
27903      "type": "function",
27904      "desc": "Returns true if this component is visible."
27905     },
27906     {
27907      "name": "on",
27908      "sig": "(String eventName, Function handler, Object scope, Object options)",
27909      "type": "function",
27910      "desc": "Appends an event handler to this element (shorthand for addListener)"
27911     },
27912     {
27913      "name": "purgeListeners",
27914      "sig": "()",
27915      "type": "function",
27916      "desc": "Removes all listeners for this object"
27917     },
27918     {
27919      "name": "releaseCapture",
27920      "sig": "(Observable o)",
27921      "type": "function",
27922      "desc": "Removes <b>all</b> added captures from the Observable."
27923     },
27924     {
27925      "name": "removeListener",
27926      "sig": "(String eventName, Function handler, Object scope)",
27927      "type": "function",
27928      "desc": "Removes a listener"
27929     },
27930     {
27931      "name": "render",
27932      "sig": "(String/HTMLElement/Element container)",
27933      "type": "function",
27934      "desc": "If this is a lazy rendering component, render it to its container element."
27935     },
27936     {
27937      "name": "setDisabled",
27938      "sig": "(Boolean disabled)",
27939      "type": "function",
27940      "desc": "Convenience function for setting disabled/enabled by boolean."
27941     },
27942     {
27943      "name": "setVisible",
27944      "sig": "(Boolean visible)",
27945      "type": "function",
27946      "desc": "Convenience function to hide or show this component by boolean."
27947     },
27948     {
27949      "name": "show",
27950      "sig": "()",
27951      "type": "function",
27952      "desc": "Show a component - removes 'hidden' class"
27953     },
27954     {
27955      "name": "tooltipEl",
27956      "sig": "()",
27957      "type": "function",
27958      "desc": "Fetch the element to display the tooltip on."
27959     },
27960     {
27961      "name": "un",
27962      "sig": "(String eventName, Function handler, Object scope)",
27963      "type": "function",
27964      "desc": "Removes a listener (shorthand for removeListener)"
27965     }
27966    ]
27967   },
27968   "Roo.bootstrap.MenuMgr": {
27969    "props": [],
27970    "events": [],
27971    "methods": [
27972     {
27973      "name": "get",
27974      "sig": "(String/Object menu)",
27975      "type": "function",
27976      "desc": "Returns a {@link Roo.menu.Menu} object"
27977     },
27978     {
27979      "name": "hideAll",
27980      "sig": "()",
27981      "type": "function",
27982      "desc": "Hides all menus that are currently visible"
27983     }
27984    ]
27985   },
27986   "Roo.bootstrap.MenuSeparator": {
27987    "props": [
27988     {
27989      "name": "cls",
27990      "type": "String",
27991      "desc": "css class",
27992      "memberOf": "Roo.bootstrap.Component"
27993     },
27994     {
27995      "name": "style",
27996      "type": "String",
27997      "desc": "any extra css",
27998      "memberOf": "Roo.bootstrap.Component"
27999     },
28000     {
28001      "name": "xattr",
28002      "type": "Object",
28003      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
28004      "memberOf": "Roo.bootstrap.Component"
28005     },
28006     {
28007      "name": "can_build_overlaid",
28008      "type": "Boolean",
28009      "desc": "True if element can be rebuild from a HTML page",
28010      "memberOf": "Roo.bootstrap.Component"
28011     },
28012     {
28013      "name": "dataId",
28014      "type": "string",
28015      "desc": "cutomer id",
28016      "memberOf": "Roo.bootstrap.Component"
28017     },
28018     {
28019      "name": "name",
28020      "type": "string",
28021      "desc": "Specifies name attribute",
28022      "memberOf": "Roo.bootstrap.Component"
28023     },
28024     {
28025      "name": "tooltip",
28026      "type": "string",
28027      "desc": "Text for the tooltip",
28028      "memberOf": "Roo.bootstrap.Component"
28029     },
28030     {
28031      "name": "container_method",
28032      "type": "string",
28033      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
28034      "memberOf": "Roo.bootstrap.Component"
28035     },
28036     {
28037      "name": "disableClass",
28038      "type": "String",
28039      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
28040      "memberOf": "Roo.Component"
28041     },
28042     {
28043      "name": "allowDomMove",
28044      "type": "Boolean",
28045      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
28046      "memberOf": "Roo.Component"
28047     },
28048     {
28049      "name": "hideMode",
28050      "type": "String",
28051      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
28052      "memberOf": "Roo.Component",
28053      "optvals": [
28054       "display",
28055       "visibility"
28056      ]
28057     },
28058     {
28059      "name": "actionMode",
28060      "type": "String",
28061      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
28062      "memberOf": "Roo.Component"
28063     },
28064     {
28065      "name": "listeners",
28066      "type": "Object",
28067      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
28068      "memberOf": "Roo.util.Observable"
28069     }
28070    ],
28071    "events": [
28072     {
28073      "name": "beforedestroy",
28074      "sig": "function (_self)\n{\n\n}",
28075      "type": "function",
28076      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
28077     },
28078     {
28079      "name": "beforehide",
28080      "sig": "function (_self)\n{\n\n}",
28081      "type": "function",
28082      "desc": "Fires before the component is hidden. Return false to stop the hide."
28083     },
28084     {
28085      "name": "beforerender",
28086      "sig": "function (_self)\n{\n\n}",
28087      "type": "function",
28088      "desc": "Fires before the component is rendered. Return false to stop the render."
28089     },
28090     {
28091      "name": "beforeshow",
28092      "sig": "function (_self)\n{\n\n}",
28093      "type": "function",
28094      "desc": "Fires before the component is shown.  Return false to stop the show."
28095     },
28096     {
28097      "name": "childrenrendered",
28098      "sig": "function (_self)\n{\n\n}",
28099      "type": "function",
28100      "desc": "Fires when the children have been rendered.."
28101     },
28102     {
28103      "name": "destroy",
28104      "sig": "function (_self)\n{\n\n}",
28105      "type": "function",
28106      "desc": "Fires after the component is destroyed."
28107     },
28108     {
28109      "name": "disable",
28110      "sig": "function (_self)\n{\n\n}",
28111      "type": "function",
28112      "desc": "Fires after the component is disabled."
28113     },
28114     {
28115      "name": "enable",
28116      "sig": "function (_self)\n{\n\n}",
28117      "type": "function",
28118      "desc": "Fires after the component is enabled."
28119     },
28120     {
28121      "name": "hide",
28122      "sig": "function (_self)\n{\n\n}",
28123      "type": "function",
28124      "desc": "Fires after the component is hidden."
28125     },
28126     {
28127      "name": "render",
28128      "sig": "function (_self)\n{\n\n}",
28129      "type": "function",
28130      "desc": "Fires after the component is rendered."
28131     },
28132     {
28133      "name": "show",
28134      "sig": "function (_self)\n{\n\n}",
28135      "type": "function",
28136      "desc": "Fires after the component is shown."
28137     }
28138    ],
28139    "methods": [
28140     {
28141      "name": "addEvents",
28142      "sig": "(Object object)",
28143      "type": "function",
28144      "desc": "Used to define events on this Observable"
28145     },
28146     {
28147      "name": "addListener",
28148      "sig": "(String eventName, Function handler, Object scope, Object options)",
28149      "type": "function",
28150      "desc": "Appends an event handler to this component"
28151     },
28152     {
28153      "name": "capture",
28154      "sig": "(Observable o, Function fn, Object scope)",
28155      "type": "function",
28156      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
28157     },
28158     {
28159      "name": "destroy",
28160      "sig": "()",
28161      "type": "function",
28162      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
28163     },
28164     {
28165      "name": "disable",
28166      "sig": "()",
28167      "type": "function",
28168      "desc": "Disable this component."
28169     },
28170     {
28171      "name": "enable",
28172      "sig": "()",
28173      "type": "function",
28174      "desc": "Enable this component."
28175     },
28176     {
28177      "name": "fireEvent",
28178      "sig": "(String eventName, Object... args)",
28179      "type": "function",
28180      "desc": "Fires the specified event with the passed parameters (minus the event name)."
28181     },
28182     {
28183      "name": "focus",
28184      "sig": "(Boolean selectText)",
28185      "type": "function",
28186      "desc": "Try to focus this component."
28187     },
28188     {
28189      "name": "getChildContainer",
28190      "sig": "()",
28191      "type": "function",
28192      "desc": "Fetch the element to add children to"
28193     },
28194     {
28195      "name": "getEl",
28196      "sig": "()",
28197      "type": "function",
28198      "desc": "Returns the underlying {@link Roo.Element}."
28199     },
28200     {
28201      "name": "getId",
28202      "sig": "()",
28203      "type": "function",
28204      "desc": "Returns the id of this component."
28205     },
28206     {
28207      "name": "hasListener",
28208      "sig": "(String eventName)",
28209      "type": "function",
28210      "desc": "Checks to see if this object has any listeners for a specified event"
28211     },
28212     {
28213      "name": "hide",
28214      "sig": "()",
28215      "type": "function",
28216      "desc": "Hide a component - adds 'hidden' class"
28217     },
28218     {
28219      "name": "initEvents",
28220      "sig": "()",
28221      "type": "function",
28222      "desc": "Initialize Events for the element"
28223     },
28224     {
28225      "name": "isVisible",
28226      "sig": "()",
28227      "type": "function",
28228      "desc": "Returns true if this component is visible."
28229     },
28230     {
28231      "name": "on",
28232      "sig": "(String eventName, Function handler, Object scope, Object options)",
28233      "type": "function",
28234      "desc": "Appends an event handler to this element (shorthand for addListener)"
28235     },
28236     {
28237      "name": "purgeListeners",
28238      "sig": "()",
28239      "type": "function",
28240      "desc": "Removes all listeners for this object"
28241     },
28242     {
28243      "name": "releaseCapture",
28244      "sig": "(Observable o)",
28245      "type": "function",
28246      "desc": "Removes <b>all</b> added captures from the Observable."
28247     },
28248     {
28249      "name": "removeListener",
28250      "sig": "(String eventName, Function handler, Object scope)",
28251      "type": "function",
28252      "desc": "Removes a listener"
28253     },
28254     {
28255      "name": "render",
28256      "sig": "(String/HTMLElement/Element container)",
28257      "type": "function",
28258      "desc": "If this is a lazy rendering component, render it to its container element."
28259     },
28260     {
28261      "name": "setDisabled",
28262      "sig": "(Boolean disabled)",
28263      "type": "function",
28264      "desc": "Convenience function for setting disabled/enabled by boolean."
28265     },
28266     {
28267      "name": "setVisible",
28268      "sig": "(Boolean visible)",
28269      "type": "function",
28270      "desc": "Convenience function to hide or show this component by boolean."
28271     },
28272     {
28273      "name": "show",
28274      "sig": "()",
28275      "type": "function",
28276      "desc": "Show a component - removes 'hidden' class"
28277     },
28278     {
28279      "name": "tooltipEl",
28280      "sig": "()",
28281      "type": "function",
28282      "desc": "Fetch the element to display the tooltip on."
28283     },
28284     {
28285      "name": "un",
28286      "sig": "(String eventName, Function handler, Object scope)",
28287      "type": "function",
28288      "desc": "Removes a listener (shorthand for removeListener)"
28289     }
28290    ]
28291   },
28292   "Roo.bootstrap.MessageBar": {
28293    "props": [
28294     {
28295      "name": "html",
28296      "type": "String",
28297      "desc": "contents of the MessageBar",
28298      "memberOf": ""
28299     },
28300     {
28301      "name": "weight",
28302      "type": "String",
28303      "desc": "default info",
28304      "memberOf": "",
28305      "optvals": [
28306       "info",
28307       "success",
28308       "warning",
28309       "danger"
28310      ]
28311     },
28312     {
28313      "name": "beforeClass",
28314      "type": "String",
28315      "desc": "insert the bar before the given class",
28316      "memberOf": ""
28317     },
28318     {
28319      "name": "closable",
28320      "type": "Boolean",
28321      "desc": "default false",
28322      "memberOf": "",
28323      "optvals": [
28324       "true",
28325       "false"
28326      ]
28327     },
28328     {
28329      "name": "fixed",
28330      "type": "Boolean",
28331      "desc": "default false, fix the bar at the top",
28332      "memberOf": "",
28333      "optvals": [
28334       "true",
28335       "false"
28336      ]
28337     },
28338     {
28339      "name": "cls",
28340      "type": "String",
28341      "desc": "css class",
28342      "memberOf": "Roo.bootstrap.Component"
28343     },
28344     {
28345      "name": "style",
28346      "type": "String",
28347      "desc": "any extra css",
28348      "memberOf": "Roo.bootstrap.Component"
28349     },
28350     {
28351      "name": "xattr",
28352      "type": "Object",
28353      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
28354      "memberOf": "Roo.bootstrap.Component"
28355     },
28356     {
28357      "name": "can_build_overlaid",
28358      "type": "Boolean",
28359      "desc": "True if element can be rebuild from a HTML page",
28360      "memberOf": "Roo.bootstrap.Component"
28361     },
28362     {
28363      "name": "dataId",
28364      "type": "string",
28365      "desc": "cutomer id",
28366      "memberOf": "Roo.bootstrap.Component"
28367     },
28368     {
28369      "name": "name",
28370      "type": "string",
28371      "desc": "Specifies name attribute",
28372      "memberOf": "Roo.bootstrap.Component"
28373     },
28374     {
28375      "name": "tooltip",
28376      "type": "string",
28377      "desc": "Text for the tooltip",
28378      "memberOf": "Roo.bootstrap.Component"
28379     },
28380     {
28381      "name": "container_method",
28382      "type": "string",
28383      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
28384      "memberOf": "Roo.bootstrap.Component"
28385     },
28386     {
28387      "name": "disableClass",
28388      "type": "String",
28389      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
28390      "memberOf": "Roo.Component"
28391     },
28392     {
28393      "name": "allowDomMove",
28394      "type": "Boolean",
28395      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
28396      "memberOf": "Roo.Component"
28397     },
28398     {
28399      "name": "hideMode",
28400      "type": "String",
28401      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
28402      "memberOf": "Roo.Component",
28403      "optvals": [
28404       "display",
28405       "visibility"
28406      ]
28407     },
28408     {
28409      "name": "actionMode",
28410      "type": "String",
28411      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
28412      "memberOf": "Roo.Component"
28413     },
28414     {
28415      "name": "listeners",
28416      "type": "Object",
28417      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
28418      "memberOf": "Roo.util.Observable"
28419     }
28420    ],
28421    "events": [
28422     {
28423      "name": "beforedestroy",
28424      "sig": "function (_self)\n{\n\n}",
28425      "type": "function",
28426      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
28427     },
28428     {
28429      "name": "beforehide",
28430      "sig": "function (_self)\n{\n\n}",
28431      "type": "function",
28432      "desc": "Fires before the component is hidden. Return false to stop the hide."
28433     },
28434     {
28435      "name": "beforerender",
28436      "sig": "function (_self)\n{\n\n}",
28437      "type": "function",
28438      "desc": "Fires before the component is rendered. Return false to stop the render."
28439     },
28440     {
28441      "name": "beforeshow",
28442      "sig": "function (_self)\n{\n\n}",
28443      "type": "function",
28444      "desc": "Fires before the component is shown.  Return false to stop the show."
28445     },
28446     {
28447      "name": "childrenrendered",
28448      "sig": "function (_self)\n{\n\n}",
28449      "type": "function",
28450      "desc": "Fires when the children have been rendered.."
28451     },
28452     {
28453      "name": "destroy",
28454      "sig": "function (_self)\n{\n\n}",
28455      "type": "function",
28456      "desc": "Fires after the component is destroyed."
28457     },
28458     {
28459      "name": "disable",
28460      "sig": "function (_self)\n{\n\n}",
28461      "type": "function",
28462      "desc": "Fires after the component is disabled."
28463     },
28464     {
28465      "name": "enable",
28466      "sig": "function (_self)\n{\n\n}",
28467      "type": "function",
28468      "desc": "Fires after the component is enabled."
28469     },
28470     {
28471      "name": "hide",
28472      "sig": "function (_self)\n{\n\n}",
28473      "type": "function",
28474      "desc": "Fires after the component is hidden."
28475     },
28476     {
28477      "name": "render",
28478      "sig": "function (_self)\n{\n\n}",
28479      "type": "function",
28480      "desc": "Fires after the component is rendered."
28481     },
28482     {
28483      "name": "show",
28484      "sig": "function (_self)\n{\n\n}",
28485      "type": "function",
28486      "desc": "Fires after the component is shown."
28487     }
28488    ],
28489    "methods": [
28490     {
28491      "name": "addEvents",
28492      "sig": "(Object object)",
28493      "type": "function",
28494      "desc": "Used to define events on this Observable"
28495     },
28496     {
28497      "name": "addListener",
28498      "sig": "(String eventName, Function handler, Object scope, Object options)",
28499      "type": "function",
28500      "desc": "Appends an event handler to this component"
28501     },
28502     {
28503      "name": "capture",
28504      "sig": "(Observable o, Function fn, Object scope)",
28505      "type": "function",
28506      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
28507     },
28508     {
28509      "name": "destroy",
28510      "sig": "()",
28511      "type": "function",
28512      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
28513     },
28514     {
28515      "name": "disable",
28516      "sig": "()",
28517      "type": "function",
28518      "desc": "Disable this component."
28519     },
28520     {
28521      "name": "enable",
28522      "sig": "()",
28523      "type": "function",
28524      "desc": "Enable this component."
28525     },
28526     {
28527      "name": "fireEvent",
28528      "sig": "(String eventName, Object... args)",
28529      "type": "function",
28530      "desc": "Fires the specified event with the passed parameters (minus the event name)."
28531     },
28532     {
28533      "name": "focus",
28534      "sig": "(Boolean selectText)",
28535      "type": "function",
28536      "desc": "Try to focus this component."
28537     },
28538     {
28539      "name": "getChildContainer",
28540      "sig": "()",
28541      "type": "function",
28542      "desc": "Fetch the element to add children to"
28543     },
28544     {
28545      "name": "getEl",
28546      "sig": "()",
28547      "type": "function",
28548      "desc": "Returns the underlying {@link Roo.Element}."
28549     },
28550     {
28551      "name": "getId",
28552      "sig": "()",
28553      "type": "function",
28554      "desc": "Returns the id of this component."
28555     },
28556     {
28557      "name": "hasListener",
28558      "sig": "(String eventName)",
28559      "type": "function",
28560      "desc": "Checks to see if this object has any listeners for a specified event"
28561     },
28562     {
28563      "name": "hide",
28564      "sig": "()",
28565      "type": "function",
28566      "desc": "Hide a component - adds 'hidden' class"
28567     },
28568     {
28569      "name": "initEvents",
28570      "sig": "()",
28571      "type": "function",
28572      "desc": "Initialize Events for the element"
28573     },
28574     {
28575      "name": "isVisible",
28576      "sig": "()",
28577      "type": "function",
28578      "desc": "Returns true if this component is visible."
28579     },
28580     {
28581      "name": "on",
28582      "sig": "(String eventName, Function handler, Object scope, Object options)",
28583      "type": "function",
28584      "desc": "Appends an event handler to this element (shorthand for addListener)"
28585     },
28586     {
28587      "name": "purgeListeners",
28588      "sig": "()",
28589      "type": "function",
28590      "desc": "Removes all listeners for this object"
28591     },
28592     {
28593      "name": "releaseCapture",
28594      "sig": "(Observable o)",
28595      "type": "function",
28596      "desc": "Removes <b>all</b> added captures from the Observable."
28597     },
28598     {
28599      "name": "removeListener",
28600      "sig": "(String eventName, Function handler, Object scope)",
28601      "type": "function",
28602      "desc": "Removes a listener"
28603     },
28604     {
28605      "name": "render",
28606      "sig": "(String/HTMLElement/Element container)",
28607      "type": "function",
28608      "desc": "If this is a lazy rendering component, render it to its container element."
28609     },
28610     {
28611      "name": "setDisabled",
28612      "sig": "(Boolean disabled)",
28613      "type": "function",
28614      "desc": "Convenience function for setting disabled/enabled by boolean."
28615     },
28616     {
28617      "name": "setVisible",
28618      "sig": "(Boolean visible)",
28619      "type": "function",
28620      "desc": "Convenience function to hide or show this component by boolean."
28621     },
28622     {
28623      "name": "show",
28624      "sig": "()",
28625      "type": "function",
28626      "desc": "Show a component - removes 'hidden' class"
28627     },
28628     {
28629      "name": "tooltipEl",
28630      "sig": "()",
28631      "type": "function",
28632      "desc": "Fetch the element to display the tooltip on."
28633     },
28634     {
28635      "name": "un",
28636      "sig": "(String eventName, Function handler, Object scope)",
28637      "type": "function",
28638      "desc": "Removes a listener (shorthand for removeListener)"
28639     }
28640    ]
28641   },
28642   "Roo.bootstrap.MessageBox": {
28643    "props": [],
28644    "events": [],
28645    "methods": [
28646     {
28647      "name": "alert",
28648      "sig": "(String title, String msg, Function fn, Object scope)",
28649      "type": "function",
28650      "desc": "Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).\nIf a callback function is passed it will be called after the user clicks the button, and the\nid of the button that was clicked will be passed as the only parameter to the callback\n(could also be the top-right close button)."
28651     },
28652     {
28653      "name": "confirm",
28654      "sig": "(String title, String msg, Function fn, Object scope)",
28655      "type": "function",
28656      "desc": "Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).\nIf a callback function is passed it will be called after the user clicks either button, and the id of the\nbutton that was clicked will be passed as the only parameter to the callback (could also be the top-right close button)."
28657     },
28658     {
28659      "name": "getDialog",
28660      "sig": "()",
28661      "type": "function",
28662      "desc": "Returns a reference to the underlying {@link Roo.BasicDialog} element"
28663     },
28664     {
28665      "name": "hide",
28666      "sig": "()",
28667      "type": "function",
28668      "desc": "Hides the message box if it is displayed"
28669     },
28670     {
28671      "name": "isVisible",
28672      "sig": "()",
28673      "type": "function",
28674      "desc": "Returns true if the message box is currently displayed"
28675     },
28676     {
28677      "name": "progress",
28678      "sig": "(String title, String msg)",
28679      "type": "function",
28680      "desc": "Displays a message box with a progress bar.  This message box has no buttons and is not closeable by\nthe user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}\nand closing the message box when the process is complete."
28681     },
28682     {
28683      "name": "prompt",
28684      "sig": "(String title, String msg, Function fn, Object scope, Boolean/Number multiline)",
28685      "type": "function",
28686      "desc": "Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to\nJavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function\nis passed it will be called after the user clicks either button, and the id of the button that was clicked\n(could also be the top-right close button) and the text that was entered will be passed as the two\nparameters to the callback."
28687     },
28688     {
28689      "name": "show",
28690      "sig": "(Object config)",
28691      "type": "function",
28692      "desc": "Displays a new message box, or reinitializes an existing message box, based on the config options\npassed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.\nThe following config object properties are supported:\n<pre>\nProperty    Type             Description\n----------  ---------------  ------------------------------------------------------------------------------------\nanimEl            String/Element   An id or Element from which the message box should animate as it opens and\n                                   closes (defaults to undefined)\nbuttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',\n                                   cancel:'Bar'}), or false to not show any buttons (defaults to false)\nclosable          Boolean          False to hide the top-right close button (defaults to true).  Note that\n                                   progress and wait dialogs will ignore this property and always hide the\n                                   close button as they can only be closed programmatically.\ncls               String           A custom CSS class to apply to the message box element\ndefaultTextHeight Number           The default height in pixels of the message box's multiline textarea if\n                                   displayed (defaults to 75)\nfn                Function         A callback function to execute after closing the dialog.  The arguments to the\n                                   function will be btn (the name of the button that was clicked, if applicable,\n                                   e.g. \"ok\"), and text (the value of the active text field, if applicable).\n                                   Progress and wait dialogs will ignore this option since they do not respond to\n                                   user actions and can only be closed programmatically, so any required function\n                                   should be called by the same code after it closes the dialog.\nicon              String           A CSS class that provides a background image to be used as an icon for\n                                   the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')\nmaxWidth          Number           The maximum width in pixels of the message box (defaults to 600)\nminWidth          Number           The minimum width in pixels of the message box (defaults to 100)\nmodal             Boolean          False to allow user interaction with the page while the message box is\n                                   displayed (defaults to true)\nmsg               String           A string that will replace the existing message box body text (defaults\n                                   to the XHTML-compliant non-breaking space character '&#160;')\nmultiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)\nprogress          Boolean          True to display a progress bar (defaults to false)\nprogressText      String           The text to display inside the progress bar if progress = true (defaults to '')\nprompt            Boolean          True to prompt the user to enter single-line text (defaults to false)\nproxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)\ntitle             String           The title text\nvalue             String           The string value to set into the active textbox element if displayed\nwait              Boolean          True to display a progress bar (defaults to false)\nwidth             Number           The width of the dialog in pixels\n</pre>\n\nExample usage:\n<pre><code>\nRoo.Msg.show({\n   title: 'Address',\n   msg: 'Please enter your address:',\n   width: 300,\n   buttons: Roo.MessageBox.OKCANCEL,\n   multiline: true,\n   fn: saveAddress,\n   animEl: 'addAddressBtn'\n});\n</code></pre>"
28693     },
28694     {
28695      "name": "updateProgress",
28696      "sig": "(Number value, String text)",
28697      "type": "function",
28698      "desc": "Updates a progress-style message box's text and progress bar.  Only relevant on message boxes\ninitiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true."
28699     },
28700     {
28701      "name": "updateText",
28702      "sig": "(String text)",
28703      "type": "function",
28704      "desc": "Updates the message box body text"
28705     },
28706     {
28707      "name": "wait",
28708      "sig": "(String msg, String title)",
28709      "type": "function",
28710      "desc": "Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user\ninteraction while waiting for a long-running process to complete that does not have defined intervals.\nYou are responsible for closing the message box when the process is complete."
28711     }
28712    ]
28713   },
28714   "Roo.bootstrap.Modal": {
28715    "props": [
28716     {
28717      "name": "title",
28718      "type": "String",
28719      "desc": "Title of dialog",
28720      "memberOf": ""
28721     },
28722     {
28723      "name": "html",
28724      "type": "String",
28725      "desc": "- the body of the dialog (for simple ones) - you can also use template..",
28726      "memberOf": ""
28727     },
28728     {
28729      "name": "tmpl",
28730      "type": "Roo.Template",
28731      "desc": "- a template with variables. to use it, add a handler in show:method  adn",
28732      "memberOf": ""
28733     },
28734     {
28735      "name": "specificTitle",
28736      "type": "Boolean",
28737      "desc": "default false",
28738      "memberOf": ""
28739     },
28740     {
28741      "name": "buttons",
28742      "type": "Array",
28743      "desc": "Array of buttons or standard button set..",
28744      "memberOf": ""
28745     },
28746     {
28747      "name": "buttonPosition",
28748      "type": "String",
28749      "desc": "default right",
28750      "memberOf": "",
28751      "optvals": [
28752       "left",
28753       "right",
28754       "center"
28755      ]
28756     },
28757     {
28758      "name": "animate",
28759      "type": "Boolean",
28760      "desc": "default true",
28761      "memberOf": ""
28762     },
28763     {
28764      "name": "allow_close",
28765      "type": "Boolean",
28766      "desc": "default true",
28767      "memberOf": ""
28768     },
28769     {
28770      "name": "fitwindow",
28771      "type": "Boolean",
28772      "desc": "default false",
28773      "memberOf": ""
28774     },
28775     {
28776      "name": "size",
28777      "type": "String",
28778      "desc": "default empty",
28779      "memberOf": "",
28780      "optvals": [
28781       "sm",
28782       "lg"
28783      ]
28784     },
28785     {
28786      "name": "cls",
28787      "type": "String",
28788      "desc": "css class",
28789      "memberOf": "Roo.bootstrap.Component"
28790     },
28791     {
28792      "name": "style",
28793      "type": "String",
28794      "desc": "any extra css",
28795      "memberOf": "Roo.bootstrap.Component"
28796     },
28797     {
28798      "name": "xattr",
28799      "type": "Object",
28800      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
28801      "memberOf": "Roo.bootstrap.Component"
28802     },
28803     {
28804      "name": "can_build_overlaid",
28805      "type": "Boolean",
28806      "desc": "True if element can be rebuild from a HTML page",
28807      "memberOf": "Roo.bootstrap.Component"
28808     },
28809     {
28810      "name": "dataId",
28811      "type": "string",
28812      "desc": "cutomer id",
28813      "memberOf": "Roo.bootstrap.Component"
28814     },
28815     {
28816      "name": "name",
28817      "type": "string",
28818      "desc": "Specifies name attribute",
28819      "memberOf": "Roo.bootstrap.Component"
28820     },
28821     {
28822      "name": "tooltip",
28823      "type": "string",
28824      "desc": "Text for the tooltip",
28825      "memberOf": "Roo.bootstrap.Component"
28826     },
28827     {
28828      "name": "container_method",
28829      "type": "string",
28830      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
28831      "memberOf": "Roo.bootstrap.Component"
28832     },
28833     {
28834      "name": "disableClass",
28835      "type": "String",
28836      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
28837      "memberOf": "Roo.Component"
28838     },
28839     {
28840      "name": "allowDomMove",
28841      "type": "Boolean",
28842      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
28843      "memberOf": "Roo.Component"
28844     },
28845     {
28846      "name": "hideMode",
28847      "type": "String",
28848      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
28849      "memberOf": "Roo.Component",
28850      "optvals": [
28851       "display",
28852       "visibility"
28853      ]
28854     },
28855     {
28856      "name": "actionMode",
28857      "type": "String",
28858      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
28859      "memberOf": "Roo.Component"
28860     },
28861     {
28862      "name": "listeners",
28863      "type": "Object",
28864      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
28865      "memberOf": "Roo.util.Observable"
28866     }
28867    ],
28868    "events": [
28869     {
28870      "name": "beforedestroy",
28871      "sig": "function (_self)\n{\n\n}",
28872      "type": "function",
28873      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
28874     },
28875     {
28876      "name": "beforehide",
28877      "sig": "function (_self)\n{\n\n}",
28878      "type": "function",
28879      "desc": "Fires before the component is hidden. Return false to stop the hide."
28880     },
28881     {
28882      "name": "beforerender",
28883      "sig": "function (_self)\n{\n\n}",
28884      "type": "function",
28885      "desc": "Fires before the component is rendered. Return false to stop the render."
28886     },
28887     {
28888      "name": "beforeshow",
28889      "sig": "function (_self)\n{\n\n}",
28890      "type": "function",
28891      "desc": "Fires before the component is shown.  Return false to stop the show."
28892     },
28893     {
28894      "name": "btnclick",
28895      "sig": "function (e)\n{\n\n}",
28896      "type": "function",
28897      "desc": "The raw btnclick event for the button"
28898     },
28899     {
28900      "name": "childrenrendered",
28901      "sig": "function (_self)\n{\n\n}",
28902      "type": "function",
28903      "desc": "Fires when the children have been rendered.."
28904     },
28905     {
28906      "name": "destroy",
28907      "sig": "function (_self)\n{\n\n}",
28908      "type": "function",
28909      "desc": "Fires after the component is destroyed."
28910     },
28911     {
28912      "name": "disable",
28913      "sig": "function (_self)\n{\n\n}",
28914      "type": "function",
28915      "desc": "Fires after the component is disabled."
28916     },
28917     {
28918      "name": "enable",
28919      "sig": "function (_self)\n{\n\n}",
28920      "type": "function",
28921      "desc": "Fires after the component is enabled."
28922     },
28923     {
28924      "name": "hide",
28925      "sig": "function (_self)\n{\n\n}",
28926      "type": "function",
28927      "desc": "Fires after the component is hidden."
28928     },
28929     {
28930      "name": "render",
28931      "sig": "function (_self)\n{\n\n}",
28932      "type": "function",
28933      "desc": "Fires after the component is rendered."
28934     },
28935     {
28936      "name": "show",
28937      "sig": "function (_self)\n{\n\n}",
28938      "type": "function",
28939      "desc": "Fires after the component is shown."
28940     }
28941    ],
28942    "methods": [
28943     {
28944      "name": "addEvents",
28945      "sig": "(Object object)",
28946      "type": "function",
28947      "desc": "Used to define events on this Observable"
28948     },
28949     {
28950      "name": "addListener",
28951      "sig": "(String eventName, Function handler, Object scope, Object options)",
28952      "type": "function",
28953      "desc": "Appends an event handler to this component"
28954     },
28955     {
28956      "name": "applyBody",
28957      "sig": "(Obj data)",
28958      "type": "function",
28959      "desc": "Set the body of the Dialog using the template"
28960     },
28961     {
28962      "name": "capture",
28963      "sig": "(Observable o, Function fn, Object scope)",
28964      "type": "function",
28965      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
28966     },
28967     {
28968      "name": "destroy",
28969      "sig": "()",
28970      "type": "function",
28971      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
28972     },
28973     {
28974      "name": "disable",
28975      "sig": "()",
28976      "type": "function",
28977      "desc": "Disable this component."
28978     },
28979     {
28980      "name": "enable",
28981      "sig": "()",
28982      "type": "function",
28983      "desc": "Enable this component."
28984     },
28985     {
28986      "name": "fireEvent",
28987      "sig": "(String eventName, Object... args)",
28988      "type": "function",
28989      "desc": "Fires the specified event with the passed parameters (minus the event name)."
28990     },
28991     {
28992      "name": "focus",
28993      "sig": "(Boolean selectText)",
28994      "type": "function",
28995      "desc": "Try to focus this component."
28996     },
28997     {
28998      "name": "getChildContainer",
28999      "sig": "()",
29000      "type": "function",
29001      "desc": "Fetch the element to add children to"
29002     },
29003     {
29004      "name": "getEl",
29005      "sig": "()",
29006      "type": "function",
29007      "desc": "Returns the underlying {@link Roo.Element}."
29008     },
29009     {
29010      "name": "getId",
29011      "sig": "()",
29012      "type": "function",
29013      "desc": "Returns the id of this component."
29014     },
29015     {
29016      "name": "hasListener",
29017      "sig": "(String eventName)",
29018      "type": "function",
29019      "desc": "Checks to see if this object has any listeners for a specified event"
29020     },
29021     {
29022      "name": "hide",
29023      "sig": "()",
29024      "type": "function",
29025      "desc": "Hide a component - adds 'hidden' class"
29026     },
29027     {
29028      "name": "initEvents",
29029      "sig": "()",
29030      "type": "function",
29031      "desc": "Initialize Events for the element"
29032     },
29033     {
29034      "name": "isVisible",
29035      "sig": "()",
29036      "type": "function",
29037      "desc": "Returns true if this component is visible."
29038     },
29039     {
29040      "name": "on",
29041      "sig": "(String eventName, Function handler, Object scope, Object options)",
29042      "type": "function",
29043      "desc": "Appends an event handler to this element (shorthand for addListener)"
29044     },
29045     {
29046      "name": "purgeListeners",
29047      "sig": "()",
29048      "type": "function",
29049      "desc": "Removes all listeners for this object"
29050     },
29051     {
29052      "name": "releaseCapture",
29053      "sig": "(Observable o)",
29054      "type": "function",
29055      "desc": "Removes <b>all</b> added captures from the Observable."
29056     },
29057     {
29058      "name": "removeListener",
29059      "sig": "(String eventName, Function handler, Object scope)",
29060      "type": "function",
29061      "desc": "Removes a listener"
29062     },
29063     {
29064      "name": "render",
29065      "sig": "(String/HTMLElement/Element container)",
29066      "type": "function",
29067      "desc": "If this is a lazy rendering component, render it to its container element."
29068     },
29069     {
29070      "name": "setBody",
29071      "sig": "(String str)",
29072      "type": "function",
29073      "desc": "Set the body of the Dialog"
29074     },
29075     {
29076      "name": "setDisabled",
29077      "sig": "(Boolean disabled)",
29078      "type": "function",
29079      "desc": "Convenience function for setting disabled/enabled by boolean."
29080     },
29081     {
29082      "name": "setTitle",
29083      "sig": "(String str)",
29084      "type": "function",
29085      "desc": "Set the title of the Dialog"
29086     },
29087     {
29088      "name": "setVisible",
29089      "sig": "(Boolean visible)",
29090      "type": "function",
29091      "desc": "Convenience function to hide or show this component by boolean."
29092     },
29093     {
29094      "name": "show",
29095      "sig": "()",
29096      "type": "function",
29097      "desc": "Show a component - removes 'hidden' class"
29098     },
29099     {
29100      "name": "tooltipEl",
29101      "sig": "()",
29102      "type": "function",
29103      "desc": "Fetch the element to display the tooltip on."
29104     },
29105     {
29106      "name": "un",
29107      "sig": "(String eventName, Function handler, Object scope)",
29108      "type": "function",
29109      "desc": "Removes a listener (shorthand for removeListener)"
29110     }
29111    ]
29112   },
29113   "Roo.bootstrap.MonthField": {
29114    "props": [
29115     {
29116      "name": "language",
29117      "type": "String",
29118      "desc": "default en",
29119      "memberOf": ""
29120     },
29121     {
29122      "name": "disabled",
29123      "type": "Boolean",
29124      "desc": "is it disabled",
29125      "memberOf": "Roo.bootstrap.Input"
29126     },
29127     {
29128      "name": "inputType",
29129      "type": "String",
29130      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
29131      "memberOf": "Roo.bootstrap.Input"
29132     },
29133     {
29134      "name": "name",
29135      "type": "String",
29136      "desc": "name of the input",
29137      "memberOf": "Roo.bootstrap.Input"
29138     },
29139     {
29140      "name": "fieldLabel",
29141      "type": "string",
29142      "desc": "- the label associated",
29143      "memberOf": "Roo.bootstrap.Input"
29144     },
29145     {
29146      "name": "placeholder",
29147      "type": "string",
29148      "desc": "- placeholder to put in text.",
29149      "memberOf": "Roo.bootstrap.Input"
29150     },
29151     {
29152      "name": "before",
29153      "type": "string",
29154      "desc": "- input group add on before",
29155      "memberOf": "Roo.bootstrap.Input"
29156     },
29157     {
29158      "name": "after",
29159      "type": "string",
29160      "desc": "- input group add on after",
29161      "memberOf": "Roo.bootstrap.Input"
29162     },
29163     {
29164      "name": "size",
29165      "type": "string",
29166      "desc": "- (lg|sm) or leave empty..",
29167      "memberOf": "Roo.bootstrap.Input"
29168     },
29169     {
29170      "name": "xs",
29171      "type": "Number",
29172      "desc": "colspan out of 12 for mobile-sized screens",
29173      "memberOf": "Roo.bootstrap.Input"
29174     },
29175     {
29176      "name": "sm",
29177      "type": "Number",
29178      "desc": "colspan out of 12 for tablet-sized screens",
29179      "memberOf": "Roo.bootstrap.Input"
29180     },
29181     {
29182      "name": "md",
29183      "type": "Number",
29184      "desc": "colspan out of 12 for computer-sized screens",
29185      "memberOf": "Roo.bootstrap.Input"
29186     },
29187     {
29188      "name": "lg",
29189      "type": "Number",
29190      "desc": "colspan out of 12 for large computer-sized screens",
29191      "memberOf": "Roo.bootstrap.Input"
29192     },
29193     {
29194      "name": "value",
29195      "type": "string",
29196      "desc": "default value of the input",
29197      "memberOf": "Roo.bootstrap.Input"
29198     },
29199     {
29200      "name": "labelWidth",
29201      "type": "Number",
29202      "desc": "set the width of label (0-12)",
29203      "memberOf": "Roo.bootstrap.Input"
29204     },
29205     {
29206      "name": "labelAlign",
29207      "type": "String",
29208      "desc": "",
29209      "memberOf": "Roo.bootstrap.Input",
29210      "optvals": [
29211       "top",
29212       "left"
29213      ]
29214     },
29215     {
29216      "name": "readOnly",
29217      "type": "Boolean",
29218      "desc": "Specifies that the field should be read-only",
29219      "memberOf": "Roo.bootstrap.Input"
29220     },
29221     {
29222      "name": "autocomplete",
29223      "type": "String",
29224      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
29225      "memberOf": "Roo.bootstrap.Input"
29226     },
29227     {
29228      "name": "indicatorpos",
29229      "type": "String",
29230      "desc": "default left",
29231      "memberOf": "Roo.bootstrap.Input",
29232      "optvals": [
29233       "left",
29234       "right"
29235      ]
29236     },
29237     {
29238      "name": "align",
29239      "type": "String",
29240      "desc": "Default left",
29241      "memberOf": "Roo.bootstrap.Input",
29242      "optvals": [
29243       "left",
29244       "center",
29245       "right"
29246      ]
29247     },
29248     {
29249      "name": "forceFeedback",
29250      "type": "Boolean",
29251      "desc": "Default false",
29252      "memberOf": "Roo.bootstrap.Input",
29253      "optvals": [
29254       "true",
29255       "false"
29256      ]
29257     },
29258     {
29259      "name": "validationEvent",
29260      "type": "String/Boolean",
29261      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
29262      "memberOf": "Roo.bootstrap.Input"
29263     },
29264     {
29265      "name": "validateOnBlur",
29266      "type": "Boolean",
29267      "desc": "Whether the field should validate when it loses focus (defaults to true).",
29268      "memberOf": "Roo.bootstrap.Input"
29269     },
29270     {
29271      "name": "validationDelay",
29272      "type": "Number",
29273      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
29274      "memberOf": "Roo.bootstrap.Input"
29275     },
29276     {
29277      "name": "focusClass",
29278      "type": "String",
29279      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
29280      "memberOf": "Roo.bootstrap.Input"
29281     },
29282     {
29283      "name": "invalidClass",
29284      "type": "String",
29285      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
29286      "memberOf": "Roo.bootstrap.Input"
29287     },
29288     {
29289      "name": "validClass",
29290      "type": "String",
29291      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
29292      "memberOf": "Roo.bootstrap.Input"
29293     },
29294     {
29295      "name": "hasFeedback",
29296      "type": "Boolean",
29297      "desc": "default true",
29298      "memberOf": "Roo.bootstrap.Input",
29299      "optvals": [
29300       "true",
29301       "false"
29302      ]
29303     },
29304     {
29305      "name": "invalidFeedbackIcon",
29306      "type": "String",
29307      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
29308      "memberOf": "Roo.bootstrap.Input"
29309     },
29310     {
29311      "name": "validFeedbackIcon",
29312      "type": "String",
29313      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
29314      "memberOf": "Roo.bootstrap.Input"
29315     },
29316     {
29317      "name": "selectOnFocus",
29318      "type": "Boolean",
29319      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
29320      "memberOf": "Roo.bootstrap.Input"
29321     },
29322     {
29323      "name": "maskRe",
29324      "type": "String",
29325      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
29326      "memberOf": "Roo.bootstrap.Input"
29327     },
29328     {
29329      "name": "vtype",
29330      "type": "String",
29331      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
29332      "memberOf": "Roo.bootstrap.Input"
29333     },
29334     {
29335      "name": "disableKeyFilter",
29336      "type": "Boolean",
29337      "desc": "True to disable input keystroke filtering (defaults to false)",
29338      "memberOf": "Roo.bootstrap.Input"
29339     },
29340     {
29341      "name": "allowBlank",
29342      "type": "Boolean",
29343      "desc": "False to validate that the value length > 0 (defaults to true)",
29344      "memberOf": "Roo.bootstrap.Input"
29345     },
29346     {
29347      "name": "blankText",
29348      "type": "String",
29349      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
29350      "memberOf": "Roo.bootstrap.Input"
29351     },
29352     {
29353      "name": "minLength",
29354      "type": "Number",
29355      "desc": "Minimum input field length required (defaults to 0)",
29356      "memberOf": "Roo.bootstrap.Input"
29357     },
29358     {
29359      "name": "maxLength",
29360      "type": "Number",
29361      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
29362      "memberOf": "Roo.bootstrap.Input"
29363     },
29364     {
29365      "name": "minLengthText",
29366      "type": "String",
29367      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
29368      "memberOf": "Roo.bootstrap.Input"
29369     },
29370     {
29371      "name": "maxLengthText",
29372      "type": "String",
29373      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
29374      "memberOf": "Roo.bootstrap.Input"
29375     },
29376     {
29377      "name": "validator",
29378      "type": "Function",
29379      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
29380      "memberOf": "Roo.bootstrap.Input"
29381     },
29382     {
29383      "name": "regex",
29384      "type": "RegExp",
29385      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
29386      "memberOf": "Roo.bootstrap.Input"
29387     },
29388     {
29389      "name": "regexText",
29390      "type": "String",
29391      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
29392      "memberOf": "Roo.bootstrap.Input"
29393     },
29394     {
29395      "name": "cls",
29396      "type": "String",
29397      "desc": "css class",
29398      "memberOf": "Roo.bootstrap.Component"
29399     },
29400     {
29401      "name": "style",
29402      "type": "String",
29403      "desc": "any extra css",
29404      "memberOf": "Roo.bootstrap.Component"
29405     },
29406     {
29407      "name": "xattr",
29408      "type": "Object",
29409      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
29410      "memberOf": "Roo.bootstrap.Component"
29411     },
29412     {
29413      "name": "can_build_overlaid",
29414      "type": "Boolean",
29415      "desc": "True if element can be rebuild from a HTML page",
29416      "memberOf": "Roo.bootstrap.Component"
29417     },
29418     {
29419      "name": "dataId",
29420      "type": "string",
29421      "desc": "cutomer id",
29422      "memberOf": "Roo.bootstrap.Component"
29423     },
29424     {
29425      "name": "tooltip",
29426      "type": "string",
29427      "desc": "Text for the tooltip",
29428      "memberOf": "Roo.bootstrap.Component"
29429     },
29430     {
29431      "name": "container_method",
29432      "type": "string",
29433      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
29434      "memberOf": "Roo.bootstrap.Component"
29435     },
29436     {
29437      "name": "disableClass",
29438      "type": "String",
29439      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
29440      "memberOf": "Roo.Component"
29441     },
29442     {
29443      "name": "allowDomMove",
29444      "type": "Boolean",
29445      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
29446      "memberOf": "Roo.Component"
29447     },
29448     {
29449      "name": "hideMode",
29450      "type": "String",
29451      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
29452      "memberOf": "Roo.Component",
29453      "optvals": [
29454       "display",
29455       "visibility"
29456      ]
29457     },
29458     {
29459      "name": "actionMode",
29460      "type": "String",
29461      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
29462      "memberOf": "Roo.Component"
29463     },
29464     {
29465      "name": "listeners",
29466      "type": "Object",
29467      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
29468      "memberOf": "Roo.util.Observable"
29469     }
29470    ],
29471    "events": [
29472     {
29473      "name": "beforedestroy",
29474      "sig": "function (_self)\n{\n\n}",
29475      "type": "function",
29476      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
29477     },
29478     {
29479      "name": "beforehide",
29480      "sig": "function (_self)\n{\n\n}",
29481      "type": "function",
29482      "desc": "Fires before the component is hidden. Return false to stop the hide."
29483     },
29484     {
29485      "name": "beforerender",
29486      "sig": "function (_self)\n{\n\n}",
29487      "type": "function",
29488      "desc": "Fires before the component is rendered. Return false to stop the render."
29489     },
29490     {
29491      "name": "beforeshow",
29492      "sig": "function (_self)\n{\n\n}",
29493      "type": "function",
29494      "desc": "Fires before the component is shown.  Return false to stop the show."
29495     },
29496     {
29497      "name": "blur",
29498      "sig": "function (_self)\n{\n\n}",
29499      "type": "function",
29500      "desc": "Fires when this field loses input focus."
29501     },
29502     {
29503      "name": "change",
29504      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
29505      "type": "function",
29506      "desc": "Fires just before the field blurs if the field value has changed."
29507     },
29508     {
29509      "name": "childrenrendered",
29510      "sig": "function (_self)\n{\n\n}",
29511      "type": "function",
29512      "desc": "Fires when the children have been rendered.."
29513     },
29514     {
29515      "name": "destroy",
29516      "sig": "function (_self)\n{\n\n}",
29517      "type": "function",
29518      "desc": "Fires after the component is destroyed."
29519     },
29520     {
29521      "name": "disable",
29522      "sig": "function (_self)\n{\n\n}",
29523      "type": "function",
29524      "desc": "Fires after the component is disabled."
29525     },
29526     {
29527      "name": "enable",
29528      "sig": "function (_self)\n{\n\n}",
29529      "type": "function",
29530      "desc": "Fires after the component is enabled."
29531     },
29532     {
29533      "name": "focus",
29534      "sig": "function (_self)\n{\n\n}",
29535      "type": "function",
29536      "desc": "Fires when this field receives input focus."
29537     },
29538     {
29539      "name": "hide",
29540      "sig": "function (_self)\n{\n\n}",
29541      "type": "function",
29542      "desc": "Fires after the component is hidden."
29543     },
29544     {
29545      "name": "invalid",
29546      "sig": "function (_self, msg)\n{\n\n}",
29547      "type": "function",
29548      "desc": "Fires after the field has been marked as invalid."
29549     },
29550     {
29551      "name": "keyup",
29552      "sig": "function (_self, e)\n{\n\n}",
29553      "type": "function",
29554      "desc": "Fires after the key up"
29555     },
29556     {
29557      "name": "render",
29558      "sig": "function (_self)\n{\n\n}",
29559      "type": "function",
29560      "desc": "Fires after the component is rendered."
29561     },
29562     {
29563      "name": "select",
29564      "sig": "function (_self, oldvalue, newvalue)\n{\n\n}",
29565      "type": "function",
29566      "desc": "Fires when select a date."
29567     },
29568     {
29569      "name": "show",
29570      "sig": "function (_self, date)\n{\n\n}",
29571      "type": "function",
29572      "desc": "Fires when this field show."
29573     },
29574     {
29575      "name": "specialkey",
29576      "sig": "function (_self, e)\n{\n\n}",
29577      "type": "function",
29578      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
29579     },
29580     {
29581      "name": "valid",
29582      "sig": "function (_self)\n{\n\n}",
29583      "type": "function",
29584      "desc": "Fires after the field has been validated with no errors."
29585     }
29586    ],
29587    "methods": [
29588     {
29589      "name": "addEvents",
29590      "sig": "(Object object)",
29591      "type": "function",
29592      "desc": "Used to define events on this Observable"
29593     },
29594     {
29595      "name": "addListener",
29596      "sig": "(String eventName, Function handler, Object scope, Object options)",
29597      "type": "function",
29598      "desc": "Appends an event handler to this component"
29599     },
29600     {
29601      "name": "capture",
29602      "sig": "(Observable o, Function fn, Object scope)",
29603      "type": "function",
29604      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
29605     },
29606     {
29607      "name": "clearInvalid",
29608      "sig": "()",
29609      "type": "function",
29610      "desc": "Clear any invalid styles/messages for this field"
29611     },
29612     {
29613      "name": "destroy",
29614      "sig": "()",
29615      "type": "function",
29616      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
29617     },
29618     {
29619      "name": "disable",
29620      "sig": "()",
29621      "type": "function",
29622      "desc": "Disable this component."
29623     },
29624     {
29625      "name": "enable",
29626      "sig": "()",
29627      "type": "function",
29628      "desc": "Enable this component."
29629     },
29630     {
29631      "name": "fireEvent",
29632      "sig": "(String eventName, Object... args)",
29633      "type": "function",
29634      "desc": "Fires the specified event with the passed parameters (minus the event name)."
29635     },
29636     {
29637      "name": "focus",
29638      "sig": "(Boolean selectText)",
29639      "type": "function",
29640      "desc": "Try to focus this component."
29641     },
29642     {
29643      "name": "getChildContainer",
29644      "sig": "()",
29645      "type": "function",
29646      "desc": "Fetch the element to add children to"
29647     },
29648     {
29649      "name": "getEl",
29650      "sig": "()",
29651      "type": "function",
29652      "desc": "Returns the underlying {@link Roo.Element}."
29653     },
29654     {
29655      "name": "getId",
29656      "sig": "()",
29657      "type": "function",
29658      "desc": "Returns the id of this component."
29659     },
29660     {
29661      "name": "getName",
29662      "sig": "()",
29663      "type": "function",
29664      "desc": "Returns the name of the field"
29665     },
29666     {
29667      "name": "getRawValue",
29668      "sig": "()",
29669      "type": "function",
29670      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
29671     },
29672     {
29673      "name": "getValue",
29674      "sig": "()",
29675      "type": "function",
29676      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
29677     },
29678     {
29679      "name": "hasListener",
29680      "sig": "(String eventName)",
29681      "type": "function",
29682      "desc": "Checks to see if this object has any listeners for a specified event"
29683     },
29684     {
29685      "name": "hide",
29686      "sig": "()",
29687      "type": "function",
29688      "desc": "Hide a component - adds 'hidden' class"
29689     },
29690     {
29691      "name": "initEvents",
29692      "sig": "()",
29693      "type": "function",
29694      "desc": "Initialize Events for the element"
29695     },
29696     {
29697      "name": "inputEl",
29698      "sig": "()",
29699      "type": "function",
29700      "desc": "return the real input element."
29701     },
29702     {
29703      "name": "isVisible",
29704      "sig": "()",
29705      "type": "function",
29706      "desc": "Returns true if this component is visible."
29707     },
29708     {
29709      "name": "markInvalid",
29710      "sig": "(String msg)",
29711      "type": "function",
29712      "desc": "Mark this field as invalid"
29713     },
29714     {
29715      "name": "markValid",
29716      "sig": "()",
29717      "type": "function",
29718      "desc": "Mark this field as valid"
29719     },
29720     {
29721      "name": "on",
29722      "sig": "(String eventName, Function handler, Object scope, Object options)",
29723      "type": "function",
29724      "desc": "Appends an event handler to this element (shorthand for addListener)"
29725     },
29726     {
29727      "name": "purgeListeners",
29728      "sig": "()",
29729      "type": "function",
29730      "desc": "Removes all listeners for this object"
29731     },
29732     {
29733      "name": "releaseCapture",
29734      "sig": "(Observable o)",
29735      "type": "function",
29736      "desc": "Removes <b>all</b> added captures from the Observable."
29737     },
29738     {
29739      "name": "removeListener",
29740      "sig": "(String eventName, Function handler, Object scope)",
29741      "type": "function",
29742      "desc": "Removes a listener"
29743     },
29744     {
29745      "name": "render",
29746      "sig": "(String/HTMLElement/Element container)",
29747      "type": "function",
29748      "desc": "If this is a lazy rendering component, render it to its container element."
29749     },
29750     {
29751      "name": "reset",
29752      "sig": "()",
29753      "type": "function",
29754      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
29755     },
29756     {
29757      "name": "setDisabled",
29758      "sig": "(Boolean disabled)",
29759      "type": "function",
29760      "desc": "Convenience function for setting disabled/enabled by boolean."
29761     },
29762     {
29763      "name": "setRawValue",
29764      "sig": "(Mixed value)",
29765      "type": "function",
29766      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
29767     },
29768     {
29769      "name": "setValue",
29770      "sig": "(Mixed value)",
29771      "type": "function",
29772      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
29773     },
29774     {
29775      "name": "setVisible",
29776      "sig": "(Boolean visible)",
29777      "type": "function",
29778      "desc": "Convenience function to hide or show this component by boolean."
29779     },
29780     {
29781      "name": "show",
29782      "sig": "()",
29783      "type": "function",
29784      "desc": "Show a component - removes 'hidden' class"
29785     },
29786     {
29787      "name": "tooltipEl",
29788      "sig": "()",
29789      "type": "function",
29790      "desc": "Fetch the element to display the tooltip on."
29791     },
29792     {
29793      "name": "un",
29794      "sig": "(String eventName, Function handler, Object scope)",
29795      "type": "function",
29796      "desc": "Removes a listener (shorthand for removeListener)"
29797     },
29798     {
29799      "name": "validate",
29800      "sig": "()",
29801      "type": "function",
29802      "desc": "Validates the field value"
29803     },
29804     {
29805      "name": "validateValue",
29806      "sig": "(Mixed value)",
29807      "type": "function",
29808      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
29809     }
29810    ]
29811   },
29812   "Roo.bootstrap.NavGroup": {
29813    "props": [
29814     {
29815      "name": "align",
29816      "type": "String",
29817      "desc": "",
29818      "memberOf": "",
29819      "optvals": [
29820       "left",
29821       "right"
29822      ]
29823     },
29824     {
29825      "name": "inverse",
29826      "type": "Boolean",
29827      "desc": "",
29828      "memberOf": ""
29829     },
29830     {
29831      "name": "type",
29832      "type": "String",
29833      "desc": "default nav",
29834      "memberOf": "",
29835      "optvals": [
29836       "nav",
29837       "pills",
29838       "tab"
29839      ]
29840     },
29841     {
29842      "name": "navId",
29843      "type": "String",
29844      "desc": "- reference Id for navbar.",
29845      "memberOf": ""
29846     },
29847     {
29848      "name": "cls",
29849      "type": "String",
29850      "desc": "css class",
29851      "memberOf": "Roo.bootstrap.Component"
29852     },
29853     {
29854      "name": "style",
29855      "type": "String",
29856      "desc": "any extra css",
29857      "memberOf": "Roo.bootstrap.Component"
29858     },
29859     {
29860      "name": "xattr",
29861      "type": "Object",
29862      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
29863      "memberOf": "Roo.bootstrap.Component"
29864     },
29865     {
29866      "name": "can_build_overlaid",
29867      "type": "Boolean",
29868      "desc": "True if element can be rebuild from a HTML page",
29869      "memberOf": "Roo.bootstrap.Component"
29870     },
29871     {
29872      "name": "dataId",
29873      "type": "string",
29874      "desc": "cutomer id",
29875      "memberOf": "Roo.bootstrap.Component"
29876     },
29877     {
29878      "name": "name",
29879      "type": "string",
29880      "desc": "Specifies name attribute",
29881      "memberOf": "Roo.bootstrap.Component"
29882     },
29883     {
29884      "name": "tooltip",
29885      "type": "string",
29886      "desc": "Text for the tooltip",
29887      "memberOf": "Roo.bootstrap.Component"
29888     },
29889     {
29890      "name": "container_method",
29891      "type": "string",
29892      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
29893      "memberOf": "Roo.bootstrap.Component"
29894     },
29895     {
29896      "name": "disableClass",
29897      "type": "String",
29898      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
29899      "memberOf": "Roo.Component"
29900     },
29901     {
29902      "name": "allowDomMove",
29903      "type": "Boolean",
29904      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
29905      "memberOf": "Roo.Component"
29906     },
29907     {
29908      "name": "hideMode",
29909      "type": "String",
29910      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
29911      "memberOf": "Roo.Component",
29912      "optvals": [
29913       "display",
29914       "visibility"
29915      ]
29916     },
29917     {
29918      "name": "actionMode",
29919      "type": "String",
29920      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
29921      "memberOf": "Roo.Component"
29922     },
29923     {
29924      "name": "listeners",
29925      "type": "Object",
29926      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
29927      "memberOf": "Roo.util.Observable"
29928     }
29929    ],
29930    "events": [
29931     {
29932      "name": "beforedestroy",
29933      "sig": "function (_self)\n{\n\n}",
29934      "type": "function",
29935      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
29936     },
29937     {
29938      "name": "beforehide",
29939      "sig": "function (_self)\n{\n\n}",
29940      "type": "function",
29941      "desc": "Fires before the component is hidden. Return false to stop the hide."
29942     },
29943     {
29944      "name": "beforerender",
29945      "sig": "function (_self)\n{\n\n}",
29946      "type": "function",
29947      "desc": "Fires before the component is rendered. Return false to stop the render."
29948     },
29949     {
29950      "name": "beforeshow",
29951      "sig": "function (_self)\n{\n\n}",
29952      "type": "function",
29953      "desc": "Fires before the component is shown.  Return false to stop the show."
29954     },
29955     {
29956      "name": "changed",
29957      "sig": "function (_self, selected, prev)\n{\n\n}",
29958      "type": "function",
29959      "desc": "Fires when the active item changes"
29960     },
29961     {
29962      "name": "childrenrendered",
29963      "sig": "function (_self)\n{\n\n}",
29964      "type": "function",
29965      "desc": "Fires when the children have been rendered.."
29966     },
29967     {
29968      "name": "destroy",
29969      "sig": "function (_self)\n{\n\n}",
29970      "type": "function",
29971      "desc": "Fires after the component is destroyed."
29972     },
29973     {
29974      "name": "disable",
29975      "sig": "function (_self)\n{\n\n}",
29976      "type": "function",
29977      "desc": "Fires after the component is disabled."
29978     },
29979     {
29980      "name": "enable",
29981      "sig": "function (_self)\n{\n\n}",
29982      "type": "function",
29983      "desc": "Fires after the component is enabled."
29984     },
29985     {
29986      "name": "hide",
29987      "sig": "function (_self)\n{\n\n}",
29988      "type": "function",
29989      "desc": "Fires after the component is hidden."
29990     },
29991     {
29992      "name": "render",
29993      "sig": "function (_self)\n{\n\n}",
29994      "type": "function",
29995      "desc": "Fires after the component is rendered."
29996     },
29997     {
29998      "name": "show",
29999      "sig": "function (_self)\n{\n\n}",
30000      "type": "function",
30001      "desc": "Fires after the component is shown."
30002     }
30003    ],
30004    "methods": [
30005     {
30006      "name": "addEvents",
30007      "sig": "(Object object)",
30008      "type": "function",
30009      "desc": "Used to define events on this Observable"
30010     },
30011     {
30012      "name": "addItem",
30013      "sig": "(Roo.bootstrap.NavItem the)",
30014      "type": "function",
30015      "desc": "adds a Navigation item"
30016     },
30017     {
30018      "name": "addListener",
30019      "sig": "(String eventName, Function handler, Object scope, Object options)",
30020      "type": "function",
30021      "desc": "Appends an event handler to this component"
30022     },
30023     {
30024      "name": "capture",
30025      "sig": "(Observable o, Function fn, Object scope)",
30026      "type": "function",
30027      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
30028     },
30029     {
30030      "name": "clearAll",
30031      "sig": "()",
30032      "type": "function",
30033      "desc": "clear all the Navigation item"
30034     },
30035     {
30036      "name": "destroy",
30037      "sig": "()",
30038      "type": "function",
30039      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
30040     },
30041     {
30042      "name": "disable",
30043      "sig": "()",
30044      "type": "function",
30045      "desc": "Disable this component."
30046     },
30047     {
30048      "name": "enable",
30049      "sig": "()",
30050      "type": "function",
30051      "desc": "Enable this component."
30052     },
30053     {
30054      "name": "fireEvent",
30055      "sig": "(String eventName, Object... args)",
30056      "type": "function",
30057      "desc": "Fires the specified event with the passed parameters (minus the event name)."
30058     },
30059     {
30060      "name": "focus",
30061      "sig": "(Boolean selectText)",
30062      "type": "function",
30063      "desc": "Try to focus this component."
30064     },
30065     {
30066      "name": "get",
30067      "sig": "(string the)",
30068      "type": "function",
30069      "desc": "fetch a Navigation Group based on the navigation ID"
30070     },
30071     {
30072      "name": "getActive",
30073      "sig": "()",
30074      "type": "function",
30075      "desc": "gets the active Navigation item"
30076     },
30077     {
30078      "name": "getChildContainer",
30079      "sig": "()",
30080      "type": "function",
30081      "desc": "Fetch the element to add children to"
30082     },
30083     {
30084      "name": "getEl",
30085      "sig": "()",
30086      "type": "function",
30087      "desc": "Returns the underlying {@link Roo.Element}."
30088     },
30089     {
30090      "name": "getId",
30091      "sig": "()",
30092      "type": "function",
30093      "desc": "Returns the id of this component."
30094     },
30095     {
30096      "name": "hasListener",
30097      "sig": "(String eventName)",
30098      "type": "function",
30099      "desc": "Checks to see if this object has any listeners for a specified event"
30100     },
30101     {
30102      "name": "hide",
30103      "sig": "()",
30104      "type": "function",
30105      "desc": "Hide a component - adds 'hidden' class"
30106     },
30107     {
30108      "name": "initEvents",
30109      "sig": "()",
30110      "type": "function",
30111      "desc": "Initialize Events for the element"
30112     },
30113     {
30114      "name": "isVisible",
30115      "sig": "()",
30116      "type": "function",
30117      "desc": "Returns true if this component is visible."
30118     },
30119     {
30120      "name": "on",
30121      "sig": "(String eventName, Function handler, Object scope, Object options)",
30122      "type": "function",
30123      "desc": "Appends an event handler to this element (shorthand for addListener)"
30124     },
30125     {
30126      "name": "purgeListeners",
30127      "sig": "()",
30128      "type": "function",
30129      "desc": "Removes all listeners for this object"
30130     },
30131     {
30132      "name": "register",
30133      "sig": "(Roo.bootstrap.NavItem the)",
30134      "type": "function",
30135      "desc": "register a Navigation item"
30136     },
30137     {
30138      "name": "register",
30139      "sig": "(Roo.bootstrap.NavGroup the)",
30140      "type": "function",
30141      "desc": "register a Navigation Group"
30142     },
30143     {
30144      "name": "releaseCapture",
30145      "sig": "(Observable o)",
30146      "type": "function",
30147      "desc": "Removes <b>all</b> added captures from the Observable."
30148     },
30149     {
30150      "name": "removeListener",
30151      "sig": "(String eventName, Function handler, Object scope)",
30152      "type": "function",
30153      "desc": "Removes a listener"
30154     },
30155     {
30156      "name": "render",
30157      "sig": "(String/HTMLElement/Element container)",
30158      "type": "function",
30159      "desc": "If this is a lazy rendering component, render it to its container element."
30160     },
30161     {
30162      "name": "setActiveItem",
30163      "sig": "(Roo.bootstrap.NavItem the)",
30164      "type": "function",
30165      "desc": "sets the active Navigation item"
30166     },
30167     {
30168      "name": "setDisabled",
30169      "sig": "(Boolean disabled)",
30170      "type": "function",
30171      "desc": "Convenience function for setting disabled/enabled by boolean."
30172     },
30173     {
30174      "name": "setVisible",
30175      "sig": "(Boolean visible)",
30176      "type": "function",
30177      "desc": "Convenience function to hide or show this component by boolean."
30178     },
30179     {
30180      "name": "show",
30181      "sig": "()",
30182      "type": "function",
30183      "desc": "Show a component - removes 'hidden' class"
30184     },
30185     {
30186      "name": "tooltipEl",
30187      "sig": "()",
30188      "type": "function",
30189      "desc": "Fetch the element to display the tooltip on."
30190     },
30191     {
30192      "name": "un",
30193      "sig": "(String eventName, Function handler, Object scope)",
30194      "type": "function",
30195      "desc": "Removes a listener (shorthand for removeListener)"
30196     }
30197    ]
30198   },
30199   "Roo.bootstrap.NavHeaderbar": {
30200    "props": [
30201     {
30202      "name": "brand",
30203      "type": "String",
30204      "desc": "what is brand",
30205      "memberOf": ""
30206     },
30207     {
30208      "name": "position",
30209      "type": "String",
30210      "desc": "position",
30211      "memberOf": "",
30212      "optvals": [
30213       "fixed-top",
30214       "fixed-bottom",
30215       "static-top"
30216      ]
30217     },
30218     {
30219      "name": "brand_href",
30220      "type": "String",
30221      "desc": "href of the brand",
30222      "memberOf": ""
30223     },
30224     {
30225      "name": "srButton",
30226      "type": "Boolean",
30227      "desc": "generate the (screen reader / mobile) sr-only button   default true",
30228      "memberOf": ""
30229     },
30230     {
30231      "name": "autohide",
30232      "type": "Boolean",
30233      "desc": "a top nav bar header that hides on scroll.",
30234      "memberOf": ""
30235     },
30236     {
30237      "name": "desktopCenter",
30238      "type": "Boolean",
30239      "desc": "should the header be centered on desktop using a container class",
30240      "memberOf": ""
30241     },
30242     {
30243      "name": "mobilerow",
30244      "type": "Roo.bootstrap.Row",
30245      "desc": "- a row to display on mobile only..",
30246      "memberOf": ""
30247     },
30248     {
30249      "name": "inverse",
30250      "type": "Boolean",
30251      "desc": "is inverted color",
30252      "memberOf": "Roo.bootstrap.NavSimplebar"
30253     },
30254     {
30255      "name": "type",
30256      "type": "String",
30257      "desc": "",
30258      "memberOf": "Roo.bootstrap.NavSimplebar",
30259      "optvals": [
30260       "nav",
30261       "pills",
30262       "tabs"
30263      ]
30264     },
30265     {
30266      "name": "arrangement",
30267      "type": "Boolean",
30268      "desc": "stacked | justified",
30269      "memberOf": "Roo.bootstrap.NavSimplebar"
30270     },
30271     {
30272      "name": "align",
30273      "type": "String",
30274      "desc": "alignment",
30275      "memberOf": "Roo.bootstrap.NavSimplebar",
30276      "optvals": [
30277       "left",
30278       "right"
30279      ]
30280     },
30281     {
30282      "name": "main",
30283      "type": "Boolean",
30284      "desc": "main nav bar? default false",
30285      "memberOf": "Roo.bootstrap.NavSimplebar",
30286      "optvals": [
30287       "true",
30288       "false"
30289      ]
30290     },
30291     {
30292      "name": "loadMask",
30293      "type": "Boolean",
30294      "desc": "loadMask on the bar",
30295      "memberOf": "Roo.bootstrap.NavSimplebar",
30296      "optvals": [
30297       "true",
30298       "false"
30299      ]
30300     },
30301     {
30302      "name": "tag",
30303      "type": "String",
30304      "desc": "default is nav",
30305      "memberOf": "Roo.bootstrap.NavSimplebar",
30306      "optvals": [
30307       "header",
30308       "footer",
30309       "nav",
30310       "div"
30311      ]
30312     },
30313     {
30314      "name": "cls",
30315      "type": "String",
30316      "desc": "css class",
30317      "memberOf": "Roo.bootstrap.Component"
30318     },
30319     {
30320      "name": "style",
30321      "type": "String",
30322      "desc": "any extra css",
30323      "memberOf": "Roo.bootstrap.Component"
30324     },
30325     {
30326      "name": "xattr",
30327      "type": "Object",
30328      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
30329      "memberOf": "Roo.bootstrap.Component"
30330     },
30331     {
30332      "name": "can_build_overlaid",
30333      "type": "Boolean",
30334      "desc": "True if element can be rebuild from a HTML page",
30335      "memberOf": "Roo.bootstrap.Component"
30336     },
30337     {
30338      "name": "dataId",
30339      "type": "string",
30340      "desc": "cutomer id",
30341      "memberOf": "Roo.bootstrap.Component"
30342     },
30343     {
30344      "name": "name",
30345      "type": "string",
30346      "desc": "Specifies name attribute",
30347      "memberOf": "Roo.bootstrap.Component"
30348     },
30349     {
30350      "name": "tooltip",
30351      "type": "string",
30352      "desc": "Text for the tooltip",
30353      "memberOf": "Roo.bootstrap.Component"
30354     },
30355     {
30356      "name": "container_method",
30357      "type": "string",
30358      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
30359      "memberOf": "Roo.bootstrap.Component"
30360     },
30361     {
30362      "name": "disableClass",
30363      "type": "String",
30364      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
30365      "memberOf": "Roo.Component"
30366     },
30367     {
30368      "name": "allowDomMove",
30369      "type": "Boolean",
30370      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
30371      "memberOf": "Roo.Component"
30372     },
30373     {
30374      "name": "hideMode",
30375      "type": "String",
30376      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
30377      "memberOf": "Roo.Component",
30378      "optvals": [
30379       "display",
30380       "visibility"
30381      ]
30382     },
30383     {
30384      "name": "actionMode",
30385      "type": "String",
30386      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
30387      "memberOf": "Roo.Component"
30388     },
30389     {
30390      "name": "listeners",
30391      "type": "Object",
30392      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
30393      "memberOf": "Roo.util.Observable"
30394     }
30395    ],
30396    "events": [
30397     {
30398      "name": "beforedestroy",
30399      "sig": "function (_self)\n{\n\n}",
30400      "type": "function",
30401      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
30402     },
30403     {
30404      "name": "beforehide",
30405      "sig": "function (_self)\n{\n\n}",
30406      "type": "function",
30407      "desc": "Fires before the component is hidden. Return false to stop the hide."
30408     },
30409     {
30410      "name": "beforerender",
30411      "sig": "function (_self)\n{\n\n}",
30412      "type": "function",
30413      "desc": "Fires before the component is rendered. Return false to stop the render."
30414     },
30415     {
30416      "name": "beforeshow",
30417      "sig": "function (_self)\n{\n\n}",
30418      "type": "function",
30419      "desc": "Fires before the component is shown.  Return false to stop the show."
30420     },
30421     {
30422      "name": "beforetoggle",
30423      "sig": "function (e)\n{\n\n}",
30424      "type": "function",
30425      "desc": "Fire before toggle the menu"
30426     },
30427     {
30428      "name": "childrenrendered",
30429      "sig": "function (_self)\n{\n\n}",
30430      "type": "function",
30431      "desc": "Fires when the children have been rendered.."
30432     },
30433     {
30434      "name": "destroy",
30435      "sig": "function (_self)\n{\n\n}",
30436      "type": "function",
30437      "desc": "Fires after the component is destroyed."
30438     },
30439     {
30440      "name": "disable",
30441      "sig": "function (_self)\n{\n\n}",
30442      "type": "function",
30443      "desc": "Fires after the component is disabled."
30444     },
30445     {
30446      "name": "enable",
30447      "sig": "function (_self)\n{\n\n}",
30448      "type": "function",
30449      "desc": "Fires after the component is enabled."
30450     },
30451     {
30452      "name": "hide",
30453      "sig": "function (_self)\n{\n\n}",
30454      "type": "function",
30455      "desc": "Fires after the component is hidden."
30456     },
30457     {
30458      "name": "render",
30459      "sig": "function (_self)\n{\n\n}",
30460      "type": "function",
30461      "desc": "Fires after the component is rendered."
30462     },
30463     {
30464      "name": "show",
30465      "sig": "function (_self)\n{\n\n}",
30466      "type": "function",
30467      "desc": "Fires after the component is shown."
30468     }
30469    ],
30470    "methods": [
30471     {
30472      "name": "addEvents",
30473      "sig": "(Object object)",
30474      "type": "function",
30475      "desc": "Used to define events on this Observable"
30476     },
30477     {
30478      "name": "addListener",
30479      "sig": "(String eventName, Function handler, Object scope, Object options)",
30480      "type": "function",
30481      "desc": "Appends an event handler to this component"
30482     },
30483     {
30484      "name": "capture",
30485      "sig": "(Observable o, Function fn, Object scope)",
30486      "type": "function",
30487      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
30488     },
30489     {
30490      "name": "destroy",
30491      "sig": "()",
30492      "type": "function",
30493      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
30494     },
30495     {
30496      "name": "disable",
30497      "sig": "()",
30498      "type": "function",
30499      "desc": "Disable this component."
30500     },
30501     {
30502      "name": "enable",
30503      "sig": "()",
30504      "type": "function",
30505      "desc": "Enable this component."
30506     },
30507     {
30508      "name": "fireEvent",
30509      "sig": "(String eventName, Object... args)",
30510      "type": "function",
30511      "desc": "Fires the specified event with the passed parameters (minus the event name)."
30512     },
30513     {
30514      "name": "focus",
30515      "sig": "(Boolean selectText)",
30516      "type": "function",
30517      "desc": "Try to focus this component."
30518     },
30519     {
30520      "name": "getChildContainer",
30521      "sig": "()",
30522      "type": "function",
30523      "desc": "Fetch the element to add children to"
30524     },
30525     {
30526      "name": "getEl",
30527      "sig": "()",
30528      "type": "function",
30529      "desc": "Returns the underlying {@link Roo.Element}."
30530     },
30531     {
30532      "name": "getId",
30533      "sig": "()",
30534      "type": "function",
30535      "desc": "Returns the id of this component."
30536     },
30537     {
30538      "name": "hasListener",
30539      "sig": "(String eventName)",
30540      "type": "function",
30541      "desc": "Checks to see if this object has any listeners for a specified event"
30542     },
30543     {
30544      "name": "hide",
30545      "sig": "()",
30546      "type": "function",
30547      "desc": "Hide a component - adds 'hidden' class"
30548     },
30549     {
30550      "name": "initEvents",
30551      "sig": "()",
30552      "type": "function",
30553      "desc": "Initialize Events for the element"
30554     },
30555     {
30556      "name": "isVisible",
30557      "sig": "()",
30558      "type": "function",
30559      "desc": "Returns true if this component is visible."
30560     },
30561     {
30562      "name": "on",
30563      "sig": "(String eventName, Function handler, Object scope, Object options)",
30564      "type": "function",
30565      "desc": "Appends an event handler to this element (shorthand for addListener)"
30566     },
30567     {
30568      "name": "purgeListeners",
30569      "sig": "()",
30570      "type": "function",
30571      "desc": "Removes all listeners for this object"
30572     },
30573     {
30574      "name": "releaseCapture",
30575      "sig": "(Observable o)",
30576      "type": "function",
30577      "desc": "Removes <b>all</b> added captures from the Observable."
30578     },
30579     {
30580      "name": "removeListener",
30581      "sig": "(String eventName, Function handler, Object scope)",
30582      "type": "function",
30583      "desc": "Removes a listener"
30584     },
30585     {
30586      "name": "render",
30587      "sig": "(String/HTMLElement/Element container)",
30588      "type": "function",
30589      "desc": "If this is a lazy rendering component, render it to its container element."
30590     },
30591     {
30592      "name": "setDisabled",
30593      "sig": "(Boolean disabled)",
30594      "type": "function",
30595      "desc": "Convenience function for setting disabled/enabled by boolean."
30596     },
30597     {
30598      "name": "setVisible",
30599      "sig": "(Boolean visible)",
30600      "type": "function",
30601      "desc": "Convenience function to hide or show this component by boolean."
30602     },
30603     {
30604      "name": "show",
30605      "sig": "()",
30606      "type": "function",
30607      "desc": "Show a component - removes 'hidden' class"
30608     },
30609     {
30610      "name": "tooltipEl",
30611      "sig": "()",
30612      "type": "function",
30613      "desc": "Fetch the element to display the tooltip on."
30614     },
30615     {
30616      "name": "un",
30617      "sig": "(String eventName, Function handler, Object scope)",
30618      "type": "function",
30619      "desc": "Removes a listener (shorthand for removeListener)"
30620     }
30621    ]
30622   },
30623   "Roo.bootstrap.NavItem": {
30624    "props": [
30625     {
30626      "name": "href",
30627      "type": "String",
30628      "desc": "link to",
30629      "memberOf": ""
30630     },
30631     {
30632      "name": "html",
30633      "type": "String",
30634      "desc": "content of button",
30635      "memberOf": ""
30636     },
30637     {
30638      "name": "badge",
30639      "type": "String",
30640      "desc": "text inside badge",
30641      "memberOf": ""
30642     },
30643     {
30644      "name": "badgecls",
30645      "type": "String",
30646      "desc": "the extra classes for the badge",
30647      "memberOf": "",
30648      "optvals": [
30649       "bg-green",
30650       "bg-red",
30651       "bg-yellow"
30652      ]
30653     },
30654     {
30655      "name": "glyphicon",
30656      "type": "String",
30657      "desc": "name of glyphicon",
30658      "memberOf": ""
30659     },
30660     {
30661      "name": "icon",
30662      "type": "String",
30663      "desc": "name of font awesome icon",
30664      "memberOf": ""
30665     },
30666     {
30667      "name": "active",
30668      "type": "Boolean",
30669      "desc": "Is item active",
30670      "memberOf": ""
30671     },
30672     {
30673      "name": "disabled",
30674      "type": "Boolean",
30675      "desc": "Is item disabled",
30676      "memberOf": ""
30677     },
30678     {
30679      "name": "preventDefault",
30680      "type": "Boolean",
30681      "desc": "default false",
30682      "memberOf": "",
30683      "optvals": [
30684       "true",
30685       "false"
30686      ]
30687     },
30688     {
30689      "name": "tabId",
30690      "type": "String",
30691      "desc": "the tab that this item activates.",
30692      "memberOf": ""
30693     },
30694     {
30695      "name": "tagtype",
30696      "type": "String",
30697      "desc": "render as a href or span?",
30698      "memberOf": "",
30699      "optvals": [
30700       "a",
30701       "span"
30702      ]
30703     },
30704     {
30705      "name": "animateRef",
30706      "type": "Boolean",
30707      "desc": "link to element default false",
30708      "memberOf": "",
30709      "optvals": [
30710       "true",
30711       "false"
30712      ]
30713     },
30714     {
30715      "name": "cls",
30716      "type": "String",
30717      "desc": "css class",
30718      "memberOf": "Roo.bootstrap.Component"
30719     },
30720     {
30721      "name": "style",
30722      "type": "String",
30723      "desc": "any extra css",
30724      "memberOf": "Roo.bootstrap.Component"
30725     },
30726     {
30727      "name": "xattr",
30728      "type": "Object",
30729      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
30730      "memberOf": "Roo.bootstrap.Component"
30731     },
30732     {
30733      "name": "can_build_overlaid",
30734      "type": "Boolean",
30735      "desc": "True if element can be rebuild from a HTML page",
30736      "memberOf": "Roo.bootstrap.Component"
30737     },
30738     {
30739      "name": "dataId",
30740      "type": "string",
30741      "desc": "cutomer id",
30742      "memberOf": "Roo.bootstrap.Component"
30743     },
30744     {
30745      "name": "name",
30746      "type": "string",
30747      "desc": "Specifies name attribute",
30748      "memberOf": "Roo.bootstrap.Component"
30749     },
30750     {
30751      "name": "tooltip",
30752      "type": "string",
30753      "desc": "Text for the tooltip",
30754      "memberOf": "Roo.bootstrap.Component"
30755     },
30756     {
30757      "name": "container_method",
30758      "type": "string",
30759      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
30760      "memberOf": "Roo.bootstrap.Component"
30761     },
30762     {
30763      "name": "disableClass",
30764      "type": "String",
30765      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
30766      "memberOf": "Roo.Component"
30767     },
30768     {
30769      "name": "allowDomMove",
30770      "type": "Boolean",
30771      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
30772      "memberOf": "Roo.Component"
30773     },
30774     {
30775      "name": "hideMode",
30776      "type": "String",
30777      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
30778      "memberOf": "Roo.Component",
30779      "optvals": [
30780       "display",
30781       "visibility"
30782      ]
30783     },
30784     {
30785      "name": "actionMode",
30786      "type": "String",
30787      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
30788      "memberOf": "Roo.Component"
30789     },
30790     {
30791      "name": "listeners",
30792      "type": "Object",
30793      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
30794      "memberOf": "Roo.util.Observable"
30795     }
30796    ],
30797    "events": [
30798     {
30799      "name": "beforedestroy",
30800      "sig": "function (_self)\n{\n\n}",
30801      "type": "function",
30802      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
30803     },
30804     {
30805      "name": "beforehide",
30806      "sig": "function (_self)\n{\n\n}",
30807      "type": "function",
30808      "desc": "Fires before the component is hidden. Return false to stop the hide."
30809     },
30810     {
30811      "name": "beforerender",
30812      "sig": "function (_self)\n{\n\n}",
30813      "type": "function",
30814      "desc": "Fires before the component is rendered. Return false to stop the render."
30815     },
30816     {
30817      "name": "beforeshow",
30818      "sig": "function (_self)\n{\n\n}",
30819      "type": "function",
30820      "desc": "Fires before the component is shown.  Return false to stop the show."
30821     },
30822     {
30823      "name": "changed",
30824      "sig": "function (_self, state)\n{\n\n}",
30825      "type": "function",
30826      "desc": "Fires when the active item active state changes"
30827     },
30828     {
30829      "name": "childrenrendered",
30830      "sig": "function (_self)\n{\n\n}",
30831      "type": "function",
30832      "desc": "Fires when the children have been rendered.."
30833     },
30834     {
30835      "name": "click",
30836      "sig": "function (e)\n{\n\n}",
30837      "type": "function",
30838      "desc": "The raw click event for the entire grid."
30839     },
30840     {
30841      "name": "destroy",
30842      "sig": "function (_self)\n{\n\n}",
30843      "type": "function",
30844      "desc": "Fires after the component is destroyed."
30845     },
30846     {
30847      "name": "disable",
30848      "sig": "function (_self)\n{\n\n}",
30849      "type": "function",
30850      "desc": "Fires after the component is disabled."
30851     },
30852     {
30853      "name": "enable",
30854      "sig": "function (_self)\n{\n\n}",
30855      "type": "function",
30856      "desc": "Fires after the component is enabled."
30857     },
30858     {
30859      "name": "hide",
30860      "sig": "function (_self)\n{\n\n}",
30861      "type": "function",
30862      "desc": "Fires after the component is hidden."
30863     },
30864     {
30865      "name": "render",
30866      "sig": "function (_self)\n{\n\n}",
30867      "type": "function",
30868      "desc": "Fires after the component is rendered."
30869     },
30870     {
30871      "name": "scrollto",
30872      "sig": "function (_self, options, e)\n{\n\n}",
30873      "type": "function",
30874      "desc": "Fires when scroll to element"
30875     },
30876     {
30877      "name": "show",
30878      "sig": "function (_self)\n{\n\n}",
30879      "type": "function",
30880      "desc": "Fires after the component is shown."
30881     }
30882    ],
30883    "methods": [
30884     {
30885      "name": "addEvents",
30886      "sig": "(Object object)",
30887      "type": "function",
30888      "desc": "Used to define events on this Observable"
30889     },
30890     {
30891      "name": "addListener",
30892      "sig": "(String eventName, Function handler, Object scope, Object options)",
30893      "type": "function",
30894      "desc": "Appends an event handler to this component"
30895     },
30896     {
30897      "name": "capture",
30898      "sig": "(Observable o, Function fn, Object scope)",
30899      "type": "function",
30900      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
30901     },
30902     {
30903      "name": "destroy",
30904      "sig": "()",
30905      "type": "function",
30906      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
30907     },
30908     {
30909      "name": "disable",
30910      "sig": "()",
30911      "type": "function",
30912      "desc": "Disable this component."
30913     },
30914     {
30915      "name": "enable",
30916      "sig": "()",
30917      "type": "function",
30918      "desc": "Enable this component."
30919     },
30920     {
30921      "name": "fireEvent",
30922      "sig": "(String eventName, Object... args)",
30923      "type": "function",
30924      "desc": "Fires the specified event with the passed parameters (minus the event name)."
30925     },
30926     {
30927      "name": "focus",
30928      "sig": "(Boolean selectText)",
30929      "type": "function",
30930      "desc": "Try to focus this component."
30931     },
30932     {
30933      "name": "getChildContainer",
30934      "sig": "()",
30935      "type": "function",
30936      "desc": "Fetch the element to add children to"
30937     },
30938     {
30939      "name": "getEl",
30940      "sig": "()",
30941      "type": "function",
30942      "desc": "Returns the underlying {@link Roo.Element}."
30943     },
30944     {
30945      "name": "getId",
30946      "sig": "()",
30947      "type": "function",
30948      "desc": "Returns the id of this component."
30949     },
30950     {
30951      "name": "hasListener",
30952      "sig": "(String eventName)",
30953      "type": "function",
30954      "desc": "Checks to see if this object has any listeners for a specified event"
30955     },
30956     {
30957      "name": "hide",
30958      "sig": "()",
30959      "type": "function",
30960      "desc": "Hide a component - adds 'hidden' class"
30961     },
30962     {
30963      "name": "initEvents",
30964      "sig": "()",
30965      "type": "function",
30966      "desc": "Initialize Events for the element"
30967     },
30968     {
30969      "name": "isVisible",
30970      "sig": "()",
30971      "type": "function",
30972      "desc": "Returns true if this component is visible."
30973     },
30974     {
30975      "name": "on",
30976      "sig": "(String eventName, Function handler, Object scope, Object options)",
30977      "type": "function",
30978      "desc": "Appends an event handler to this element (shorthand for addListener)"
30979     },
30980     {
30981      "name": "purgeListeners",
30982      "sig": "()",
30983      "type": "function",
30984      "desc": "Removes all listeners for this object"
30985     },
30986     {
30987      "name": "releaseCapture",
30988      "sig": "(Observable o)",
30989      "type": "function",
30990      "desc": "Removes <b>all</b> added captures from the Observable."
30991     },
30992     {
30993      "name": "removeListener",
30994      "sig": "(String eventName, Function handler, Object scope)",
30995      "type": "function",
30996      "desc": "Removes a listener"
30997     },
30998     {
30999      "name": "render",
31000      "sig": "(String/HTMLElement/Element container)",
31001      "type": "function",
31002      "desc": "If this is a lazy rendering component, render it to its container element."
31003     },
31004     {
31005      "name": "setDisabled",
31006      "sig": "(Boolean disabled)",
31007      "type": "function",
31008      "desc": "Convenience function for setting disabled/enabled by boolean."
31009     },
31010     {
31011      "name": "setVisible",
31012      "sig": "(Boolean visible)",
31013      "type": "function",
31014      "desc": "Convenience function to hide or show this component by boolean."
31015     },
31016     {
31017      "name": "show",
31018      "sig": "()",
31019      "type": "function",
31020      "desc": "Show a component - removes 'hidden' class"
31021     },
31022     {
31023      "name": "tooltipEl",
31024      "sig": "()",
31025      "type": "function",
31026      "desc": "Fetch the element to display the tooltip on."
31027     },
31028     {
31029      "name": "un",
31030      "sig": "(String eventName, Function handler, Object scope)",
31031      "type": "function",
31032      "desc": "Removes a listener (shorthand for removeListener)"
31033     }
31034    ]
31035   },
31036   "Roo.bootstrap.NavProgressBar": {
31037    "props": [
31038     {
31039      "name": "cls",
31040      "type": "String",
31041      "desc": "css class",
31042      "memberOf": "Roo.bootstrap.Component"
31043     },
31044     {
31045      "name": "style",
31046      "type": "String",
31047      "desc": "any extra css",
31048      "memberOf": "Roo.bootstrap.Component"
31049     },
31050     {
31051      "name": "xattr",
31052      "type": "Object",
31053      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
31054      "memberOf": "Roo.bootstrap.Component"
31055     },
31056     {
31057      "name": "can_build_overlaid",
31058      "type": "Boolean",
31059      "desc": "True if element can be rebuild from a HTML page",
31060      "memberOf": "Roo.bootstrap.Component"
31061     },
31062     {
31063      "name": "dataId",
31064      "type": "string",
31065      "desc": "cutomer id",
31066      "memberOf": "Roo.bootstrap.Component"
31067     },
31068     {
31069      "name": "name",
31070      "type": "string",
31071      "desc": "Specifies name attribute",
31072      "memberOf": "Roo.bootstrap.Component"
31073     },
31074     {
31075      "name": "tooltip",
31076      "type": "string",
31077      "desc": "Text for the tooltip",
31078      "memberOf": "Roo.bootstrap.Component"
31079     },
31080     {
31081      "name": "container_method",
31082      "type": "string",
31083      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
31084      "memberOf": "Roo.bootstrap.Component"
31085     },
31086     {
31087      "name": "disableClass",
31088      "type": "String",
31089      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
31090      "memberOf": "Roo.Component"
31091     },
31092     {
31093      "name": "allowDomMove",
31094      "type": "Boolean",
31095      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
31096      "memberOf": "Roo.Component"
31097     },
31098     {
31099      "name": "hideMode",
31100      "type": "String",
31101      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
31102      "memberOf": "Roo.Component",
31103      "optvals": [
31104       "display",
31105       "visibility"
31106      ]
31107     },
31108     {
31109      "name": "actionMode",
31110      "type": "String",
31111      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
31112      "memberOf": "Roo.Component"
31113     },
31114     {
31115      "name": "listeners",
31116      "type": "Object",
31117      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
31118      "memberOf": "Roo.util.Observable"
31119     }
31120    ],
31121    "events": [
31122     {
31123      "name": "beforedestroy",
31124      "sig": "function (_self)\n{\n\n}",
31125      "type": "function",
31126      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
31127     },
31128     {
31129      "name": "beforehide",
31130      "sig": "function (_self)\n{\n\n}",
31131      "type": "function",
31132      "desc": "Fires before the component is hidden. Return false to stop the hide."
31133     },
31134     {
31135      "name": "beforerender",
31136      "sig": "function (_self)\n{\n\n}",
31137      "type": "function",
31138      "desc": "Fires before the component is rendered. Return false to stop the render."
31139     },
31140     {
31141      "name": "beforeshow",
31142      "sig": "function (_self)\n{\n\n}",
31143      "type": "function",
31144      "desc": "Fires before the component is shown.  Return false to stop the show."
31145     },
31146     {
31147      "name": "changed",
31148      "sig": "function (_self, selected, prev)\n{\n\n}",
31149      "type": "function",
31150      "desc": "Fires when the active item changes"
31151     },
31152     {
31153      "name": "childrenrendered",
31154      "sig": "function (_self)\n{\n\n}",
31155      "type": "function",
31156      "desc": "Fires when the children have been rendered.."
31157     },
31158     {
31159      "name": "destroy",
31160      "sig": "function (_self)\n{\n\n}",
31161      "type": "function",
31162      "desc": "Fires after the component is destroyed."
31163     },
31164     {
31165      "name": "disable",
31166      "sig": "function (_self)\n{\n\n}",
31167      "type": "function",
31168      "desc": "Fires after the component is disabled."
31169     },
31170     {
31171      "name": "enable",
31172      "sig": "function (_self)\n{\n\n}",
31173      "type": "function",
31174      "desc": "Fires after the component is enabled."
31175     },
31176     {
31177      "name": "hide",
31178      "sig": "function (_self)\n{\n\n}",
31179      "type": "function",
31180      "desc": "Fires after the component is hidden."
31181     },
31182     {
31183      "name": "render",
31184      "sig": "function (_self)\n{\n\n}",
31185      "type": "function",
31186      "desc": "Fires after the component is rendered."
31187     },
31188     {
31189      "name": "show",
31190      "sig": "function (_self)\n{\n\n}",
31191      "type": "function",
31192      "desc": "Fires after the component is shown."
31193     }
31194    ],
31195    "methods": [
31196     {
31197      "name": "addEvents",
31198      "sig": "(Object object)",
31199      "type": "function",
31200      "desc": "Used to define events on this Observable"
31201     },
31202     {
31203      "name": "addListener",
31204      "sig": "(String eventName, Function handler, Object scope, Object options)",
31205      "type": "function",
31206      "desc": "Appends an event handler to this component"
31207     },
31208     {
31209      "name": "capture",
31210      "sig": "(Observable o, Function fn, Object scope)",
31211      "type": "function",
31212      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
31213     },
31214     {
31215      "name": "destroy",
31216      "sig": "()",
31217      "type": "function",
31218      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
31219     },
31220     {
31221      "name": "disable",
31222      "sig": "()",
31223      "type": "function",
31224      "desc": "Disable this component."
31225     },
31226     {
31227      "name": "enable",
31228      "sig": "()",
31229      "type": "function",
31230      "desc": "Enable this component."
31231     },
31232     {
31233      "name": "fireEvent",
31234      "sig": "(String eventName, Object... args)",
31235      "type": "function",
31236      "desc": "Fires the specified event with the passed parameters (minus the event name)."
31237     },
31238     {
31239      "name": "focus",
31240      "sig": "(Boolean selectText)",
31241      "type": "function",
31242      "desc": "Try to focus this component."
31243     },
31244     {
31245      "name": "getChildContainer",
31246      "sig": "()",
31247      "type": "function",
31248      "desc": "Fetch the element to add children to"
31249     },
31250     {
31251      "name": "getEl",
31252      "sig": "()",
31253      "type": "function",
31254      "desc": "Returns the underlying {@link Roo.Element}."
31255     },
31256     {
31257      "name": "getId",
31258      "sig": "()",
31259      "type": "function",
31260      "desc": "Returns the id of this component."
31261     },
31262     {
31263      "name": "hasListener",
31264      "sig": "(String eventName)",
31265      "type": "function",
31266      "desc": "Checks to see if this object has any listeners for a specified event"
31267     },
31268     {
31269      "name": "hide",
31270      "sig": "()",
31271      "type": "function",
31272      "desc": "Hide a component - adds 'hidden' class"
31273     },
31274     {
31275      "name": "initEvents",
31276      "sig": "()",
31277      "type": "function",
31278      "desc": "Initialize Events for the element"
31279     },
31280     {
31281      "name": "isVisible",
31282      "sig": "()",
31283      "type": "function",
31284      "desc": "Returns true if this component is visible."
31285     },
31286     {
31287      "name": "on",
31288      "sig": "(String eventName, Function handler, Object scope, Object options)",
31289      "type": "function",
31290      "desc": "Appends an event handler to this element (shorthand for addListener)"
31291     },
31292     {
31293      "name": "purgeListeners",
31294      "sig": "()",
31295      "type": "function",
31296      "desc": "Removes all listeners for this object"
31297     },
31298     {
31299      "name": "releaseCapture",
31300      "sig": "(Observable o)",
31301      "type": "function",
31302      "desc": "Removes <b>all</b> added captures from the Observable."
31303     },
31304     {
31305      "name": "removeListener",
31306      "sig": "(String eventName, Function handler, Object scope)",
31307      "type": "function",
31308      "desc": "Removes a listener"
31309     },
31310     {
31311      "name": "render",
31312      "sig": "(String/HTMLElement/Element container)",
31313      "type": "function",
31314      "desc": "If this is a lazy rendering component, render it to its container element."
31315     },
31316     {
31317      "name": "setDisabled",
31318      "sig": "(Boolean disabled)",
31319      "type": "function",
31320      "desc": "Convenience function for setting disabled/enabled by boolean."
31321     },
31322     {
31323      "name": "setVisible",
31324      "sig": "(Boolean visible)",
31325      "type": "function",
31326      "desc": "Convenience function to hide or show this component by boolean."
31327     },
31328     {
31329      "name": "show",
31330      "sig": "()",
31331      "type": "function",
31332      "desc": "Show a component - removes 'hidden' class"
31333     },
31334     {
31335      "name": "tooltipEl",
31336      "sig": "()",
31337      "type": "function",
31338      "desc": "Fetch the element to display the tooltip on."
31339     },
31340     {
31341      "name": "un",
31342      "sig": "(String eventName, Function handler, Object scope)",
31343      "type": "function",
31344      "desc": "Removes a listener (shorthand for removeListener)"
31345     }
31346    ]
31347   },
31348   "Roo.bootstrap.NavProgressItem": {
31349    "props": [
31350     {
31351      "name": "rid",
31352      "type": "String",
31353      "desc": "the reference id",
31354      "memberOf": ""
31355     },
31356     {
31357      "name": "active",
31358      "type": "Boolean",
31359      "desc": "Is item active default false",
31360      "memberOf": "",
31361      "optvals": [
31362       "true",
31363       "false"
31364      ]
31365     },
31366     {
31367      "name": "disabled",
31368      "type": "Boolean",
31369      "desc": "Is item active default false",
31370      "memberOf": "",
31371      "optvals": [
31372       "true",
31373       "false"
31374      ]
31375     },
31376     {
31377      "name": "html",
31378      "type": "String",
31379      "desc": "",
31380      "memberOf": ""
31381     },
31382     {
31383      "name": "position",
31384      "type": "String",
31385      "desc": "text position default bottom",
31386      "memberOf": "",
31387      "optvals": [
31388       "top",
31389       "bottom"
31390      ]
31391     },
31392     {
31393      "name": "icon",
31394      "type": "String",
31395      "desc": "show icon instead of number",
31396      "memberOf": ""
31397     },
31398     {
31399      "name": "cls",
31400      "type": "String",
31401      "desc": "css class",
31402      "memberOf": "Roo.bootstrap.Component"
31403     },
31404     {
31405      "name": "style",
31406      "type": "String",
31407      "desc": "any extra css",
31408      "memberOf": "Roo.bootstrap.Component"
31409     },
31410     {
31411      "name": "xattr",
31412      "type": "Object",
31413      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
31414      "memberOf": "Roo.bootstrap.Component"
31415     },
31416     {
31417      "name": "can_build_overlaid",
31418      "type": "Boolean",
31419      "desc": "True if element can be rebuild from a HTML page",
31420      "memberOf": "Roo.bootstrap.Component"
31421     },
31422     {
31423      "name": "dataId",
31424      "type": "string",
31425      "desc": "cutomer id",
31426      "memberOf": "Roo.bootstrap.Component"
31427     },
31428     {
31429      "name": "name",
31430      "type": "string",
31431      "desc": "Specifies name attribute",
31432      "memberOf": "Roo.bootstrap.Component"
31433     },
31434     {
31435      "name": "tooltip",
31436      "type": "string",
31437      "desc": "Text for the tooltip",
31438      "memberOf": "Roo.bootstrap.Component"
31439     },
31440     {
31441      "name": "container_method",
31442      "type": "string",
31443      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
31444      "memberOf": "Roo.bootstrap.Component"
31445     },
31446     {
31447      "name": "disableClass",
31448      "type": "String",
31449      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
31450      "memberOf": "Roo.Component"
31451     },
31452     {
31453      "name": "allowDomMove",
31454      "type": "Boolean",
31455      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
31456      "memberOf": "Roo.Component"
31457     },
31458     {
31459      "name": "hideMode",
31460      "type": "String",
31461      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
31462      "memberOf": "Roo.Component",
31463      "optvals": [
31464       "display",
31465       "visibility"
31466      ]
31467     },
31468     {
31469      "name": "actionMode",
31470      "type": "String",
31471      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
31472      "memberOf": "Roo.Component"
31473     },
31474     {
31475      "name": "listeners",
31476      "type": "Object",
31477      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
31478      "memberOf": "Roo.util.Observable"
31479     }
31480    ],
31481    "events": [
31482     {
31483      "name": "beforedestroy",
31484      "sig": "function (_self)\n{\n\n}",
31485      "type": "function",
31486      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
31487     },
31488     {
31489      "name": "beforehide",
31490      "sig": "function (_self)\n{\n\n}",
31491      "type": "function",
31492      "desc": "Fires before the component is hidden. Return false to stop the hide."
31493     },
31494     {
31495      "name": "beforerender",
31496      "sig": "function (_self)\n{\n\n}",
31497      "type": "function",
31498      "desc": "Fires before the component is rendered. Return false to stop the render."
31499     },
31500     {
31501      "name": "beforeshow",
31502      "sig": "function (_self)\n{\n\n}",
31503      "type": "function",
31504      "desc": "Fires before the component is shown.  Return false to stop the show."
31505     },
31506     {
31507      "name": "childrenrendered",
31508      "sig": "function (_self)\n{\n\n}",
31509      "type": "function",
31510      "desc": "Fires when the children have been rendered.."
31511     },
31512     {
31513      "name": "click",
31514      "sig": "function (_self, e)\n{\n\n}",
31515      "type": "function",
31516      "desc": "The raw click event for the entire grid."
31517     },
31518     {
31519      "name": "destroy",
31520      "sig": "function (_self)\n{\n\n}",
31521      "type": "function",
31522      "desc": "Fires after the component is destroyed."
31523     },
31524     {
31525      "name": "disable",
31526      "sig": "function (_self)\n{\n\n}",
31527      "type": "function",
31528      "desc": "Fires after the component is disabled."
31529     },
31530     {
31531      "name": "enable",
31532      "sig": "function (_self)\n{\n\n}",
31533      "type": "function",
31534      "desc": "Fires after the component is enabled."
31535     },
31536     {
31537      "name": "hide",
31538      "sig": "function (_self)\n{\n\n}",
31539      "type": "function",
31540      "desc": "Fires after the component is hidden."
31541     },
31542     {
31543      "name": "render",
31544      "sig": "function (_self)\n{\n\n}",
31545      "type": "function",
31546      "desc": "Fires after the component is rendered."
31547     },
31548     {
31549      "name": "show",
31550      "sig": "function (_self)\n{\n\n}",
31551      "type": "function",
31552      "desc": "Fires after the component is shown."
31553     }
31554    ],
31555    "methods": [
31556     {
31557      "name": "addEvents",
31558      "sig": "(Object object)",
31559      "type": "function",
31560      "desc": "Used to define events on this Observable"
31561     },
31562     {
31563      "name": "addListener",
31564      "sig": "(String eventName, Function handler, Object scope, Object options)",
31565      "type": "function",
31566      "desc": "Appends an event handler to this component"
31567     },
31568     {
31569      "name": "capture",
31570      "sig": "(Observable o, Function fn, Object scope)",
31571      "type": "function",
31572      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
31573     },
31574     {
31575      "name": "destroy",
31576      "sig": "()",
31577      "type": "function",
31578      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
31579     },
31580     {
31581      "name": "disable",
31582      "sig": "()",
31583      "type": "function",
31584      "desc": "Disable this component."
31585     },
31586     {
31587      "name": "enable",
31588      "sig": "()",
31589      "type": "function",
31590      "desc": "Enable this component."
31591     },
31592     {
31593      "name": "fireEvent",
31594      "sig": "(String eventName, Object... args)",
31595      "type": "function",
31596      "desc": "Fires the specified event with the passed parameters (minus the event name)."
31597     },
31598     {
31599      "name": "focus",
31600      "sig": "(Boolean selectText)",
31601      "type": "function",
31602      "desc": "Try to focus this component."
31603     },
31604     {
31605      "name": "getChildContainer",
31606      "sig": "()",
31607      "type": "function",
31608      "desc": "Fetch the element to add children to"
31609     },
31610     {
31611      "name": "getEl",
31612      "sig": "()",
31613      "type": "function",
31614      "desc": "Returns the underlying {@link Roo.Element}."
31615     },
31616     {
31617      "name": "getId",
31618      "sig": "()",
31619      "type": "function",
31620      "desc": "Returns the id of this component."
31621     },
31622     {
31623      "name": "hasListener",
31624      "sig": "(String eventName)",
31625      "type": "function",
31626      "desc": "Checks to see if this object has any listeners for a specified event"
31627     },
31628     {
31629      "name": "hide",
31630      "sig": "()",
31631      "type": "function",
31632      "desc": "Hide a component - adds 'hidden' class"
31633     },
31634     {
31635      "name": "initEvents",
31636      "sig": "()",
31637      "type": "function",
31638      "desc": "Initialize Events for the element"
31639     },
31640     {
31641      "name": "isVisible",
31642      "sig": "()",
31643      "type": "function",
31644      "desc": "Returns true if this component is visible."
31645     },
31646     {
31647      "name": "on",
31648      "sig": "(String eventName, Function handler, Object scope, Object options)",
31649      "type": "function",
31650      "desc": "Appends an event handler to this element (shorthand for addListener)"
31651     },
31652     {
31653      "name": "purgeListeners",
31654      "sig": "()",
31655      "type": "function",
31656      "desc": "Removes all listeners for this object"
31657     },
31658     {
31659      "name": "releaseCapture",
31660      "sig": "(Observable o)",
31661      "type": "function",
31662      "desc": "Removes <b>all</b> added captures from the Observable."
31663     },
31664     {
31665      "name": "removeListener",
31666      "sig": "(String eventName, Function handler, Object scope)",
31667      "type": "function",
31668      "desc": "Removes a listener"
31669     },
31670     {
31671      "name": "render",
31672      "sig": "(String/HTMLElement/Element container)",
31673      "type": "function",
31674      "desc": "If this is a lazy rendering component, render it to its container element."
31675     },
31676     {
31677      "name": "setDisabled",
31678      "sig": "(Boolean disabled)",
31679      "type": "function",
31680      "desc": "Convenience function for setting disabled/enabled by boolean."
31681     },
31682     {
31683      "name": "setVisible",
31684      "sig": "(Boolean visible)",
31685      "type": "function",
31686      "desc": "Convenience function to hide or show this component by boolean."
31687     },
31688     {
31689      "name": "show",
31690      "sig": "()",
31691      "type": "function",
31692      "desc": "Show a component - removes 'hidden' class"
31693     },
31694     {
31695      "name": "tooltipEl",
31696      "sig": "()",
31697      "type": "function",
31698      "desc": "Fetch the element to display the tooltip on."
31699     },
31700     {
31701      "name": "un",
31702      "sig": "(String eventName, Function handler, Object scope)",
31703      "type": "function",
31704      "desc": "Removes a listener (shorthand for removeListener)"
31705     }
31706    ]
31707   },
31708   "Roo.bootstrap.NavSidebar": {
31709    "props": [
31710     {
31711      "name": "cls",
31712      "type": "String",
31713      "desc": "css class",
31714      "memberOf": "Roo.bootstrap.Component"
31715     },
31716     {
31717      "name": "style",
31718      "type": "String",
31719      "desc": "any extra css",
31720      "memberOf": "Roo.bootstrap.Component"
31721     },
31722     {
31723      "name": "xattr",
31724      "type": "Object",
31725      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
31726      "memberOf": "Roo.bootstrap.Component"
31727     },
31728     {
31729      "name": "can_build_overlaid",
31730      "type": "Boolean",
31731      "desc": "True if element can be rebuild from a HTML page",
31732      "memberOf": "Roo.bootstrap.Component"
31733     },
31734     {
31735      "name": "dataId",
31736      "type": "string",
31737      "desc": "cutomer id",
31738      "memberOf": "Roo.bootstrap.Component"
31739     },
31740     {
31741      "name": "name",
31742      "type": "string",
31743      "desc": "Specifies name attribute",
31744      "memberOf": "Roo.bootstrap.Component"
31745     },
31746     {
31747      "name": "tooltip",
31748      "type": "string",
31749      "desc": "Text for the tooltip",
31750      "memberOf": "Roo.bootstrap.Component"
31751     },
31752     {
31753      "name": "container_method",
31754      "type": "string",
31755      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
31756      "memberOf": "Roo.bootstrap.Component"
31757     },
31758     {
31759      "name": "disableClass",
31760      "type": "String",
31761      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
31762      "memberOf": "Roo.Component"
31763     },
31764     {
31765      "name": "allowDomMove",
31766      "type": "Boolean",
31767      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
31768      "memberOf": "Roo.Component"
31769     },
31770     {
31771      "name": "hideMode",
31772      "type": "String",
31773      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
31774      "memberOf": "Roo.Component",
31775      "optvals": [
31776       "display",
31777       "visibility"
31778      ]
31779     },
31780     {
31781      "name": "actionMode",
31782      "type": "String",
31783      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
31784      "memberOf": "Roo.Component"
31785     },
31786     {
31787      "name": "listeners",
31788      "type": "Object",
31789      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
31790      "memberOf": "Roo.util.Observable"
31791     }
31792    ],
31793    "events": [
31794     {
31795      "name": "beforedestroy",
31796      "sig": "function (_self)\n{\n\n}",
31797      "type": "function",
31798      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
31799     },
31800     {
31801      "name": "beforehide",
31802      "sig": "function (_self)\n{\n\n}",
31803      "type": "function",
31804      "desc": "Fires before the component is hidden. Return false to stop the hide."
31805     },
31806     {
31807      "name": "beforerender",
31808      "sig": "function (_self)\n{\n\n}",
31809      "type": "function",
31810      "desc": "Fires before the component is rendered. Return false to stop the render."
31811     },
31812     {
31813      "name": "beforeshow",
31814      "sig": "function (_self)\n{\n\n}",
31815      "type": "function",
31816      "desc": "Fires before the component is shown.  Return false to stop the show."
31817     },
31818     {
31819      "name": "beforetoggle",
31820      "sig": "function (e)\n{\n\n}",
31821      "type": "function",
31822      "desc": "Fire before toggle the menu"
31823     },
31824     {
31825      "name": "childrenrendered",
31826      "sig": "function (_self)\n{\n\n}",
31827      "type": "function",
31828      "desc": "Fires when the children have been rendered.."
31829     },
31830     {
31831      "name": "destroy",
31832      "sig": "function (_self)\n{\n\n}",
31833      "type": "function",
31834      "desc": "Fires after the component is destroyed."
31835     },
31836     {
31837      "name": "disable",
31838      "sig": "function (_self)\n{\n\n}",
31839      "type": "function",
31840      "desc": "Fires after the component is disabled."
31841     },
31842     {
31843      "name": "enable",
31844      "sig": "function (_self)\n{\n\n}",
31845      "type": "function",
31846      "desc": "Fires after the component is enabled."
31847     },
31848     {
31849      "name": "hide",
31850      "sig": "function (_self)\n{\n\n}",
31851      "type": "function",
31852      "desc": "Fires after the component is hidden."
31853     },
31854     {
31855      "name": "render",
31856      "sig": "function (_self)\n{\n\n}",
31857      "type": "function",
31858      "desc": "Fires after the component is rendered."
31859     },
31860     {
31861      "name": "show",
31862      "sig": "function (_self)\n{\n\n}",
31863      "type": "function",
31864      "desc": "Fires after the component is shown."
31865     }
31866    ],
31867    "methods": [
31868     {
31869      "name": "addEvents",
31870      "sig": "(Object object)",
31871      "type": "function",
31872      "desc": "Used to define events on this Observable"
31873     },
31874     {
31875      "name": "addListener",
31876      "sig": "(String eventName, Function handler, Object scope, Object options)",
31877      "type": "function",
31878      "desc": "Appends an event handler to this component"
31879     },
31880     {
31881      "name": "capture",
31882      "sig": "(Observable o, Function fn, Object scope)",
31883      "type": "function",
31884      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
31885     },
31886     {
31887      "name": "destroy",
31888      "sig": "()",
31889      "type": "function",
31890      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
31891     },
31892     {
31893      "name": "disable",
31894      "sig": "()",
31895      "type": "function",
31896      "desc": "Disable this component."
31897     },
31898     {
31899      "name": "enable",
31900      "sig": "()",
31901      "type": "function",
31902      "desc": "Enable this component."
31903     },
31904     {
31905      "name": "fireEvent",
31906      "sig": "(String eventName, Object... args)",
31907      "type": "function",
31908      "desc": "Fires the specified event with the passed parameters (minus the event name)."
31909     },
31910     {
31911      "name": "focus",
31912      "sig": "(Boolean selectText)",
31913      "type": "function",
31914      "desc": "Try to focus this component."
31915     },
31916     {
31917      "name": "getChildContainer",
31918      "sig": "()",
31919      "type": "function",
31920      "desc": "Fetch the element to add children to"
31921     },
31922     {
31923      "name": "getEl",
31924      "sig": "()",
31925      "type": "function",
31926      "desc": "Returns the underlying {@link Roo.Element}."
31927     },
31928     {
31929      "name": "getId",
31930      "sig": "()",
31931      "type": "function",
31932      "desc": "Returns the id of this component."
31933     },
31934     {
31935      "name": "hasListener",
31936      "sig": "(String eventName)",
31937      "type": "function",
31938      "desc": "Checks to see if this object has any listeners for a specified event"
31939     },
31940     {
31941      "name": "hide",
31942      "sig": "()",
31943      "type": "function",
31944      "desc": "Hide a component - adds 'hidden' class"
31945     },
31946     {
31947      "name": "initEvents",
31948      "sig": "()",
31949      "type": "function",
31950      "desc": "Initialize Events for the element"
31951     },
31952     {
31953      "name": "isVisible",
31954      "sig": "()",
31955      "type": "function",
31956      "desc": "Returns true if this component is visible."
31957     },
31958     {
31959      "name": "on",
31960      "sig": "(String eventName, Function handler, Object scope, Object options)",
31961      "type": "function",
31962      "desc": "Appends an event handler to this element (shorthand for addListener)"
31963     },
31964     {
31965      "name": "purgeListeners",
31966      "sig": "()",
31967      "type": "function",
31968      "desc": "Removes all listeners for this object"
31969     },
31970     {
31971      "name": "releaseCapture",
31972      "sig": "(Observable o)",
31973      "type": "function",
31974      "desc": "Removes <b>all</b> added captures from the Observable."
31975     },
31976     {
31977      "name": "removeListener",
31978      "sig": "(String eventName, Function handler, Object scope)",
31979      "type": "function",
31980      "desc": "Removes a listener"
31981     },
31982     {
31983      "name": "render",
31984      "sig": "(String/HTMLElement/Element container)",
31985      "type": "function",
31986      "desc": "If this is a lazy rendering component, render it to its container element."
31987     },
31988     {
31989      "name": "setDisabled",
31990      "sig": "(Boolean disabled)",
31991      "type": "function",
31992      "desc": "Convenience function for setting disabled/enabled by boolean."
31993     },
31994     {
31995      "name": "setVisible",
31996      "sig": "(Boolean visible)",
31997      "type": "function",
31998      "desc": "Convenience function to hide or show this component by boolean."
31999     },
32000     {
32001      "name": "show",
32002      "sig": "()",
32003      "type": "function",
32004      "desc": "Show a component - removes 'hidden' class"
32005     },
32006     {
32007      "name": "tooltipEl",
32008      "sig": "()",
32009      "type": "function",
32010      "desc": "Fetch the element to display the tooltip on."
32011     },
32012     {
32013      "name": "un",
32014      "sig": "(String eventName, Function handler, Object scope)",
32015      "type": "function",
32016      "desc": "Removes a listener (shorthand for removeListener)"
32017     }
32018    ]
32019   },
32020   "Roo.bootstrap.NavSidebarItem": {
32021    "props": [
32022     {
32023      "name": "href",
32024      "type": "String",
32025      "desc": "link to",
32026      "memberOf": "Roo.bootstrap.NavItem"
32027     },
32028     {
32029      "name": "html",
32030      "type": "String",
32031      "desc": "content of button",
32032      "memberOf": "Roo.bootstrap.NavItem"
32033     },
32034     {
32035      "name": "badge",
32036      "type": "String",
32037      "desc": "text inside badge",
32038      "memberOf": "Roo.bootstrap.NavItem"
32039     },
32040     {
32041      "name": "badgecls",
32042      "type": "String",
32043      "desc": "the extra classes for the badge",
32044      "memberOf": "Roo.bootstrap.NavItem",
32045      "optvals": [
32046       "bg-green",
32047       "bg-red",
32048       "bg-yellow"
32049      ]
32050     },
32051     {
32052      "name": "glyphicon",
32053      "type": "String",
32054      "desc": "name of glyphicon",
32055      "memberOf": "Roo.bootstrap.NavItem"
32056     },
32057     {
32058      "name": "icon",
32059      "type": "String",
32060      "desc": "name of font awesome icon",
32061      "memberOf": "Roo.bootstrap.NavItem"
32062     },
32063     {
32064      "name": "active",
32065      "type": "Boolean",
32066      "desc": "Is item active",
32067      "memberOf": "Roo.bootstrap.NavItem"
32068     },
32069     {
32070      "name": "disabled",
32071      "type": "Boolean",
32072      "desc": "Is item disabled",
32073      "memberOf": "Roo.bootstrap.NavItem"
32074     },
32075     {
32076      "name": "preventDefault",
32077      "type": "Boolean",
32078      "desc": "default false",
32079      "memberOf": "Roo.bootstrap.NavItem",
32080      "optvals": [
32081       "true",
32082       "false"
32083      ]
32084     },
32085     {
32086      "name": "tabId",
32087      "type": "String",
32088      "desc": "the tab that this item activates.",
32089      "memberOf": "Roo.bootstrap.NavItem"
32090     },
32091     {
32092      "name": "tagtype",
32093      "type": "String",
32094      "desc": "render as a href or span?",
32095      "memberOf": "Roo.bootstrap.NavItem",
32096      "optvals": [
32097       "a",
32098       "span"
32099      ]
32100     },
32101     {
32102      "name": "animateRef",
32103      "type": "Boolean",
32104      "desc": "link to element default false",
32105      "memberOf": "Roo.bootstrap.NavItem",
32106      "optvals": [
32107       "true",
32108       "false"
32109      ]
32110     },
32111     {
32112      "name": "cls",
32113      "type": "String",
32114      "desc": "css class",
32115      "memberOf": "Roo.bootstrap.Component"
32116     },
32117     {
32118      "name": "style",
32119      "type": "String",
32120      "desc": "any extra css",
32121      "memberOf": "Roo.bootstrap.Component"
32122     },
32123     {
32124      "name": "xattr",
32125      "type": "Object",
32126      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
32127      "memberOf": "Roo.bootstrap.Component"
32128     },
32129     {
32130      "name": "can_build_overlaid",
32131      "type": "Boolean",
32132      "desc": "True if element can be rebuild from a HTML page",
32133      "memberOf": "Roo.bootstrap.Component"
32134     },
32135     {
32136      "name": "dataId",
32137      "type": "string",
32138      "desc": "cutomer id",
32139      "memberOf": "Roo.bootstrap.Component"
32140     },
32141     {
32142      "name": "name",
32143      "type": "string",
32144      "desc": "Specifies name attribute",
32145      "memberOf": "Roo.bootstrap.Component"
32146     },
32147     {
32148      "name": "tooltip",
32149      "type": "string",
32150      "desc": "Text for the tooltip",
32151      "memberOf": "Roo.bootstrap.Component"
32152     },
32153     {
32154      "name": "container_method",
32155      "type": "string",
32156      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
32157      "memberOf": "Roo.bootstrap.Component"
32158     },
32159     {
32160      "name": "disableClass",
32161      "type": "String",
32162      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
32163      "memberOf": "Roo.Component"
32164     },
32165     {
32166      "name": "allowDomMove",
32167      "type": "Boolean",
32168      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
32169      "memberOf": "Roo.Component"
32170     },
32171     {
32172      "name": "hideMode",
32173      "type": "String",
32174      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
32175      "memberOf": "Roo.Component",
32176      "optvals": [
32177       "display",
32178       "visibility"
32179      ]
32180     },
32181     {
32182      "name": "actionMode",
32183      "type": "String",
32184      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
32185      "memberOf": "Roo.Component"
32186     },
32187     {
32188      "name": "listeners",
32189      "type": "Object",
32190      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
32191      "memberOf": "Roo.util.Observable"
32192     }
32193    ],
32194    "events": [
32195     {
32196      "name": "beforedestroy",
32197      "sig": "function (_self)\n{\n\n}",
32198      "type": "function",
32199      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
32200     },
32201     {
32202      "name": "beforehide",
32203      "sig": "function (_self)\n{\n\n}",
32204      "type": "function",
32205      "desc": "Fires before the component is hidden. Return false to stop the hide."
32206     },
32207     {
32208      "name": "beforerender",
32209      "sig": "function (_self)\n{\n\n}",
32210      "type": "function",
32211      "desc": "Fires before the component is rendered. Return false to stop the render."
32212     },
32213     {
32214      "name": "beforeshow",
32215      "sig": "function (_self)\n{\n\n}",
32216      "type": "function",
32217      "desc": "Fires before the component is shown.  Return false to stop the show."
32218     },
32219     {
32220      "name": "changed",
32221      "sig": "function (_self, state)\n{\n\n}",
32222      "type": "function",
32223      "desc": "Fires when the active item active state changes"
32224     },
32225     {
32226      "name": "childrenrendered",
32227      "sig": "function (_self)\n{\n\n}",
32228      "type": "function",
32229      "desc": "Fires when the children have been rendered.."
32230     },
32231     {
32232      "name": "click",
32233      "sig": "function (e)\n{\n\n}",
32234      "type": "function",
32235      "desc": "The raw click event for the entire grid."
32236     },
32237     {
32238      "name": "destroy",
32239      "sig": "function (_self)\n{\n\n}",
32240      "type": "function",
32241      "desc": "Fires after the component is destroyed."
32242     },
32243     {
32244      "name": "disable",
32245      "sig": "function (_self)\n{\n\n}",
32246      "type": "function",
32247      "desc": "Fires after the component is disabled."
32248     },
32249     {
32250      "name": "enable",
32251      "sig": "function (_self)\n{\n\n}",
32252      "type": "function",
32253      "desc": "Fires after the component is enabled."
32254     },
32255     {
32256      "name": "hide",
32257      "sig": "function (_self)\n{\n\n}",
32258      "type": "function",
32259      "desc": "Fires after the component is hidden."
32260     },
32261     {
32262      "name": "render",
32263      "sig": "function (_self)\n{\n\n}",
32264      "type": "function",
32265      "desc": "Fires after the component is rendered."
32266     },
32267     {
32268      "name": "scrollto",
32269      "sig": "function (_self, options, e)\n{\n\n}",
32270      "type": "function",
32271      "desc": "Fires when scroll to element"
32272     },
32273     {
32274      "name": "show",
32275      "sig": "function (_self)\n{\n\n}",
32276      "type": "function",
32277      "desc": "Fires after the component is shown."
32278     }
32279    ],
32280    "methods": [
32281     {
32282      "name": "addEvents",
32283      "sig": "(Object object)",
32284      "type": "function",
32285      "desc": "Used to define events on this Observable"
32286     },
32287     {
32288      "name": "addListener",
32289      "sig": "(String eventName, Function handler, Object scope, Object options)",
32290      "type": "function",
32291      "desc": "Appends an event handler to this component"
32292     },
32293     {
32294      "name": "capture",
32295      "sig": "(Observable o, Function fn, Object scope)",
32296      "type": "function",
32297      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
32298     },
32299     {
32300      "name": "destroy",
32301      "sig": "()",
32302      "type": "function",
32303      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
32304     },
32305     {
32306      "name": "disable",
32307      "sig": "()",
32308      "type": "function",
32309      "desc": "Disable this component."
32310     },
32311     {
32312      "name": "enable",
32313      "sig": "()",
32314      "type": "function",
32315      "desc": "Enable this component."
32316     },
32317     {
32318      "name": "fireEvent",
32319      "sig": "(String eventName, Object... args)",
32320      "type": "function",
32321      "desc": "Fires the specified event with the passed parameters (minus the event name)."
32322     },
32323     {
32324      "name": "focus",
32325      "sig": "(Boolean selectText)",
32326      "type": "function",
32327      "desc": "Try to focus this component."
32328     },
32329     {
32330      "name": "getChildContainer",
32331      "sig": "()",
32332      "type": "function",
32333      "desc": "Fetch the element to add children to"
32334     },
32335     {
32336      "name": "getEl",
32337      "sig": "()",
32338      "type": "function",
32339      "desc": "Returns the underlying {@link Roo.Element}."
32340     },
32341     {
32342      "name": "getId",
32343      "sig": "()",
32344      "type": "function",
32345      "desc": "Returns the id of this component."
32346     },
32347     {
32348      "name": "hasListener",
32349      "sig": "(String eventName)",
32350      "type": "function",
32351      "desc": "Checks to see if this object has any listeners for a specified event"
32352     },
32353     {
32354      "name": "hide",
32355      "sig": "()",
32356      "type": "function",
32357      "desc": "Hide a component - adds 'hidden' class"
32358     },
32359     {
32360      "name": "initEvents",
32361      "sig": "()",
32362      "type": "function",
32363      "desc": "Initialize Events for the element"
32364     },
32365     {
32366      "name": "isVisible",
32367      "sig": "()",
32368      "type": "function",
32369      "desc": "Returns true if this component is visible."
32370     },
32371     {
32372      "name": "on",
32373      "sig": "(String eventName, Function handler, Object scope, Object options)",
32374      "type": "function",
32375      "desc": "Appends an event handler to this element (shorthand for addListener)"
32376     },
32377     {
32378      "name": "purgeListeners",
32379      "sig": "()",
32380      "type": "function",
32381      "desc": "Removes all listeners for this object"
32382     },
32383     {
32384      "name": "releaseCapture",
32385      "sig": "(Observable o)",
32386      "type": "function",
32387      "desc": "Removes <b>all</b> added captures from the Observable."
32388     },
32389     {
32390      "name": "removeListener",
32391      "sig": "(String eventName, Function handler, Object scope)",
32392      "type": "function",
32393      "desc": "Removes a listener"
32394     },
32395     {
32396      "name": "render",
32397      "sig": "(String/HTMLElement/Element container)",
32398      "type": "function",
32399      "desc": "If this is a lazy rendering component, render it to its container element."
32400     },
32401     {
32402      "name": "setDisabled",
32403      "sig": "(Boolean disabled)",
32404      "type": "function",
32405      "desc": "Convenience function for setting disabled/enabled by boolean."
32406     },
32407     {
32408      "name": "setVisible",
32409      "sig": "(Boolean visible)",
32410      "type": "function",
32411      "desc": "Convenience function to hide or show this component by boolean."
32412     },
32413     {
32414      "name": "show",
32415      "sig": "()",
32416      "type": "function",
32417      "desc": "Show a component - removes 'hidden' class"
32418     },
32419     {
32420      "name": "tooltipEl",
32421      "sig": "()",
32422      "type": "function",
32423      "desc": "Fetch the element to display the tooltip on."
32424     },
32425     {
32426      "name": "un",
32427      "sig": "(String eventName, Function handler, Object scope)",
32428      "type": "function",
32429      "desc": "Removes a listener (shorthand for removeListener)"
32430     }
32431    ]
32432   },
32433   "Roo.bootstrap.NavSimplebar": {
32434    "props": [
32435     {
32436      "name": "inverse",
32437      "type": "Boolean",
32438      "desc": "is inverted color",
32439      "memberOf": ""
32440     },
32441     {
32442      "name": "type",
32443      "type": "String",
32444      "desc": "",
32445      "memberOf": "",
32446      "optvals": [
32447       "nav",
32448       "pills",
32449       "tabs"
32450      ]
32451     },
32452     {
32453      "name": "arrangement",
32454      "type": "Boolean",
32455      "desc": "stacked | justified",
32456      "memberOf": ""
32457     },
32458     {
32459      "name": "align",
32460      "type": "String",
32461      "desc": "alignment",
32462      "memberOf": "",
32463      "optvals": [
32464       "left",
32465       "right"
32466      ]
32467     },
32468     {
32469      "name": "main",
32470      "type": "Boolean",
32471      "desc": "main nav bar? default false",
32472      "memberOf": "",
32473      "optvals": [
32474       "true",
32475       "false"
32476      ]
32477     },
32478     {
32479      "name": "loadMask",
32480      "type": "Boolean",
32481      "desc": "loadMask on the bar",
32482      "memberOf": "",
32483      "optvals": [
32484       "true",
32485       "false"
32486      ]
32487     },
32488     {
32489      "name": "tag",
32490      "type": "String",
32491      "desc": "default is nav",
32492      "memberOf": "",
32493      "optvals": [
32494       "header",
32495       "footer",
32496       "nav",
32497       "div"
32498      ]
32499     },
32500     {
32501      "name": "cls",
32502      "type": "String",
32503      "desc": "css class",
32504      "memberOf": "Roo.bootstrap.Component"
32505     },
32506     {
32507      "name": "style",
32508      "type": "String",
32509      "desc": "any extra css",
32510      "memberOf": "Roo.bootstrap.Component"
32511     },
32512     {
32513      "name": "xattr",
32514      "type": "Object",
32515      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
32516      "memberOf": "Roo.bootstrap.Component"
32517     },
32518     {
32519      "name": "can_build_overlaid",
32520      "type": "Boolean",
32521      "desc": "True if element can be rebuild from a HTML page",
32522      "memberOf": "Roo.bootstrap.Component"
32523     },
32524     {
32525      "name": "dataId",
32526      "type": "string",
32527      "desc": "cutomer id",
32528      "memberOf": "Roo.bootstrap.Component"
32529     },
32530     {
32531      "name": "name",
32532      "type": "string",
32533      "desc": "Specifies name attribute",
32534      "memberOf": "Roo.bootstrap.Component"
32535     },
32536     {
32537      "name": "tooltip",
32538      "type": "string",
32539      "desc": "Text for the tooltip",
32540      "memberOf": "Roo.bootstrap.Component"
32541     },
32542     {
32543      "name": "container_method",
32544      "type": "string",
32545      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
32546      "memberOf": "Roo.bootstrap.Component"
32547     },
32548     {
32549      "name": "disableClass",
32550      "type": "String",
32551      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
32552      "memberOf": "Roo.Component"
32553     },
32554     {
32555      "name": "allowDomMove",
32556      "type": "Boolean",
32557      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
32558      "memberOf": "Roo.Component"
32559     },
32560     {
32561      "name": "hideMode",
32562      "type": "String",
32563      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
32564      "memberOf": "Roo.Component",
32565      "optvals": [
32566       "display",
32567       "visibility"
32568      ]
32569     },
32570     {
32571      "name": "actionMode",
32572      "type": "String",
32573      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
32574      "memberOf": "Roo.Component"
32575     },
32576     {
32577      "name": "listeners",
32578      "type": "Object",
32579      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
32580      "memberOf": "Roo.util.Observable"
32581     }
32582    ],
32583    "events": [
32584     {
32585      "name": "beforedestroy",
32586      "sig": "function (_self)\n{\n\n}",
32587      "type": "function",
32588      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
32589     },
32590     {
32591      "name": "beforehide",
32592      "sig": "function (_self)\n{\n\n}",
32593      "type": "function",
32594      "desc": "Fires before the component is hidden. Return false to stop the hide."
32595     },
32596     {
32597      "name": "beforerender",
32598      "sig": "function (_self)\n{\n\n}",
32599      "type": "function",
32600      "desc": "Fires before the component is rendered. Return false to stop the render."
32601     },
32602     {
32603      "name": "beforeshow",
32604      "sig": "function (_self)\n{\n\n}",
32605      "type": "function",
32606      "desc": "Fires before the component is shown.  Return false to stop the show."
32607     },
32608     {
32609      "name": "beforetoggle",
32610      "sig": "function (e)\n{\n\n}",
32611      "type": "function",
32612      "desc": "Fire before toggle the menu"
32613     },
32614     {
32615      "name": "childrenrendered",
32616      "sig": "function (_self)\n{\n\n}",
32617      "type": "function",
32618      "desc": "Fires when the children have been rendered.."
32619     },
32620     {
32621      "name": "destroy",
32622      "sig": "function (_self)\n{\n\n}",
32623      "type": "function",
32624      "desc": "Fires after the component is destroyed."
32625     },
32626     {
32627      "name": "disable",
32628      "sig": "function (_self)\n{\n\n}",
32629      "type": "function",
32630      "desc": "Fires after the component is disabled."
32631     },
32632     {
32633      "name": "enable",
32634      "sig": "function (_self)\n{\n\n}",
32635      "type": "function",
32636      "desc": "Fires after the component is enabled."
32637     },
32638     {
32639      "name": "hide",
32640      "sig": "function (_self)\n{\n\n}",
32641      "type": "function",
32642      "desc": "Fires after the component is hidden."
32643     },
32644     {
32645      "name": "render",
32646      "sig": "function (_self)\n{\n\n}",
32647      "type": "function",
32648      "desc": "Fires after the component is rendered."
32649     },
32650     {
32651      "name": "show",
32652      "sig": "function (_self)\n{\n\n}",
32653      "type": "function",
32654      "desc": "Fires after the component is shown."
32655     }
32656    ],
32657    "methods": [
32658     {
32659      "name": "addEvents",
32660      "sig": "(Object object)",
32661      "type": "function",
32662      "desc": "Used to define events on this Observable"
32663     },
32664     {
32665      "name": "addListener",
32666      "sig": "(String eventName, Function handler, Object scope, Object options)",
32667      "type": "function",
32668      "desc": "Appends an event handler to this component"
32669     },
32670     {
32671      "name": "capture",
32672      "sig": "(Observable o, Function fn, Object scope)",
32673      "type": "function",
32674      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
32675     },
32676     {
32677      "name": "destroy",
32678      "sig": "()",
32679      "type": "function",
32680      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
32681     },
32682     {
32683      "name": "disable",
32684      "sig": "()",
32685      "type": "function",
32686      "desc": "Disable this component."
32687     },
32688     {
32689      "name": "enable",
32690      "sig": "()",
32691      "type": "function",
32692      "desc": "Enable this component."
32693     },
32694     {
32695      "name": "fireEvent",
32696      "sig": "(String eventName, Object... args)",
32697      "type": "function",
32698      "desc": "Fires the specified event with the passed parameters (minus the event name)."
32699     },
32700     {
32701      "name": "focus",
32702      "sig": "(Boolean selectText)",
32703      "type": "function",
32704      "desc": "Try to focus this component."
32705     },
32706     {
32707      "name": "getChildContainer",
32708      "sig": "()",
32709      "type": "function",
32710      "desc": "Fetch the element to add children to"
32711     },
32712     {
32713      "name": "getEl",
32714      "sig": "()",
32715      "type": "function",
32716      "desc": "Returns the underlying {@link Roo.Element}."
32717     },
32718     {
32719      "name": "getId",
32720      "sig": "()",
32721      "type": "function",
32722      "desc": "Returns the id of this component."
32723     },
32724     {
32725      "name": "hasListener",
32726      "sig": "(String eventName)",
32727      "type": "function",
32728      "desc": "Checks to see if this object has any listeners for a specified event"
32729     },
32730     {
32731      "name": "hide",
32732      "sig": "()",
32733      "type": "function",
32734      "desc": "Hide a component - adds 'hidden' class"
32735     },
32736     {
32737      "name": "initEvents",
32738      "sig": "()",
32739      "type": "function",
32740      "desc": "Initialize Events for the element"
32741     },
32742     {
32743      "name": "isVisible",
32744      "sig": "()",
32745      "type": "function",
32746      "desc": "Returns true if this component is visible."
32747     },
32748     {
32749      "name": "on",
32750      "sig": "(String eventName, Function handler, Object scope, Object options)",
32751      "type": "function",
32752      "desc": "Appends an event handler to this element (shorthand for addListener)"
32753     },
32754     {
32755      "name": "purgeListeners",
32756      "sig": "()",
32757      "type": "function",
32758      "desc": "Removes all listeners for this object"
32759     },
32760     {
32761      "name": "releaseCapture",
32762      "sig": "(Observable o)",
32763      "type": "function",
32764      "desc": "Removes <b>all</b> added captures from the Observable."
32765     },
32766     {
32767      "name": "removeListener",
32768      "sig": "(String eventName, Function handler, Object scope)",
32769      "type": "function",
32770      "desc": "Removes a listener"
32771     },
32772     {
32773      "name": "render",
32774      "sig": "(String/HTMLElement/Element container)",
32775      "type": "function",
32776      "desc": "If this is a lazy rendering component, render it to its container element."
32777     },
32778     {
32779      "name": "setDisabled",
32780      "sig": "(Boolean disabled)",
32781      "type": "function",
32782      "desc": "Convenience function for setting disabled/enabled by boolean."
32783     },
32784     {
32785      "name": "setVisible",
32786      "sig": "(Boolean visible)",
32787      "type": "function",
32788      "desc": "Convenience function to hide or show this component by boolean."
32789     },
32790     {
32791      "name": "show",
32792      "sig": "()",
32793      "type": "function",
32794      "desc": "Show a component - removes 'hidden' class"
32795     },
32796     {
32797      "name": "tooltipEl",
32798      "sig": "()",
32799      "type": "function",
32800      "desc": "Fetch the element to display the tooltip on."
32801     },
32802     {
32803      "name": "un",
32804      "sig": "(String eventName, Function handler, Object scope)",
32805      "type": "function",
32806      "desc": "Removes a listener (shorthand for removeListener)"
32807     }
32808    ]
32809   },
32810   "Roo.bootstrap.Navbar": {
32811    "props": [
32812     {
32813      "name": "cls",
32814      "type": "String",
32815      "desc": "css class",
32816      "memberOf": "Roo.bootstrap.Component"
32817     },
32818     {
32819      "name": "style",
32820      "type": "String",
32821      "desc": "any extra css",
32822      "memberOf": "Roo.bootstrap.Component"
32823     },
32824     {
32825      "name": "xattr",
32826      "type": "Object",
32827      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
32828      "memberOf": "Roo.bootstrap.Component"
32829     },
32830     {
32831      "name": "can_build_overlaid",
32832      "type": "Boolean",
32833      "desc": "True if element can be rebuild from a HTML page",
32834      "memberOf": "Roo.bootstrap.Component"
32835     },
32836     {
32837      "name": "dataId",
32838      "type": "string",
32839      "desc": "cutomer id",
32840      "memberOf": "Roo.bootstrap.Component"
32841     },
32842     {
32843      "name": "name",
32844      "type": "string",
32845      "desc": "Specifies name attribute",
32846      "memberOf": "Roo.bootstrap.Component"
32847     },
32848     {
32849      "name": "tooltip",
32850      "type": "string",
32851      "desc": "Text for the tooltip",
32852      "memberOf": "Roo.bootstrap.Component"
32853     },
32854     {
32855      "name": "container_method",
32856      "type": "string",
32857      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
32858      "memberOf": "Roo.bootstrap.Component"
32859     },
32860     {
32861      "name": "disableClass",
32862      "type": "String",
32863      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
32864      "memberOf": "Roo.Component"
32865     },
32866     {
32867      "name": "allowDomMove",
32868      "type": "Boolean",
32869      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
32870      "memberOf": "Roo.Component"
32871     },
32872     {
32873      "name": "hideMode",
32874      "type": "String",
32875      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
32876      "memberOf": "Roo.Component",
32877      "optvals": [
32878       "display",
32879       "visibility"
32880      ]
32881     },
32882     {
32883      "name": "actionMode",
32884      "type": "String",
32885      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
32886      "memberOf": "Roo.Component"
32887     },
32888     {
32889      "name": "listeners",
32890      "type": "Object",
32891      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
32892      "memberOf": "Roo.util.Observable"
32893     }
32894    ],
32895    "events": [
32896     {
32897      "name": "beforedestroy",
32898      "sig": "function (_self)\n{\n\n}",
32899      "type": "function",
32900      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
32901     },
32902     {
32903      "name": "beforehide",
32904      "sig": "function (_self)\n{\n\n}",
32905      "type": "function",
32906      "desc": "Fires before the component is hidden. Return false to stop the hide."
32907     },
32908     {
32909      "name": "beforerender",
32910      "sig": "function (_self)\n{\n\n}",
32911      "type": "function",
32912      "desc": "Fires before the component is rendered. Return false to stop the render."
32913     },
32914     {
32915      "name": "beforeshow",
32916      "sig": "function (_self)\n{\n\n}",
32917      "type": "function",
32918      "desc": "Fires before the component is shown.  Return false to stop the show."
32919     },
32920     {
32921      "name": "beforetoggle",
32922      "sig": "function (e)\n{\n\n}",
32923      "type": "function",
32924      "desc": "Fire before toggle the menu"
32925     },
32926     {
32927      "name": "childrenrendered",
32928      "sig": "function (_self)\n{\n\n}",
32929      "type": "function",
32930      "desc": "Fires when the children have been rendered.."
32931     },
32932     {
32933      "name": "destroy",
32934      "sig": "function (_self)\n{\n\n}",
32935      "type": "function",
32936      "desc": "Fires after the component is destroyed."
32937     },
32938     {
32939      "name": "disable",
32940      "sig": "function (_self)\n{\n\n}",
32941      "type": "function",
32942      "desc": "Fires after the component is disabled."
32943     },
32944     {
32945      "name": "enable",
32946      "sig": "function (_self)\n{\n\n}",
32947      "type": "function",
32948      "desc": "Fires after the component is enabled."
32949     },
32950     {
32951      "name": "hide",
32952      "sig": "function (_self)\n{\n\n}",
32953      "type": "function",
32954      "desc": "Fires after the component is hidden."
32955     },
32956     {
32957      "name": "render",
32958      "sig": "function (_self)\n{\n\n}",
32959      "type": "function",
32960      "desc": "Fires after the component is rendered."
32961     },
32962     {
32963      "name": "show",
32964      "sig": "function (_self)\n{\n\n}",
32965      "type": "function",
32966      "desc": "Fires after the component is shown."
32967     }
32968    ],
32969    "methods": [
32970     {
32971      "name": "addEvents",
32972      "sig": "(Object object)",
32973      "type": "function",
32974      "desc": "Used to define events on this Observable"
32975     },
32976     {
32977      "name": "addListener",
32978      "sig": "(String eventName, Function handler, Object scope, Object options)",
32979      "type": "function",
32980      "desc": "Appends an event handler to this component"
32981     },
32982     {
32983      "name": "capture",
32984      "sig": "(Observable o, Function fn, Object scope)",
32985      "type": "function",
32986      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
32987     },
32988     {
32989      "name": "destroy",
32990      "sig": "()",
32991      "type": "function",
32992      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
32993     },
32994     {
32995      "name": "disable",
32996      "sig": "()",
32997      "type": "function",
32998      "desc": "Disable this component."
32999     },
33000     {
33001      "name": "enable",
33002      "sig": "()",
33003      "type": "function",
33004      "desc": "Enable this component."
33005     },
33006     {
33007      "name": "fireEvent",
33008      "sig": "(String eventName, Object... args)",
33009      "type": "function",
33010      "desc": "Fires the specified event with the passed parameters (minus the event name)."
33011     },
33012     {
33013      "name": "focus",
33014      "sig": "(Boolean selectText)",
33015      "type": "function",
33016      "desc": "Try to focus this component."
33017     },
33018     {
33019      "name": "getChildContainer",
33020      "sig": "()",
33021      "type": "function",
33022      "desc": "Fetch the element to add children to"
33023     },
33024     {
33025      "name": "getEl",
33026      "sig": "()",
33027      "type": "function",
33028      "desc": "Returns the underlying {@link Roo.Element}."
33029     },
33030     {
33031      "name": "getId",
33032      "sig": "()",
33033      "type": "function",
33034      "desc": "Returns the id of this component."
33035     },
33036     {
33037      "name": "hasListener",
33038      "sig": "(String eventName)",
33039      "type": "function",
33040      "desc": "Checks to see if this object has any listeners for a specified event"
33041     },
33042     {
33043      "name": "hide",
33044      "sig": "()",
33045      "type": "function",
33046      "desc": "Hide a component - adds 'hidden' class"
33047     },
33048     {
33049      "name": "initEvents",
33050      "sig": "()",
33051      "type": "function",
33052      "desc": "Initialize Events for the element"
33053     },
33054     {
33055      "name": "isVisible",
33056      "sig": "()",
33057      "type": "function",
33058      "desc": "Returns true if this component is visible."
33059     },
33060     {
33061      "name": "on",
33062      "sig": "(String eventName, Function handler, Object scope, Object options)",
33063      "type": "function",
33064      "desc": "Appends an event handler to this element (shorthand for addListener)"
33065     },
33066     {
33067      "name": "purgeListeners",
33068      "sig": "()",
33069      "type": "function",
33070      "desc": "Removes all listeners for this object"
33071     },
33072     {
33073      "name": "releaseCapture",
33074      "sig": "(Observable o)",
33075      "type": "function",
33076      "desc": "Removes <b>all</b> added captures from the Observable."
33077     },
33078     {
33079      "name": "removeListener",
33080      "sig": "(String eventName, Function handler, Object scope)",
33081      "type": "function",
33082      "desc": "Removes a listener"
33083     },
33084     {
33085      "name": "render",
33086      "sig": "(String/HTMLElement/Element container)",
33087      "type": "function",
33088      "desc": "If this is a lazy rendering component, render it to its container element."
33089     },
33090     {
33091      "name": "setDisabled",
33092      "sig": "(Boolean disabled)",
33093      "type": "function",
33094      "desc": "Convenience function for setting disabled/enabled by boolean."
33095     },
33096     {
33097      "name": "setVisible",
33098      "sig": "(Boolean visible)",
33099      "type": "function",
33100      "desc": "Convenience function to hide or show this component by boolean."
33101     },
33102     {
33103      "name": "show",
33104      "sig": "()",
33105      "type": "function",
33106      "desc": "Show a component - removes 'hidden' class"
33107     },
33108     {
33109      "name": "tooltipEl",
33110      "sig": "()",
33111      "type": "function",
33112      "desc": "Fetch the element to display the tooltip on."
33113     },
33114     {
33115      "name": "un",
33116      "sig": "(String eventName, Function handler, Object scope)",
33117      "type": "function",
33118      "desc": "Removes a listener (shorthand for removeListener)"
33119     }
33120    ]
33121   },
33122   "Roo.bootstrap.NumberField": {
33123    "props": [
33124     {
33125      "name": "allowDecimals",
33126      "type": "Boolean",
33127      "desc": "False to disallow decimal values (defaults to true)",
33128      "memberOf": ""
33129     },
33130     {
33131      "name": "decimalSeparator",
33132      "type": "String",
33133      "desc": "Character(s) to allow as the decimal separator (defaults to '.')",
33134      "memberOf": ""
33135     },
33136     {
33137      "name": "decimalPrecision",
33138      "type": "Number",
33139      "desc": "The maximum precision to display after the decimal separator (defaults to 2)",
33140      "memberOf": ""
33141     },
33142     {
33143      "name": "allowNegative",
33144      "type": "Boolean",
33145      "desc": "False to prevent entering a negative sign (defaults to true)",
33146      "memberOf": ""
33147     },
33148     {
33149      "name": "minValue",
33150      "type": "Number",
33151      "desc": "The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)",
33152      "memberOf": ""
33153     },
33154     {
33155      "name": "maxValue",
33156      "type": "Number",
33157      "desc": "The maximum allowed value (defaults to Number.MAX_VALUE)",
33158      "memberOf": ""
33159     },
33160     {
33161      "name": "minText",
33162      "type": "String",
33163      "desc": "Error text to display if the minimum value validation fails (defaults to \"The minimum value for this field is {minValue}\")",
33164      "memberOf": ""
33165     },
33166     {
33167      "name": "maxText",
33168      "type": "String",
33169      "desc": "Error text to display if the maximum value validation fails (defaults to \"The maximum value for this field is {maxValue}\")",
33170      "memberOf": ""
33171     },
33172     {
33173      "name": "nanText",
33174      "type": "String",
33175      "desc": "Error text to display if the value is not a valid number.  For example, this can happen\nif a valid character like '.' or '-' is left in the field with no number (defaults to \"{value} is not a valid number\")",
33176      "memberOf": ""
33177     },
33178     {
33179      "name": "castInt",
33180      "type": "Boolean",
33181      "desc": "cast int if true (defalut true)",
33182      "memberOf": "",
33183      "optvals": [
33184       "true",
33185       "false"
33186      ]
33187     },
33188     {
33189      "name": "disabled",
33190      "type": "Boolean",
33191      "desc": "is it disabled",
33192      "memberOf": "Roo.bootstrap.Input"
33193     },
33194     {
33195      "name": "inputType",
33196      "type": "String",
33197      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
33198      "memberOf": "Roo.bootstrap.Input"
33199     },
33200     {
33201      "name": "name",
33202      "type": "String",
33203      "desc": "name of the input",
33204      "memberOf": "Roo.bootstrap.Input"
33205     },
33206     {
33207      "name": "fieldLabel",
33208      "type": "string",
33209      "desc": "- the label associated",
33210      "memberOf": "Roo.bootstrap.Input"
33211     },
33212     {
33213      "name": "placeholder",
33214      "type": "string",
33215      "desc": "- placeholder to put in text.",
33216      "memberOf": "Roo.bootstrap.Input"
33217     },
33218     {
33219      "name": "before",
33220      "type": "string",
33221      "desc": "- input group add on before",
33222      "memberOf": "Roo.bootstrap.Input"
33223     },
33224     {
33225      "name": "after",
33226      "type": "string",
33227      "desc": "- input group add on after",
33228      "memberOf": "Roo.bootstrap.Input"
33229     },
33230     {
33231      "name": "size",
33232      "type": "string",
33233      "desc": "- (lg|sm) or leave empty..",
33234      "memberOf": "Roo.bootstrap.Input"
33235     },
33236     {
33237      "name": "xs",
33238      "type": "Number",
33239      "desc": "colspan out of 12 for mobile-sized screens",
33240      "memberOf": "Roo.bootstrap.Input"
33241     },
33242     {
33243      "name": "sm",
33244      "type": "Number",
33245      "desc": "colspan out of 12 for tablet-sized screens",
33246      "memberOf": "Roo.bootstrap.Input"
33247     },
33248     {
33249      "name": "md",
33250      "type": "Number",
33251      "desc": "colspan out of 12 for computer-sized screens",
33252      "memberOf": "Roo.bootstrap.Input"
33253     },
33254     {
33255      "name": "lg",
33256      "type": "Number",
33257      "desc": "colspan out of 12 for large computer-sized screens",
33258      "memberOf": "Roo.bootstrap.Input"
33259     },
33260     {
33261      "name": "value",
33262      "type": "string",
33263      "desc": "default value of the input",
33264      "memberOf": "Roo.bootstrap.Input"
33265     },
33266     {
33267      "name": "labelWidth",
33268      "type": "Number",
33269      "desc": "set the width of label (0-12)",
33270      "memberOf": "Roo.bootstrap.Input"
33271     },
33272     {
33273      "name": "labelAlign",
33274      "type": "String",
33275      "desc": "",
33276      "memberOf": "Roo.bootstrap.Input",
33277      "optvals": [
33278       "top",
33279       "left"
33280      ]
33281     },
33282     {
33283      "name": "readOnly",
33284      "type": "Boolean",
33285      "desc": "Specifies that the field should be read-only",
33286      "memberOf": "Roo.bootstrap.Input"
33287     },
33288     {
33289      "name": "autocomplete",
33290      "type": "String",
33291      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
33292      "memberOf": "Roo.bootstrap.Input"
33293     },
33294     {
33295      "name": "indicatorpos",
33296      "type": "String",
33297      "desc": "default left",
33298      "memberOf": "Roo.bootstrap.Input",
33299      "optvals": [
33300       "left",
33301       "right"
33302      ]
33303     },
33304     {
33305      "name": "align",
33306      "type": "String",
33307      "desc": "Default left",
33308      "memberOf": "Roo.bootstrap.Input",
33309      "optvals": [
33310       "left",
33311       "center",
33312       "right"
33313      ]
33314     },
33315     {
33316      "name": "forceFeedback",
33317      "type": "Boolean",
33318      "desc": "Default false",
33319      "memberOf": "Roo.bootstrap.Input",
33320      "optvals": [
33321       "true",
33322       "false"
33323      ]
33324     },
33325     {
33326      "name": "validationEvent",
33327      "type": "String/Boolean",
33328      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
33329      "memberOf": "Roo.bootstrap.Input"
33330     },
33331     {
33332      "name": "validateOnBlur",
33333      "type": "Boolean",
33334      "desc": "Whether the field should validate when it loses focus (defaults to true).",
33335      "memberOf": "Roo.bootstrap.Input"
33336     },
33337     {
33338      "name": "validationDelay",
33339      "type": "Number",
33340      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
33341      "memberOf": "Roo.bootstrap.Input"
33342     },
33343     {
33344      "name": "focusClass",
33345      "type": "String",
33346      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
33347      "memberOf": "Roo.bootstrap.Input"
33348     },
33349     {
33350      "name": "invalidClass",
33351      "type": "String",
33352      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
33353      "memberOf": "Roo.bootstrap.Input"
33354     },
33355     {
33356      "name": "validClass",
33357      "type": "String",
33358      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
33359      "memberOf": "Roo.bootstrap.Input"
33360     },
33361     {
33362      "name": "hasFeedback",
33363      "type": "Boolean",
33364      "desc": "default true",
33365      "memberOf": "Roo.bootstrap.Input",
33366      "optvals": [
33367       "true",
33368       "false"
33369      ]
33370     },
33371     {
33372      "name": "invalidFeedbackIcon",
33373      "type": "String",
33374      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
33375      "memberOf": "Roo.bootstrap.Input"
33376     },
33377     {
33378      "name": "validFeedbackIcon",
33379      "type": "String",
33380      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
33381      "memberOf": "Roo.bootstrap.Input"
33382     },
33383     {
33384      "name": "selectOnFocus",
33385      "type": "Boolean",
33386      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
33387      "memberOf": "Roo.bootstrap.Input"
33388     },
33389     {
33390      "name": "maskRe",
33391      "type": "String",
33392      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
33393      "memberOf": "Roo.bootstrap.Input"
33394     },
33395     {
33396      "name": "vtype",
33397      "type": "String",
33398      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
33399      "memberOf": "Roo.bootstrap.Input"
33400     },
33401     {
33402      "name": "disableKeyFilter",
33403      "type": "Boolean",
33404      "desc": "True to disable input keystroke filtering (defaults to false)",
33405      "memberOf": "Roo.bootstrap.Input"
33406     },
33407     {
33408      "name": "allowBlank",
33409      "type": "Boolean",
33410      "desc": "False to validate that the value length > 0 (defaults to true)",
33411      "memberOf": "Roo.bootstrap.Input"
33412     },
33413     {
33414      "name": "blankText",
33415      "type": "String",
33416      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
33417      "memberOf": "Roo.bootstrap.Input"
33418     },
33419     {
33420      "name": "minLength",
33421      "type": "Number",
33422      "desc": "Minimum input field length required (defaults to 0)",
33423      "memberOf": "Roo.bootstrap.Input"
33424     },
33425     {
33426      "name": "maxLength",
33427      "type": "Number",
33428      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
33429      "memberOf": "Roo.bootstrap.Input"
33430     },
33431     {
33432      "name": "minLengthText",
33433      "type": "String",
33434      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
33435      "memberOf": "Roo.bootstrap.Input"
33436     },
33437     {
33438      "name": "maxLengthText",
33439      "type": "String",
33440      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
33441      "memberOf": "Roo.bootstrap.Input"
33442     },
33443     {
33444      "name": "validator",
33445      "type": "Function",
33446      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
33447      "memberOf": "Roo.bootstrap.Input"
33448     },
33449     {
33450      "name": "regex",
33451      "type": "RegExp",
33452      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
33453      "memberOf": "Roo.bootstrap.Input"
33454     },
33455     {
33456      "name": "regexText",
33457      "type": "String",
33458      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
33459      "memberOf": "Roo.bootstrap.Input"
33460     },
33461     {
33462      "name": "cls",
33463      "type": "String",
33464      "desc": "css class",
33465      "memberOf": "Roo.bootstrap.Component"
33466     },
33467     {
33468      "name": "style",
33469      "type": "String",
33470      "desc": "any extra css",
33471      "memberOf": "Roo.bootstrap.Component"
33472     },
33473     {
33474      "name": "xattr",
33475      "type": "Object",
33476      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
33477      "memberOf": "Roo.bootstrap.Component"
33478     },
33479     {
33480      "name": "can_build_overlaid",
33481      "type": "Boolean",
33482      "desc": "True if element can be rebuild from a HTML page",
33483      "memberOf": "Roo.bootstrap.Component"
33484     },
33485     {
33486      "name": "dataId",
33487      "type": "string",
33488      "desc": "cutomer id",
33489      "memberOf": "Roo.bootstrap.Component"
33490     },
33491     {
33492      "name": "tooltip",
33493      "type": "string",
33494      "desc": "Text for the tooltip",
33495      "memberOf": "Roo.bootstrap.Component"
33496     },
33497     {
33498      "name": "container_method",
33499      "type": "string",
33500      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
33501      "memberOf": "Roo.bootstrap.Component"
33502     },
33503     {
33504      "name": "disableClass",
33505      "type": "String",
33506      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
33507      "memberOf": "Roo.Component"
33508     },
33509     {
33510      "name": "allowDomMove",
33511      "type": "Boolean",
33512      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
33513      "memberOf": "Roo.Component"
33514     },
33515     {
33516      "name": "hideMode",
33517      "type": "String",
33518      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
33519      "memberOf": "Roo.Component",
33520      "optvals": [
33521       "display",
33522       "visibility"
33523      ]
33524     },
33525     {
33526      "name": "actionMode",
33527      "type": "String",
33528      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
33529      "memberOf": "Roo.Component"
33530     },
33531     {
33532      "name": "listeners",
33533      "type": "Object",
33534      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
33535      "memberOf": "Roo.util.Observable"
33536     }
33537    ],
33538    "events": [
33539     {
33540      "name": "beforedestroy",
33541      "sig": "function (_self)\n{\n\n}",
33542      "type": "function",
33543      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
33544     },
33545     {
33546      "name": "beforehide",
33547      "sig": "function (_self)\n{\n\n}",
33548      "type": "function",
33549      "desc": "Fires before the component is hidden. Return false to stop the hide."
33550     },
33551     {
33552      "name": "beforerender",
33553      "sig": "function (_self)\n{\n\n}",
33554      "type": "function",
33555      "desc": "Fires before the component is rendered. Return false to stop the render."
33556     },
33557     {
33558      "name": "beforeshow",
33559      "sig": "function (_self)\n{\n\n}",
33560      "type": "function",
33561      "desc": "Fires before the component is shown.  Return false to stop the show."
33562     },
33563     {
33564      "name": "blur",
33565      "sig": "function (_self)\n{\n\n}",
33566      "type": "function",
33567      "desc": "Fires when this field loses input focus."
33568     },
33569     {
33570      "name": "change",
33571      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
33572      "type": "function",
33573      "desc": "Fires just before the field blurs if the field value has changed."
33574     },
33575     {
33576      "name": "childrenrendered",
33577      "sig": "function (_self)\n{\n\n}",
33578      "type": "function",
33579      "desc": "Fires when the children have been rendered.."
33580     },
33581     {
33582      "name": "destroy",
33583      "sig": "function (_self)\n{\n\n}",
33584      "type": "function",
33585      "desc": "Fires after the component is destroyed."
33586     },
33587     {
33588      "name": "disable",
33589      "sig": "function (_self)\n{\n\n}",
33590      "type": "function",
33591      "desc": "Fires after the component is disabled."
33592     },
33593     {
33594      "name": "enable",
33595      "sig": "function (_self)\n{\n\n}",
33596      "type": "function",
33597      "desc": "Fires after the component is enabled."
33598     },
33599     {
33600      "name": "focus",
33601      "sig": "function (_self)\n{\n\n}",
33602      "type": "function",
33603      "desc": "Fires when this field receives input focus."
33604     },
33605     {
33606      "name": "hide",
33607      "sig": "function (_self)\n{\n\n}",
33608      "type": "function",
33609      "desc": "Fires after the component is hidden."
33610     },
33611     {
33612      "name": "invalid",
33613      "sig": "function (_self, msg)\n{\n\n}",
33614      "type": "function",
33615      "desc": "Fires after the field has been marked as invalid."
33616     },
33617     {
33618      "name": "keyup",
33619      "sig": "function (_self, e)\n{\n\n}",
33620      "type": "function",
33621      "desc": "Fires after the key up"
33622     },
33623     {
33624      "name": "render",
33625      "sig": "function (_self)\n{\n\n}",
33626      "type": "function",
33627      "desc": "Fires after the component is rendered."
33628     },
33629     {
33630      "name": "show",
33631      "sig": "function (_self)\n{\n\n}",
33632      "type": "function",
33633      "desc": "Fires after the component is shown."
33634     },
33635     {
33636      "name": "specialkey",
33637      "sig": "function (_self, e)\n{\n\n}",
33638      "type": "function",
33639      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
33640     },
33641     {
33642      "name": "valid",
33643      "sig": "function (_self)\n{\n\n}",
33644      "type": "function",
33645      "desc": "Fires after the field has been validated with no errors."
33646     }
33647    ],
33648    "methods": [
33649     {
33650      "name": "addEvents",
33651      "sig": "(Object object)",
33652      "type": "function",
33653      "desc": "Used to define events on this Observable"
33654     },
33655     {
33656      "name": "addListener",
33657      "sig": "(String eventName, Function handler, Object scope, Object options)",
33658      "type": "function",
33659      "desc": "Appends an event handler to this component"
33660     },
33661     {
33662      "name": "capture",
33663      "sig": "(Observable o, Function fn, Object scope)",
33664      "type": "function",
33665      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
33666     },
33667     {
33668      "name": "clearInvalid",
33669      "sig": "()",
33670      "type": "function",
33671      "desc": "Clear any invalid styles/messages for this field"
33672     },
33673     {
33674      "name": "destroy",
33675      "sig": "()",
33676      "type": "function",
33677      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
33678     },
33679     {
33680      "name": "disable",
33681      "sig": "()",
33682      "type": "function",
33683      "desc": "Disable this component."
33684     },
33685     {
33686      "name": "enable",
33687      "sig": "()",
33688      "type": "function",
33689      "desc": "Enable this component."
33690     },
33691     {
33692      "name": "fireEvent",
33693      "sig": "(String eventName, Object... args)",
33694      "type": "function",
33695      "desc": "Fires the specified event with the passed parameters (minus the event name)."
33696     },
33697     {
33698      "name": "focus",
33699      "sig": "(Boolean selectText)",
33700      "type": "function",
33701      "desc": "Try to focus this component."
33702     },
33703     {
33704      "name": "getChildContainer",
33705      "sig": "()",
33706      "type": "function",
33707      "desc": "Fetch the element to add children to"
33708     },
33709     {
33710      "name": "getEl",
33711      "sig": "()",
33712      "type": "function",
33713      "desc": "Returns the underlying {@link Roo.Element}."
33714     },
33715     {
33716      "name": "getId",
33717      "sig": "()",
33718      "type": "function",
33719      "desc": "Returns the id of this component."
33720     },
33721     {
33722      "name": "getName",
33723      "sig": "()",
33724      "type": "function",
33725      "desc": "Returns the name of the field"
33726     },
33727     {
33728      "name": "getRawValue",
33729      "sig": "()",
33730      "type": "function",
33731      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
33732     },
33733     {
33734      "name": "getValue",
33735      "sig": "()",
33736      "type": "function",
33737      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
33738     },
33739     {
33740      "name": "hasListener",
33741      "sig": "(String eventName)",
33742      "type": "function",
33743      "desc": "Checks to see if this object has any listeners for a specified event"
33744     },
33745     {
33746      "name": "hide",
33747      "sig": "()",
33748      "type": "function",
33749      "desc": "Hide a component - adds 'hidden' class"
33750     },
33751     {
33752      "name": "initEvents",
33753      "sig": "()",
33754      "type": "function",
33755      "desc": "Initialize Events for the element"
33756     },
33757     {
33758      "name": "inputEl",
33759      "sig": "()",
33760      "type": "function",
33761      "desc": "return the real input element."
33762     },
33763     {
33764      "name": "isVisible",
33765      "sig": "()",
33766      "type": "function",
33767      "desc": "Returns true if this component is visible."
33768     },
33769     {
33770      "name": "markInvalid",
33771      "sig": "(String msg)",
33772      "type": "function",
33773      "desc": "Mark this field as invalid"
33774     },
33775     {
33776      "name": "markValid",
33777      "sig": "()",
33778      "type": "function",
33779      "desc": "Mark this field as valid"
33780     },
33781     {
33782      "name": "on",
33783      "sig": "(String eventName, Function handler, Object scope, Object options)",
33784      "type": "function",
33785      "desc": "Appends an event handler to this element (shorthand for addListener)"
33786     },
33787     {
33788      "name": "purgeListeners",
33789      "sig": "()",
33790      "type": "function",
33791      "desc": "Removes all listeners for this object"
33792     },
33793     {
33794      "name": "releaseCapture",
33795      "sig": "(Observable o)",
33796      "type": "function",
33797      "desc": "Removes <b>all</b> added captures from the Observable."
33798     },
33799     {
33800      "name": "removeListener",
33801      "sig": "(String eventName, Function handler, Object scope)",
33802      "type": "function",
33803      "desc": "Removes a listener"
33804     },
33805     {
33806      "name": "render",
33807      "sig": "(String/HTMLElement/Element container)",
33808      "type": "function",
33809      "desc": "If this is a lazy rendering component, render it to its container element."
33810     },
33811     {
33812      "name": "reset",
33813      "sig": "()",
33814      "type": "function",
33815      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
33816     },
33817     {
33818      "name": "setDisabled",
33819      "sig": "(Boolean disabled)",
33820      "type": "function",
33821      "desc": "Convenience function for setting disabled/enabled by boolean."
33822     },
33823     {
33824      "name": "setRawValue",
33825      "sig": "(Mixed value)",
33826      "type": "function",
33827      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
33828     },
33829     {
33830      "name": "setValue",
33831      "sig": "(Mixed value)",
33832      "type": "function",
33833      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
33834     },
33835     {
33836      "name": "setVisible",
33837      "sig": "(Boolean visible)",
33838      "type": "function",
33839      "desc": "Convenience function to hide or show this component by boolean."
33840     },
33841     {
33842      "name": "show",
33843      "sig": "()",
33844      "type": "function",
33845      "desc": "Show a component - removes 'hidden' class"
33846     },
33847     {
33848      "name": "tooltipEl",
33849      "sig": "()",
33850      "type": "function",
33851      "desc": "Fetch the element to display the tooltip on."
33852     },
33853     {
33854      "name": "un",
33855      "sig": "(String eventName, Function handler, Object scope)",
33856      "type": "function",
33857      "desc": "Removes a listener (shorthand for removeListener)"
33858     },
33859     {
33860      "name": "validate",
33861      "sig": "()",
33862      "type": "function",
33863      "desc": "Validates the field value"
33864     },
33865     {
33866      "name": "validateValue",
33867      "sig": "(Mixed value)",
33868      "type": "function",
33869      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
33870     }
33871    ]
33872   },
33873   "Roo.bootstrap.Pagination": {
33874    "props": [
33875     {
33876      "name": "size",
33877      "type": "String",
33878      "desc": "xs | sm | md | lg",
33879      "memberOf": ""
33880     },
33881     {
33882      "name": "inverse",
33883      "type": "Boolean",
33884      "desc": "false | true",
33885      "memberOf": ""
33886     },
33887     {
33888      "name": "cls",
33889      "type": "String",
33890      "desc": "css class",
33891      "memberOf": "Roo.bootstrap.Component"
33892     },
33893     {
33894      "name": "style",
33895      "type": "String",
33896      "desc": "any extra css",
33897      "memberOf": "Roo.bootstrap.Component"
33898     },
33899     {
33900      "name": "xattr",
33901      "type": "Object",
33902      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
33903      "memberOf": "Roo.bootstrap.Component"
33904     },
33905     {
33906      "name": "can_build_overlaid",
33907      "type": "Boolean",
33908      "desc": "True if element can be rebuild from a HTML page",
33909      "memberOf": "Roo.bootstrap.Component"
33910     },
33911     {
33912      "name": "dataId",
33913      "type": "string",
33914      "desc": "cutomer id",
33915      "memberOf": "Roo.bootstrap.Component"
33916     },
33917     {
33918      "name": "name",
33919      "type": "string",
33920      "desc": "Specifies name attribute",
33921      "memberOf": "Roo.bootstrap.Component"
33922     },
33923     {
33924      "name": "tooltip",
33925      "type": "string",
33926      "desc": "Text for the tooltip",
33927      "memberOf": "Roo.bootstrap.Component"
33928     },
33929     {
33930      "name": "container_method",
33931      "type": "string",
33932      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
33933      "memberOf": "Roo.bootstrap.Component"
33934     },
33935     {
33936      "name": "disableClass",
33937      "type": "String",
33938      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
33939      "memberOf": "Roo.Component"
33940     },
33941     {
33942      "name": "allowDomMove",
33943      "type": "Boolean",
33944      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
33945      "memberOf": "Roo.Component"
33946     },
33947     {
33948      "name": "hideMode",
33949      "type": "String",
33950      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
33951      "memberOf": "Roo.Component",
33952      "optvals": [
33953       "display",
33954       "visibility"
33955      ]
33956     },
33957     {
33958      "name": "actionMode",
33959      "type": "String",
33960      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
33961      "memberOf": "Roo.Component"
33962     },
33963     {
33964      "name": "listeners",
33965      "type": "Object",
33966      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
33967      "memberOf": "Roo.util.Observable"
33968     }
33969    ],
33970    "events": [
33971     {
33972      "name": "beforedestroy",
33973      "sig": "function (_self)\n{\n\n}",
33974      "type": "function",
33975      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
33976     },
33977     {
33978      "name": "beforehide",
33979      "sig": "function (_self)\n{\n\n}",
33980      "type": "function",
33981      "desc": "Fires before the component is hidden. Return false to stop the hide."
33982     },
33983     {
33984      "name": "beforerender",
33985      "sig": "function (_self)\n{\n\n}",
33986      "type": "function",
33987      "desc": "Fires before the component is rendered. Return false to stop the render."
33988     },
33989     {
33990      "name": "beforeshow",
33991      "sig": "function (_self)\n{\n\n}",
33992      "type": "function",
33993      "desc": "Fires before the component is shown.  Return false to stop the show."
33994     },
33995     {
33996      "name": "childrenrendered",
33997      "sig": "function (_self)\n{\n\n}",
33998      "type": "function",
33999      "desc": "Fires when the children have been rendered.."
34000     },
34001     {
34002      "name": "destroy",
34003      "sig": "function (_self)\n{\n\n}",
34004      "type": "function",
34005      "desc": "Fires after the component is destroyed."
34006     },
34007     {
34008      "name": "disable",
34009      "sig": "function (_self)\n{\n\n}",
34010      "type": "function",
34011      "desc": "Fires after the component is disabled."
34012     },
34013     {
34014      "name": "enable",
34015      "sig": "function (_self)\n{\n\n}",
34016      "type": "function",
34017      "desc": "Fires after the component is enabled."
34018     },
34019     {
34020      "name": "hide",
34021      "sig": "function (_self)\n{\n\n}",
34022      "type": "function",
34023      "desc": "Fires after the component is hidden."
34024     },
34025     {
34026      "name": "render",
34027      "sig": "function (_self)\n{\n\n}",
34028      "type": "function",
34029      "desc": "Fires after the component is rendered."
34030     },
34031     {
34032      "name": "show",
34033      "sig": "function (_self)\n{\n\n}",
34034      "type": "function",
34035      "desc": "Fires after the component is shown."
34036     }
34037    ],
34038    "methods": [
34039     {
34040      "name": "addEvents",
34041      "sig": "(Object object)",
34042      "type": "function",
34043      "desc": "Used to define events on this Observable"
34044     },
34045     {
34046      "name": "addListener",
34047      "sig": "(String eventName, Function handler, Object scope, Object options)",
34048      "type": "function",
34049      "desc": "Appends an event handler to this component"
34050     },
34051     {
34052      "name": "capture",
34053      "sig": "(Observable o, Function fn, Object scope)",
34054      "type": "function",
34055      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
34056     },
34057     {
34058      "name": "destroy",
34059      "sig": "()",
34060      "type": "function",
34061      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
34062     },
34063     {
34064      "name": "disable",
34065      "sig": "()",
34066      "type": "function",
34067      "desc": "Disable this component."
34068     },
34069     {
34070      "name": "enable",
34071      "sig": "()",
34072      "type": "function",
34073      "desc": "Enable this component."
34074     },
34075     {
34076      "name": "fireEvent",
34077      "sig": "(String eventName, Object... args)",
34078      "type": "function",
34079      "desc": "Fires the specified event with the passed parameters (minus the event name)."
34080     },
34081     {
34082      "name": "focus",
34083      "sig": "(Boolean selectText)",
34084      "type": "function",
34085      "desc": "Try to focus this component."
34086     },
34087     {
34088      "name": "getChildContainer",
34089      "sig": "()",
34090      "type": "function",
34091      "desc": "Fetch the element to add children to"
34092     },
34093     {
34094      "name": "getEl",
34095      "sig": "()",
34096      "type": "function",
34097      "desc": "Returns the underlying {@link Roo.Element}."
34098     },
34099     {
34100      "name": "getId",
34101      "sig": "()",
34102      "type": "function",
34103      "desc": "Returns the id of this component."
34104     },
34105     {
34106      "name": "hasListener",
34107      "sig": "(String eventName)",
34108      "type": "function",
34109      "desc": "Checks to see if this object has any listeners for a specified event"
34110     },
34111     {
34112      "name": "hide",
34113      "sig": "()",
34114      "type": "function",
34115      "desc": "Hide a component - adds 'hidden' class"
34116     },
34117     {
34118      "name": "initEvents",
34119      "sig": "()",
34120      "type": "function",
34121      "desc": "Initialize Events for the element"
34122     },
34123     {
34124      "name": "isVisible",
34125      "sig": "()",
34126      "type": "function",
34127      "desc": "Returns true if this component is visible."
34128     },
34129     {
34130      "name": "on",
34131      "sig": "(String eventName, Function handler, Object scope, Object options)",
34132      "type": "function",
34133      "desc": "Appends an event handler to this element (shorthand for addListener)"
34134     },
34135     {
34136      "name": "purgeListeners",
34137      "sig": "()",
34138      "type": "function",
34139      "desc": "Removes all listeners for this object"
34140     },
34141     {
34142      "name": "releaseCapture",
34143      "sig": "(Observable o)",
34144      "type": "function",
34145      "desc": "Removes <b>all</b> added captures from the Observable."
34146     },
34147     {
34148      "name": "removeListener",
34149      "sig": "(String eventName, Function handler, Object scope)",
34150      "type": "function",
34151      "desc": "Removes a listener"
34152     },
34153     {
34154      "name": "render",
34155      "sig": "(String/HTMLElement/Element container)",
34156      "type": "function",
34157      "desc": "If this is a lazy rendering component, render it to its container element."
34158     },
34159     {
34160      "name": "setDisabled",
34161      "sig": "(Boolean disabled)",
34162      "type": "function",
34163      "desc": "Convenience function for setting disabled/enabled by boolean."
34164     },
34165     {
34166      "name": "setVisible",
34167      "sig": "(Boolean visible)",
34168      "type": "function",
34169      "desc": "Convenience function to hide or show this component by boolean."
34170     },
34171     {
34172      "name": "show",
34173      "sig": "()",
34174      "type": "function",
34175      "desc": "Show a component - removes 'hidden' class"
34176     },
34177     {
34178      "name": "tooltipEl",
34179      "sig": "()",
34180      "type": "function",
34181      "desc": "Fetch the element to display the tooltip on."
34182     },
34183     {
34184      "name": "un",
34185      "sig": "(String eventName, Function handler, Object scope)",
34186      "type": "function",
34187      "desc": "Removes a listener (shorthand for removeListener)"
34188     }
34189    ]
34190   },
34191   "Roo.bootstrap.PaginationItem": {
34192    "props": [
34193     {
34194      "name": "html",
34195      "type": "String",
34196      "desc": "text",
34197      "memberOf": ""
34198     },
34199     {
34200      "name": "href",
34201      "type": "String",
34202      "desc": "the link",
34203      "memberOf": ""
34204     },
34205     {
34206      "name": "preventDefault",
34207      "type": "Boolean",
34208      "desc": "default true",
34209      "memberOf": "",
34210      "optvals": [
34211       "true",
34212       "false"
34213      ]
34214     },
34215     {
34216      "name": "active",
34217      "type": "Boolean",
34218      "desc": "default false",
34219      "memberOf": "",
34220      "optvals": [
34221       "true",
34222       "false"
34223      ]
34224     },
34225     {
34226      "name": "disabled",
34227      "type": "Boolean",
34228      "desc": "default false",
34229      "memberOf": ""
34230     },
34231     {
34232      "name": "cls",
34233      "type": "String",
34234      "desc": "css class",
34235      "memberOf": "Roo.bootstrap.Component"
34236     },
34237     {
34238      "name": "style",
34239      "type": "String",
34240      "desc": "any extra css",
34241      "memberOf": "Roo.bootstrap.Component"
34242     },
34243     {
34244      "name": "xattr",
34245      "type": "Object",
34246      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
34247      "memberOf": "Roo.bootstrap.Component"
34248     },
34249     {
34250      "name": "can_build_overlaid",
34251      "type": "Boolean",
34252      "desc": "True if element can be rebuild from a HTML page",
34253      "memberOf": "Roo.bootstrap.Component"
34254     },
34255     {
34256      "name": "dataId",
34257      "type": "string",
34258      "desc": "cutomer id",
34259      "memberOf": "Roo.bootstrap.Component"
34260     },
34261     {
34262      "name": "name",
34263      "type": "string",
34264      "desc": "Specifies name attribute",
34265      "memberOf": "Roo.bootstrap.Component"
34266     },
34267     {
34268      "name": "tooltip",
34269      "type": "string",
34270      "desc": "Text for the tooltip",
34271      "memberOf": "Roo.bootstrap.Component"
34272     },
34273     {
34274      "name": "container_method",
34275      "type": "string",
34276      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
34277      "memberOf": "Roo.bootstrap.Component"
34278     },
34279     {
34280      "name": "disableClass",
34281      "type": "String",
34282      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
34283      "memberOf": "Roo.Component"
34284     },
34285     {
34286      "name": "allowDomMove",
34287      "type": "Boolean",
34288      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
34289      "memberOf": "Roo.Component"
34290     },
34291     {
34292      "name": "hideMode",
34293      "type": "String",
34294      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
34295      "memberOf": "Roo.Component",
34296      "optvals": [
34297       "display",
34298       "visibility"
34299      ]
34300     },
34301     {
34302      "name": "actionMode",
34303      "type": "String",
34304      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
34305      "memberOf": "Roo.Component"
34306     },
34307     {
34308      "name": "listeners",
34309      "type": "Object",
34310      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
34311      "memberOf": "Roo.util.Observable"
34312     }
34313    ],
34314    "events": [
34315     {
34316      "name": "beforedestroy",
34317      "sig": "function (_self)\n{\n\n}",
34318      "type": "function",
34319      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
34320     },
34321     {
34322      "name": "beforehide",
34323      "sig": "function (_self)\n{\n\n}",
34324      "type": "function",
34325      "desc": "Fires before the component is hidden. Return false to stop the hide."
34326     },
34327     {
34328      "name": "beforerender",
34329      "sig": "function (_self)\n{\n\n}",
34330      "type": "function",
34331      "desc": "Fires before the component is rendered. Return false to stop the render."
34332     },
34333     {
34334      "name": "beforeshow",
34335      "sig": "function (_self)\n{\n\n}",
34336      "type": "function",
34337      "desc": "Fires before the component is shown.  Return false to stop the show."
34338     },
34339     {
34340      "name": "childrenrendered",
34341      "sig": "function (_self)\n{\n\n}",
34342      "type": "function",
34343      "desc": "Fires when the children have been rendered.."
34344     },
34345     {
34346      "name": "click",
34347      "sig": "function (e)\n{\n\n}",
34348      "type": "function",
34349      "desc": "The raw click event for the entire grid."
34350     },
34351     {
34352      "name": "destroy",
34353      "sig": "function (_self)\n{\n\n}",
34354      "type": "function",
34355      "desc": "Fires after the component is destroyed."
34356     },
34357     {
34358      "name": "disable",
34359      "sig": "function (_self)\n{\n\n}",
34360      "type": "function",
34361      "desc": "Fires after the component is disabled."
34362     },
34363     {
34364      "name": "enable",
34365      "sig": "function (_self)\n{\n\n}",
34366      "type": "function",
34367      "desc": "Fires after the component is enabled."
34368     },
34369     {
34370      "name": "hide",
34371      "sig": "function (_self)\n{\n\n}",
34372      "type": "function",
34373      "desc": "Fires after the component is hidden."
34374     },
34375     {
34376      "name": "render",
34377      "sig": "function (_self)\n{\n\n}",
34378      "type": "function",
34379      "desc": "Fires after the component is rendered."
34380     },
34381     {
34382      "name": "show",
34383      "sig": "function (_self)\n{\n\n}",
34384      "type": "function",
34385      "desc": "Fires after the component is shown."
34386     }
34387    ],
34388    "methods": [
34389     {
34390      "name": "addEvents",
34391      "sig": "(Object object)",
34392      "type": "function",
34393      "desc": "Used to define events on this Observable"
34394     },
34395     {
34396      "name": "addListener",
34397      "sig": "(String eventName, Function handler, Object scope, Object options)",
34398      "type": "function",
34399      "desc": "Appends an event handler to this component"
34400     },
34401     {
34402      "name": "capture",
34403      "sig": "(Observable o, Function fn, Object scope)",
34404      "type": "function",
34405      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
34406     },
34407     {
34408      "name": "destroy",
34409      "sig": "()",
34410      "type": "function",
34411      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
34412     },
34413     {
34414      "name": "disable",
34415      "sig": "()",
34416      "type": "function",
34417      "desc": "Disable this component."
34418     },
34419     {
34420      "name": "enable",
34421      "sig": "()",
34422      "type": "function",
34423      "desc": "Enable this component."
34424     },
34425     {
34426      "name": "fireEvent",
34427      "sig": "(String eventName, Object... args)",
34428      "type": "function",
34429      "desc": "Fires the specified event with the passed parameters (minus the event name)."
34430     },
34431     {
34432      "name": "focus",
34433      "sig": "(Boolean selectText)",
34434      "type": "function",
34435      "desc": "Try to focus this component."
34436     },
34437     {
34438      "name": "getChildContainer",
34439      "sig": "()",
34440      "type": "function",
34441      "desc": "Fetch the element to add children to"
34442     },
34443     {
34444      "name": "getEl",
34445      "sig": "()",
34446      "type": "function",
34447      "desc": "Returns the underlying {@link Roo.Element}."
34448     },
34449     {
34450      "name": "getId",
34451      "sig": "()",
34452      "type": "function",
34453      "desc": "Returns the id of this component."
34454     },
34455     {
34456      "name": "hasListener",
34457      "sig": "(String eventName)",
34458      "type": "function",
34459      "desc": "Checks to see if this object has any listeners for a specified event"
34460     },
34461     {
34462      "name": "hide",
34463      "sig": "()",
34464      "type": "function",
34465      "desc": "Hide a component - adds 'hidden' class"
34466     },
34467     {
34468      "name": "initEvents",
34469      "sig": "()",
34470      "type": "function",
34471      "desc": "Initialize Events for the element"
34472     },
34473     {
34474      "name": "isVisible",
34475      "sig": "()",
34476      "type": "function",
34477      "desc": "Returns true if this component is visible."
34478     },
34479     {
34480      "name": "on",
34481      "sig": "(String eventName, Function handler, Object scope, Object options)",
34482      "type": "function",
34483      "desc": "Appends an event handler to this element (shorthand for addListener)"
34484     },
34485     {
34486      "name": "purgeListeners",
34487      "sig": "()",
34488      "type": "function",
34489      "desc": "Removes all listeners for this object"
34490     },
34491     {
34492      "name": "releaseCapture",
34493      "sig": "(Observable o)",
34494      "type": "function",
34495      "desc": "Removes <b>all</b> added captures from the Observable."
34496     },
34497     {
34498      "name": "removeListener",
34499      "sig": "(String eventName, Function handler, Object scope)",
34500      "type": "function",
34501      "desc": "Removes a listener"
34502     },
34503     {
34504      "name": "render",
34505      "sig": "(String/HTMLElement/Element container)",
34506      "type": "function",
34507      "desc": "If this is a lazy rendering component, render it to its container element."
34508     },
34509     {
34510      "name": "setDisabled",
34511      "sig": "(Boolean disabled)",
34512      "type": "function",
34513      "desc": "Convenience function for setting disabled/enabled by boolean."
34514     },
34515     {
34516      "name": "setVisible",
34517      "sig": "(Boolean visible)",
34518      "type": "function",
34519      "desc": "Convenience function to hide or show this component by boolean."
34520     },
34521     {
34522      "name": "show",
34523      "sig": "()",
34524      "type": "function",
34525      "desc": "Show a component - removes 'hidden' class"
34526     },
34527     {
34528      "name": "tooltipEl",
34529      "sig": "()",
34530      "type": "function",
34531      "desc": "Fetch the element to display the tooltip on."
34532     },
34533     {
34534      "name": "un",
34535      "sig": "(String eventName, Function handler, Object scope)",
34536      "type": "function",
34537      "desc": "Removes a listener (shorthand for removeListener)"
34538     }
34539    ]
34540   },
34541   "Roo.bootstrap.PagingToolbar": {
34542    "props": [
34543     {
34544      "name": "dataSource",
34545      "type": "Roo.data.Store",
34546      "desc": "The underlying data store providing the paged data",
34547      "memberOf": ""
34548     },
34549     {
34550      "name": "container",
34551      "type": "String/HTMLElement/Element",
34552      "desc": "container The id or element that will contain the toolbar",
34553      "memberOf": ""
34554     },
34555     {
34556      "name": "displayInfo",
34557      "type": "Boolean",
34558      "desc": "True to display the displayMsg (defaults to false)",
34559      "memberOf": ""
34560     },
34561     {
34562      "name": "pageSize",
34563      "type": "Number",
34564      "desc": "The number of records to display per page (defaults to 20)",
34565      "memberOf": ""
34566     },
34567     {
34568      "name": "displayMsg",
34569      "type": "String",
34570      "desc": "The paging status message to display (defaults to \"Displaying {start} - {end} of {total}\")",
34571      "memberOf": ""
34572     },
34573     {
34574      "name": "emptyMsg",
34575      "type": "String",
34576      "desc": "The message to display when no records are found (defaults to \"No data to display\")",
34577      "memberOf": ""
34578     },
34579     {
34580      "name": "inverse",
34581      "type": "Boolean",
34582      "desc": "is inverted color",
34583      "memberOf": "Roo.bootstrap.NavSimplebar"
34584     },
34585     {
34586      "name": "type",
34587      "type": "String",
34588      "desc": "",
34589      "memberOf": "Roo.bootstrap.NavSimplebar",
34590      "optvals": [
34591       "nav",
34592       "pills",
34593       "tabs"
34594      ]
34595     },
34596     {
34597      "name": "arrangement",
34598      "type": "Boolean",
34599      "desc": "stacked | justified",
34600      "memberOf": "Roo.bootstrap.NavSimplebar"
34601     },
34602     {
34603      "name": "align",
34604      "type": "String",
34605      "desc": "alignment",
34606      "memberOf": "Roo.bootstrap.NavSimplebar",
34607      "optvals": [
34608       "left",
34609       "right"
34610      ]
34611     },
34612     {
34613      "name": "main",
34614      "type": "Boolean",
34615      "desc": "main nav bar? default false",
34616      "memberOf": "Roo.bootstrap.NavSimplebar",
34617      "optvals": [
34618       "true",
34619       "false"
34620      ]
34621     },
34622     {
34623      "name": "loadMask",
34624      "type": "Boolean",
34625      "desc": "loadMask on the bar",
34626      "memberOf": "Roo.bootstrap.NavSimplebar",
34627      "optvals": [
34628       "true",
34629       "false"
34630      ]
34631     },
34632     {
34633      "name": "tag",
34634      "type": "String",
34635      "desc": "default is nav",
34636      "memberOf": "Roo.bootstrap.NavSimplebar",
34637      "optvals": [
34638       "header",
34639       "footer",
34640       "nav",
34641       "div"
34642      ]
34643     },
34644     {
34645      "name": "cls",
34646      "type": "String",
34647      "desc": "css class",
34648      "memberOf": "Roo.bootstrap.Component"
34649     },
34650     {
34651      "name": "style",
34652      "type": "String",
34653      "desc": "any extra css",
34654      "memberOf": "Roo.bootstrap.Component"
34655     },
34656     {
34657      "name": "xattr",
34658      "type": "Object",
34659      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
34660      "memberOf": "Roo.bootstrap.Component"
34661     },
34662     {
34663      "name": "can_build_overlaid",
34664      "type": "Boolean",
34665      "desc": "True if element can be rebuild from a HTML page",
34666      "memberOf": "Roo.bootstrap.Component"
34667     },
34668     {
34669      "name": "dataId",
34670      "type": "string",
34671      "desc": "cutomer id",
34672      "memberOf": "Roo.bootstrap.Component"
34673     },
34674     {
34675      "name": "name",
34676      "type": "string",
34677      "desc": "Specifies name attribute",
34678      "memberOf": "Roo.bootstrap.Component"
34679     },
34680     {
34681      "name": "tooltip",
34682      "type": "string",
34683      "desc": "Text for the tooltip",
34684      "memberOf": "Roo.bootstrap.Component"
34685     },
34686     {
34687      "name": "container_method",
34688      "type": "string",
34689      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
34690      "memberOf": "Roo.bootstrap.Component"
34691     },
34692     {
34693      "name": "disableClass",
34694      "type": "String",
34695      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
34696      "memberOf": "Roo.Component"
34697     },
34698     {
34699      "name": "allowDomMove",
34700      "type": "Boolean",
34701      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
34702      "memberOf": "Roo.Component"
34703     },
34704     {
34705      "name": "hideMode",
34706      "type": "String",
34707      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
34708      "memberOf": "Roo.Component",
34709      "optvals": [
34710       "display",
34711       "visibility"
34712      ]
34713     },
34714     {
34715      "name": "actionMode",
34716      "type": "String",
34717      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
34718      "memberOf": "Roo.Component"
34719     },
34720     {
34721      "name": "listeners",
34722      "type": "Object",
34723      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
34724      "memberOf": "Roo.util.Observable"
34725     }
34726    ],
34727    "events": [
34728     {
34729      "name": "beforedestroy",
34730      "sig": "function (_self)\n{\n\n}",
34731      "type": "function",
34732      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
34733     },
34734     {
34735      "name": "beforehide",
34736      "sig": "function (_self)\n{\n\n}",
34737      "type": "function",
34738      "desc": "Fires before the component is hidden. Return false to stop the hide."
34739     },
34740     {
34741      "name": "beforerender",
34742      "sig": "function (_self)\n{\n\n}",
34743      "type": "function",
34744      "desc": "Fires before the component is rendered. Return false to stop the render."
34745     },
34746     {
34747      "name": "beforeshow",
34748      "sig": "function (_self)\n{\n\n}",
34749      "type": "function",
34750      "desc": "Fires before the component is shown.  Return false to stop the show."
34751     },
34752     {
34753      "name": "beforetoggle",
34754      "sig": "function (e)\n{\n\n}",
34755      "type": "function",
34756      "desc": "Fire before toggle the menu"
34757     },
34758     {
34759      "name": "childrenrendered",
34760      "sig": "function (_self)\n{\n\n}",
34761      "type": "function",
34762      "desc": "Fires when the children have been rendered.."
34763     },
34764     {
34765      "name": "destroy",
34766      "sig": "function (_self)\n{\n\n}",
34767      "type": "function",
34768      "desc": "Fires after the component is destroyed."
34769     },
34770     {
34771      "name": "disable",
34772      "sig": "function (_self)\n{\n\n}",
34773      "type": "function",
34774      "desc": "Fires after the component is disabled."
34775     },
34776     {
34777      "name": "enable",
34778      "sig": "function (_self)\n{\n\n}",
34779      "type": "function",
34780      "desc": "Fires after the component is enabled."
34781     },
34782     {
34783      "name": "hide",
34784      "sig": "function (_self)\n{\n\n}",
34785      "type": "function",
34786      "desc": "Fires after the component is hidden."
34787     },
34788     {
34789      "name": "render",
34790      "sig": "function (_self)\n{\n\n}",
34791      "type": "function",
34792      "desc": "Fires after the component is rendered."
34793     },
34794     {
34795      "name": "show",
34796      "sig": "function (_self)\n{\n\n}",
34797      "type": "function",
34798      "desc": "Fires after the component is shown."
34799     }
34800    ],
34801    "methods": [
34802     {
34803      "name": "addEvents",
34804      "sig": "(Object object)",
34805      "type": "function",
34806      "desc": "Used to define events on this Observable"
34807     },
34808     {
34809      "name": "addListener",
34810      "sig": "(String eventName, Function handler, Object scope, Object options)",
34811      "type": "function",
34812      "desc": "Appends an event handler to this component"
34813     },
34814     {
34815      "name": "bind",
34816      "sig": "(Roo.data.Store store)",
34817      "type": "function",
34818      "desc": "Binds the paging toolbar to the specified {@link Roo.data.Store}"
34819     },
34820     {
34821      "name": "capture",
34822      "sig": "(Observable o, Function fn, Object scope)",
34823      "type": "function",
34824      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
34825     },
34826     {
34827      "name": "destroy",
34828      "sig": "()",
34829      "type": "function",
34830      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
34831     },
34832     {
34833      "name": "disable",
34834      "sig": "()",
34835      "type": "function",
34836      "desc": "Disable this component."
34837     },
34838     {
34839      "name": "enable",
34840      "sig": "()",
34841      "type": "function",
34842      "desc": "Enable this component."
34843     },
34844     {
34845      "name": "fireEvent",
34846      "sig": "(String eventName, Object... args)",
34847      "type": "function",
34848      "desc": "Fires the specified event with the passed parameters (minus the event name)."
34849     },
34850     {
34851      "name": "focus",
34852      "sig": "(Boolean selectText)",
34853      "type": "function",
34854      "desc": "Try to focus this component."
34855     },
34856     {
34857      "name": "getChildContainer",
34858      "sig": "()",
34859      "type": "function",
34860      "desc": "Fetch the element to add children to"
34861     },
34862     {
34863      "name": "getEl",
34864      "sig": "()",
34865      "type": "function",
34866      "desc": "Returns the underlying {@link Roo.Element}."
34867     },
34868     {
34869      "name": "getId",
34870      "sig": "()",
34871      "type": "function",
34872      "desc": "Returns the id of this component."
34873     },
34874     {
34875      "name": "hasListener",
34876      "sig": "(String eventName)",
34877      "type": "function",
34878      "desc": "Checks to see if this object has any listeners for a specified event"
34879     },
34880     {
34881      "name": "hide",
34882      "sig": "()",
34883      "type": "function",
34884      "desc": "Hide a component - adds 'hidden' class"
34885     },
34886     {
34887      "name": "initEvents",
34888      "sig": "()",
34889      "type": "function",
34890      "desc": "Initialize Events for the element"
34891     },
34892     {
34893      "name": "isVisible",
34894      "sig": "()",
34895      "type": "function",
34896      "desc": "Returns true if this component is visible."
34897     },
34898     {
34899      "name": "on",
34900      "sig": "(String eventName, Function handler, Object scope, Object options)",
34901      "type": "function",
34902      "desc": "Appends an event handler to this element (shorthand for addListener)"
34903     },
34904     {
34905      "name": "purgeListeners",
34906      "sig": "()",
34907      "type": "function",
34908      "desc": "Removes all listeners for this object"
34909     },
34910     {
34911      "name": "releaseCapture",
34912      "sig": "(Observable o)",
34913      "type": "function",
34914      "desc": "Removes <b>all</b> added captures from the Observable."
34915     },
34916     {
34917      "name": "removeListener",
34918      "sig": "(String eventName, Function handler, Object scope)",
34919      "type": "function",
34920      "desc": "Removes a listener"
34921     },
34922     {
34923      "name": "render",
34924      "sig": "(String/HTMLElement/Element container)",
34925      "type": "function",
34926      "desc": "If this is a lazy rendering component, render it to its container element."
34927     },
34928     {
34929      "name": "setDisabled",
34930      "sig": "(Boolean disabled)",
34931      "type": "function",
34932      "desc": "Convenience function for setting disabled/enabled by boolean."
34933     },
34934     {
34935      "name": "setVisible",
34936      "sig": "(Boolean visible)",
34937      "type": "function",
34938      "desc": "Convenience function to hide or show this component by boolean."
34939     },
34940     {
34941      "name": "show",
34942      "sig": "()",
34943      "type": "function",
34944      "desc": "Show a component - removes 'hidden' class"
34945     },
34946     {
34947      "name": "tooltipEl",
34948      "sig": "()",
34949      "type": "function",
34950      "desc": "Fetch the element to display the tooltip on."
34951     },
34952     {
34953      "name": "un",
34954      "sig": "(String eventName, Function handler, Object scope)",
34955      "type": "function",
34956      "desc": "Removes a listener (shorthand for removeListener)"
34957     },
34958     {
34959      "name": "unbind",
34960      "sig": "(Roo.data.Store store)",
34961      "type": "function",
34962      "desc": "Unbinds the paging toolbar from the specified {@link Roo.data.Store}"
34963     }
34964    ]
34965   },
34966   "Roo.bootstrap.Popover": {
34967    "props": [
34968     {
34969      "name": "html",
34970      "type": "String",
34971      "desc": "contents of the popover   (or false to use children..)",
34972      "memberOf": ""
34973     },
34974     {
34975      "name": "title",
34976      "type": "String",
34977      "desc": "of popover (or false to hide)",
34978      "memberOf": ""
34979     },
34980     {
34981      "name": "placement",
34982      "type": "String",
34983      "desc": "how it is placed",
34984      "memberOf": ""
34985     },
34986     {
34987      "name": "trigger",
34988      "type": "String",
34989      "desc": "click || hover (or false to trigger manually)",
34990      "memberOf": ""
34991     },
34992     {
34993      "name": "over",
34994      "type": "String",
34995      "desc": "what (parent or false to trigger manually.)",
34996      "memberOf": ""
34997     },
34998     {
34999      "name": "delay",
35000      "type": "Number",
35001      "desc": "- delay before showing",
35002      "memberOf": ""
35003     },
35004     {
35005      "name": "cls",
35006      "type": "String",
35007      "desc": "css class",
35008      "memberOf": "Roo.bootstrap.Component"
35009     },
35010     {
35011      "name": "style",
35012      "type": "String",
35013      "desc": "any extra css",
35014      "memberOf": "Roo.bootstrap.Component"
35015     },
35016     {
35017      "name": "xattr",
35018      "type": "Object",
35019      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
35020      "memberOf": "Roo.bootstrap.Component"
35021     },
35022     {
35023      "name": "can_build_overlaid",
35024      "type": "Boolean",
35025      "desc": "True if element can be rebuild from a HTML page",
35026      "memberOf": "Roo.bootstrap.Component"
35027     },
35028     {
35029      "name": "dataId",
35030      "type": "string",
35031      "desc": "cutomer id",
35032      "memberOf": "Roo.bootstrap.Component"
35033     },
35034     {
35035      "name": "name",
35036      "type": "string",
35037      "desc": "Specifies name attribute",
35038      "memberOf": "Roo.bootstrap.Component"
35039     },
35040     {
35041      "name": "tooltip",
35042      "type": "string",
35043      "desc": "Text for the tooltip",
35044      "memberOf": "Roo.bootstrap.Component"
35045     },
35046     {
35047      "name": "container_method",
35048      "type": "string",
35049      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
35050      "memberOf": "Roo.bootstrap.Component"
35051     },
35052     {
35053      "name": "disableClass",
35054      "type": "String",
35055      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
35056      "memberOf": "Roo.Component"
35057     },
35058     {
35059      "name": "allowDomMove",
35060      "type": "Boolean",
35061      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
35062      "memberOf": "Roo.Component"
35063     },
35064     {
35065      "name": "hideMode",
35066      "type": "String",
35067      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
35068      "memberOf": "Roo.Component",
35069      "optvals": [
35070       "display",
35071       "visibility"
35072      ]
35073     },
35074     {
35075      "name": "actionMode",
35076      "type": "String",
35077      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
35078      "memberOf": "Roo.Component"
35079     },
35080     {
35081      "name": "listeners",
35082      "type": "Object",
35083      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
35084      "memberOf": "Roo.util.Observable"
35085     }
35086    ],
35087    "events": [
35088     {
35089      "name": "beforedestroy",
35090      "sig": "function (_self)\n{\n\n}",
35091      "type": "function",
35092      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
35093     },
35094     {
35095      "name": "beforehide",
35096      "sig": "function (_self)\n{\n\n}",
35097      "type": "function",
35098      "desc": "Fires before the component is hidden. Return false to stop the hide."
35099     },
35100     {
35101      "name": "beforerender",
35102      "sig": "function (_self)\n{\n\n}",
35103      "type": "function",
35104      "desc": "Fires before the component is rendered. Return false to stop the render."
35105     },
35106     {
35107      "name": "beforeshow",
35108      "sig": "function (_self)\n{\n\n}",
35109      "type": "function",
35110      "desc": "Fires before the component is shown.  Return false to stop the show."
35111     },
35112     {
35113      "name": "childrenrendered",
35114      "sig": "function (_self)\n{\n\n}",
35115      "type": "function",
35116      "desc": "Fires when the children have been rendered.."
35117     },
35118     {
35119      "name": "destroy",
35120      "sig": "function (_self)\n{\n\n}",
35121      "type": "function",
35122      "desc": "Fires after the component is destroyed."
35123     },
35124     {
35125      "name": "disable",
35126      "sig": "function (_self)\n{\n\n}",
35127      "type": "function",
35128      "desc": "Fires after the component is disabled."
35129     },
35130     {
35131      "name": "enable",
35132      "sig": "function (_self)\n{\n\n}",
35133      "type": "function",
35134      "desc": "Fires after the component is enabled."
35135     },
35136     {
35137      "name": "hide",
35138      "sig": "function (_self)\n{\n\n}",
35139      "type": "function",
35140      "desc": "After the popover hide"
35141     },
35142     {
35143      "name": "render",
35144      "sig": "function (_self)\n{\n\n}",
35145      "type": "function",
35146      "desc": "Fires after the component is rendered."
35147     },
35148     {
35149      "name": "show",
35150      "sig": "function (_self)\n{\n\n}",
35151      "type": "function",
35152      "desc": "After the popover show"
35153     }
35154    ],
35155    "methods": [
35156     {
35157      "name": "addEvents",
35158      "sig": "(Object object)",
35159      "type": "function",
35160      "desc": "Used to define events on this Observable"
35161     },
35162     {
35163      "name": "addListener",
35164      "sig": "(String eventName, Function handler, Object scope, Object options)",
35165      "type": "function",
35166      "desc": "Appends an event handler to this component"
35167     },
35168     {
35169      "name": "capture",
35170      "sig": "(Observable o, Function fn, Object scope)",
35171      "type": "function",
35172      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
35173     },
35174     {
35175      "name": "destroy",
35176      "sig": "()",
35177      "type": "function",
35178      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
35179     },
35180     {
35181      "name": "disable",
35182      "sig": "()",
35183      "type": "function",
35184      "desc": "Disable this component."
35185     },
35186     {
35187      "name": "enable",
35188      "sig": "()",
35189      "type": "function",
35190      "desc": "Enable this component."
35191     },
35192     {
35193      "name": "fireEvent",
35194      "sig": "(String eventName, Object... args)",
35195      "type": "function",
35196      "desc": "Fires the specified event with the passed parameters (minus the event name)."
35197     },
35198     {
35199      "name": "focus",
35200      "sig": "(Boolean selectText)",
35201      "type": "function",
35202      "desc": "Try to focus this component."
35203     },
35204     {
35205      "name": "getChildContainer",
35206      "sig": "()",
35207      "type": "function",
35208      "desc": "Fetch the element to add children to"
35209     },
35210     {
35211      "name": "getEl",
35212      "sig": "()",
35213      "type": "function",
35214      "desc": "Returns the underlying {@link Roo.Element}."
35215     },
35216     {
35217      "name": "getId",
35218      "sig": "()",
35219      "type": "function",
35220      "desc": "Returns the id of this component."
35221     },
35222     {
35223      "name": "hasListener",
35224      "sig": "(String eventName)",
35225      "type": "function",
35226      "desc": "Checks to see if this object has any listeners for a specified event"
35227     },
35228     {
35229      "name": "hide",
35230      "sig": "()",
35231      "type": "function",
35232      "desc": "Hide a component - adds 'hidden' class"
35233     },
35234     {
35235      "name": "initEvents",
35236      "sig": "()",
35237      "type": "function",
35238      "desc": "Initialize Events for the element"
35239     },
35240     {
35241      "name": "isVisible",
35242      "sig": "()",
35243      "type": "function",
35244      "desc": "Returns true if this component is visible."
35245     },
35246     {
35247      "name": "on",
35248      "sig": "(String eventName, Function handler, Object scope, Object options)",
35249      "type": "function",
35250      "desc": "Appends an event handler to this element (shorthand for addListener)"
35251     },
35252     {
35253      "name": "purgeListeners",
35254      "sig": "()",
35255      "type": "function",
35256      "desc": "Removes all listeners for this object"
35257     },
35258     {
35259      "name": "releaseCapture",
35260      "sig": "(Observable o)",
35261      "type": "function",
35262      "desc": "Removes <b>all</b> added captures from the Observable."
35263     },
35264     {
35265      "name": "removeListener",
35266      "sig": "(String eventName, Function handler, Object scope)",
35267      "type": "function",
35268      "desc": "Removes a listener"
35269     },
35270     {
35271      "name": "render",
35272      "sig": "(String/HTMLElement/Element container)",
35273      "type": "function",
35274      "desc": "If this is a lazy rendering component, render it to its container element."
35275     },
35276     {
35277      "name": "setDisabled",
35278      "sig": "(Boolean disabled)",
35279      "type": "function",
35280      "desc": "Convenience function for setting disabled/enabled by boolean."
35281     },
35282     {
35283      "name": "setVisible",
35284      "sig": "(Boolean visible)",
35285      "type": "function",
35286      "desc": "Convenience function to hide or show this component by boolean."
35287     },
35288     {
35289      "name": "show",
35290      "sig": "()",
35291      "type": "function",
35292      "desc": "Show a component - removes 'hidden' class"
35293     },
35294     {
35295      "name": "tooltipEl",
35296      "sig": "()",
35297      "type": "function",
35298      "desc": "Fetch the element to display the tooltip on."
35299     },
35300     {
35301      "name": "un",
35302      "sig": "(String eventName, Function handler, Object scope)",
35303      "type": "function",
35304      "desc": "Removes a listener (shorthand for removeListener)"
35305     }
35306    ]
35307   },
35308   "Roo.bootstrap.Progress": {
35309    "props": [
35310     {
35311      "name": "striped",
35312      "type": "Boolean",
35313      "desc": "striped of the progress bar",
35314      "memberOf": ""
35315     },
35316     {
35317      "name": "active",
35318      "type": "Boolean",
35319      "desc": "animated of the progress bar",
35320      "memberOf": ""
35321     },
35322     {
35323      "name": "cls",
35324      "type": "String",
35325      "desc": "css class",
35326      "memberOf": "Roo.bootstrap.Component"
35327     },
35328     {
35329      "name": "style",
35330      "type": "String",
35331      "desc": "any extra css",
35332      "memberOf": "Roo.bootstrap.Component"
35333     },
35334     {
35335      "name": "xattr",
35336      "type": "Object",
35337      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
35338      "memberOf": "Roo.bootstrap.Component"
35339     },
35340     {
35341      "name": "can_build_overlaid",
35342      "type": "Boolean",
35343      "desc": "True if element can be rebuild from a HTML page",
35344      "memberOf": "Roo.bootstrap.Component"
35345     },
35346     {
35347      "name": "dataId",
35348      "type": "string",
35349      "desc": "cutomer id",
35350      "memberOf": "Roo.bootstrap.Component"
35351     },
35352     {
35353      "name": "name",
35354      "type": "string",
35355      "desc": "Specifies name attribute",
35356      "memberOf": "Roo.bootstrap.Component"
35357     },
35358     {
35359      "name": "tooltip",
35360      "type": "string",
35361      "desc": "Text for the tooltip",
35362      "memberOf": "Roo.bootstrap.Component"
35363     },
35364     {
35365      "name": "container_method",
35366      "type": "string",
35367      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
35368      "memberOf": "Roo.bootstrap.Component"
35369     },
35370     {
35371      "name": "disableClass",
35372      "type": "String",
35373      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
35374      "memberOf": "Roo.Component"
35375     },
35376     {
35377      "name": "allowDomMove",
35378      "type": "Boolean",
35379      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
35380      "memberOf": "Roo.Component"
35381     },
35382     {
35383      "name": "hideMode",
35384      "type": "String",
35385      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
35386      "memberOf": "Roo.Component",
35387      "optvals": [
35388       "display",
35389       "visibility"
35390      ]
35391     },
35392     {
35393      "name": "actionMode",
35394      "type": "String",
35395      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
35396      "memberOf": "Roo.Component"
35397     },
35398     {
35399      "name": "listeners",
35400      "type": "Object",
35401      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
35402      "memberOf": "Roo.util.Observable"
35403     }
35404    ],
35405    "events": [
35406     {
35407      "name": "beforedestroy",
35408      "sig": "function (_self)\n{\n\n}",
35409      "type": "function",
35410      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
35411     },
35412     {
35413      "name": "beforehide",
35414      "sig": "function (_self)\n{\n\n}",
35415      "type": "function",
35416      "desc": "Fires before the component is hidden. Return false to stop the hide."
35417     },
35418     {
35419      "name": "beforerender",
35420      "sig": "function (_self)\n{\n\n}",
35421      "type": "function",
35422      "desc": "Fires before the component is rendered. Return false to stop the render."
35423     },
35424     {
35425      "name": "beforeshow",
35426      "sig": "function (_self)\n{\n\n}",
35427      "type": "function",
35428      "desc": "Fires before the component is shown.  Return false to stop the show."
35429     },
35430     {
35431      "name": "childrenrendered",
35432      "sig": "function (_self)\n{\n\n}",
35433      "type": "function",
35434      "desc": "Fires when the children have been rendered.."
35435     },
35436     {
35437      "name": "destroy",
35438      "sig": "function (_self)\n{\n\n}",
35439      "type": "function",
35440      "desc": "Fires after the component is destroyed."
35441     },
35442     {
35443      "name": "disable",
35444      "sig": "function (_self)\n{\n\n}",
35445      "type": "function",
35446      "desc": "Fires after the component is disabled."
35447     },
35448     {
35449      "name": "enable",
35450      "sig": "function (_self)\n{\n\n}",
35451      "type": "function",
35452      "desc": "Fires after the component is enabled."
35453     },
35454     {
35455      "name": "hide",
35456      "sig": "function (_self)\n{\n\n}",
35457      "type": "function",
35458      "desc": "Fires after the component is hidden."
35459     },
35460     {
35461      "name": "render",
35462      "sig": "function (_self)\n{\n\n}",
35463      "type": "function",
35464      "desc": "Fires after the component is rendered."
35465     },
35466     {
35467      "name": "show",
35468      "sig": "function (_self)\n{\n\n}",
35469      "type": "function",
35470      "desc": "Fires after the component is shown."
35471     }
35472    ],
35473    "methods": [
35474     {
35475      "name": "addEvents",
35476      "sig": "(Object object)",
35477      "type": "function",
35478      "desc": "Used to define events on this Observable"
35479     },
35480     {
35481      "name": "addListener",
35482      "sig": "(String eventName, Function handler, Object scope, Object options)",
35483      "type": "function",
35484      "desc": "Appends an event handler to this component"
35485     },
35486     {
35487      "name": "capture",
35488      "sig": "(Observable o, Function fn, Object scope)",
35489      "type": "function",
35490      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
35491     },
35492     {
35493      "name": "destroy",
35494      "sig": "()",
35495      "type": "function",
35496      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
35497     },
35498     {
35499      "name": "disable",
35500      "sig": "()",
35501      "type": "function",
35502      "desc": "Disable this component."
35503     },
35504     {
35505      "name": "enable",
35506      "sig": "()",
35507      "type": "function",
35508      "desc": "Enable this component."
35509     },
35510     {
35511      "name": "fireEvent",
35512      "sig": "(String eventName, Object... args)",
35513      "type": "function",
35514      "desc": "Fires the specified event with the passed parameters (minus the event name)."
35515     },
35516     {
35517      "name": "focus",
35518      "sig": "(Boolean selectText)",
35519      "type": "function",
35520      "desc": "Try to focus this component."
35521     },
35522     {
35523      "name": "getChildContainer",
35524      "sig": "()",
35525      "type": "function",
35526      "desc": "Fetch the element to add children to"
35527     },
35528     {
35529      "name": "getEl",
35530      "sig": "()",
35531      "type": "function",
35532      "desc": "Returns the underlying {@link Roo.Element}."
35533     },
35534     {
35535      "name": "getId",
35536      "sig": "()",
35537      "type": "function",
35538      "desc": "Returns the id of this component."
35539     },
35540     {
35541      "name": "hasListener",
35542      "sig": "(String eventName)",
35543      "type": "function",
35544      "desc": "Checks to see if this object has any listeners for a specified event"
35545     },
35546     {
35547      "name": "hide",
35548      "sig": "()",
35549      "type": "function",
35550      "desc": "Hide a component - adds 'hidden' class"
35551     },
35552     {
35553      "name": "initEvents",
35554      "sig": "()",
35555      "type": "function",
35556      "desc": "Initialize Events for the element"
35557     },
35558     {
35559      "name": "isVisible",
35560      "sig": "()",
35561      "type": "function",
35562      "desc": "Returns true if this component is visible."
35563     },
35564     {
35565      "name": "on",
35566      "sig": "(String eventName, Function handler, Object scope, Object options)",
35567      "type": "function",
35568      "desc": "Appends an event handler to this element (shorthand for addListener)"
35569     },
35570     {
35571      "name": "purgeListeners",
35572      "sig": "()",
35573      "type": "function",
35574      "desc": "Removes all listeners for this object"
35575     },
35576     {
35577      "name": "releaseCapture",
35578      "sig": "(Observable o)",
35579      "type": "function",
35580      "desc": "Removes <b>all</b> added captures from the Observable."
35581     },
35582     {
35583      "name": "removeListener",
35584      "sig": "(String eventName, Function handler, Object scope)",
35585      "type": "function",
35586      "desc": "Removes a listener"
35587     },
35588     {
35589      "name": "render",
35590      "sig": "(String/HTMLElement/Element container)",
35591      "type": "function",
35592      "desc": "If this is a lazy rendering component, render it to its container element."
35593     },
35594     {
35595      "name": "setDisabled",
35596      "sig": "(Boolean disabled)",
35597      "type": "function",
35598      "desc": "Convenience function for setting disabled/enabled by boolean."
35599     },
35600     {
35601      "name": "setVisible",
35602      "sig": "(Boolean visible)",
35603      "type": "function",
35604      "desc": "Convenience function to hide or show this component by boolean."
35605     },
35606     {
35607      "name": "show",
35608      "sig": "()",
35609      "type": "function",
35610      "desc": "Show a component - removes 'hidden' class"
35611     },
35612     {
35613      "name": "tooltipEl",
35614      "sig": "()",
35615      "type": "function",
35616      "desc": "Fetch the element to display the tooltip on."
35617     },
35618     {
35619      "name": "un",
35620      "sig": "(String eventName, Function handler, Object scope)",
35621      "type": "function",
35622      "desc": "Removes a listener (shorthand for removeListener)"
35623     }
35624    ]
35625   },
35626   "Roo.bootstrap.ProgressBar": {
35627    "props": [
35628     {
35629      "name": "aria_valuenow",
35630      "type": "Number",
35631      "desc": "aria-value now",
35632      "memberOf": ""
35633     },
35634     {
35635      "name": "aria_valuemin",
35636      "type": "Number",
35637      "desc": "aria-value min",
35638      "memberOf": ""
35639     },
35640     {
35641      "name": "aria_valuemax",
35642      "type": "Number",
35643      "desc": "aria-value max",
35644      "memberOf": ""
35645     },
35646     {
35647      "name": "label",
35648      "type": "String",
35649      "desc": "label for the progress bar",
35650      "memberOf": ""
35651     },
35652     {
35653      "name": "panel",
35654      "type": "String",
35655      "desc": "",
35656      "memberOf": "",
35657      "optvals": [
35658       "success",
35659       "info",
35660       "warning",
35661       "danger"
35662      ]
35663     },
35664     {
35665      "name": "role",
35666      "type": "String",
35667      "desc": "role of the progress bar",
35668      "memberOf": ""
35669     },
35670     {
35671      "name": "sr_only",
35672      "type": "String",
35673      "desc": "text",
35674      "memberOf": ""
35675     },
35676     {
35677      "name": "cls",
35678      "type": "String",
35679      "desc": "css class",
35680      "memberOf": "Roo.bootstrap.Component"
35681     },
35682     {
35683      "name": "style",
35684      "type": "String",
35685      "desc": "any extra css",
35686      "memberOf": "Roo.bootstrap.Component"
35687     },
35688     {
35689      "name": "xattr",
35690      "type": "Object",
35691      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
35692      "memberOf": "Roo.bootstrap.Component"
35693     },
35694     {
35695      "name": "can_build_overlaid",
35696      "type": "Boolean",
35697      "desc": "True if element can be rebuild from a HTML page",
35698      "memberOf": "Roo.bootstrap.Component"
35699     },
35700     {
35701      "name": "dataId",
35702      "type": "string",
35703      "desc": "cutomer id",
35704      "memberOf": "Roo.bootstrap.Component"
35705     },
35706     {
35707      "name": "name",
35708      "type": "string",
35709      "desc": "Specifies name attribute",
35710      "memberOf": "Roo.bootstrap.Component"
35711     },
35712     {
35713      "name": "tooltip",
35714      "type": "string",
35715      "desc": "Text for the tooltip",
35716      "memberOf": "Roo.bootstrap.Component"
35717     },
35718     {
35719      "name": "container_method",
35720      "type": "string",
35721      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
35722      "memberOf": "Roo.bootstrap.Component"
35723     },
35724     {
35725      "name": "disableClass",
35726      "type": "String",
35727      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
35728      "memberOf": "Roo.Component"
35729     },
35730     {
35731      "name": "allowDomMove",
35732      "type": "Boolean",
35733      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
35734      "memberOf": "Roo.Component"
35735     },
35736     {
35737      "name": "hideMode",
35738      "type": "String",
35739      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
35740      "memberOf": "Roo.Component",
35741      "optvals": [
35742       "display",
35743       "visibility"
35744      ]
35745     },
35746     {
35747      "name": "actionMode",
35748      "type": "String",
35749      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
35750      "memberOf": "Roo.Component"
35751     },
35752     {
35753      "name": "listeners",
35754      "type": "Object",
35755      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
35756      "memberOf": "Roo.util.Observable"
35757     }
35758    ],
35759    "events": [
35760     {
35761      "name": "beforedestroy",
35762      "sig": "function (_self)\n{\n\n}",
35763      "type": "function",
35764      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
35765     },
35766     {
35767      "name": "beforehide",
35768      "sig": "function (_self)\n{\n\n}",
35769      "type": "function",
35770      "desc": "Fires before the component is hidden. Return false to stop the hide."
35771     },
35772     {
35773      "name": "beforerender",
35774      "sig": "function (_self)\n{\n\n}",
35775      "type": "function",
35776      "desc": "Fires before the component is rendered. Return false to stop the render."
35777     },
35778     {
35779      "name": "beforeshow",
35780      "sig": "function (_self)\n{\n\n}",
35781      "type": "function",
35782      "desc": "Fires before the component is shown.  Return false to stop the show."
35783     },
35784     {
35785      "name": "childrenrendered",
35786      "sig": "function (_self)\n{\n\n}",
35787      "type": "function",
35788      "desc": "Fires when the children have been rendered.."
35789     },
35790     {
35791      "name": "destroy",
35792      "sig": "function (_self)\n{\n\n}",
35793      "type": "function",
35794      "desc": "Fires after the component is destroyed."
35795     },
35796     {
35797      "name": "disable",
35798      "sig": "function (_self)\n{\n\n}",
35799      "type": "function",
35800      "desc": "Fires after the component is disabled."
35801     },
35802     {
35803      "name": "enable",
35804      "sig": "function (_self)\n{\n\n}",
35805      "type": "function",
35806      "desc": "Fires after the component is enabled."
35807     },
35808     {
35809      "name": "hide",
35810      "sig": "function (_self)\n{\n\n}",
35811      "type": "function",
35812      "desc": "Fires after the component is hidden."
35813     },
35814     {
35815      "name": "render",
35816      "sig": "function (_self)\n{\n\n}",
35817      "type": "function",
35818      "desc": "Fires after the component is rendered."
35819     },
35820     {
35821      "name": "show",
35822      "sig": "function (_self)\n{\n\n}",
35823      "type": "function",
35824      "desc": "Fires after the component is shown."
35825     }
35826    ],
35827    "methods": [
35828     {
35829      "name": "addEvents",
35830      "sig": "(Object object)",
35831      "type": "function",
35832      "desc": "Used to define events on this Observable"
35833     },
35834     {
35835      "name": "addListener",
35836      "sig": "(String eventName, Function handler, Object scope, Object options)",
35837      "type": "function",
35838      "desc": "Appends an event handler to this component"
35839     },
35840     {
35841      "name": "capture",
35842      "sig": "(Observable o, Function fn, Object scope)",
35843      "type": "function",
35844      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
35845     },
35846     {
35847      "name": "destroy",
35848      "sig": "()",
35849      "type": "function",
35850      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
35851     },
35852     {
35853      "name": "disable",
35854      "sig": "()",
35855      "type": "function",
35856      "desc": "Disable this component."
35857     },
35858     {
35859      "name": "enable",
35860      "sig": "()",
35861      "type": "function",
35862      "desc": "Enable this component."
35863     },
35864     {
35865      "name": "fireEvent",
35866      "sig": "(String eventName, Object... args)",
35867      "type": "function",
35868      "desc": "Fires the specified event with the passed parameters (minus the event name)."
35869     },
35870     {
35871      "name": "focus",
35872      "sig": "(Boolean selectText)",
35873      "type": "function",
35874      "desc": "Try to focus this component."
35875     },
35876     {
35877      "name": "getChildContainer",
35878      "sig": "()",
35879      "type": "function",
35880      "desc": "Fetch the element to add children to"
35881     },
35882     {
35883      "name": "getEl",
35884      "sig": "()",
35885      "type": "function",
35886      "desc": "Returns the underlying {@link Roo.Element}."
35887     },
35888     {
35889      "name": "getId",
35890      "sig": "()",
35891      "type": "function",
35892      "desc": "Returns the id of this component."
35893     },
35894     {
35895      "name": "hasListener",
35896      "sig": "(String eventName)",
35897      "type": "function",
35898      "desc": "Checks to see if this object has any listeners for a specified event"
35899     },
35900     {
35901      "name": "hide",
35902      "sig": "()",
35903      "type": "function",
35904      "desc": "Hide a component - adds 'hidden' class"
35905     },
35906     {
35907      "name": "initEvents",
35908      "sig": "()",
35909      "type": "function",
35910      "desc": "Initialize Events for the element"
35911     },
35912     {
35913      "name": "isVisible",
35914      "sig": "()",
35915      "type": "function",
35916      "desc": "Returns true if this component is visible."
35917     },
35918     {
35919      "name": "on",
35920      "sig": "(String eventName, Function handler, Object scope, Object options)",
35921      "type": "function",
35922      "desc": "Appends an event handler to this element (shorthand for addListener)"
35923     },
35924     {
35925      "name": "purgeListeners",
35926      "sig": "()",
35927      "type": "function",
35928      "desc": "Removes all listeners for this object"
35929     },
35930     {
35931      "name": "releaseCapture",
35932      "sig": "(Observable o)",
35933      "type": "function",
35934      "desc": "Removes <b>all</b> added captures from the Observable."
35935     },
35936     {
35937      "name": "removeListener",
35938      "sig": "(String eventName, Function handler, Object scope)",
35939      "type": "function",
35940      "desc": "Removes a listener"
35941     },
35942     {
35943      "name": "render",
35944      "sig": "(String/HTMLElement/Element container)",
35945      "type": "function",
35946      "desc": "If this is a lazy rendering component, render it to its container element."
35947     },
35948     {
35949      "name": "setDisabled",
35950      "sig": "(Boolean disabled)",
35951      "type": "function",
35952      "desc": "Convenience function for setting disabled/enabled by boolean."
35953     },
35954     {
35955      "name": "setVisible",
35956      "sig": "(Boolean visible)",
35957      "type": "function",
35958      "desc": "Convenience function to hide or show this component by boolean."
35959     },
35960     {
35961      "name": "show",
35962      "sig": "()",
35963      "type": "function",
35964      "desc": "Show a component - removes 'hidden' class"
35965     },
35966     {
35967      "name": "tooltipEl",
35968      "sig": "()",
35969      "type": "function",
35970      "desc": "Fetch the element to display the tooltip on."
35971     },
35972     {
35973      "name": "un",
35974      "sig": "(String eventName, Function handler, Object scope)",
35975      "type": "function",
35976      "desc": "Removes a listener (shorthand for removeListener)"
35977     }
35978    ]
35979   },
35980   "Roo.bootstrap.Radio": {
35981    "props": [
35982     {
35983      "name": "valueOff",
35984      "type": "String",
35985      "desc": "The value that should go into the generated input element's value when unchecked.",
35986      "memberOf": "Roo.bootstrap.CheckBox"
35987     },
35988     {
35989      "name": "inputValue",
35990      "type": "String",
35991      "desc": "The value that should go into the generated input element's value when checked.",
35992      "memberOf": "Roo.bootstrap.CheckBox"
35993     },
35994     {
35995      "name": "boxLabel",
35996      "type": "String",
35997      "desc": "The text that appears beside the checkbox",
35998      "memberOf": "Roo.bootstrap.CheckBox"
35999     },
36000     {
36001      "name": "weight",
36002      "type": "String",
36003      "desc": "The text that appears beside the checkbox",
36004      "memberOf": "Roo.bootstrap.CheckBox",
36005      "optvals": [
36006       "primary",
36007       "warning",
36008       "info",
36009       "danger",
36010       "success"
36011      ]
36012     },
36013     {
36014      "name": "checked",
36015      "type": "Boolean",
36016      "desc": "initnal the element",
36017      "memberOf": "Roo.bootstrap.CheckBox"
36018     },
36019     {
36020      "name": "inline",
36021      "type": "Boolean",
36022      "desc": "inline the element (default false)",
36023      "memberOf": "Roo.bootstrap.CheckBox"
36024     },
36025     {
36026      "name": "groupId",
36027      "type": "String",
36028      "desc": "the checkbox group id // normal just use for checkbox",
36029      "memberOf": "Roo.bootstrap.CheckBox"
36030     },
36031     {
36032      "name": "disabled",
36033      "type": "Boolean",
36034      "desc": "is it disabled",
36035      "memberOf": "Roo.bootstrap.Input"
36036     },
36037     {
36038      "name": "inputType",
36039      "type": "String",
36040      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
36041      "memberOf": "Roo.bootstrap.Input"
36042     },
36043     {
36044      "name": "name",
36045      "type": "String",
36046      "desc": "name of the input",
36047      "memberOf": "Roo.bootstrap.Input"
36048     },
36049     {
36050      "name": "fieldLabel",
36051      "type": "string",
36052      "desc": "- the label associated",
36053      "memberOf": "Roo.bootstrap.Input"
36054     },
36055     {
36056      "name": "placeholder",
36057      "type": "string",
36058      "desc": "- placeholder to put in text.",
36059      "memberOf": "Roo.bootstrap.Input"
36060     },
36061     {
36062      "name": "before",
36063      "type": "string",
36064      "desc": "- input group add on before",
36065      "memberOf": "Roo.bootstrap.Input"
36066     },
36067     {
36068      "name": "after",
36069      "type": "string",
36070      "desc": "- input group add on after",
36071      "memberOf": "Roo.bootstrap.Input"
36072     },
36073     {
36074      "name": "size",
36075      "type": "string",
36076      "desc": "- (lg|sm) or leave empty..",
36077      "memberOf": "Roo.bootstrap.Input"
36078     },
36079     {
36080      "name": "xs",
36081      "type": "Number",
36082      "desc": "colspan out of 12 for mobile-sized screens",
36083      "memberOf": "Roo.bootstrap.Input"
36084     },
36085     {
36086      "name": "sm",
36087      "type": "Number",
36088      "desc": "colspan out of 12 for tablet-sized screens",
36089      "memberOf": "Roo.bootstrap.Input"
36090     },
36091     {
36092      "name": "md",
36093      "type": "Number",
36094      "desc": "colspan out of 12 for computer-sized screens",
36095      "memberOf": "Roo.bootstrap.Input"
36096     },
36097     {
36098      "name": "lg",
36099      "type": "Number",
36100      "desc": "colspan out of 12 for large computer-sized screens",
36101      "memberOf": "Roo.bootstrap.Input"
36102     },
36103     {
36104      "name": "value",
36105      "type": "string",
36106      "desc": "default value of the input",
36107      "memberOf": "Roo.bootstrap.Input"
36108     },
36109     {
36110      "name": "labelWidth",
36111      "type": "Number",
36112      "desc": "set the width of label (0-12)",
36113      "memberOf": "Roo.bootstrap.Input"
36114     },
36115     {
36116      "name": "labelAlign",
36117      "type": "String",
36118      "desc": "",
36119      "memberOf": "Roo.bootstrap.Input",
36120      "optvals": [
36121       "top",
36122       "left"
36123      ]
36124     },
36125     {
36126      "name": "readOnly",
36127      "type": "Boolean",
36128      "desc": "Specifies that the field should be read-only",
36129      "memberOf": "Roo.bootstrap.Input"
36130     },
36131     {
36132      "name": "autocomplete",
36133      "type": "String",
36134      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
36135      "memberOf": "Roo.bootstrap.Input"
36136     },
36137     {
36138      "name": "indicatorpos",
36139      "type": "String",
36140      "desc": "default left",
36141      "memberOf": "Roo.bootstrap.Input",
36142      "optvals": [
36143       "left",
36144       "right"
36145      ]
36146     },
36147     {
36148      "name": "align",
36149      "type": "String",
36150      "desc": "Default left",
36151      "memberOf": "Roo.bootstrap.Input",
36152      "optvals": [
36153       "left",
36154       "center",
36155       "right"
36156      ]
36157     },
36158     {
36159      "name": "forceFeedback",
36160      "type": "Boolean",
36161      "desc": "Default false",
36162      "memberOf": "Roo.bootstrap.Input",
36163      "optvals": [
36164       "true",
36165       "false"
36166      ]
36167     },
36168     {
36169      "name": "validationEvent",
36170      "type": "String/Boolean",
36171      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
36172      "memberOf": "Roo.bootstrap.Input"
36173     },
36174     {
36175      "name": "validateOnBlur",
36176      "type": "Boolean",
36177      "desc": "Whether the field should validate when it loses focus (defaults to true).",
36178      "memberOf": "Roo.bootstrap.Input"
36179     },
36180     {
36181      "name": "validationDelay",
36182      "type": "Number",
36183      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
36184      "memberOf": "Roo.bootstrap.Input"
36185     },
36186     {
36187      "name": "focusClass",
36188      "type": "String",
36189      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
36190      "memberOf": "Roo.bootstrap.Input"
36191     },
36192     {
36193      "name": "invalidClass",
36194      "type": "String",
36195      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
36196      "memberOf": "Roo.bootstrap.Input"
36197     },
36198     {
36199      "name": "validClass",
36200      "type": "String",
36201      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
36202      "memberOf": "Roo.bootstrap.Input"
36203     },
36204     {
36205      "name": "hasFeedback",
36206      "type": "Boolean",
36207      "desc": "default true",
36208      "memberOf": "Roo.bootstrap.Input",
36209      "optvals": [
36210       "true",
36211       "false"
36212      ]
36213     },
36214     {
36215      "name": "invalidFeedbackIcon",
36216      "type": "String",
36217      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
36218      "memberOf": "Roo.bootstrap.Input"
36219     },
36220     {
36221      "name": "validFeedbackIcon",
36222      "type": "String",
36223      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
36224      "memberOf": "Roo.bootstrap.Input"
36225     },
36226     {
36227      "name": "selectOnFocus",
36228      "type": "Boolean",
36229      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
36230      "memberOf": "Roo.bootstrap.Input"
36231     },
36232     {
36233      "name": "maskRe",
36234      "type": "String",
36235      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
36236      "memberOf": "Roo.bootstrap.Input"
36237     },
36238     {
36239      "name": "vtype",
36240      "type": "String",
36241      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
36242      "memberOf": "Roo.bootstrap.Input"
36243     },
36244     {
36245      "name": "disableKeyFilter",
36246      "type": "Boolean",
36247      "desc": "True to disable input keystroke filtering (defaults to false)",
36248      "memberOf": "Roo.bootstrap.Input"
36249     },
36250     {
36251      "name": "allowBlank",
36252      "type": "Boolean",
36253      "desc": "False to validate that the value length > 0 (defaults to true)",
36254      "memberOf": "Roo.bootstrap.Input"
36255     },
36256     {
36257      "name": "blankText",
36258      "type": "String",
36259      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
36260      "memberOf": "Roo.bootstrap.Input"
36261     },
36262     {
36263      "name": "minLength",
36264      "type": "Number",
36265      "desc": "Minimum input field length required (defaults to 0)",
36266      "memberOf": "Roo.bootstrap.Input"
36267     },
36268     {
36269      "name": "maxLength",
36270      "type": "Number",
36271      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
36272      "memberOf": "Roo.bootstrap.Input"
36273     },
36274     {
36275      "name": "minLengthText",
36276      "type": "String",
36277      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
36278      "memberOf": "Roo.bootstrap.Input"
36279     },
36280     {
36281      "name": "maxLengthText",
36282      "type": "String",
36283      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
36284      "memberOf": "Roo.bootstrap.Input"
36285     },
36286     {
36287      "name": "validator",
36288      "type": "Function",
36289      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
36290      "memberOf": "Roo.bootstrap.Input"
36291     },
36292     {
36293      "name": "regex",
36294      "type": "RegExp",
36295      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
36296      "memberOf": "Roo.bootstrap.Input"
36297     },
36298     {
36299      "name": "regexText",
36300      "type": "String",
36301      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
36302      "memberOf": "Roo.bootstrap.Input"
36303     },
36304     {
36305      "name": "cls",
36306      "type": "String",
36307      "desc": "css class",
36308      "memberOf": "Roo.bootstrap.Component"
36309     },
36310     {
36311      "name": "style",
36312      "type": "String",
36313      "desc": "any extra css",
36314      "memberOf": "Roo.bootstrap.Component"
36315     },
36316     {
36317      "name": "xattr",
36318      "type": "Object",
36319      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
36320      "memberOf": "Roo.bootstrap.Component"
36321     },
36322     {
36323      "name": "can_build_overlaid",
36324      "type": "Boolean",
36325      "desc": "True if element can be rebuild from a HTML page",
36326      "memberOf": "Roo.bootstrap.Component"
36327     },
36328     {
36329      "name": "dataId",
36330      "type": "string",
36331      "desc": "cutomer id",
36332      "memberOf": "Roo.bootstrap.Component"
36333     },
36334     {
36335      "name": "tooltip",
36336      "type": "string",
36337      "desc": "Text for the tooltip",
36338      "memberOf": "Roo.bootstrap.Component"
36339     },
36340     {
36341      "name": "container_method",
36342      "type": "string",
36343      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
36344      "memberOf": "Roo.bootstrap.Component"
36345     },
36346     {
36347      "name": "disableClass",
36348      "type": "String",
36349      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
36350      "memberOf": "Roo.Component"
36351     },
36352     {
36353      "name": "allowDomMove",
36354      "type": "Boolean",
36355      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
36356      "memberOf": "Roo.Component"
36357     },
36358     {
36359      "name": "hideMode",
36360      "type": "String",
36361      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
36362      "memberOf": "Roo.Component",
36363      "optvals": [
36364       "display",
36365       "visibility"
36366      ]
36367     },
36368     {
36369      "name": "actionMode",
36370      "type": "String",
36371      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
36372      "memberOf": "Roo.Component"
36373     },
36374     {
36375      "name": "listeners",
36376      "type": "Object",
36377      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
36378      "memberOf": "Roo.util.Observable"
36379     }
36380    ],
36381    "events": [
36382     {
36383      "name": "beforedestroy",
36384      "sig": "function (_self)\n{\n\n}",
36385      "type": "function",
36386      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
36387     },
36388     {
36389      "name": "beforehide",
36390      "sig": "function (_self)\n{\n\n}",
36391      "type": "function",
36392      "desc": "Fires before the component is hidden. Return false to stop the hide."
36393     },
36394     {
36395      "name": "beforerender",
36396      "sig": "function (_self)\n{\n\n}",
36397      "type": "function",
36398      "desc": "Fires before the component is rendered. Return false to stop the render."
36399     },
36400     {
36401      "name": "beforeshow",
36402      "sig": "function (_self)\n{\n\n}",
36403      "type": "function",
36404      "desc": "Fires before the component is shown.  Return false to stop the show."
36405     },
36406     {
36407      "name": "blur",
36408      "sig": "function (_self)\n{\n\n}",
36409      "type": "function",
36410      "desc": "Fires when this field loses input focus."
36411     },
36412     {
36413      "name": "change",
36414      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
36415      "type": "function",
36416      "desc": "Fires just before the field blurs if the field value has changed."
36417     },
36418     {
36419      "name": "check",
36420      "sig": "function (_self, checked)\n{\n\n}",
36421      "type": "function",
36422      "desc": "Fires when the element is checked or unchecked."
36423     },
36424     {
36425      "name": "childrenrendered",
36426      "sig": "function (_self)\n{\n\n}",
36427      "type": "function",
36428      "desc": "Fires when the children have been rendered.."
36429     },
36430     {
36431      "name": "destroy",
36432      "sig": "function (_self)\n{\n\n}",
36433      "type": "function",
36434      "desc": "Fires after the component is destroyed."
36435     },
36436     {
36437      "name": "disable",
36438      "sig": "function (_self)\n{\n\n}",
36439      "type": "function",
36440      "desc": "Fires after the component is disabled."
36441     },
36442     {
36443      "name": "enable",
36444      "sig": "function (_self)\n{\n\n}",
36445      "type": "function",
36446      "desc": "Fires after the component is enabled."
36447     },
36448     {
36449      "name": "focus",
36450      "sig": "function (_self)\n{\n\n}",
36451      "type": "function",
36452      "desc": "Fires when this field receives input focus."
36453     },
36454     {
36455      "name": "hide",
36456      "sig": "function (_self)\n{\n\n}",
36457      "type": "function",
36458      "desc": "Fires after the component is hidden."
36459     },
36460     {
36461      "name": "invalid",
36462      "sig": "function (_self, msg)\n{\n\n}",
36463      "type": "function",
36464      "desc": "Fires after the field has been marked as invalid."
36465     },
36466     {
36467      "name": "keyup",
36468      "sig": "function (_self, e)\n{\n\n}",
36469      "type": "function",
36470      "desc": "Fires after the key up"
36471     },
36472     {
36473      "name": "render",
36474      "sig": "function (_self)\n{\n\n}",
36475      "type": "function",
36476      "desc": "Fires after the component is rendered."
36477     },
36478     {
36479      "name": "show",
36480      "sig": "function (_self)\n{\n\n}",
36481      "type": "function",
36482      "desc": "Fires after the component is shown."
36483     },
36484     {
36485      "name": "specialkey",
36486      "sig": "function (_self, e)\n{\n\n}",
36487      "type": "function",
36488      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
36489     },
36490     {
36491      "name": "valid",
36492      "sig": "function (_self)\n{\n\n}",
36493      "type": "function",
36494      "desc": "Fires after the field has been validated with no errors."
36495     }
36496    ],
36497    "methods": [
36498     {
36499      "name": "addEvents",
36500      "sig": "(Object object)",
36501      "type": "function",
36502      "desc": "Used to define events on this Observable"
36503     },
36504     {
36505      "name": "addListener",
36506      "sig": "(String eventName, Function handler, Object scope, Object options)",
36507      "type": "function",
36508      "desc": "Appends an event handler to this component"
36509     },
36510     {
36511      "name": "capture",
36512      "sig": "(Observable o, Function fn, Object scope)",
36513      "type": "function",
36514      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
36515     },
36516     {
36517      "name": "clearInvalid",
36518      "sig": "()",
36519      "type": "function",
36520      "desc": "Clear any invalid styles/messages for this field"
36521     },
36522     {
36523      "name": "destroy",
36524      "sig": "()",
36525      "type": "function",
36526      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
36527     },
36528     {
36529      "name": "disable",
36530      "sig": "()",
36531      "type": "function",
36532      "desc": "Disable this component."
36533     },
36534     {
36535      "name": "enable",
36536      "sig": "()",
36537      "type": "function",
36538      "desc": "Enable this component."
36539     },
36540     {
36541      "name": "fireEvent",
36542      "sig": "(String eventName, Object... args)",
36543      "type": "function",
36544      "desc": "Fires the specified event with the passed parameters (minus the event name)."
36545     },
36546     {
36547      "name": "focus",
36548      "sig": "(Boolean selectText)",
36549      "type": "function",
36550      "desc": "Try to focus this component."
36551     },
36552     {
36553      "name": "get",
36554      "sig": "(string the)",
36555      "type": "function",
36556      "desc": "fetch a CheckBox Group based on the group ID"
36557     },
36558     {
36559      "name": "getChildContainer",
36560      "sig": "()",
36561      "type": "function",
36562      "desc": "Fetch the element to add children to"
36563     },
36564     {
36565      "name": "getEl",
36566      "sig": "()",
36567      "type": "function",
36568      "desc": "Returns the underlying {@link Roo.Element}."
36569     },
36570     {
36571      "name": "getId",
36572      "sig": "()",
36573      "type": "function",
36574      "desc": "Returns the id of this component."
36575     },
36576     {
36577      "name": "getName",
36578      "sig": "()",
36579      "type": "function",
36580      "desc": "Returns the name of the field"
36581     },
36582     {
36583      "name": "getRawValue",
36584      "sig": "()",
36585      "type": "function",
36586      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
36587     },
36588     {
36589      "name": "getValue",
36590      "sig": "()",
36591      "type": "function",
36592      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
36593     },
36594     {
36595      "name": "hasListener",
36596      "sig": "(String eventName)",
36597      "type": "function",
36598      "desc": "Checks to see if this object has any listeners for a specified event"
36599     },
36600     {
36601      "name": "hide",
36602      "sig": "()",
36603      "type": "function",
36604      "desc": "Hide a component - adds 'hidden' class"
36605     },
36606     {
36607      "name": "initEvents",
36608      "sig": "()",
36609      "type": "function",
36610      "desc": "Initialize Events for the element"
36611     },
36612     {
36613      "name": "inputEl",
36614      "sig": "()",
36615      "type": "function",
36616      "desc": "return the real input element."
36617     },
36618     {
36619      "name": "isVisible",
36620      "sig": "()",
36621      "type": "function",
36622      "desc": "Returns true if this component is visible."
36623     },
36624     {
36625      "name": "markInvalid",
36626      "sig": "(String msg)",
36627      "type": "function",
36628      "desc": "Mark this field as invalid"
36629     },
36630     {
36631      "name": "markValid",
36632      "sig": "()",
36633      "type": "function",
36634      "desc": "Mark this field as valid"
36635     },
36636     {
36637      "name": "on",
36638      "sig": "(String eventName, Function handler, Object scope, Object options)",
36639      "type": "function",
36640      "desc": "Appends an event handler to this element (shorthand for addListener)"
36641     },
36642     {
36643      "name": "purgeListeners",
36644      "sig": "()",
36645      "type": "function",
36646      "desc": "Removes all listeners for this object"
36647     },
36648     {
36649      "name": "register",
36650      "sig": "(Roo.bootstrap.CheckBox the)",
36651      "type": "function",
36652      "desc": "register a CheckBox Group"
36653     },
36654     {
36655      "name": "releaseCapture",
36656      "sig": "(Observable o)",
36657      "type": "function",
36658      "desc": "Removes <b>all</b> added captures from the Observable."
36659     },
36660     {
36661      "name": "removeListener",
36662      "sig": "(String eventName, Function handler, Object scope)",
36663      "type": "function",
36664      "desc": "Removes a listener"
36665     },
36666     {
36667      "name": "render",
36668      "sig": "(String/HTMLElement/Element container)",
36669      "type": "function",
36670      "desc": "If this is a lazy rendering component, render it to its container element."
36671     },
36672     {
36673      "name": "reset",
36674      "sig": "()",
36675      "type": "function",
36676      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
36677     },
36678     {
36679      "name": "setDisabled",
36680      "sig": "(Boolean disabled)",
36681      "type": "function",
36682      "desc": "Convenience function for setting disabled/enabled by boolean."
36683     },
36684     {
36685      "name": "setRawValue",
36686      "sig": "(Mixed value)",
36687      "type": "function",
36688      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
36689     },
36690     {
36691      "name": "setValue",
36692      "sig": "(Mixed value)",
36693      "type": "function",
36694      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
36695     },
36696     {
36697      "name": "setVisible",
36698      "sig": "(Boolean visible)",
36699      "type": "function",
36700      "desc": "Convenience function to hide or show this component by boolean."
36701     },
36702     {
36703      "name": "show",
36704      "sig": "()",
36705      "type": "function",
36706      "desc": "Show a component - removes 'hidden' class"
36707     },
36708     {
36709      "name": "tooltipEl",
36710      "sig": "()",
36711      "type": "function",
36712      "desc": "Fetch the element to display the tooltip on."
36713     },
36714     {
36715      "name": "un",
36716      "sig": "(String eventName, Function handler, Object scope)",
36717      "type": "function",
36718      "desc": "Removes a listener (shorthand for removeListener)"
36719     },
36720     {
36721      "name": "validate",
36722      "sig": "()",
36723      "type": "function",
36724      "desc": "Validates the field value"
36725     },
36726     {
36727      "name": "validateValue",
36728      "sig": "(Mixed value)",
36729      "type": "function",
36730      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
36731     }
36732    ]
36733   },
36734   "Roo.bootstrap.RadioItem": {
36735    "props": [
36736     {
36737      "name": "boxLabel",
36738      "type": "String",
36739      "desc": "- the label associated",
36740      "memberOf": ""
36741     },
36742     {
36743      "name": "value",
36744      "type": "String",
36745      "desc": "- the value of radio",
36746      "memberOf": ""
36747     },
36748     {
36749      "name": "cls",
36750      "type": "String",
36751      "desc": "css class",
36752      "memberOf": "Roo.bootstrap.Component"
36753     },
36754     {
36755      "name": "style",
36756      "type": "String",
36757      "desc": "any extra css",
36758      "memberOf": "Roo.bootstrap.Component"
36759     },
36760     {
36761      "name": "xattr",
36762      "type": "Object",
36763      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
36764      "memberOf": "Roo.bootstrap.Component"
36765     },
36766     {
36767      "name": "can_build_overlaid",
36768      "type": "Boolean",
36769      "desc": "True if element can be rebuild from a HTML page",
36770      "memberOf": "Roo.bootstrap.Component"
36771     },
36772     {
36773      "name": "dataId",
36774      "type": "string",
36775      "desc": "cutomer id",
36776      "memberOf": "Roo.bootstrap.Component"
36777     },
36778     {
36779      "name": "name",
36780      "type": "string",
36781      "desc": "Specifies name attribute",
36782      "memberOf": "Roo.bootstrap.Component"
36783     },
36784     {
36785      "name": "tooltip",
36786      "type": "string",
36787      "desc": "Text for the tooltip",
36788      "memberOf": "Roo.bootstrap.Component"
36789     },
36790     {
36791      "name": "container_method",
36792      "type": "string",
36793      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
36794      "memberOf": "Roo.bootstrap.Component"
36795     },
36796     {
36797      "name": "disableClass",
36798      "type": "String",
36799      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
36800      "memberOf": "Roo.Component"
36801     },
36802     {
36803      "name": "allowDomMove",
36804      "type": "Boolean",
36805      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
36806      "memberOf": "Roo.Component"
36807     },
36808     {
36809      "name": "hideMode",
36810      "type": "String",
36811      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
36812      "memberOf": "Roo.Component",
36813      "optvals": [
36814       "display",
36815       "visibility"
36816      ]
36817     },
36818     {
36819      "name": "actionMode",
36820      "type": "String",
36821      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
36822      "memberOf": "Roo.Component"
36823     },
36824     {
36825      "name": "listeners",
36826      "type": "Object",
36827      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
36828      "memberOf": "Roo.util.Observable"
36829     }
36830    ],
36831    "events": [
36832     {
36833      "name": "beforedestroy",
36834      "sig": "function (_self)\n{\n\n}",
36835      "type": "function",
36836      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
36837     },
36838     {
36839      "name": "beforehide",
36840      "sig": "function (_self)\n{\n\n}",
36841      "type": "function",
36842      "desc": "Fires before the component is hidden. Return false to stop the hide."
36843     },
36844     {
36845      "name": "beforerender",
36846      "sig": "function (_self)\n{\n\n}",
36847      "type": "function",
36848      "desc": "Fires before the component is rendered. Return false to stop the render."
36849     },
36850     {
36851      "name": "beforeshow",
36852      "sig": "function (_self)\n{\n\n}",
36853      "type": "function",
36854      "desc": "Fires before the component is shown.  Return false to stop the show."
36855     },
36856     {
36857      "name": "childrenrendered",
36858      "sig": "function (_self)\n{\n\n}",
36859      "type": "function",
36860      "desc": "Fires when the children have been rendered.."
36861     },
36862     {
36863      "name": "destroy",
36864      "sig": "function (_self)\n{\n\n}",
36865      "type": "function",
36866      "desc": "Fires after the component is destroyed."
36867     },
36868     {
36869      "name": "disable",
36870      "sig": "function (_self)\n{\n\n}",
36871      "type": "function",
36872      "desc": "Fires after the component is disabled."
36873     },
36874     {
36875      "name": "enable",
36876      "sig": "function (_self)\n{\n\n}",
36877      "type": "function",
36878      "desc": "Fires after the component is enabled."
36879     },
36880     {
36881      "name": "hide",
36882      "sig": "function (_self)\n{\n\n}",
36883      "type": "function",
36884      "desc": "Fires after the component is hidden."
36885     },
36886     {
36887      "name": "render",
36888      "sig": "function (_self)\n{\n\n}",
36889      "type": "function",
36890      "desc": "Fires after the component is rendered."
36891     },
36892     {
36893      "name": "show",
36894      "sig": "function (_self)\n{\n\n}",
36895      "type": "function",
36896      "desc": "Fires after the component is shown."
36897     }
36898    ],
36899    "methods": [
36900     {
36901      "name": "addEvents",
36902      "sig": "(Object object)",
36903      "type": "function",
36904      "desc": "Used to define events on this Observable"
36905     },
36906     {
36907      "name": "addListener",
36908      "sig": "(String eventName, Function handler, Object scope, Object options)",
36909      "type": "function",
36910      "desc": "Appends an event handler to this component"
36911     },
36912     {
36913      "name": "capture",
36914      "sig": "(Observable o, Function fn, Object scope)",
36915      "type": "function",
36916      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
36917     },
36918     {
36919      "name": "destroy",
36920      "sig": "()",
36921      "type": "function",
36922      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
36923     },
36924     {
36925      "name": "disable",
36926      "sig": "()",
36927      "type": "function",
36928      "desc": "Disable this component."
36929     },
36930     {
36931      "name": "enable",
36932      "sig": "()",
36933      "type": "function",
36934      "desc": "Enable this component."
36935     },
36936     {
36937      "name": "fireEvent",
36938      "sig": "(String eventName, Object... args)",
36939      "type": "function",
36940      "desc": "Fires the specified event with the passed parameters (minus the event name)."
36941     },
36942     {
36943      "name": "focus",
36944      "sig": "(Boolean selectText)",
36945      "type": "function",
36946      "desc": "Try to focus this component."
36947     },
36948     {
36949      "name": "getChildContainer",
36950      "sig": "()",
36951      "type": "function",
36952      "desc": "Fetch the element to add children to"
36953     },
36954     {
36955      "name": "getEl",
36956      "sig": "()",
36957      "type": "function",
36958      "desc": "Returns the underlying {@link Roo.Element}."
36959     },
36960     {
36961      "name": "getId",
36962      "sig": "()",
36963      "type": "function",
36964      "desc": "Returns the id of this component."
36965     },
36966     {
36967      "name": "hasListener",
36968      "sig": "(String eventName)",
36969      "type": "function",
36970      "desc": "Checks to see if this object has any listeners for a specified event"
36971     },
36972     {
36973      "name": "hide",
36974      "sig": "()",
36975      "type": "function",
36976      "desc": "Hide a component - adds 'hidden' class"
36977     },
36978     {
36979      "name": "initEvents",
36980      "sig": "()",
36981      "type": "function",
36982      "desc": "Initialize Events for the element"
36983     },
36984     {
36985      "name": "isVisible",
36986      "sig": "()",
36987      "type": "function",
36988      "desc": "Returns true if this component is visible."
36989     },
36990     {
36991      "name": "on",
36992      "sig": "(String eventName, Function handler, Object scope, Object options)",
36993      "type": "function",
36994      "desc": "Appends an event handler to this element (shorthand for addListener)"
36995     },
36996     {
36997      "name": "purgeListeners",
36998      "sig": "()",
36999      "type": "function",
37000      "desc": "Removes all listeners for this object"
37001     },
37002     {
37003      "name": "releaseCapture",
37004      "sig": "(Observable o)",
37005      "type": "function",
37006      "desc": "Removes <b>all</b> added captures from the Observable."
37007     },
37008     {
37009      "name": "removeListener",
37010      "sig": "(String eventName, Function handler, Object scope)",
37011      "type": "function",
37012      "desc": "Removes a listener"
37013     },
37014     {
37015      "name": "render",
37016      "sig": "(String/HTMLElement/Element container)",
37017      "type": "function",
37018      "desc": "If this is a lazy rendering component, render it to its container element."
37019     },
37020     {
37021      "name": "setDisabled",
37022      "sig": "(Boolean disabled)",
37023      "type": "function",
37024      "desc": "Convenience function for setting disabled/enabled by boolean."
37025     },
37026     {
37027      "name": "setVisible",
37028      "sig": "(Boolean visible)",
37029      "type": "function",
37030      "desc": "Convenience function to hide or show this component by boolean."
37031     },
37032     {
37033      "name": "show",
37034      "sig": "()",
37035      "type": "function",
37036      "desc": "Show a component - removes 'hidden' class"
37037     },
37038     {
37039      "name": "tooltipEl",
37040      "sig": "()",
37041      "type": "function",
37042      "desc": "Fetch the element to display the tooltip on."
37043     },
37044     {
37045      "name": "un",
37046      "sig": "(String eventName, Function handler, Object scope)",
37047      "type": "function",
37048      "desc": "Removes a listener (shorthand for removeListener)"
37049     }
37050    ]
37051   },
37052   "Roo.bootstrap.RadioSet": {
37053    "props": [
37054     {
37055      "name": "disabled",
37056      "type": "Boolean",
37057      "desc": "default false",
37058      "memberOf": "",
37059      "optvals": [
37060       "true",
37061       "false"
37062      ]
37063     },
37064     {
37065      "name": "allowBlank",
37066      "type": "Boolean",
37067      "desc": "default true",
37068      "memberOf": "",
37069      "optvals": [
37070       "true",
37071       "false"
37072      ]
37073     },
37074     {
37075      "name": "name",
37076      "type": "String",
37077      "desc": "name of the radio",
37078      "memberOf": ""
37079     },
37080     {
37081      "name": "fieldLabel",
37082      "type": "String",
37083      "desc": "- the label associated",
37084      "memberOf": ""
37085     },
37086     {
37087      "name": "value",
37088      "type": "String",
37089      "desc": "default value of the input",
37090      "memberOf": ""
37091     },
37092     {
37093      "name": "labelWidth",
37094      "type": "Number",
37095      "desc": "set the width of label (0-12)",
37096      "memberOf": ""
37097     },
37098     {
37099      "name": "labelAlign",
37100      "type": "String",
37101      "desc": "",
37102      "memberOf": "",
37103      "optvals": [
37104       "top",
37105       "left"
37106      ]
37107     },
37108     {
37109      "name": "indicatorpos",
37110      "type": "String",
37111      "desc": "default left",
37112      "memberOf": "",
37113      "optvals": [
37114       "left",
37115       "right"
37116      ]
37117     },
37118     {
37119      "name": "inline",
37120      "type": "Boolean",
37121      "desc": "inline the element (default true)",
37122      "memberOf": "",
37123      "optvals": [
37124       "true",
37125       "false"
37126      ]
37127     },
37128     {
37129      "name": "weight",
37130      "type": "String",
37131      "desc": "The text that appears beside the radio",
37132      "memberOf": "",
37133      "optvals": [
37134       "primary",
37135       "warning",
37136       "info",
37137       "danger",
37138       "success"
37139      ]
37140     },
37141     {
37142      "name": "invalidClass",
37143      "type": "String",
37144      "desc": "The CSS class to use when marking a field invalid",
37145      "memberOf": ""
37146     },
37147     {
37148      "name": "validClass",
37149      "type": "String",
37150      "desc": "The CSS class to use when marking a field valid",
37151      "memberOf": ""
37152     },
37153     {
37154      "name": "cls",
37155      "type": "String",
37156      "desc": "css class",
37157      "memberOf": "Roo.bootstrap.Component"
37158     },
37159     {
37160      "name": "style",
37161      "type": "String",
37162      "desc": "any extra css",
37163      "memberOf": "Roo.bootstrap.Component"
37164     },
37165     {
37166      "name": "xattr",
37167      "type": "Object",
37168      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
37169      "memberOf": "Roo.bootstrap.Component"
37170     },
37171     {
37172      "name": "can_build_overlaid",
37173      "type": "Boolean",
37174      "desc": "True if element can be rebuild from a HTML page",
37175      "memberOf": "Roo.bootstrap.Component"
37176     },
37177     {
37178      "name": "dataId",
37179      "type": "string",
37180      "desc": "cutomer id",
37181      "memberOf": "Roo.bootstrap.Component"
37182     },
37183     {
37184      "name": "tooltip",
37185      "type": "string",
37186      "desc": "Text for the tooltip",
37187      "memberOf": "Roo.bootstrap.Component"
37188     },
37189     {
37190      "name": "container_method",
37191      "type": "string",
37192      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
37193      "memberOf": "Roo.bootstrap.Component"
37194     },
37195     {
37196      "name": "disableClass",
37197      "type": "String",
37198      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
37199      "memberOf": "Roo.Component"
37200     },
37201     {
37202      "name": "allowDomMove",
37203      "type": "Boolean",
37204      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
37205      "memberOf": "Roo.Component"
37206     },
37207     {
37208      "name": "hideMode",
37209      "type": "String",
37210      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
37211      "memberOf": "Roo.Component",
37212      "optvals": [
37213       "display",
37214       "visibility"
37215      ]
37216     },
37217     {
37218      "name": "actionMode",
37219      "type": "String",
37220      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
37221      "memberOf": "Roo.Component"
37222     },
37223     {
37224      "name": "listeners",
37225      "type": "Object",
37226      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
37227      "memberOf": "Roo.util.Observable"
37228     }
37229    ],
37230    "events": [
37231     {
37232      "name": "beforedestroy",
37233      "sig": "function (_self)\n{\n\n}",
37234      "type": "function",
37235      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
37236     },
37237     {
37238      "name": "beforehide",
37239      "sig": "function (_self)\n{\n\n}",
37240      "type": "function",
37241      "desc": "Fires before the component is hidden. Return false to stop the hide."
37242     },
37243     {
37244      "name": "beforerender",
37245      "sig": "function (_self)\n{\n\n}",
37246      "type": "function",
37247      "desc": "Fires before the component is rendered. Return false to stop the render."
37248     },
37249     {
37250      "name": "beforeshow",
37251      "sig": "function (_self)\n{\n\n}",
37252      "type": "function",
37253      "desc": "Fires before the component is shown.  Return false to stop the show."
37254     },
37255     {
37256      "name": "childrenrendered",
37257      "sig": "function (_self)\n{\n\n}",
37258      "type": "function",
37259      "desc": "Fires when the children have been rendered.."
37260     },
37261     {
37262      "name": "destroy",
37263      "sig": "function (_self)\n{\n\n}",
37264      "type": "function",
37265      "desc": "Fires after the component is destroyed."
37266     },
37267     {
37268      "name": "disable",
37269      "sig": "function (_self)\n{\n\n}",
37270      "type": "function",
37271      "desc": "Fires after the component is disabled."
37272     },
37273     {
37274      "name": "enable",
37275      "sig": "function (_self)\n{\n\n}",
37276      "type": "function",
37277      "desc": "Fires after the component is enabled."
37278     },
37279     {
37280      "name": "hide",
37281      "sig": "function (_self)\n{\n\n}",
37282      "type": "function",
37283      "desc": "Fires after the component is hidden."
37284     },
37285     {
37286      "name": "render",
37287      "sig": "function (_self)\n{\n\n}",
37288      "type": "function",
37289      "desc": "Fires after the component is rendered."
37290     },
37291     {
37292      "name": "show",
37293      "sig": "function (_self)\n{\n\n}",
37294      "type": "function",
37295      "desc": "Fires after the component is shown."
37296     }
37297    ],
37298    "methods": [
37299     {
37300      "name": "addEvents",
37301      "sig": "(Object object)",
37302      "type": "function",
37303      "desc": "Used to define events on this Observable"
37304     },
37305     {
37306      "name": "addListener",
37307      "sig": "(String eventName, Function handler, Object scope, Object options)",
37308      "type": "function",
37309      "desc": "Appends an event handler to this component"
37310     },
37311     {
37312      "name": "capture",
37313      "sig": "(Observable o, Function fn, Object scope)",
37314      "type": "function",
37315      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
37316     },
37317     {
37318      "name": "destroy",
37319      "sig": "()",
37320      "type": "function",
37321      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
37322     },
37323     {
37324      "name": "disable",
37325      "sig": "()",
37326      "type": "function",
37327      "desc": "Disable this component."
37328     },
37329     {
37330      "name": "enable",
37331      "sig": "()",
37332      "type": "function",
37333      "desc": "Enable this component."
37334     },
37335     {
37336      "name": "fireEvent",
37337      "sig": "(String eventName, Object... args)",
37338      "type": "function",
37339      "desc": "Fires the specified event with the passed parameters (minus the event name)."
37340     },
37341     {
37342      "name": "focus",
37343      "sig": "(Boolean selectText)",
37344      "type": "function",
37345      "desc": "Try to focus this component."
37346     },
37347     {
37348      "name": "getChildContainer",
37349      "sig": "()",
37350      "type": "function",
37351      "desc": "Fetch the element to add children to"
37352     },
37353     {
37354      "name": "getEl",
37355      "sig": "()",
37356      "type": "function",
37357      "desc": "Returns the underlying {@link Roo.Element}."
37358     },
37359     {
37360      "name": "getId",
37361      "sig": "()",
37362      "type": "function",
37363      "desc": "Returns the id of this component."
37364     },
37365     {
37366      "name": "hasListener",
37367      "sig": "(String eventName)",
37368      "type": "function",
37369      "desc": "Checks to see if this object has any listeners for a specified event"
37370     },
37371     {
37372      "name": "hide",
37373      "sig": "()",
37374      "type": "function",
37375      "desc": "Hide a component - adds 'hidden' class"
37376     },
37377     {
37378      "name": "initEvents",
37379      "sig": "()",
37380      "type": "function",
37381      "desc": "Initialize Events for the element"
37382     },
37383     {
37384      "name": "isVisible",
37385      "sig": "()",
37386      "type": "function",
37387      "desc": "Returns true if this component is visible."
37388     },
37389     {
37390      "name": "on",
37391      "sig": "(String eventName, Function handler, Object scope, Object options)",
37392      "type": "function",
37393      "desc": "Appends an event handler to this element (shorthand for addListener)"
37394     },
37395     {
37396      "name": "purgeListeners",
37397      "sig": "()",
37398      "type": "function",
37399      "desc": "Removes all listeners for this object"
37400     },
37401     {
37402      "name": "releaseCapture",
37403      "sig": "(Observable o)",
37404      "type": "function",
37405      "desc": "Removes <b>all</b> added captures from the Observable."
37406     },
37407     {
37408      "name": "removeListener",
37409      "sig": "(String eventName, Function handler, Object scope)",
37410      "type": "function",
37411      "desc": "Removes a listener"
37412     },
37413     {
37414      "name": "render",
37415      "sig": "(String/HTMLElement/Element container)",
37416      "type": "function",
37417      "desc": "If this is a lazy rendering component, render it to its container element."
37418     },
37419     {
37420      "name": "setDisabled",
37421      "sig": "(Boolean disabled)",
37422      "type": "function",
37423      "desc": "Convenience function for setting disabled/enabled by boolean."
37424     },
37425     {
37426      "name": "setVisible",
37427      "sig": "(Boolean visible)",
37428      "type": "function",
37429      "desc": "Convenience function to hide or show this component by boolean."
37430     },
37431     {
37432      "name": "show",
37433      "sig": "()",
37434      "type": "function",
37435      "desc": "Show a component - removes 'hidden' class"
37436     },
37437     {
37438      "name": "tooltipEl",
37439      "sig": "()",
37440      "type": "function",
37441      "desc": "Fetch the element to display the tooltip on."
37442     },
37443     {
37444      "name": "un",
37445      "sig": "(String eventName, Function handler, Object scope)",
37446      "type": "function",
37447      "desc": "Removes a listener (shorthand for removeListener)"
37448     }
37449    ]
37450   },
37451   "Roo.bootstrap.Row": {
37452    "props": [
37453     {
37454      "name": "cls",
37455      "type": "String",
37456      "desc": "css class",
37457      "memberOf": "Roo.bootstrap.Component"
37458     },
37459     {
37460      "name": "style",
37461      "type": "String",
37462      "desc": "any extra css",
37463      "memberOf": "Roo.bootstrap.Component"
37464     },
37465     {
37466      "name": "xattr",
37467      "type": "Object",
37468      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
37469      "memberOf": "Roo.bootstrap.Component"
37470     },
37471     {
37472      "name": "can_build_overlaid",
37473      "type": "Boolean",
37474      "desc": "True if element can be rebuild from a HTML page",
37475      "memberOf": "Roo.bootstrap.Component"
37476     },
37477     {
37478      "name": "dataId",
37479      "type": "string",
37480      "desc": "cutomer id",
37481      "memberOf": "Roo.bootstrap.Component"
37482     },
37483     {
37484      "name": "name",
37485      "type": "string",
37486      "desc": "Specifies name attribute",
37487      "memberOf": "Roo.bootstrap.Component"
37488     },
37489     {
37490      "name": "tooltip",
37491      "type": "string",
37492      "desc": "Text for the tooltip",
37493      "memberOf": "Roo.bootstrap.Component"
37494     },
37495     {
37496      "name": "container_method",
37497      "type": "string",
37498      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
37499      "memberOf": "Roo.bootstrap.Component"
37500     },
37501     {
37502      "name": "disableClass",
37503      "type": "String",
37504      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
37505      "memberOf": "Roo.Component"
37506     },
37507     {
37508      "name": "allowDomMove",
37509      "type": "Boolean",
37510      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
37511      "memberOf": "Roo.Component"
37512     },
37513     {
37514      "name": "hideMode",
37515      "type": "String",
37516      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
37517      "memberOf": "Roo.Component",
37518      "optvals": [
37519       "display",
37520       "visibility"
37521      ]
37522     },
37523     {
37524      "name": "actionMode",
37525      "type": "String",
37526      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
37527      "memberOf": "Roo.Component"
37528     },
37529     {
37530      "name": "listeners",
37531      "type": "Object",
37532      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
37533      "memberOf": "Roo.util.Observable"
37534     }
37535    ],
37536    "events": [
37537     {
37538      "name": "beforedestroy",
37539      "sig": "function (_self)\n{\n\n}",
37540      "type": "function",
37541      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
37542     },
37543     {
37544      "name": "beforehide",
37545      "sig": "function (_self)\n{\n\n}",
37546      "type": "function",
37547      "desc": "Fires before the component is hidden. Return false to stop the hide."
37548     },
37549     {
37550      "name": "beforerender",
37551      "sig": "function (_self)\n{\n\n}",
37552      "type": "function",
37553      "desc": "Fires before the component is rendered. Return false to stop the render."
37554     },
37555     {
37556      "name": "beforeshow",
37557      "sig": "function (_self)\n{\n\n}",
37558      "type": "function",
37559      "desc": "Fires before the component is shown.  Return false to stop the show."
37560     },
37561     {
37562      "name": "childrenrendered",
37563      "sig": "function (_self)\n{\n\n}",
37564      "type": "function",
37565      "desc": "Fires when the children have been rendered.."
37566     },
37567     {
37568      "name": "destroy",
37569      "sig": "function (_self)\n{\n\n}",
37570      "type": "function",
37571      "desc": "Fires after the component is destroyed."
37572     },
37573     {
37574      "name": "disable",
37575      "sig": "function (_self)\n{\n\n}",
37576      "type": "function",
37577      "desc": "Fires after the component is disabled."
37578     },
37579     {
37580      "name": "enable",
37581      "sig": "function (_self)\n{\n\n}",
37582      "type": "function",
37583      "desc": "Fires after the component is enabled."
37584     },
37585     {
37586      "name": "hide",
37587      "sig": "function (_self)\n{\n\n}",
37588      "type": "function",
37589      "desc": "Fires after the component is hidden."
37590     },
37591     {
37592      "name": "render",
37593      "sig": "function (_self)\n{\n\n}",
37594      "type": "function",
37595      "desc": "Fires after the component is rendered."
37596     },
37597     {
37598      "name": "show",
37599      "sig": "function (_self)\n{\n\n}",
37600      "type": "function",
37601      "desc": "Fires after the component is shown."
37602     }
37603    ],
37604    "methods": [
37605     {
37606      "name": "addEvents",
37607      "sig": "(Object object)",
37608      "type": "function",
37609      "desc": "Used to define events on this Observable"
37610     },
37611     {
37612      "name": "addListener",
37613      "sig": "(String eventName, Function handler, Object scope, Object options)",
37614      "type": "function",
37615      "desc": "Appends an event handler to this component"
37616     },
37617     {
37618      "name": "capture",
37619      "sig": "(Observable o, Function fn, Object scope)",
37620      "type": "function",
37621      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
37622     },
37623     {
37624      "name": "destroy",
37625      "sig": "()",
37626      "type": "function",
37627      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
37628     },
37629     {
37630      "name": "disable",
37631      "sig": "()",
37632      "type": "function",
37633      "desc": "Disable this component."
37634     },
37635     {
37636      "name": "enable",
37637      "sig": "()",
37638      "type": "function",
37639      "desc": "Enable this component."
37640     },
37641     {
37642      "name": "fireEvent",
37643      "sig": "(String eventName, Object... args)",
37644      "type": "function",
37645      "desc": "Fires the specified event with the passed parameters (minus the event name)."
37646     },
37647     {
37648      "name": "focus",
37649      "sig": "(Boolean selectText)",
37650      "type": "function",
37651      "desc": "Try to focus this component."
37652     },
37653     {
37654      "name": "getChildContainer",
37655      "sig": "()",
37656      "type": "function",
37657      "desc": "Fetch the element to add children to"
37658     },
37659     {
37660      "name": "getEl",
37661      "sig": "()",
37662      "type": "function",
37663      "desc": "Returns the underlying {@link Roo.Element}."
37664     },
37665     {
37666      "name": "getId",
37667      "sig": "()",
37668      "type": "function",
37669      "desc": "Returns the id of this component."
37670     },
37671     {
37672      "name": "hasListener",
37673      "sig": "(String eventName)",
37674      "type": "function",
37675      "desc": "Checks to see if this object has any listeners for a specified event"
37676     },
37677     {
37678      "name": "hide",
37679      "sig": "()",
37680      "type": "function",
37681      "desc": "Hide a component - adds 'hidden' class"
37682     },
37683     {
37684      "name": "initEvents",
37685      "sig": "()",
37686      "type": "function",
37687      "desc": "Initialize Events for the element"
37688     },
37689     {
37690      "name": "isVisible",
37691      "sig": "()",
37692      "type": "function",
37693      "desc": "Returns true if this component is visible."
37694     },
37695     {
37696      "name": "on",
37697      "sig": "(String eventName, Function handler, Object scope, Object options)",
37698      "type": "function",
37699      "desc": "Appends an event handler to this element (shorthand for addListener)"
37700     },
37701     {
37702      "name": "purgeListeners",
37703      "sig": "()",
37704      "type": "function",
37705      "desc": "Removes all listeners for this object"
37706     },
37707     {
37708      "name": "releaseCapture",
37709      "sig": "(Observable o)",
37710      "type": "function",
37711      "desc": "Removes <b>all</b> added captures from the Observable."
37712     },
37713     {
37714      "name": "removeListener",
37715      "sig": "(String eventName, Function handler, Object scope)",
37716      "type": "function",
37717      "desc": "Removes a listener"
37718     },
37719     {
37720      "name": "render",
37721      "sig": "(String/HTMLElement/Element container)",
37722      "type": "function",
37723      "desc": "If this is a lazy rendering component, render it to its container element."
37724     },
37725     {
37726      "name": "setDisabled",
37727      "sig": "(Boolean disabled)",
37728      "type": "function",
37729      "desc": "Convenience function for setting disabled/enabled by boolean."
37730     },
37731     {
37732      "name": "setVisible",
37733      "sig": "(Boolean visible)",
37734      "type": "function",
37735      "desc": "Convenience function to hide or show this component by boolean."
37736     },
37737     {
37738      "name": "show",
37739      "sig": "()",
37740      "type": "function",
37741      "desc": "Show a component - removes 'hidden' class"
37742     },
37743     {
37744      "name": "tooltipEl",
37745      "sig": "()",
37746      "type": "function",
37747      "desc": "Fetch the element to display the tooltip on."
37748     },
37749     {
37750      "name": "un",
37751      "sig": "(String eventName, Function handler, Object scope)",
37752      "type": "function",
37753      "desc": "Removes a listener (shorthand for removeListener)"
37754     }
37755    ]
37756   },
37757   "Roo.bootstrap.SecurePass": {
37758    "props": [
37759     {
37760      "name": "errors",
37761      "type": "String/Object",
37762      "desc": "A Error spec, or true for a default spec (defaults to\n{\n PwdEmpty: \"Please type a password, and then retype it to confirm.\",\n PwdShort: \"Your password must be at least 6 characters long. Please type a different password.\",\n PwdLong: \"Your password can't contain more than 16 characters. Please type a different password.\",\n PwdBadChar: \"The password contains characters that aren't allowed. Please type a different password.\",\n IDInPwd: \"Your password can't include the part of your ID. Please type a different password.\",\n FNInPwd: \"Your password can't contain your first name. Please type a different password.\",\n LNInPwd: \"Your password can't contain your last name. Please type a different password.\"\n})",
37763      "memberOf": ""
37764     },
37765     {
37766      "name": "Label",
37767      "type": "String/Object",
37768      "desc": "for the strength meter (defaults to\n'Password strength:')",
37769      "memberOf": ""
37770     },
37771     {
37772      "name": "pwdStrengths",
37773      "type": "String/Object",
37774      "desc": "A pwdStrengths spec, or true for a default spec (defaults to\n['Weak', 'Medium', 'Strong'])",
37775      "memberOf": ""
37776     },
37777     {
37778      "name": "disabled",
37779      "type": "Boolean",
37780      "desc": "is it disabled",
37781      "memberOf": "Roo.bootstrap.Input"
37782     },
37783     {
37784      "name": "inputType",
37785      "type": "String",
37786      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
37787      "memberOf": "Roo.bootstrap.Input"
37788     },
37789     {
37790      "name": "name",
37791      "type": "String",
37792      "desc": "name of the input",
37793      "memberOf": "Roo.bootstrap.Input"
37794     },
37795     {
37796      "name": "fieldLabel",
37797      "type": "string",
37798      "desc": "- the label associated",
37799      "memberOf": "Roo.bootstrap.Input"
37800     },
37801     {
37802      "name": "placeholder",
37803      "type": "string",
37804      "desc": "- placeholder to put in text.",
37805      "memberOf": "Roo.bootstrap.Input"
37806     },
37807     {
37808      "name": "before",
37809      "type": "string",
37810      "desc": "- input group add on before",
37811      "memberOf": "Roo.bootstrap.Input"
37812     },
37813     {
37814      "name": "after",
37815      "type": "string",
37816      "desc": "- input group add on after",
37817      "memberOf": "Roo.bootstrap.Input"
37818     },
37819     {
37820      "name": "size",
37821      "type": "string",
37822      "desc": "- (lg|sm) or leave empty..",
37823      "memberOf": "Roo.bootstrap.Input"
37824     },
37825     {
37826      "name": "xs",
37827      "type": "Number",
37828      "desc": "colspan out of 12 for mobile-sized screens",
37829      "memberOf": "Roo.bootstrap.Input"
37830     },
37831     {
37832      "name": "sm",
37833      "type": "Number",
37834      "desc": "colspan out of 12 for tablet-sized screens",
37835      "memberOf": "Roo.bootstrap.Input"
37836     },
37837     {
37838      "name": "md",
37839      "type": "Number",
37840      "desc": "colspan out of 12 for computer-sized screens",
37841      "memberOf": "Roo.bootstrap.Input"
37842     },
37843     {
37844      "name": "lg",
37845      "type": "Number",
37846      "desc": "colspan out of 12 for large computer-sized screens",
37847      "memberOf": "Roo.bootstrap.Input"
37848     },
37849     {
37850      "name": "value",
37851      "type": "string",
37852      "desc": "default value of the input",
37853      "memberOf": "Roo.bootstrap.Input"
37854     },
37855     {
37856      "name": "labelWidth",
37857      "type": "Number",
37858      "desc": "set the width of label (0-12)",
37859      "memberOf": "Roo.bootstrap.Input"
37860     },
37861     {
37862      "name": "labelAlign",
37863      "type": "String",
37864      "desc": "",
37865      "memberOf": "Roo.bootstrap.Input",
37866      "optvals": [
37867       "top",
37868       "left"
37869      ]
37870     },
37871     {
37872      "name": "readOnly",
37873      "type": "Boolean",
37874      "desc": "Specifies that the field should be read-only",
37875      "memberOf": "Roo.bootstrap.Input"
37876     },
37877     {
37878      "name": "autocomplete",
37879      "type": "String",
37880      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
37881      "memberOf": "Roo.bootstrap.Input"
37882     },
37883     {
37884      "name": "indicatorpos",
37885      "type": "String",
37886      "desc": "default left",
37887      "memberOf": "Roo.bootstrap.Input",
37888      "optvals": [
37889       "left",
37890       "right"
37891      ]
37892     },
37893     {
37894      "name": "align",
37895      "type": "String",
37896      "desc": "Default left",
37897      "memberOf": "Roo.bootstrap.Input",
37898      "optvals": [
37899       "left",
37900       "center",
37901       "right"
37902      ]
37903     },
37904     {
37905      "name": "forceFeedback",
37906      "type": "Boolean",
37907      "desc": "Default false",
37908      "memberOf": "Roo.bootstrap.Input",
37909      "optvals": [
37910       "true",
37911       "false"
37912      ]
37913     },
37914     {
37915      "name": "validationEvent",
37916      "type": "String/Boolean",
37917      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
37918      "memberOf": "Roo.bootstrap.Input"
37919     },
37920     {
37921      "name": "validateOnBlur",
37922      "type": "Boolean",
37923      "desc": "Whether the field should validate when it loses focus (defaults to true).",
37924      "memberOf": "Roo.bootstrap.Input"
37925     },
37926     {
37927      "name": "validationDelay",
37928      "type": "Number",
37929      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
37930      "memberOf": "Roo.bootstrap.Input"
37931     },
37932     {
37933      "name": "focusClass",
37934      "type": "String",
37935      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
37936      "memberOf": "Roo.bootstrap.Input"
37937     },
37938     {
37939      "name": "invalidClass",
37940      "type": "String",
37941      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
37942      "memberOf": "Roo.bootstrap.Input"
37943     },
37944     {
37945      "name": "validClass",
37946      "type": "String",
37947      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
37948      "memberOf": "Roo.bootstrap.Input"
37949     },
37950     {
37951      "name": "hasFeedback",
37952      "type": "Boolean",
37953      "desc": "default true",
37954      "memberOf": "Roo.bootstrap.Input",
37955      "optvals": [
37956       "true",
37957       "false"
37958      ]
37959     },
37960     {
37961      "name": "invalidFeedbackIcon",
37962      "type": "String",
37963      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
37964      "memberOf": "Roo.bootstrap.Input"
37965     },
37966     {
37967      "name": "validFeedbackIcon",
37968      "type": "String",
37969      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
37970      "memberOf": "Roo.bootstrap.Input"
37971     },
37972     {
37973      "name": "selectOnFocus",
37974      "type": "Boolean",
37975      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
37976      "memberOf": "Roo.bootstrap.Input"
37977     },
37978     {
37979      "name": "maskRe",
37980      "type": "String",
37981      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
37982      "memberOf": "Roo.bootstrap.Input"
37983     },
37984     {
37985      "name": "vtype",
37986      "type": "String",
37987      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
37988      "memberOf": "Roo.bootstrap.Input"
37989     },
37990     {
37991      "name": "disableKeyFilter",
37992      "type": "Boolean",
37993      "desc": "True to disable input keystroke filtering (defaults to false)",
37994      "memberOf": "Roo.bootstrap.Input"
37995     },
37996     {
37997      "name": "allowBlank",
37998      "type": "Boolean",
37999      "desc": "False to validate that the value length > 0 (defaults to true)",
38000      "memberOf": "Roo.bootstrap.Input"
38001     },
38002     {
38003      "name": "blankText",
38004      "type": "String",
38005      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
38006      "memberOf": "Roo.bootstrap.Input"
38007     },
38008     {
38009      "name": "minLength",
38010      "type": "Number",
38011      "desc": "Minimum input field length required (defaults to 0)",
38012      "memberOf": "Roo.bootstrap.Input"
38013     },
38014     {
38015      "name": "maxLength",
38016      "type": "Number",
38017      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
38018      "memberOf": "Roo.bootstrap.Input"
38019     },
38020     {
38021      "name": "minLengthText",
38022      "type": "String",
38023      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
38024      "memberOf": "Roo.bootstrap.Input"
38025     },
38026     {
38027      "name": "maxLengthText",
38028      "type": "String",
38029      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
38030      "memberOf": "Roo.bootstrap.Input"
38031     },
38032     {
38033      "name": "validator",
38034      "type": "Function",
38035      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
38036      "memberOf": "Roo.bootstrap.Input"
38037     },
38038     {
38039      "name": "regex",
38040      "type": "RegExp",
38041      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
38042      "memberOf": "Roo.bootstrap.Input"
38043     },
38044     {
38045      "name": "regexText",
38046      "type": "String",
38047      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
38048      "memberOf": "Roo.bootstrap.Input"
38049     },
38050     {
38051      "name": "cls",
38052      "type": "String",
38053      "desc": "css class",
38054      "memberOf": "Roo.bootstrap.Component"
38055     },
38056     {
38057      "name": "style",
38058      "type": "String",
38059      "desc": "any extra css",
38060      "memberOf": "Roo.bootstrap.Component"
38061     },
38062     {
38063      "name": "xattr",
38064      "type": "Object",
38065      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
38066      "memberOf": "Roo.bootstrap.Component"
38067     },
38068     {
38069      "name": "can_build_overlaid",
38070      "type": "Boolean",
38071      "desc": "True if element can be rebuild from a HTML page",
38072      "memberOf": "Roo.bootstrap.Component"
38073     },
38074     {
38075      "name": "dataId",
38076      "type": "string",
38077      "desc": "cutomer id",
38078      "memberOf": "Roo.bootstrap.Component"
38079     },
38080     {
38081      "name": "tooltip",
38082      "type": "string",
38083      "desc": "Text for the tooltip",
38084      "memberOf": "Roo.bootstrap.Component"
38085     },
38086     {
38087      "name": "container_method",
38088      "type": "string",
38089      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
38090      "memberOf": "Roo.bootstrap.Component"
38091     },
38092     {
38093      "name": "disableClass",
38094      "type": "String",
38095      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
38096      "memberOf": "Roo.Component"
38097     },
38098     {
38099      "name": "allowDomMove",
38100      "type": "Boolean",
38101      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
38102      "memberOf": "Roo.Component"
38103     },
38104     {
38105      "name": "hideMode",
38106      "type": "String",
38107      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
38108      "memberOf": "Roo.Component",
38109      "optvals": [
38110       "display",
38111       "visibility"
38112      ]
38113     },
38114     {
38115      "name": "actionMode",
38116      "type": "String",
38117      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
38118      "memberOf": "Roo.Component"
38119     },
38120     {
38121      "name": "listeners",
38122      "type": "Object",
38123      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
38124      "memberOf": "Roo.util.Observable"
38125     }
38126    ],
38127    "events": [
38128     {
38129      "name": "beforedestroy",
38130      "sig": "function (_self)\n{\n\n}",
38131      "type": "function",
38132      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
38133     },
38134     {
38135      "name": "beforehide",
38136      "sig": "function (_self)\n{\n\n}",
38137      "type": "function",
38138      "desc": "Fires before the component is hidden. Return false to stop the hide."
38139     },
38140     {
38141      "name": "beforerender",
38142      "sig": "function (_self)\n{\n\n}",
38143      "type": "function",
38144      "desc": "Fires before the component is rendered. Return false to stop the render."
38145     },
38146     {
38147      "name": "beforeshow",
38148      "sig": "function (_self)\n{\n\n}",
38149      "type": "function",
38150      "desc": "Fires before the component is shown.  Return false to stop the show."
38151     },
38152     {
38153      "name": "blur",
38154      "sig": "function (_self)\n{\n\n}",
38155      "type": "function",
38156      "desc": "Fires when this field loses input focus."
38157     },
38158     {
38159      "name": "change",
38160      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
38161      "type": "function",
38162      "desc": "Fires just before the field blurs if the field value has changed."
38163     },
38164     {
38165      "name": "childrenrendered",
38166      "sig": "function (_self)\n{\n\n}",
38167      "type": "function",
38168      "desc": "Fires when the children have been rendered.."
38169     },
38170     {
38171      "name": "destroy",
38172      "sig": "function (_self)\n{\n\n}",
38173      "type": "function",
38174      "desc": "Fires after the component is destroyed."
38175     },
38176     {
38177      "name": "disable",
38178      "sig": "function (_self)\n{\n\n}",
38179      "type": "function",
38180      "desc": "Fires after the component is disabled."
38181     },
38182     {
38183      "name": "enable",
38184      "sig": "function (_self)\n{\n\n}",
38185      "type": "function",
38186      "desc": "Fires after the component is enabled."
38187     },
38188     {
38189      "name": "focus",
38190      "sig": "function (_self)\n{\n\n}",
38191      "type": "function",
38192      "desc": "Fires when this field receives input focus."
38193     },
38194     {
38195      "name": "hide",
38196      "sig": "function (_self)\n{\n\n}",
38197      "type": "function",
38198      "desc": "Fires after the component is hidden."
38199     },
38200     {
38201      "name": "invalid",
38202      "sig": "function (_self, msg)\n{\n\n}",
38203      "type": "function",
38204      "desc": "Fires after the field has been marked as invalid."
38205     },
38206     {
38207      "name": "keyup",
38208      "sig": "function (_self, e)\n{\n\n}",
38209      "type": "function",
38210      "desc": "Fires after the key up"
38211     },
38212     {
38213      "name": "render",
38214      "sig": "function (_self)\n{\n\n}",
38215      "type": "function",
38216      "desc": "Fires after the component is rendered."
38217     },
38218     {
38219      "name": "show",
38220      "sig": "function (_self)\n{\n\n}",
38221      "type": "function",
38222      "desc": "Fires after the component is shown."
38223     },
38224     {
38225      "name": "specialkey",
38226      "sig": "function (_self, e)\n{\n\n}",
38227      "type": "function",
38228      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
38229     },
38230     {
38231      "name": "valid",
38232      "sig": "function (_self)\n{\n\n}",
38233      "type": "function",
38234      "desc": "Fires after the field has been validated with no errors."
38235     }
38236    ],
38237    "methods": [
38238     {
38239      "name": "addEvents",
38240      "sig": "(Object object)",
38241      "type": "function",
38242      "desc": "Used to define events on this Observable"
38243     },
38244     {
38245      "name": "addListener",
38246      "sig": "(String eventName, Function handler, Object scope, Object options)",
38247      "type": "function",
38248      "desc": "Appends an event handler to this component"
38249     },
38250     {
38251      "name": "capture",
38252      "sig": "(Observable o, Function fn, Object scope)",
38253      "type": "function",
38254      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
38255     },
38256     {
38257      "name": "clearInvalid",
38258      "sig": "()",
38259      "type": "function",
38260      "desc": "Clear any invalid styles/messages for this field"
38261     },
38262     {
38263      "name": "destroy",
38264      "sig": "()",
38265      "type": "function",
38266      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
38267     },
38268     {
38269      "name": "disable",
38270      "sig": "()",
38271      "type": "function",
38272      "desc": "Disable this component."
38273     },
38274     {
38275      "name": "enable",
38276      "sig": "()",
38277      "type": "function",
38278      "desc": "Enable this component."
38279     },
38280     {
38281      "name": "fireEvent",
38282      "sig": "(String eventName, Object... args)",
38283      "type": "function",
38284      "desc": "Fires the specified event with the passed parameters (minus the event name)."
38285     },
38286     {
38287      "name": "focus",
38288      "sig": "(Boolean selectText)",
38289      "type": "function",
38290      "desc": "Try to focus this component."
38291     },
38292     {
38293      "name": "getChildContainer",
38294      "sig": "()",
38295      "type": "function",
38296      "desc": "Fetch the element to add children to"
38297     },
38298     {
38299      "name": "getEl",
38300      "sig": "()",
38301      "type": "function",
38302      "desc": "Returns the underlying {@link Roo.Element}."
38303     },
38304     {
38305      "name": "getId",
38306      "sig": "()",
38307      "type": "function",
38308      "desc": "Returns the id of this component."
38309     },
38310     {
38311      "name": "getName",
38312      "sig": "()",
38313      "type": "function",
38314      "desc": "Returns the name of the field"
38315     },
38316     {
38317      "name": "getRawValue",
38318      "sig": "()",
38319      "type": "function",
38320      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
38321     },
38322     {
38323      "name": "getValue",
38324      "sig": "()",
38325      "type": "function",
38326      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
38327     },
38328     {
38329      "name": "hasListener",
38330      "sig": "(String eventName)",
38331      "type": "function",
38332      "desc": "Checks to see if this object has any listeners for a specified event"
38333     },
38334     {
38335      "name": "hide",
38336      "sig": "()",
38337      "type": "function",
38338      "desc": "Hide a component - adds 'hidden' class"
38339     },
38340     {
38341      "name": "initEvents",
38342      "sig": "()",
38343      "type": "function",
38344      "desc": "Initialize Events for the element"
38345     },
38346     {
38347      "name": "inputEl",
38348      "sig": "()",
38349      "type": "function",
38350      "desc": "return the real input element."
38351     },
38352     {
38353      "name": "isVisible",
38354      "sig": "()",
38355      "type": "function",
38356      "desc": "Returns true if this component is visible."
38357     },
38358     {
38359      "name": "markInvalid",
38360      "sig": "(String msg)",
38361      "type": "function",
38362      "desc": "Mark this field as invalid"
38363     },
38364     {
38365      "name": "markValid",
38366      "sig": "()",
38367      "type": "function",
38368      "desc": "Mark this field as valid"
38369     },
38370     {
38371      "name": "on",
38372      "sig": "(String eventName, Function handler, Object scope, Object options)",
38373      "type": "function",
38374      "desc": "Appends an event handler to this element (shorthand for addListener)"
38375     },
38376     {
38377      "name": "purgeListeners",
38378      "sig": "()",
38379      "type": "function",
38380      "desc": "Removes all listeners for this object"
38381     },
38382     {
38383      "name": "releaseCapture",
38384      "sig": "(Observable o)",
38385      "type": "function",
38386      "desc": "Removes <b>all</b> added captures from the Observable."
38387     },
38388     {
38389      "name": "removeListener",
38390      "sig": "(String eventName, Function handler, Object scope)",
38391      "type": "function",
38392      "desc": "Removes a listener"
38393     },
38394     {
38395      "name": "render",
38396      "sig": "(String/HTMLElement/Element container)",
38397      "type": "function",
38398      "desc": "If this is a lazy rendering component, render it to its container element."
38399     },
38400     {
38401      "name": "reset",
38402      "sig": "()",
38403      "type": "function",
38404      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
38405     },
38406     {
38407      "name": "setDisabled",
38408      "sig": "(Boolean disabled)",
38409      "type": "function",
38410      "desc": "Convenience function for setting disabled/enabled by boolean."
38411     },
38412     {
38413      "name": "setRawValue",
38414      "sig": "(Mixed value)",
38415      "type": "function",
38416      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
38417     },
38418     {
38419      "name": "setValue",
38420      "sig": "(Mixed value)",
38421      "type": "function",
38422      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
38423     },
38424     {
38425      "name": "setVisible",
38426      "sig": "(Boolean visible)",
38427      "type": "function",
38428      "desc": "Convenience function to hide or show this component by boolean."
38429     },
38430     {
38431      "name": "show",
38432      "sig": "()",
38433      "type": "function",
38434      "desc": "Show a component - removes 'hidden' class"
38435     },
38436     {
38437      "name": "tooltipEl",
38438      "sig": "()",
38439      "type": "function",
38440      "desc": "Fetch the element to display the tooltip on."
38441     },
38442     {
38443      "name": "un",
38444      "sig": "(String eventName, Function handler, Object scope)",
38445      "type": "function",
38446      "desc": "Removes a listener (shorthand for removeListener)"
38447     },
38448     {
38449      "name": "validate",
38450      "sig": "()",
38451      "type": "function",
38452      "desc": "Validates the field value"
38453     },
38454     {
38455      "name": "validateValue",
38456      "sig": "(Mixed value)",
38457      "type": "function",
38458      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
38459     }
38460    ]
38461   },
38462   "Roo.bootstrap.Slider": {
38463    "props": [
38464     {
38465      "name": "cls",
38466      "type": "String",
38467      "desc": "css class",
38468      "memberOf": "Roo.bootstrap.Component"
38469     },
38470     {
38471      "name": "style",
38472      "type": "String",
38473      "desc": "any extra css",
38474      "memberOf": "Roo.bootstrap.Component"
38475     },
38476     {
38477      "name": "xattr",
38478      "type": "Object",
38479      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
38480      "memberOf": "Roo.bootstrap.Component"
38481     },
38482     {
38483      "name": "can_build_overlaid",
38484      "type": "Boolean",
38485      "desc": "True if element can be rebuild from a HTML page",
38486      "memberOf": "Roo.bootstrap.Component"
38487     },
38488     {
38489      "name": "dataId",
38490      "type": "string",
38491      "desc": "cutomer id",
38492      "memberOf": "Roo.bootstrap.Component"
38493     },
38494     {
38495      "name": "name",
38496      "type": "string",
38497      "desc": "Specifies name attribute",
38498      "memberOf": "Roo.bootstrap.Component"
38499     },
38500     {
38501      "name": "tooltip",
38502      "type": "string",
38503      "desc": "Text for the tooltip",
38504      "memberOf": "Roo.bootstrap.Component"
38505     },
38506     {
38507      "name": "container_method",
38508      "type": "string",
38509      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
38510      "memberOf": "Roo.bootstrap.Component"
38511     },
38512     {
38513      "name": "disableClass",
38514      "type": "String",
38515      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
38516      "memberOf": "Roo.Component"
38517     },
38518     {
38519      "name": "allowDomMove",
38520      "type": "Boolean",
38521      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
38522      "memberOf": "Roo.Component"
38523     },
38524     {
38525      "name": "hideMode",
38526      "type": "String",
38527      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
38528      "memberOf": "Roo.Component",
38529      "optvals": [
38530       "display",
38531       "visibility"
38532      ]
38533     },
38534     {
38535      "name": "actionMode",
38536      "type": "String",
38537      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
38538      "memberOf": "Roo.Component"
38539     },
38540     {
38541      "name": "listeners",
38542      "type": "Object",
38543      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
38544      "memberOf": "Roo.util.Observable"
38545     }
38546    ],
38547    "events": [
38548     {
38549      "name": "beforedestroy",
38550      "sig": "function (_self)\n{\n\n}",
38551      "type": "function",
38552      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
38553     },
38554     {
38555      "name": "beforehide",
38556      "sig": "function (_self)\n{\n\n}",
38557      "type": "function",
38558      "desc": "Fires before the component is hidden. Return false to stop the hide."
38559     },
38560     {
38561      "name": "beforerender",
38562      "sig": "function (_self)\n{\n\n}",
38563      "type": "function",
38564      "desc": "Fires before the component is rendered. Return false to stop the render."
38565     },
38566     {
38567      "name": "beforeshow",
38568      "sig": "function (_self)\n{\n\n}",
38569      "type": "function",
38570      "desc": "Fires before the component is shown.  Return false to stop the show."
38571     },
38572     {
38573      "name": "childrenrendered",
38574      "sig": "function (_self)\n{\n\n}",
38575      "type": "function",
38576      "desc": "Fires when the children have been rendered.."
38577     },
38578     {
38579      "name": "destroy",
38580      "sig": "function (_self)\n{\n\n}",
38581      "type": "function",
38582      "desc": "Fires after the component is destroyed."
38583     },
38584     {
38585      "name": "disable",
38586      "sig": "function (_self)\n{\n\n}",
38587      "type": "function",
38588      "desc": "Fires after the component is disabled."
38589     },
38590     {
38591      "name": "enable",
38592      "sig": "function (_self)\n{\n\n}",
38593      "type": "function",
38594      "desc": "Fires after the component is enabled."
38595     },
38596     {
38597      "name": "hide",
38598      "sig": "function (_self)\n{\n\n}",
38599      "type": "function",
38600      "desc": "Fires after the component is hidden."
38601     },
38602     {
38603      "name": "render",
38604      "sig": "function (_self)\n{\n\n}",
38605      "type": "function",
38606      "desc": "Fires after the component is rendered."
38607     },
38608     {
38609      "name": "show",
38610      "sig": "function (_self)\n{\n\n}",
38611      "type": "function",
38612      "desc": "Fires after the component is shown."
38613     }
38614    ],
38615    "methods": [
38616     {
38617      "name": "addEvents",
38618      "sig": "(Object object)",
38619      "type": "function",
38620      "desc": "Used to define events on this Observable"
38621     },
38622     {
38623      "name": "addListener",
38624      "sig": "(String eventName, Function handler, Object scope, Object options)",
38625      "type": "function",
38626      "desc": "Appends an event handler to this component"
38627     },
38628     {
38629      "name": "capture",
38630      "sig": "(Observable o, Function fn, Object scope)",
38631      "type": "function",
38632      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
38633     },
38634     {
38635      "name": "destroy",
38636      "sig": "()",
38637      "type": "function",
38638      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
38639     },
38640     {
38641      "name": "disable",
38642      "sig": "()",
38643      "type": "function",
38644      "desc": "Disable this component."
38645     },
38646     {
38647      "name": "enable",
38648      "sig": "()",
38649      "type": "function",
38650      "desc": "Enable this component."
38651     },
38652     {
38653      "name": "fireEvent",
38654      "sig": "(String eventName, Object... args)",
38655      "type": "function",
38656      "desc": "Fires the specified event with the passed parameters (minus the event name)."
38657     },
38658     {
38659      "name": "focus",
38660      "sig": "(Boolean selectText)",
38661      "type": "function",
38662      "desc": "Try to focus this component."
38663     },
38664     {
38665      "name": "getChildContainer",
38666      "sig": "()",
38667      "type": "function",
38668      "desc": "Fetch the element to add children to"
38669     },
38670     {
38671      "name": "getEl",
38672      "sig": "()",
38673      "type": "function",
38674      "desc": "Returns the underlying {@link Roo.Element}."
38675     },
38676     {
38677      "name": "getId",
38678      "sig": "()",
38679      "type": "function",
38680      "desc": "Returns the id of this component."
38681     },
38682     {
38683      "name": "hasListener",
38684      "sig": "(String eventName)",
38685      "type": "function",
38686      "desc": "Checks to see if this object has any listeners for a specified event"
38687     },
38688     {
38689      "name": "hide",
38690      "sig": "()",
38691      "type": "function",
38692      "desc": "Hide a component - adds 'hidden' class"
38693     },
38694     {
38695      "name": "initEvents",
38696      "sig": "()",
38697      "type": "function",
38698      "desc": "Initialize Events for the element"
38699     },
38700     {
38701      "name": "isVisible",
38702      "sig": "()",
38703      "type": "function",
38704      "desc": "Returns true if this component is visible."
38705     },
38706     {
38707      "name": "on",
38708      "sig": "(String eventName, Function handler, Object scope, Object options)",
38709      "type": "function",
38710      "desc": "Appends an event handler to this element (shorthand for addListener)"
38711     },
38712     {
38713      "name": "purgeListeners",
38714      "sig": "()",
38715      "type": "function",
38716      "desc": "Removes all listeners for this object"
38717     },
38718     {
38719      "name": "releaseCapture",
38720      "sig": "(Observable o)",
38721      "type": "function",
38722      "desc": "Removes <b>all</b> added captures from the Observable."
38723     },
38724     {
38725      "name": "removeListener",
38726      "sig": "(String eventName, Function handler, Object scope)",
38727      "type": "function",
38728      "desc": "Removes a listener"
38729     },
38730     {
38731      "name": "render",
38732      "sig": "(String/HTMLElement/Element container)",
38733      "type": "function",
38734      "desc": "If this is a lazy rendering component, render it to its container element."
38735     },
38736     {
38737      "name": "setDisabled",
38738      "sig": "(Boolean disabled)",
38739      "type": "function",
38740      "desc": "Convenience function for setting disabled/enabled by boolean."
38741     },
38742     {
38743      "name": "setVisible",
38744      "sig": "(Boolean visible)",
38745      "type": "function",
38746      "desc": "Convenience function to hide or show this component by boolean."
38747     },
38748     {
38749      "name": "show",
38750      "sig": "()",
38751      "type": "function",
38752      "desc": "Show a component - removes 'hidden' class"
38753     },
38754     {
38755      "name": "tooltipEl",
38756      "sig": "()",
38757      "type": "function",
38758      "desc": "Fetch the element to display the tooltip on."
38759     },
38760     {
38761      "name": "un",
38762      "sig": "(String eventName, Function handler, Object scope)",
38763      "type": "function",
38764      "desc": "Removes a listener (shorthand for removeListener)"
38765     }
38766    ]
38767   },
38768   "Roo.bootstrap.SplitBar": {
38769    "props": [
38770     {
38771      "name": "listeners",
38772      "type": "Object",
38773      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
38774      "memberOf": "Roo.util.Observable"
38775     }
38776    ],
38777    "events": [
38778     {
38779      "name": "beforeresize",
38780      "sig": "function (_self)\n{\n\n}",
38781      "type": "function",
38782      "desc": "Fires before the splitter is dragged"
38783     },
38784     {
38785      "name": "moved",
38786      "sig": "function (_self, newSize)\n{\n\n}",
38787      "type": "function",
38788      "desc": "Fires when the splitter is moved"
38789     },
38790     {
38791      "name": "resize",
38792      "sig": "function (_self, newSize)\n{\n\n}",
38793      "type": "function",
38794      "desc": "Fires when the splitter is moved (alias for {@link #event-moved})"
38795     }
38796    ],
38797    "methods": [
38798     {
38799      "name": "addEvents",
38800      "sig": "(Object object)",
38801      "type": "function",
38802      "desc": "Used to define events on this Observable"
38803     },
38804     {
38805      "name": "addListener",
38806      "sig": "(String eventName, Function handler, Object scope, Object options)",
38807      "type": "function",
38808      "desc": "Appends an event handler to this component"
38809     },
38810     {
38811      "name": "capture",
38812      "sig": "(Observable o, Function fn, Object scope)",
38813      "type": "function",
38814      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
38815     },
38816     {
38817      "name": "destroy",
38818      "sig": "(Boolean removeEl)",
38819      "type": "function",
38820      "desc": "Destroy this splitbar."
38821     },
38822     {
38823      "name": "fireEvent",
38824      "sig": "(String eventName, Object... args)",
38825      "type": "function",
38826      "desc": "Fires the specified event with the passed parameters (minus the event name)."
38827     },
38828     {
38829      "name": "getAdapter",
38830      "sig": "()",
38831      "type": "function",
38832      "desc": "Get the adapter this SplitBar uses"
38833     },
38834     {
38835      "name": "getMaximumSize",
38836      "sig": "()",
38837      "type": "function",
38838      "desc": "Gets the maximum size for the resizing element"
38839     },
38840     {
38841      "name": "getMinimumSize",
38842      "sig": "()",
38843      "type": "function",
38844      "desc": "Gets the minimum size for the resizing element"
38845     },
38846     {
38847      "name": "hasListener",
38848      "sig": "(String eventName)",
38849      "type": "function",
38850      "desc": "Checks to see if this object has any listeners for a specified event"
38851     },
38852     {
38853      "name": "on",
38854      "sig": "(String eventName, Function handler, Object scope, Object options)",
38855      "type": "function",
38856      "desc": "Appends an event handler to this element (shorthand for addListener)"
38857     },
38858     {
38859      "name": "purgeListeners",
38860      "sig": "()",
38861      "type": "function",
38862      "desc": "Removes all listeners for this object"
38863     },
38864     {
38865      "name": "releaseCapture",
38866      "sig": "(Observable o)",
38867      "type": "function",
38868      "desc": "Removes <b>all</b> added captures from the Observable."
38869     },
38870     {
38871      "name": "removeListener",
38872      "sig": "(String eventName, Function handler, Object scope)",
38873      "type": "function",
38874      "desc": "Removes a listener"
38875     },
38876     {
38877      "name": "setAdapter",
38878      "sig": "(Object adapter)",
38879      "type": "function",
38880      "desc": "Set the adapter this SplitBar uses"
38881     },
38882     {
38883      "name": "setCurrentSize",
38884      "sig": "(Number size)",
38885      "type": "function",
38886      "desc": "Sets the initialize size for the resizing element"
38887     },
38888     {
38889      "name": "setMaximumSize",
38890      "sig": "(Number maxSize)",
38891      "type": "function",
38892      "desc": "Sets the maximum size for the resizing element"
38893     },
38894     {
38895      "name": "setMinimumSize",
38896      "sig": "(Number minSize)",
38897      "type": "function",
38898      "desc": "Sets the minimum size for the resizing element"
38899     },
38900     {
38901      "name": "un",
38902      "sig": "(String eventName, Function handler, Object scope)",
38903      "type": "function",
38904      "desc": "Removes a listener (shorthand for removeListener)"
38905     }
38906    ]
38907   },
38908   "Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter": {
38909    "props": [],
38910    "events": [],
38911    "methods": [
38912     {
38913      "name": "getElementSize",
38914      "sig": "(Roo.bootstrap.SplitBar s)",
38915      "type": "function",
38916      "desc": "Called before drag operations to get the current size of the resizing element."
38917     },
38918     {
38919      "name": "setElementSize",
38920      "sig": "(Roo.bootstrap.SplitBar s, Number newSize, Function onComplete)",
38921      "type": "function",
38922      "desc": "Called after drag operations to set the size of the resizing element."
38923     }
38924    ]
38925   },
38926   "Roo.bootstrap.SplitBar.BasicLayoutAdapter": {
38927    "props": [],
38928    "events": [],
38929    "methods": [
38930     {
38931      "name": "getElementSize",
38932      "sig": "(Roo.bootstrap.SplitBar s)",
38933      "type": "function",
38934      "desc": "Called before drag operations to get the current size of the resizing element."
38935     },
38936     {
38937      "name": "setElementSize",
38938      "sig": "(Roo.bootstrap.SplitBar s, Number newSize, Function onComplete)",
38939      "type": "function",
38940      "desc": "Called after drag operations to set the size of the resizing element."
38941     }
38942    ]
38943   },
38944   "Roo.bootstrap.TabGroup": {
38945    "props": [
38946     {
38947      "name": "navId",
38948      "type": "String",
38949      "desc": "the navigation id (for use with navbars) - will be auto generated if it does not exist..",
38950      "memberOf": ""
38951     },
38952     {
38953      "name": "carousel",
38954      "type": "Boolean",
38955      "desc": "true to make the group behave like a carousel",
38956      "memberOf": ""
38957     },
38958     {
38959      "name": "bullets",
38960      "type": "Boolean",
38961      "desc": "show bullets for the panels",
38962      "memberOf": ""
38963     },
38964     {
38965      "name": "autoslide",
38966      "type": "Boolean",
38967      "desc": "auto slide .. default false",
38968      "memberOf": "",
38969      "optvals": [
38970       "true",
38971       "false"
38972      ]
38973     },
38974     {
38975      "name": "timer",
38976      "type": "Number",
38977      "desc": "auto slide timer .. default 0 millisecond",
38978      "memberOf": ""
38979     },
38980     {
38981      "name": "showarrow",
38982      "type": "Boolean",
38983      "desc": "show arrow default true",
38984      "memberOf": "",
38985      "optvals": [
38986       "true",
38987       "false"
38988      ]
38989     },
38990     {
38991      "name": "xs",
38992      "type": "Number",
38993      "desc": "colspan out of 12 for mobile-sized screens or 0 for hidden",
38994      "memberOf": "Roo.bootstrap.Column"
38995     },
38996     {
38997      "name": "sm",
38998      "type": "Number",
38999      "desc": "colspan out of 12 for tablet-sized screens or 0 for hidden",
39000      "memberOf": "Roo.bootstrap.Column"
39001     },
39002     {
39003      "name": "md",
39004      "type": "Number",
39005      "desc": "colspan out of 12 for computer-sized screens or 0 for hidden",
39006      "memberOf": "Roo.bootstrap.Column"
39007     },
39008     {
39009      "name": "lg",
39010      "type": "Number",
39011      "desc": "colspan out of 12 for large computer-sized screens or 0 for hidden",
39012      "memberOf": "Roo.bootstrap.Column"
39013     },
39014     {
39015      "name": "xsoff",
39016      "type": "Number",
39017      "desc": "colspan offset out of 12 for mobile-sized screens or 0 for hidden",
39018      "memberOf": "Roo.bootstrap.Column"
39019     },
39020     {
39021      "name": "smoff",
39022      "type": "Number",
39023      "desc": "colspan offset out of 12 for tablet-sized screens or 0 for hidden",
39024      "memberOf": "Roo.bootstrap.Column"
39025     },
39026     {
39027      "name": "mdoff",
39028      "type": "Number",
39029      "desc": "colspan offset out of 12 for computer-sized screens or 0 for hidden",
39030      "memberOf": "Roo.bootstrap.Column"
39031     },
39032     {
39033      "name": "lgoff",
39034      "type": "Number",
39035      "desc": "colspan offset out of 12 for large computer-sized screens or 0 for hidden",
39036      "memberOf": "Roo.bootstrap.Column"
39037     },
39038     {
39039      "name": "hidden",
39040      "type": "Boolean",
39041      "desc": "hide the element",
39042      "memberOf": "Roo.bootstrap.Column",
39043      "optvals": [
39044       "true",
39045       "false"
39046      ]
39047     },
39048     {
39049      "name": "alert",
39050      "type": "String",
39051      "desc": "type alert (changes background / border...)",
39052      "memberOf": "Roo.bootstrap.Column",
39053      "optvals": [
39054       "success",
39055       "info",
39056       "warning",
39057       "danger"
39058      ]
39059     },
39060     {
39061      "name": "fa",
39062      "type": "String",
39063      "desc": "font awesome icon",
39064      "memberOf": "Roo.bootstrap.Column",
39065      "optvals": [
39066       "ban",
39067       "check",
39068       "..."
39069      ]
39070     },
39071     {
39072      "name": "fasize",
39073      "type": "Number",
39074      "desc": "font awsome size",
39075      "memberOf": "Roo.bootstrap.Column",
39076      "optvals": [
39077       "1",
39078       "2",
39079       "...."
39080      ]
39081     },
39082     {
39083      "name": "icon",
39084      "type": "String",
39085      "desc": "glyphicon name",
39086      "memberOf": "Roo.bootstrap.Column",
39087      "optvals": [
39088       "info-sign",
39089       "check",
39090       "..."
39091      ]
39092     },
39093     {
39094      "name": "html",
39095      "type": "String",
39096      "desc": "content of column.",
39097      "memberOf": "Roo.bootstrap.Column"
39098     },
39099     {
39100      "name": "cls",
39101      "type": "String",
39102      "desc": "css class",
39103      "memberOf": "Roo.bootstrap.Component"
39104     },
39105     {
39106      "name": "style",
39107      "type": "String",
39108      "desc": "any extra css",
39109      "memberOf": "Roo.bootstrap.Component"
39110     },
39111     {
39112      "name": "xattr",
39113      "type": "Object",
39114      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
39115      "memberOf": "Roo.bootstrap.Component"
39116     },
39117     {
39118      "name": "can_build_overlaid",
39119      "type": "Boolean",
39120      "desc": "True if element can be rebuild from a HTML page",
39121      "memberOf": "Roo.bootstrap.Component"
39122     },
39123     {
39124      "name": "dataId",
39125      "type": "string",
39126      "desc": "cutomer id",
39127      "memberOf": "Roo.bootstrap.Component"
39128     },
39129     {
39130      "name": "name",
39131      "type": "string",
39132      "desc": "Specifies name attribute",
39133      "memberOf": "Roo.bootstrap.Component"
39134     },
39135     {
39136      "name": "tooltip",
39137      "type": "string",
39138      "desc": "Text for the tooltip",
39139      "memberOf": "Roo.bootstrap.Component"
39140     },
39141     {
39142      "name": "container_method",
39143      "type": "string",
39144      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
39145      "memberOf": "Roo.bootstrap.Component"
39146     },
39147     {
39148      "name": "disableClass",
39149      "type": "String",
39150      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
39151      "memberOf": "Roo.Component"
39152     },
39153     {
39154      "name": "allowDomMove",
39155      "type": "Boolean",
39156      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
39157      "memberOf": "Roo.Component"
39158     },
39159     {
39160      "name": "hideMode",
39161      "type": "String",
39162      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
39163      "memberOf": "Roo.Component",
39164      "optvals": [
39165       "display",
39166       "visibility"
39167      ]
39168     },
39169     {
39170      "name": "actionMode",
39171      "type": "String",
39172      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
39173      "memberOf": "Roo.Component"
39174     },
39175     {
39176      "name": "listeners",
39177      "type": "Object",
39178      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
39179      "memberOf": "Roo.util.Observable"
39180     }
39181    ],
39182    "events": [
39183     {
39184      "name": "beforedestroy",
39185      "sig": "function (_self)\n{\n\n}",
39186      "type": "function",
39187      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
39188     },
39189     {
39190      "name": "beforehide",
39191      "sig": "function (_self)\n{\n\n}",
39192      "type": "function",
39193      "desc": "Fires before the component is hidden. Return false to stop the hide."
39194     },
39195     {
39196      "name": "beforerender",
39197      "sig": "function (_self)\n{\n\n}",
39198      "type": "function",
39199      "desc": "Fires before the component is rendered. Return false to stop the render."
39200     },
39201     {
39202      "name": "beforeshow",
39203      "sig": "function (_self)\n{\n\n}",
39204      "type": "function",
39205      "desc": "Fires before the component is shown.  Return false to stop the show."
39206     },
39207     {
39208      "name": "childrenrendered",
39209      "sig": "function (_self)\n{\n\n}",
39210      "type": "function",
39211      "desc": "Fires when the children have been rendered.."
39212     },
39213     {
39214      "name": "destroy",
39215      "sig": "function (_self)\n{\n\n}",
39216      "type": "function",
39217      "desc": "Fires after the component is destroyed."
39218     },
39219     {
39220      "name": "disable",
39221      "sig": "function (_self)\n{\n\n}",
39222      "type": "function",
39223      "desc": "Fires after the component is disabled."
39224     },
39225     {
39226      "name": "enable",
39227      "sig": "function (_self)\n{\n\n}",
39228      "type": "function",
39229      "desc": "Fires after the component is enabled."
39230     },
39231     {
39232      "name": "hide",
39233      "sig": "function (_self)\n{\n\n}",
39234      "type": "function",
39235      "desc": "Fires after the component is hidden."
39236     },
39237     {
39238      "name": "render",
39239      "sig": "function (_self)\n{\n\n}",
39240      "type": "function",
39241      "desc": "Fires after the component is rendered."
39242     },
39243     {
39244      "name": "show",
39245      "sig": "function (_self)\n{\n\n}",
39246      "type": "function",
39247      "desc": "Fires after the component is shown."
39248     }
39249    ],
39250    "methods": [
39251     {
39252      "name": "addEvents",
39253      "sig": "(Object object)",
39254      "type": "function",
39255      "desc": "Used to define events on this Observable"
39256     },
39257     {
39258      "name": "addListener",
39259      "sig": "(String eventName, Function handler, Object scope, Object options)",
39260      "type": "function",
39261      "desc": "Appends an event handler to this component"
39262     },
39263     {
39264      "name": "capture",
39265      "sig": "(Observable o, Function fn, Object scope)",
39266      "type": "function",
39267      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
39268     },
39269     {
39270      "name": "destroy",
39271      "sig": "()",
39272      "type": "function",
39273      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
39274     },
39275     {
39276      "name": "disable",
39277      "sig": "()",
39278      "type": "function",
39279      "desc": "Disable this component."
39280     },
39281     {
39282      "name": "enable",
39283      "sig": "()",
39284      "type": "function",
39285      "desc": "Enable this component."
39286     },
39287     {
39288      "name": "fireEvent",
39289      "sig": "(String eventName, Object... args)",
39290      "type": "function",
39291      "desc": "Fires the specified event with the passed parameters (minus the event name)."
39292     },
39293     {
39294      "name": "focus",
39295      "sig": "(Boolean selectText)",
39296      "type": "function",
39297      "desc": "Try to focus this component."
39298     },
39299     {
39300      "name": "get",
39301      "sig": "(string the)",
39302      "type": "function",
39303      "desc": "fetch a Navigation Group based on the navigation ID\nif one does not exist , it will get created."
39304     },
39305     {
39306      "name": "getChildContainer",
39307      "sig": "()",
39308      "type": "function",
39309      "desc": "Fetch the element to add children to"
39310     },
39311     {
39312      "name": "getEl",
39313      "sig": "()",
39314      "type": "function",
39315      "desc": "Returns the underlying {@link Roo.Element}."
39316     },
39317     {
39318      "name": "getId",
39319      "sig": "()",
39320      "type": "function",
39321      "desc": "Returns the id of this component."
39322     },
39323     {
39324      "name": "hasListener",
39325      "sig": "(String eventName)",
39326      "type": "function",
39327      "desc": "Checks to see if this object has any listeners for a specified event"
39328     },
39329     {
39330      "name": "hide",
39331      "sig": "()",
39332      "type": "function",
39333      "desc": "Hide a component - adds 'hidden' class"
39334     },
39335     {
39336      "name": "initEvents",
39337      "sig": "()",
39338      "type": "function",
39339      "desc": "Initialize Events for the element"
39340     },
39341     {
39342      "name": "isVisible",
39343      "sig": "()",
39344      "type": "function",
39345      "desc": "Returns true if this component is visible."
39346     },
39347     {
39348      "name": "on",
39349      "sig": "(String eventName, Function handler, Object scope, Object options)",
39350      "type": "function",
39351      "desc": "Appends an event handler to this element (shorthand for addListener)"
39352     },
39353     {
39354      "name": "purgeListeners",
39355      "sig": "()",
39356      "type": "function",
39357      "desc": "Removes all listeners for this object"
39358     },
39359     {
39360      "name": "register",
39361      "sig": "(Roo.bootstrap.NavItem the)",
39362      "type": "function",
39363      "desc": "register a Navigation item"
39364     },
39365     {
39366      "name": "register",
39367      "sig": "(Roo.bootstrap.NavGroup the)",
39368      "type": "function",
39369      "desc": "register a Navigation Group"
39370     },
39371     {
39372      "name": "releaseCapture",
39373      "sig": "(Observable o)",
39374      "type": "function",
39375      "desc": "Removes <b>all</b> added captures from the Observable."
39376     },
39377     {
39378      "name": "removeListener",
39379      "sig": "(String eventName, Function handler, Object scope)",
39380      "type": "function",
39381      "desc": "Removes a listener"
39382     },
39383     {
39384      "name": "render",
39385      "sig": "(String/HTMLElement/Element container)",
39386      "type": "function",
39387      "desc": "If this is a lazy rendering component, render it to its container element."
39388     },
39389     {
39390      "name": "setDisabled",
39391      "sig": "(Boolean disabled)",
39392      "type": "function",
39393      "desc": "Convenience function for setting disabled/enabled by boolean."
39394     },
39395     {
39396      "name": "setVisible",
39397      "sig": "(Boolean visible)",
39398      "type": "function",
39399      "desc": "Convenience function to hide or show this component by boolean."
39400     },
39401     {
39402      "name": "show",
39403      "sig": "()",
39404      "type": "function",
39405      "desc": "Show a component - removes 'hidden' class"
39406     },
39407     {
39408      "name": "showPanel",
39409      "sig": "(Roo.bootstrap.TabPanel|number|string panel)",
39410      "type": "function",
39411      "desc": "show a specific panel"
39412     },
39413     {
39414      "name": "tooltipEl",
39415      "sig": "()",
39416      "type": "function",
39417      "desc": "Fetch the element to display the tooltip on."
39418     },
39419     {
39420      "name": "un",
39421      "sig": "(String eventName, Function handler, Object scope)",
39422      "type": "function",
39423      "desc": "Removes a listener (shorthand for removeListener)"
39424     }
39425    ]
39426   },
39427   "Roo.bootstrap.TabPanel": {
39428    "props": [
39429     {
39430      "name": "active",
39431      "type": "Boolean",
39432      "desc": "panel active",
39433      "memberOf": ""
39434     },
39435     {
39436      "name": "html",
39437      "type": "String",
39438      "desc": "panel content",
39439      "memberOf": ""
39440     },
39441     {
39442      "name": "tabId",
39443      "type": "String",
39444      "desc": "unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)",
39445      "memberOf": ""
39446     },
39447     {
39448      "name": "navId",
39449      "type": "String",
39450      "desc": "The Roo.bootstrap.NavGroup which triggers show hide ()",
39451      "memberOf": ""
39452     },
39453     {
39454      "name": "href",
39455      "type": "String",
39456      "desc": "click to link..",
39457      "memberOf": ""
39458     },
39459     {
39460      "name": "cls",
39461      "type": "String",
39462      "desc": "css class",
39463      "memberOf": "Roo.bootstrap.Component"
39464     },
39465     {
39466      "name": "style",
39467      "type": "String",
39468      "desc": "any extra css",
39469      "memberOf": "Roo.bootstrap.Component"
39470     },
39471     {
39472      "name": "xattr",
39473      "type": "Object",
39474      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
39475      "memberOf": "Roo.bootstrap.Component"
39476     },
39477     {
39478      "name": "can_build_overlaid",
39479      "type": "Boolean",
39480      "desc": "True if element can be rebuild from a HTML page",
39481      "memberOf": "Roo.bootstrap.Component"
39482     },
39483     {
39484      "name": "dataId",
39485      "type": "string",
39486      "desc": "cutomer id",
39487      "memberOf": "Roo.bootstrap.Component"
39488     },
39489     {
39490      "name": "name",
39491      "type": "string",
39492      "desc": "Specifies name attribute",
39493      "memberOf": "Roo.bootstrap.Component"
39494     },
39495     {
39496      "name": "tooltip",
39497      "type": "string",
39498      "desc": "Text for the tooltip",
39499      "memberOf": "Roo.bootstrap.Component"
39500     },
39501     {
39502      "name": "container_method",
39503      "type": "string",
39504      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
39505      "memberOf": "Roo.bootstrap.Component"
39506     },
39507     {
39508      "name": "disableClass",
39509      "type": "String",
39510      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
39511      "memberOf": "Roo.Component"
39512     },
39513     {
39514      "name": "allowDomMove",
39515      "type": "Boolean",
39516      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
39517      "memberOf": "Roo.Component"
39518     },
39519     {
39520      "name": "hideMode",
39521      "type": "String",
39522      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
39523      "memberOf": "Roo.Component",
39524      "optvals": [
39525       "display",
39526       "visibility"
39527      ]
39528     },
39529     {
39530      "name": "actionMode",
39531      "type": "String",
39532      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
39533      "memberOf": "Roo.Component"
39534     },
39535     {
39536      "name": "listeners",
39537      "type": "Object",
39538      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
39539      "memberOf": "Roo.util.Observable"
39540     }
39541    ],
39542    "events": [
39543     {
39544      "name": "beforedeactivate",
39545      "sig": "function (_self)\n{\n\n}",
39546      "type": "function",
39547      "desc": "Fires before a tab is de-activated - can be used to do validation on a form."
39548     },
39549     {
39550      "name": "beforedestroy",
39551      "sig": "function (_self)\n{\n\n}",
39552      "type": "function",
39553      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
39554     },
39555     {
39556      "name": "beforehide",
39557      "sig": "function (_self)\n{\n\n}",
39558      "type": "function",
39559      "desc": "Fires before the component is hidden. Return false to stop the hide."
39560     },
39561     {
39562      "name": "beforerender",
39563      "sig": "function (_self)\n{\n\n}",
39564      "type": "function",
39565      "desc": "Fires before the component is rendered. Return false to stop the render."
39566     },
39567     {
39568      "name": "beforeshow",
39569      "sig": "function (_self)\n{\n\n}",
39570      "type": "function",
39571      "desc": "Fires before the component is shown.  Return false to stop the show."
39572     },
39573     {
39574      "name": "changed",
39575      "sig": "function (_self, state)\n{\n\n}",
39576      "type": "function",
39577      "desc": "Fires when the active status changes"
39578     },
39579     {
39580      "name": "childrenrendered",
39581      "sig": "function (_self)\n{\n\n}",
39582      "type": "function",
39583      "desc": "Fires when the children have been rendered.."
39584     },
39585     {
39586      "name": "destroy",
39587      "sig": "function (_self)\n{\n\n}",
39588      "type": "function",
39589      "desc": "Fires after the component is destroyed."
39590     },
39591     {
39592      "name": "disable",
39593      "sig": "function (_self)\n{\n\n}",
39594      "type": "function",
39595      "desc": "Fires after the component is disabled."
39596     },
39597     {
39598      "name": "enable",
39599      "sig": "function (_self)\n{\n\n}",
39600      "type": "function",
39601      "desc": "Fires after the component is enabled."
39602     },
39603     {
39604      "name": "hide",
39605      "sig": "function (_self)\n{\n\n}",
39606      "type": "function",
39607      "desc": "Fires after the component is hidden."
39608     },
39609     {
39610      "name": "render",
39611      "sig": "function (_self)\n{\n\n}",
39612      "type": "function",
39613      "desc": "Fires after the component is rendered."
39614     },
39615     {
39616      "name": "show",
39617      "sig": "function (_self)\n{\n\n}",
39618      "type": "function",
39619      "desc": "Fires after the component is shown."
39620     }
39621    ],
39622    "methods": [
39623     {
39624      "name": "addEvents",
39625      "sig": "(Object object)",
39626      "type": "function",
39627      "desc": "Used to define events on this Observable"
39628     },
39629     {
39630      "name": "addListener",
39631      "sig": "(String eventName, Function handler, Object scope, Object options)",
39632      "type": "function",
39633      "desc": "Appends an event handler to this component"
39634     },
39635     {
39636      "name": "capture",
39637      "sig": "(Observable o, Function fn, Object scope)",
39638      "type": "function",
39639      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
39640     },
39641     {
39642      "name": "destroy",
39643      "sig": "()",
39644      "type": "function",
39645      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
39646     },
39647     {
39648      "name": "disable",
39649      "sig": "()",
39650      "type": "function",
39651      "desc": "Disable this component."
39652     },
39653     {
39654      "name": "enable",
39655      "sig": "()",
39656      "type": "function",
39657      "desc": "Enable this component."
39658     },
39659     {
39660      "name": "fireEvent",
39661      "sig": "(String eventName, Object... args)",
39662      "type": "function",
39663      "desc": "Fires the specified event with the passed parameters (minus the event name)."
39664     },
39665     {
39666      "name": "focus",
39667      "sig": "(Boolean selectText)",
39668      "type": "function",
39669      "desc": "Try to focus this component."
39670     },
39671     {
39672      "name": "getChildContainer",
39673      "sig": "()",
39674      "type": "function",
39675      "desc": "Fetch the element to add children to"
39676     },
39677     {
39678      "name": "getEl",
39679      "sig": "()",
39680      "type": "function",
39681      "desc": "Returns the underlying {@link Roo.Element}."
39682     },
39683     {
39684      "name": "getId",
39685      "sig": "()",
39686      "type": "function",
39687      "desc": "Returns the id of this component."
39688     },
39689     {
39690      "name": "hasListener",
39691      "sig": "(String eventName)",
39692      "type": "function",
39693      "desc": "Checks to see if this object has any listeners for a specified event"
39694     },
39695     {
39696      "name": "hide",
39697      "sig": "()",
39698      "type": "function",
39699      "desc": "Hide a component - adds 'hidden' class"
39700     },
39701     {
39702      "name": "initEvents",
39703      "sig": "()",
39704      "type": "function",
39705      "desc": "Initialize Events for the element"
39706     },
39707     {
39708      "name": "isVisible",
39709      "sig": "()",
39710      "type": "function",
39711      "desc": "Returns true if this component is visible."
39712     },
39713     {
39714      "name": "on",
39715      "sig": "(String eventName, Function handler, Object scope, Object options)",
39716      "type": "function",
39717      "desc": "Appends an event handler to this element (shorthand for addListener)"
39718     },
39719     {
39720      "name": "purgeListeners",
39721      "sig": "()",
39722      "type": "function",
39723      "desc": "Removes all listeners for this object"
39724     },
39725     {
39726      "name": "releaseCapture",
39727      "sig": "(Observable o)",
39728      "type": "function",
39729      "desc": "Removes <b>all</b> added captures from the Observable."
39730     },
39731     {
39732      "name": "removeListener",
39733      "sig": "(String eventName, Function handler, Object scope)",
39734      "type": "function",
39735      "desc": "Removes a listener"
39736     },
39737     {
39738      "name": "render",
39739      "sig": "(String/HTMLElement/Element container)",
39740      "type": "function",
39741      "desc": "If this is a lazy rendering component, render it to its container element."
39742     },
39743     {
39744      "name": "setDisabled",
39745      "sig": "(Boolean disabled)",
39746      "type": "function",
39747      "desc": "Convenience function for setting disabled/enabled by boolean."
39748     },
39749     {
39750      "name": "setVisible",
39751      "sig": "(Boolean visible)",
39752      "type": "function",
39753      "desc": "Convenience function to hide or show this component by boolean."
39754     },
39755     {
39756      "name": "show",
39757      "sig": "()",
39758      "type": "function",
39759      "desc": "Show a component - removes 'hidden' class"
39760     },
39761     {
39762      "name": "tooltipEl",
39763      "sig": "()",
39764      "type": "function",
39765      "desc": "Fetch the element to display the tooltip on."
39766     },
39767     {
39768      "name": "un",
39769      "sig": "(String eventName, Function handler, Object scope)",
39770      "type": "function",
39771      "desc": "Removes a listener (shorthand for removeListener)"
39772     }
39773    ]
39774   },
39775   "Roo.bootstrap.Table": {
39776    "props": [
39777     {
39778      "name": "cls",
39779      "type": "String",
39780      "desc": "table class",
39781      "memberOf": ""
39782     },
39783     {
39784      "name": "align",
39785      "type": "String",
39786      "desc": "Specifies the alignment of a table according to surrounding text",
39787      "memberOf": "",
39788      "optvals": [
39789       "left",
39790       "center",
39791       "right"
39792      ]
39793     },
39794     {
39795      "name": "bgcolor",
39796      "type": "String",
39797      "desc": "Specifies the background color for a table",
39798      "memberOf": ""
39799     },
39800     {
39801      "name": "border",
39802      "type": "Number",
39803      "desc": "Specifies whether the table cells should have borders or not",
39804      "memberOf": ""
39805     },
39806     {
39807      "name": "cellpadding",
39808      "type": "Number",
39809      "desc": "Specifies the space between the cell wall and the cell content",
39810      "memberOf": ""
39811     },
39812     {
39813      "name": "cellspacing",
39814      "type": "Number",
39815      "desc": "Specifies the space between cells",
39816      "memberOf": ""
39817     },
39818     {
39819      "name": "frame",
39820      "type": "String",
39821      "desc": "Specifies which parts of the outside borders that should be visible",
39822      "memberOf": ""
39823     },
39824     {
39825      "name": "rules",
39826      "type": "String",
39827      "desc": "Specifies which parts of the inside borders that should be visible",
39828      "memberOf": ""
39829     },
39830     {
39831      "name": "sortable",
39832      "type": "String",
39833      "desc": "Specifies that the table should be sortable",
39834      "memberOf": ""
39835     },
39836     {
39837      "name": "summary",
39838      "type": "String",
39839      "desc": "Specifies a summary of the content of a table",
39840      "memberOf": ""
39841     },
39842     {
39843      "name": "width",
39844      "type": "Number",
39845      "desc": "Specifies the width of a table",
39846      "memberOf": ""
39847     },
39848     {
39849      "name": "layout",
39850      "type": "String",
39851      "desc": "table layout (auto | fixed | initial | inherit)",
39852      "memberOf": ""
39853     },
39854     {
39855      "name": "striped",
39856      "type": "boolean",
39857      "desc": "Should the rows be alternative striped",
39858      "memberOf": ""
39859     },
39860     {
39861      "name": "bordered",
39862      "type": "boolean",
39863      "desc": "Add borders to the table",
39864      "memberOf": ""
39865     },
39866     {
39867      "name": "hover",
39868      "type": "boolean",
39869      "desc": "Add hover highlighting",
39870      "memberOf": ""
39871     },
39872     {
39873      "name": "condensed",
39874      "type": "boolean",
39875      "desc": "Format condensed",
39876      "memberOf": ""
39877     },
39878     {
39879      "name": "responsive",
39880      "type": "boolean",
39881      "desc": "Format condensed",
39882      "memberOf": ""
39883     },
39884     {
39885      "name": "loadMask",
39886      "type": "Boolean",
39887      "desc": "default false",
39888      "memberOf": "",
39889      "optvals": [
39890       "true",
39891       "false"
39892      ]
39893     },
39894     {
39895      "name": "footerShow",
39896      "type": "Boolean",
39897      "desc": "generate tfoot, default true",
39898      "memberOf": "",
39899      "optvals": [
39900       "true",
39901       "false"
39902      ]
39903     },
39904     {
39905      "name": "headerShow",
39906      "type": "Boolean",
39907      "desc": "generate thead, default true",
39908      "memberOf": "",
39909      "optvals": [
39910       "true",
39911       "false"
39912      ]
39913     },
39914     {
39915      "name": "rowSelection",
39916      "type": "Boolean",
39917      "desc": "default false",
39918      "memberOf": "",
39919      "optvals": [
39920       "true",
39921       "false"
39922      ]
39923     },
39924     {
39925      "name": "cellSelection",
39926      "type": "Boolean",
39927      "desc": "default false",
39928      "memberOf": "",
39929      "optvals": [
39930       "true",
39931       "false"
39932      ]
39933     },
39934     {
39935      "name": "scrollBody",
39936      "type": "Boolean",
39937      "desc": "default false - body scrolled / fixed header",
39938      "memberOf": "",
39939      "optvals": [
39940       "true",
39941       "false"
39942      ]
39943     },
39944     {
39945      "name": "footer",
39946      "type": "Roo.bootstrap.PagingToolbar",
39947      "desc": "a paging toolbar",
39948      "memberOf": ""
39949     },
39950     {
39951      "name": "style",
39952      "type": "String",
39953      "desc": "any extra css",
39954      "memberOf": "Roo.bootstrap.Component"
39955     },
39956     {
39957      "name": "xattr",
39958      "type": "Object",
39959      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
39960      "memberOf": "Roo.bootstrap.Component"
39961     },
39962     {
39963      "name": "can_build_overlaid",
39964      "type": "Boolean",
39965      "desc": "True if element can be rebuild from a HTML page",
39966      "memberOf": "Roo.bootstrap.Component"
39967     },
39968     {
39969      "name": "dataId",
39970      "type": "string",
39971      "desc": "cutomer id",
39972      "memberOf": "Roo.bootstrap.Component"
39973     },
39974     {
39975      "name": "name",
39976      "type": "string",
39977      "desc": "Specifies name attribute",
39978      "memberOf": "Roo.bootstrap.Component"
39979     },
39980     {
39981      "name": "tooltip",
39982      "type": "string",
39983      "desc": "Text for the tooltip",
39984      "memberOf": "Roo.bootstrap.Component"
39985     },
39986     {
39987      "name": "container_method",
39988      "type": "string",
39989      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
39990      "memberOf": "Roo.bootstrap.Component"
39991     },
39992     {
39993      "name": "disableClass",
39994      "type": "String",
39995      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
39996      "memberOf": "Roo.Component"
39997     },
39998     {
39999      "name": "allowDomMove",
40000      "type": "Boolean",
40001      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
40002      "memberOf": "Roo.Component"
40003     },
40004     {
40005      "name": "hideMode",
40006      "type": "String",
40007      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
40008      "memberOf": "Roo.Component",
40009      "optvals": [
40010       "display",
40011       "visibility"
40012      ]
40013     },
40014     {
40015      "name": "actionMode",
40016      "type": "String",
40017      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
40018      "memberOf": "Roo.Component"
40019     },
40020     {
40021      "name": "listeners",
40022      "type": "Object",
40023      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
40024      "memberOf": "Roo.util.Observable"
40025     }
40026    ],
40027    "events": [
40028     {
40029      "name": "beforedestroy",
40030      "sig": "function (_self)\n{\n\n}",
40031      "type": "function",
40032      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
40033     },
40034     {
40035      "name": "beforehide",
40036      "sig": "function (_self)\n{\n\n}",
40037      "type": "function",
40038      "desc": "Fires before the component is hidden. Return false to stop the hide."
40039     },
40040     {
40041      "name": "beforerender",
40042      "sig": "function (_self)\n{\n\n}",
40043      "type": "function",
40044      "desc": "Fires before the component is rendered. Return false to stop the render."
40045     },
40046     {
40047      "name": "beforeshow",
40048      "sig": "function (_self)\n{\n\n}",
40049      "type": "function",
40050      "desc": "Fires before the component is shown.  Return false to stop the show."
40051     },
40052     {
40053      "name": "cellclick",
40054      "sig": "function (_self, el, rowIndex, columnIndex, e)\n{\n\n}",
40055      "type": "function",
40056      "desc": "Fires when a cell is clicked"
40057     },
40058     {
40059      "name": "cellcontextmenu",
40060      "sig": "function (_self, rowIndex, cellIndex, e)\n{\n\n}",
40061      "type": "function",
40062      "desc": "Fires when a cell is right clicked"
40063     },
40064     {
40065      "name": "celldblclick",
40066      "sig": "function (_self, el, rowIndex, columnIndex, e)\n{\n\n}",
40067      "type": "function",
40068      "desc": "Fires when a cell is double clicked"
40069     },
40070     {
40071      "name": "childrenrendered",
40072      "sig": "function (_self)\n{\n\n}",
40073      "type": "function",
40074      "desc": "Fires when the children have been rendered.."
40075     },
40076     {
40077      "name": "contextmenu",
40078      "sig": "function (e)\n{\n\n}",
40079      "type": "function",
40080      "desc": "The raw contextmenu event for the entire grid."
40081     },
40082     {
40083      "name": "destroy",
40084      "sig": "function (_self)\n{\n\n}",
40085      "type": "function",
40086      "desc": "Fires after the component is destroyed."
40087     },
40088     {
40089      "name": "disable",
40090      "sig": "function (_self)\n{\n\n}",
40091      "type": "function",
40092      "desc": "Fires after the component is disabled."
40093     },
40094     {
40095      "name": "enable",
40096      "sig": "function (_self)\n{\n\n}",
40097      "type": "function",
40098      "desc": "Fires after the component is enabled."
40099     },
40100     {
40101      "name": "headercontextmenu",
40102      "sig": "function (_self, columnIndex, e)\n{\n\n}",
40103      "type": "function",
40104      "desc": "Fires when a header is right clicked"
40105     },
40106     {
40107      "name": "hide",
40108      "sig": "function (_self)\n{\n\n}",
40109      "type": "function",
40110      "desc": "Fires after the component is hidden."
40111     },
40112     {
40113      "name": "mouseout",
40114      "sig": "function (_self, el, rowIndex, columnIndex, e)\n{\n\n}",
40115      "type": "function",
40116      "desc": "Fires when a mouseout occur"
40117     },
40118     {
40119      "name": "mouseover",
40120      "sig": "function (_self, el, rowIndex, columnIndex, e)\n{\n\n}",
40121      "type": "function",
40122      "desc": "Fires when a mouseover occur"
40123     },
40124     {
40125      "name": "render",
40126      "sig": "function (_self)\n{\n\n}",
40127      "type": "function",
40128      "desc": "Fires after the component is rendered."
40129     },
40130     {
40131      "name": "rowclass",
40132      "sig": "function (_self, rowcfg)\n{\n\n}",
40133      "type": "function",
40134      "desc": "Fires when a row is rendered, so you can change add a style to it."
40135     },
40136     {
40137      "name": "rowclick",
40138      "sig": "function (_self, el, rowIndex, e)\n{\n\n}",
40139      "type": "function",
40140      "desc": "Fires when a row is clicked"
40141     },
40142     {
40143      "name": "rowcontextmenu",
40144      "sig": "function (_self, rowIndex, e)\n{\n\n}",
40145      "type": "function",
40146      "desc": "Fires when a row is right clicked"
40147     },
40148     {
40149      "name": "rowdblclick",
40150      "sig": "function (_self, el, rowIndex, e)\n{\n\n}",
40151      "type": "function",
40152      "desc": "Fires when a row is double clicked"
40153     },
40154     {
40155      "name": "rowsrendered",
40156      "sig": "function (_self)\n{\n\n}",
40157      "type": "function",
40158      "desc": "Fires when all the  rows have been rendered"
40159     },
40160     {
40161      "name": "show",
40162      "sig": "function (_self)\n{\n\n}",
40163      "type": "function",
40164      "desc": "Fires after the component is shown."
40165     }
40166    ],
40167    "methods": [
40168     {
40169      "name": "addEvents",
40170      "sig": "(Object object)",
40171      "type": "function",
40172      "desc": "Used to define events on this Observable"
40173     },
40174     {
40175      "name": "addListener",
40176      "sig": "(String eventName, Function handler, Object scope, Object options)",
40177      "type": "function",
40178      "desc": "Appends an event handler to this component"
40179     },
40180     {
40181      "name": "autoSize",
40182      "sig": "()",
40183      "type": "function",
40184      "desc": "Forces a resize - used by panel.Grid"
40185     },
40186     {
40187      "name": "capture",
40188      "sig": "(Observable o, Function fn, Object scope)",
40189      "type": "function",
40190      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
40191     },
40192     {
40193      "name": "clear",
40194      "sig": "()",
40195      "type": "function",
40196      "desc": "Remove all rows"
40197     },
40198     {
40199      "name": "destroy",
40200      "sig": "()",
40201      "type": "function",
40202      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
40203     },
40204     {
40205      "name": "disable",
40206      "sig": "()",
40207      "type": "function",
40208      "desc": "Disable this component."
40209     },
40210     {
40211      "name": "enable",
40212      "sig": "()",
40213      "type": "function",
40214      "desc": "Enable this component."
40215     },
40216     {
40217      "name": "fireEvent",
40218      "sig": "(String eventName, Object... args)",
40219      "type": "function",
40220      "desc": "Fires the specified event with the passed parameters (minus the event name)."
40221     },
40222     {
40223      "name": "focus",
40224      "sig": "(Boolean selectText)",
40225      "type": "function",
40226      "desc": "Try to focus this component."
40227     },
40228     {
40229      "name": "getChildContainer",
40230      "sig": "()",
40231      "type": "function",
40232      "desc": "Fetch the element to add children to"
40233     },
40234     {
40235      "name": "getEl",
40236      "sig": "()",
40237      "type": "function",
40238      "desc": "Returns the underlying {@link Roo.Element}."
40239     },
40240     {
40241      "name": "getGridEl",
40242      "sig": "()",
40243      "type": "function",
40244      "desc": "Returns the grid's underlying element = used by panel.Grid"
40245     },
40246     {
40247      "name": "getId",
40248      "sig": "()",
40249      "type": "function",
40250      "desc": "Returns the id of this component."
40251     },
40252     {
40253      "name": "hasListener",
40254      "sig": "(String eventName)",
40255      "type": "function",
40256      "desc": "Checks to see if this object has any listeners for a specified event"
40257     },
40258     {
40259      "name": "hide",
40260      "sig": "()",
40261      "type": "function",
40262      "desc": "Hide a component - adds 'hidden' class"
40263     },
40264     {
40265      "name": "initEvents",
40266      "sig": "()",
40267      "type": "function",
40268      "desc": "Initialize Events for the element"
40269     },
40270     {
40271      "name": "isVisible",
40272      "sig": "()",
40273      "type": "function",
40274      "desc": "Returns true if this component is visible."
40275     },
40276     {
40277      "name": "on",
40278      "sig": "(String eventName, Function handler, Object scope, Object options)",
40279      "type": "function",
40280      "desc": "Appends an event handler to this element (shorthand for addListener)"
40281     },
40282     {
40283      "name": "purgeListeners",
40284      "sig": "()",
40285      "type": "function",
40286      "desc": "Removes all listeners for this object"
40287     },
40288     {
40289      "name": "releaseCapture",
40290      "sig": "(Observable o)",
40291      "type": "function",
40292      "desc": "Removes <b>all</b> added captures from the Observable."
40293     },
40294     {
40295      "name": "removeListener",
40296      "sig": "(String eventName, Function handler, Object scope)",
40297      "type": "function",
40298      "desc": "Removes a listener"
40299     },
40300     {
40301      "name": "render",
40302      "sig": "(String/HTMLElement/Element container)",
40303      "type": "function",
40304      "desc": "If this is a lazy rendering component, render it to its container element."
40305     },
40306     {
40307      "name": "setDisabled",
40308      "sig": "(Boolean disabled)",
40309      "type": "function",
40310      "desc": "Convenience function for setting disabled/enabled by boolean."
40311     },
40312     {
40313      "name": "setRowVisibility",
40314      "sig": "(Number rowIndex, Boolean state)",
40315      "type": "function",
40316      "desc": "Show or hide a row."
40317     },
40318     {
40319      "name": "setVisible",
40320      "sig": "(Boolean visible)",
40321      "type": "function",
40322      "desc": "Convenience function to hide or show this component by boolean."
40323     },
40324     {
40325      "name": "show",
40326      "sig": "()",
40327      "type": "function",
40328      "desc": "Show a component - removes 'hidden' class"
40329     },
40330     {
40331      "name": "tooltipEl",
40332      "sig": "()",
40333      "type": "function",
40334      "desc": "Fetch the element to display the tooltip on."
40335     },
40336     {
40337      "name": "un",
40338      "sig": "(String eventName, Function handler, Object scope)",
40339      "type": "function",
40340      "desc": "Removes a listener (shorthand for removeListener)"
40341     }
40342    ]
40343   },
40344   "Roo.bootstrap.Table.AbstractSelectionModel": {
40345    "props": [
40346     {
40347      "name": "listeners",
40348      "type": "Object",
40349      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
40350      "memberOf": "Roo.util.Observable"
40351     }
40352    ],
40353    "events": [],
40354    "methods": [
40355     {
40356      "name": "addEvents",
40357      "sig": "(Object object)",
40358      "type": "function",
40359      "desc": "Used to define events on this Observable"
40360     },
40361     {
40362      "name": "addListener",
40363      "sig": "(String eventName, Function handler, Object scope, Object options)",
40364      "type": "function",
40365      "desc": "Appends an event handler to this component"
40366     },
40367     {
40368      "name": "capture",
40369      "sig": "(Observable o, Function fn, Object scope)",
40370      "type": "function",
40371      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
40372     },
40373     {
40374      "name": "fireEvent",
40375      "sig": "(String eventName, Object... args)",
40376      "type": "function",
40377      "desc": "Fires the specified event with the passed parameters (minus the event name)."
40378     },
40379     {
40380      "name": "hasListener",
40381      "sig": "(String eventName)",
40382      "type": "function",
40383      "desc": "Checks to see if this object has any listeners for a specified event"
40384     },
40385     {
40386      "name": "isLocked",
40387      "sig": "()",
40388      "type": "function",
40389      "desc": "Returns true if the selections are locked."
40390     },
40391     {
40392      "name": "lock",
40393      "sig": "()",
40394      "type": "function",
40395      "desc": "Locks the selections."
40396     },
40397     {
40398      "name": "on",
40399      "sig": "(String eventName, Function handler, Object scope, Object options)",
40400      "type": "function",
40401      "desc": "Appends an event handler to this element (shorthand for addListener)"
40402     },
40403     {
40404      "name": "purgeListeners",
40405      "sig": "()",
40406      "type": "function",
40407      "desc": "Removes all listeners for this object"
40408     },
40409     {
40410      "name": "releaseCapture",
40411      "sig": "(Observable o)",
40412      "type": "function",
40413      "desc": "Removes <b>all</b> added captures from the Observable."
40414     },
40415     {
40416      "name": "removeListener",
40417      "sig": "(String eventName, Function handler, Object scope)",
40418      "type": "function",
40419      "desc": "Removes a listener"
40420     },
40421     {
40422      "name": "un",
40423      "sig": "(String eventName, Function handler, Object scope)",
40424      "type": "function",
40425      "desc": "Removes a listener (shorthand for removeListener)"
40426     },
40427     {
40428      "name": "unlock",
40429      "sig": "()",
40430      "type": "function",
40431      "desc": "Unlocks the selections."
40432     }
40433    ]
40434   },
40435   "Roo.bootstrap.Table.RowSelectionModel": {
40436    "props": [
40437     {
40438      "name": "singleSelect",
40439      "type": "Boolean",
40440      "desc": "True to allow selection of only one row at a time (defaults to false)",
40441      "memberOf": ""
40442     },
40443     {
40444      "name": "listeners",
40445      "type": "Object",
40446      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
40447      "memberOf": "Roo.util.Observable"
40448     }
40449    ],
40450    "events": [
40451     {
40452      "name": "afterselectionchange",
40453      "sig": "function (_self)\n{\n\n}",
40454      "type": "function",
40455      "desc": "Fires after the selection changes (eg. by key press or clicking)"
40456     },
40457     {
40458      "name": "beforerowselect",
40459      "sig": "function (_self, rowIndex, keepExisting)\n{\n\n}",
40460      "type": "function",
40461      "desc": "Fires when a row is selected being selected, return false to cancel."
40462     },
40463     {
40464      "name": "rowdeselect",
40465      "sig": "function (_self, rowIndex)\n{\n\n}",
40466      "type": "function",
40467      "desc": "Fires when a row is deselected."
40468     },
40469     {
40470      "name": "rowselect",
40471      "sig": "function (_self, rowIndex, r)\n{\n\n}",
40472      "type": "function",
40473      "desc": "Fires when a row is selected."
40474     },
40475     {
40476      "name": "selectionchange",
40477      "sig": "function (_self)\n{\n\n}",
40478      "type": "function",
40479      "desc": "Fires when the selection changes"
40480     }
40481    ],
40482    "methods": [
40483     {
40484      "name": "addEvents",
40485      "sig": "(Object object)",
40486      "type": "function",
40487      "desc": "Used to define events on this Observable"
40488     },
40489     {
40490      "name": "addListener",
40491      "sig": "(String eventName, Function handler, Object scope, Object options)",
40492      "type": "function",
40493      "desc": "Appends an event handler to this component"
40494     },
40495     {
40496      "name": "capture",
40497      "sig": "(Observable o, Function fn, Object scope)",
40498      "type": "function",
40499      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
40500     },
40501     {
40502      "name": "clearSelections",
40503      "sig": "()",
40504      "type": "function",
40505      "desc": "Clears all selections."
40506     },
40507     {
40508      "name": "deselectRange",
40509      "sig": "(Number startRow, Number endRow)",
40510      "type": "function",
40511      "desc": "Deselects a range of rows. All rows in between startRow and endRow are also deselected."
40512     },
40513     {
40514      "name": "deselectRow",
40515      "sig": "(Number row)",
40516      "type": "function",
40517      "desc": "Deselects a row."
40518     },
40519     {
40520      "name": "fireEvent",
40521      "sig": "(String eventName, Object... args)",
40522      "type": "function",
40523      "desc": "Fires the specified event with the passed parameters (minus the event name)."
40524     },
40525     {
40526      "name": "getCount",
40527      "sig": "()",
40528      "type": "function",
40529      "desc": "Gets the number of selected rows."
40530     },
40531     {
40532      "name": "getSelected",
40533      "sig": "()",
40534      "type": "function",
40535      "desc": "Returns the first selected record."
40536     },
40537     {
40538      "name": "getSelections",
40539      "sig": "()",
40540      "type": "function",
40541      "desc": "Returns the selected records"
40542     },
40543     {
40544      "name": "hasListener",
40545      "sig": "(String eventName)",
40546      "type": "function",
40547      "desc": "Checks to see if this object has any listeners for a specified event"
40548     },
40549     {
40550      "name": "hasSelection",
40551      "sig": "()",
40552      "type": "function",
40553      "desc": "Returns True if there is a selection."
40554     },
40555     {
40556      "name": "isIdSelected",
40557      "sig": "(String id)",
40558      "type": "function",
40559      "desc": "Returns True if the specified record id is selected."
40560     },
40561     {
40562      "name": "isLocked",
40563      "sig": "()",
40564      "type": "function",
40565      "desc": "Returns true if the selections are locked."
40566     },
40567     {
40568      "name": "isSelected",
40569      "sig": "(Number/Record record)",
40570      "type": "function",
40571      "desc": "Returns True if the specified row is selected."
40572     },
40573     {
40574      "name": "lock",
40575      "sig": "()",
40576      "type": "function",
40577      "desc": "Locks the selections."
40578     },
40579     {
40580      "name": "on",
40581      "sig": "(String eventName, Function handler, Object scope, Object options)",
40582      "type": "function",
40583      "desc": "Appends an event handler to this element (shorthand for addListener)"
40584     },
40585     {
40586      "name": "purgeListeners",
40587      "sig": "()",
40588      "type": "function",
40589      "desc": "Removes all listeners for this object"
40590     },
40591     {
40592      "name": "releaseCapture",
40593      "sig": "(Observable o)",
40594      "type": "function",
40595      "desc": "Removes <b>all</b> added captures from the Observable."
40596     },
40597     {
40598      "name": "removeListener",
40599      "sig": "(String eventName, Function handler, Object scope)",
40600      "type": "function",
40601      "desc": "Removes a listener"
40602     },
40603     {
40604      "name": "selectAll",
40605      "sig": "()",
40606      "type": "function",
40607      "desc": "Selects all rows."
40608     },
40609     {
40610      "name": "selectFirstRow",
40611      "sig": "()",
40612      "type": "function",
40613      "desc": "Selects the first row in the grid."
40614     },
40615     {
40616      "name": "selectLastRow",
40617      "sig": "(Boolean keepExisting)",
40618      "type": "function",
40619      "desc": "Select the last row."
40620     },
40621     {
40622      "name": "selectNext",
40623      "sig": "(Boolean keepExisting)",
40624      "type": "function",
40625      "desc": "Selects the row immediately following the last selected row."
40626     },
40627     {
40628      "name": "selectPrevious",
40629      "sig": "(Boolean keepExisting)",
40630      "type": "function",
40631      "desc": "Selects the row that precedes the last selected row."
40632     },
40633     {
40634      "name": "selectRange",
40635      "sig": "(Number startRow, Number endRow, Boolean keepExisting)",
40636      "type": "function",
40637      "desc": "Selects a range of rows. All rows in between startRow and endRow are also selected."
40638     },
40639     {
40640      "name": "selectRecords",
40641      "sig": "(Array records, Boolean keepExisting)",
40642      "type": "function",
40643      "desc": "Select records."
40644     },
40645     {
40646      "name": "selectRow",
40647      "sig": "(Number row, Boolean keepExisting)",
40648      "type": "function",
40649      "desc": "Selects a row."
40650     },
40651     {
40652      "name": "selectRows",
40653      "sig": "(Array rows, Boolean keepExisting)",
40654      "type": "function",
40655      "desc": "Selects multiple rows."
40656     },
40657     {
40658      "name": "un",
40659      "sig": "(String eventName, Function handler, Object scope)",
40660      "type": "function",
40661      "desc": "Removes a listener (shorthand for removeListener)"
40662     },
40663     {
40664      "name": "unlock",
40665      "sig": "()",
40666      "type": "function",
40667      "desc": "Unlocks the selections."
40668     }
40669    ]
40670   },
40671   "Roo.bootstrap.TableBody": {
40672    "props": [
40673     {
40674      "name": "cls",
40675      "type": "String",
40676      "desc": "element class",
40677      "memberOf": ""
40678     },
40679     {
40680      "name": "tag",
40681      "type": "String",
40682      "desc": "element tag (thead|tbody|tfoot) default tbody",
40683      "memberOf": ""
40684     },
40685     {
40686      "name": "align",
40687      "type": "String",
40688      "desc": "Aligns the content inside the element",
40689      "memberOf": ""
40690     },
40691     {
40692      "name": "charoff",
40693      "type": "Number",
40694      "desc": "Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute",
40695      "memberOf": ""
40696     },
40697     {
40698      "name": "valign",
40699      "type": "String",
40700      "desc": "Vertical aligns the content inside the <tbody> element",
40701      "memberOf": ""
40702     },
40703     {
40704      "name": "style",
40705      "type": "String",
40706      "desc": "any extra css",
40707      "memberOf": "Roo.bootstrap.Component"
40708     },
40709     {
40710      "name": "xattr",
40711      "type": "Object",
40712      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
40713      "memberOf": "Roo.bootstrap.Component"
40714     },
40715     {
40716      "name": "can_build_overlaid",
40717      "type": "Boolean",
40718      "desc": "True if element can be rebuild from a HTML page",
40719      "memberOf": "Roo.bootstrap.Component"
40720     },
40721     {
40722      "name": "dataId",
40723      "type": "string",
40724      "desc": "cutomer id",
40725      "memberOf": "Roo.bootstrap.Component"
40726     },
40727     {
40728      "name": "name",
40729      "type": "string",
40730      "desc": "Specifies name attribute",
40731      "memberOf": "Roo.bootstrap.Component"
40732     },
40733     {
40734      "name": "tooltip",
40735      "type": "string",
40736      "desc": "Text for the tooltip",
40737      "memberOf": "Roo.bootstrap.Component"
40738     },
40739     {
40740      "name": "container_method",
40741      "type": "string",
40742      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
40743      "memberOf": "Roo.bootstrap.Component"
40744     },
40745     {
40746      "name": "disableClass",
40747      "type": "String",
40748      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
40749      "memberOf": "Roo.Component"
40750     },
40751     {
40752      "name": "allowDomMove",
40753      "type": "Boolean",
40754      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
40755      "memberOf": "Roo.Component"
40756     },
40757     {
40758      "name": "hideMode",
40759      "type": "String",
40760      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
40761      "memberOf": "Roo.Component",
40762      "optvals": [
40763       "display",
40764       "visibility"
40765      ]
40766     },
40767     {
40768      "name": "actionMode",
40769      "type": "String",
40770      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
40771      "memberOf": "Roo.Component"
40772     },
40773     {
40774      "name": "listeners",
40775      "type": "Object",
40776      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
40777      "memberOf": "Roo.util.Observable"
40778     }
40779    ],
40780    "events": [
40781     {
40782      "name": "beforedestroy",
40783      "sig": "function (_self)\n{\n\n}",
40784      "type": "function",
40785      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
40786     },
40787     {
40788      "name": "beforehide",
40789      "sig": "function (_self)\n{\n\n}",
40790      "type": "function",
40791      "desc": "Fires before the component is hidden. Return false to stop the hide."
40792     },
40793     {
40794      "name": "beforerender",
40795      "sig": "function (_self)\n{\n\n}",
40796      "type": "function",
40797      "desc": "Fires before the component is rendered. Return false to stop the render."
40798     },
40799     {
40800      "name": "beforeshow",
40801      "sig": "function (_self)\n{\n\n}",
40802      "type": "function",
40803      "desc": "Fires before the component is shown.  Return false to stop the show."
40804     },
40805     {
40806      "name": "childrenrendered",
40807      "sig": "function (_self)\n{\n\n}",
40808      "type": "function",
40809      "desc": "Fires when the children have been rendered.."
40810     },
40811     {
40812      "name": "destroy",
40813      "sig": "function (_self)\n{\n\n}",
40814      "type": "function",
40815      "desc": "Fires after the component is destroyed."
40816     },
40817     {
40818      "name": "disable",
40819      "sig": "function (_self)\n{\n\n}",
40820      "type": "function",
40821      "desc": "Fires after the component is disabled."
40822     },
40823     {
40824      "name": "enable",
40825      "sig": "function (_self)\n{\n\n}",
40826      "type": "function",
40827      "desc": "Fires after the component is enabled."
40828     },
40829     {
40830      "name": "hide",
40831      "sig": "function (_self)\n{\n\n}",
40832      "type": "function",
40833      "desc": "Fires after the component is hidden."
40834     },
40835     {
40836      "name": "render",
40837      "sig": "function (_self)\n{\n\n}",
40838      "type": "function",
40839      "desc": "Fires after the component is rendered."
40840     },
40841     {
40842      "name": "show",
40843      "sig": "function (_self)\n{\n\n}",
40844      "type": "function",
40845      "desc": "Fires after the component is shown."
40846     }
40847    ],
40848    "methods": [
40849     {
40850      "name": "addEvents",
40851      "sig": "(Object object)",
40852      "type": "function",
40853      "desc": "Used to define events on this Observable"
40854     },
40855     {
40856      "name": "addListener",
40857      "sig": "(String eventName, Function handler, Object scope, Object options)",
40858      "type": "function",
40859      "desc": "Appends an event handler to this component"
40860     },
40861     {
40862      "name": "capture",
40863      "sig": "(Observable o, Function fn, Object scope)",
40864      "type": "function",
40865      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
40866     },
40867     {
40868      "name": "destroy",
40869      "sig": "()",
40870      "type": "function",
40871      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
40872     },
40873     {
40874      "name": "disable",
40875      "sig": "()",
40876      "type": "function",
40877      "desc": "Disable this component."
40878     },
40879     {
40880      "name": "enable",
40881      "sig": "()",
40882      "type": "function",
40883      "desc": "Enable this component."
40884     },
40885     {
40886      "name": "fireEvent",
40887      "sig": "(String eventName, Object... args)",
40888      "type": "function",
40889      "desc": "Fires the specified event with the passed parameters (minus the event name)."
40890     },
40891     {
40892      "name": "focus",
40893      "sig": "(Boolean selectText)",
40894      "type": "function",
40895      "desc": "Try to focus this component."
40896     },
40897     {
40898      "name": "getChildContainer",
40899      "sig": "()",
40900      "type": "function",
40901      "desc": "Fetch the element to add children to"
40902     },
40903     {
40904      "name": "getEl",
40905      "sig": "()",
40906      "type": "function",
40907      "desc": "Returns the underlying {@link Roo.Element}."
40908     },
40909     {
40910      "name": "getId",
40911      "sig": "()",
40912      "type": "function",
40913      "desc": "Returns the id of this component."
40914     },
40915     {
40916      "name": "hasListener",
40917      "sig": "(String eventName)",
40918      "type": "function",
40919      "desc": "Checks to see if this object has any listeners for a specified event"
40920     },
40921     {
40922      "name": "hide",
40923      "sig": "()",
40924      "type": "function",
40925      "desc": "Hide a component - adds 'hidden' class"
40926     },
40927     {
40928      "name": "initEvents",
40929      "sig": "()",
40930      "type": "function",
40931      "desc": "Initialize Events for the element"
40932     },
40933     {
40934      "name": "isVisible",
40935      "sig": "()",
40936      "type": "function",
40937      "desc": "Returns true if this component is visible."
40938     },
40939     {
40940      "name": "on",
40941      "sig": "(String eventName, Function handler, Object scope, Object options)",
40942      "type": "function",
40943      "desc": "Appends an event handler to this element (shorthand for addListener)"
40944     },
40945     {
40946      "name": "purgeListeners",
40947      "sig": "()",
40948      "type": "function",
40949      "desc": "Removes all listeners for this object"
40950     },
40951     {
40952      "name": "releaseCapture",
40953      "sig": "(Observable o)",
40954      "type": "function",
40955      "desc": "Removes <b>all</b> added captures from the Observable."
40956     },
40957     {
40958      "name": "removeListener",
40959      "sig": "(String eventName, Function handler, Object scope)",
40960      "type": "function",
40961      "desc": "Removes a listener"
40962     },
40963     {
40964      "name": "render",
40965      "sig": "(String/HTMLElement/Element container)",
40966      "type": "function",
40967      "desc": "If this is a lazy rendering component, render it to its container element."
40968     },
40969     {
40970      "name": "setDisabled",
40971      "sig": "(Boolean disabled)",
40972      "type": "function",
40973      "desc": "Convenience function for setting disabled/enabled by boolean."
40974     },
40975     {
40976      "name": "setVisible",
40977      "sig": "(Boolean visible)",
40978      "type": "function",
40979      "desc": "Convenience function to hide or show this component by boolean."
40980     },
40981     {
40982      "name": "show",
40983      "sig": "()",
40984      "type": "function",
40985      "desc": "Show a component - removes 'hidden' class"
40986     },
40987     {
40988      "name": "tooltipEl",
40989      "sig": "()",
40990      "type": "function",
40991      "desc": "Fetch the element to display the tooltip on."
40992     },
40993     {
40994      "name": "un",
40995      "sig": "(String eventName, Function handler, Object scope)",
40996      "type": "function",
40997      "desc": "Removes a listener (shorthand for removeListener)"
40998     }
40999    ]
41000   },
41001   "Roo.bootstrap.TableCell": {
41002    "props": [
41003     {
41004      "name": "html",
41005      "type": "String",
41006      "desc": "cell contain text",
41007      "memberOf": ""
41008     },
41009     {
41010      "name": "cls",
41011      "type": "String",
41012      "desc": "cell class",
41013      "memberOf": ""
41014     },
41015     {
41016      "name": "tag",
41017      "type": "String",
41018      "desc": "cell tag (td|th) default td",
41019      "memberOf": ""
41020     },
41021     {
41022      "name": "abbr",
41023      "type": "String",
41024      "desc": "Specifies an abbreviated version of the content in a cell",
41025      "memberOf": ""
41026     },
41027     {
41028      "name": "align",
41029      "type": "String",
41030      "desc": "Aligns the content in a cell",
41031      "memberOf": ""
41032     },
41033     {
41034      "name": "axis",
41035      "type": "String",
41036      "desc": "Categorizes cells",
41037      "memberOf": ""
41038     },
41039     {
41040      "name": "bgcolor",
41041      "type": "String",
41042      "desc": "Specifies the background color of a cell",
41043      "memberOf": ""
41044     },
41045     {
41046      "name": "charoff",
41047      "type": "Number",
41048      "desc": "Sets the number of characters the content will be aligned from the character specified by the char attribute",
41049      "memberOf": ""
41050     },
41051     {
41052      "name": "colspan",
41053      "type": "Number",
41054      "desc": "Specifies the number of columns a cell should span",
41055      "memberOf": ""
41056     },
41057     {
41058      "name": "headers",
41059      "type": "String",
41060      "desc": "Specifies one or more header cells a cell is related to",
41061      "memberOf": ""
41062     },
41063     {
41064      "name": "height",
41065      "type": "Number",
41066      "desc": "Sets the height of a cell",
41067      "memberOf": ""
41068     },
41069     {
41070      "name": "nowrap",
41071      "type": "String",
41072      "desc": "Specifies that the content inside a cell should not wrap",
41073      "memberOf": ""
41074     },
41075     {
41076      "name": "rowspan",
41077      "type": "Number",
41078      "desc": "Sets the number of rows a cell should span",
41079      "memberOf": ""
41080     },
41081     {
41082      "name": "scope",
41083      "type": "String",
41084      "desc": "Defines a way to associate header cells and data cells in a table",
41085      "memberOf": ""
41086     },
41087     {
41088      "name": "valign",
41089      "type": "String",
41090      "desc": "Vertical aligns the content in a cell",
41091      "memberOf": ""
41092     },
41093     {
41094      "name": "width",
41095      "type": "Number",
41096      "desc": "Specifies the width of a cell",
41097      "memberOf": ""
41098     },
41099     {
41100      "name": "style",
41101      "type": "String",
41102      "desc": "any extra css",
41103      "memberOf": "Roo.bootstrap.Component"
41104     },
41105     {
41106      "name": "xattr",
41107      "type": "Object",
41108      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
41109      "memberOf": "Roo.bootstrap.Component"
41110     },
41111     {
41112      "name": "can_build_overlaid",
41113      "type": "Boolean",
41114      "desc": "True if element can be rebuild from a HTML page",
41115      "memberOf": "Roo.bootstrap.Component"
41116     },
41117     {
41118      "name": "dataId",
41119      "type": "string",
41120      "desc": "cutomer id",
41121      "memberOf": "Roo.bootstrap.Component"
41122     },
41123     {
41124      "name": "name",
41125      "type": "string",
41126      "desc": "Specifies name attribute",
41127      "memberOf": "Roo.bootstrap.Component"
41128     },
41129     {
41130      "name": "tooltip",
41131      "type": "string",
41132      "desc": "Text for the tooltip",
41133      "memberOf": "Roo.bootstrap.Component"
41134     },
41135     {
41136      "name": "container_method",
41137      "type": "string",
41138      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
41139      "memberOf": "Roo.bootstrap.Component"
41140     },
41141     {
41142      "name": "disableClass",
41143      "type": "String",
41144      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
41145      "memberOf": "Roo.Component"
41146     },
41147     {
41148      "name": "allowDomMove",
41149      "type": "Boolean",
41150      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
41151      "memberOf": "Roo.Component"
41152     },
41153     {
41154      "name": "hideMode",
41155      "type": "String",
41156      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
41157      "memberOf": "Roo.Component",
41158      "optvals": [
41159       "display",
41160       "visibility"
41161      ]
41162     },
41163     {
41164      "name": "actionMode",
41165      "type": "String",
41166      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
41167      "memberOf": "Roo.Component"
41168     },
41169     {
41170      "name": "listeners",
41171      "type": "Object",
41172      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
41173      "memberOf": "Roo.util.Observable"
41174     }
41175    ],
41176    "events": [
41177     {
41178      "name": "beforedestroy",
41179      "sig": "function (_self)\n{\n\n}",
41180      "type": "function",
41181      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
41182     },
41183     {
41184      "name": "beforehide",
41185      "sig": "function (_self)\n{\n\n}",
41186      "type": "function",
41187      "desc": "Fires before the component is hidden. Return false to stop the hide."
41188     },
41189     {
41190      "name": "beforerender",
41191      "sig": "function (_self)\n{\n\n}",
41192      "type": "function",
41193      "desc": "Fires before the component is rendered. Return false to stop the render."
41194     },
41195     {
41196      "name": "beforeshow",
41197      "sig": "function (_self)\n{\n\n}",
41198      "type": "function",
41199      "desc": "Fires before the component is shown.  Return false to stop the show."
41200     },
41201     {
41202      "name": "childrenrendered",
41203      "sig": "function (_self)\n{\n\n}",
41204      "type": "function",
41205      "desc": "Fires when the children have been rendered.."
41206     },
41207     {
41208      "name": "destroy",
41209      "sig": "function (_self)\n{\n\n}",
41210      "type": "function",
41211      "desc": "Fires after the component is destroyed."
41212     },
41213     {
41214      "name": "disable",
41215      "sig": "function (_self)\n{\n\n}",
41216      "type": "function",
41217      "desc": "Fires after the component is disabled."
41218     },
41219     {
41220      "name": "enable",
41221      "sig": "function (_self)\n{\n\n}",
41222      "type": "function",
41223      "desc": "Fires after the component is enabled."
41224     },
41225     {
41226      "name": "hide",
41227      "sig": "function (_self)\n{\n\n}",
41228      "type": "function",
41229      "desc": "Fires after the component is hidden."
41230     },
41231     {
41232      "name": "render",
41233      "sig": "function (_self)\n{\n\n}",
41234      "type": "function",
41235      "desc": "Fires after the component is rendered."
41236     },
41237     {
41238      "name": "show",
41239      "sig": "function (_self)\n{\n\n}",
41240      "type": "function",
41241      "desc": "Fires after the component is shown."
41242     }
41243    ],
41244    "methods": [
41245     {
41246      "name": "addEvents",
41247      "sig": "(Object object)",
41248      "type": "function",
41249      "desc": "Used to define events on this Observable"
41250     },
41251     {
41252      "name": "addListener",
41253      "sig": "(String eventName, Function handler, Object scope, Object options)",
41254      "type": "function",
41255      "desc": "Appends an event handler to this component"
41256     },
41257     {
41258      "name": "capture",
41259      "sig": "(Observable o, Function fn, Object scope)",
41260      "type": "function",
41261      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
41262     },
41263     {
41264      "name": "destroy",
41265      "sig": "()",
41266      "type": "function",
41267      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
41268     },
41269     {
41270      "name": "disable",
41271      "sig": "()",
41272      "type": "function",
41273      "desc": "Disable this component."
41274     },
41275     {
41276      "name": "enable",
41277      "sig": "()",
41278      "type": "function",
41279      "desc": "Enable this component."
41280     },
41281     {
41282      "name": "fireEvent",
41283      "sig": "(String eventName, Object... args)",
41284      "type": "function",
41285      "desc": "Fires the specified event with the passed parameters (minus the event name)."
41286     },
41287     {
41288      "name": "focus",
41289      "sig": "(Boolean selectText)",
41290      "type": "function",
41291      "desc": "Try to focus this component."
41292     },
41293     {
41294      "name": "getChildContainer",
41295      "sig": "()",
41296      "type": "function",
41297      "desc": "Fetch the element to add children to"
41298     },
41299     {
41300      "name": "getEl",
41301      "sig": "()",
41302      "type": "function",
41303      "desc": "Returns the underlying {@link Roo.Element}."
41304     },
41305     {
41306      "name": "getId",
41307      "sig": "()",
41308      "type": "function",
41309      "desc": "Returns the id of this component."
41310     },
41311     {
41312      "name": "hasListener",
41313      "sig": "(String eventName)",
41314      "type": "function",
41315      "desc": "Checks to see if this object has any listeners for a specified event"
41316     },
41317     {
41318      "name": "hide",
41319      "sig": "()",
41320      "type": "function",
41321      "desc": "Hide a component - adds 'hidden' class"
41322     },
41323     {
41324      "name": "initEvents",
41325      "sig": "()",
41326      "type": "function",
41327      "desc": "Initialize Events for the element"
41328     },
41329     {
41330      "name": "isVisible",
41331      "sig": "()",
41332      "type": "function",
41333      "desc": "Returns true if this component is visible."
41334     },
41335     {
41336      "name": "on",
41337      "sig": "(String eventName, Function handler, Object scope, Object options)",
41338      "type": "function",
41339      "desc": "Appends an event handler to this element (shorthand for addListener)"
41340     },
41341     {
41342      "name": "purgeListeners",
41343      "sig": "()",
41344      "type": "function",
41345      "desc": "Removes all listeners for this object"
41346     },
41347     {
41348      "name": "releaseCapture",
41349      "sig": "(Observable o)",
41350      "type": "function",
41351      "desc": "Removes <b>all</b> added captures from the Observable."
41352     },
41353     {
41354      "name": "removeListener",
41355      "sig": "(String eventName, Function handler, Object scope)",
41356      "type": "function",
41357      "desc": "Removes a listener"
41358     },
41359     {
41360      "name": "render",
41361      "sig": "(String/HTMLElement/Element container)",
41362      "type": "function",
41363      "desc": "If this is a lazy rendering component, render it to its container element."
41364     },
41365     {
41366      "name": "setDisabled",
41367      "sig": "(Boolean disabled)",
41368      "type": "function",
41369      "desc": "Convenience function for setting disabled/enabled by boolean."
41370     },
41371     {
41372      "name": "setVisible",
41373      "sig": "(Boolean visible)",
41374      "type": "function",
41375      "desc": "Convenience function to hide or show this component by boolean."
41376     },
41377     {
41378      "name": "show",
41379      "sig": "()",
41380      "type": "function",
41381      "desc": "Show a component - removes 'hidden' class"
41382     },
41383     {
41384      "name": "tooltipEl",
41385      "sig": "()",
41386      "type": "function",
41387      "desc": "Fetch the element to display the tooltip on."
41388     },
41389     {
41390      "name": "un",
41391      "sig": "(String eventName, Function handler, Object scope)",
41392      "type": "function",
41393      "desc": "Removes a listener (shorthand for removeListener)"
41394     }
41395    ]
41396   },
41397   "Roo.bootstrap.TableRow": {
41398    "props": [
41399     {
41400      "name": "cls",
41401      "type": "String",
41402      "desc": "row class",
41403      "memberOf": ""
41404     },
41405     {
41406      "name": "align",
41407      "type": "String",
41408      "desc": "Aligns the content in a table row",
41409      "memberOf": ""
41410     },
41411     {
41412      "name": "bgcolor",
41413      "type": "String",
41414      "desc": "Specifies a background color for a table row",
41415      "memberOf": ""
41416     },
41417     {
41418      "name": "charoff",
41419      "type": "Number",
41420      "desc": "Sets the number of characters the content will be aligned from the character specified by the char attribute",
41421      "memberOf": ""
41422     },
41423     {
41424      "name": "valign",
41425      "type": "String",
41426      "desc": "Vertical aligns the content in a table row",
41427      "memberOf": ""
41428     },
41429     {
41430      "name": "style",
41431      "type": "String",
41432      "desc": "any extra css",
41433      "memberOf": "Roo.bootstrap.Component"
41434     },
41435     {
41436      "name": "xattr",
41437      "type": "Object",
41438      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
41439      "memberOf": "Roo.bootstrap.Component"
41440     },
41441     {
41442      "name": "can_build_overlaid",
41443      "type": "Boolean",
41444      "desc": "True if element can be rebuild from a HTML page",
41445      "memberOf": "Roo.bootstrap.Component"
41446     },
41447     {
41448      "name": "dataId",
41449      "type": "string",
41450      "desc": "cutomer id",
41451      "memberOf": "Roo.bootstrap.Component"
41452     },
41453     {
41454      "name": "name",
41455      "type": "string",
41456      "desc": "Specifies name attribute",
41457      "memberOf": "Roo.bootstrap.Component"
41458     },
41459     {
41460      "name": "tooltip",
41461      "type": "string",
41462      "desc": "Text for the tooltip",
41463      "memberOf": "Roo.bootstrap.Component"
41464     },
41465     {
41466      "name": "container_method",
41467      "type": "string",
41468      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
41469      "memberOf": "Roo.bootstrap.Component"
41470     },
41471     {
41472      "name": "disableClass",
41473      "type": "String",
41474      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
41475      "memberOf": "Roo.Component"
41476     },
41477     {
41478      "name": "allowDomMove",
41479      "type": "Boolean",
41480      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
41481      "memberOf": "Roo.Component"
41482     },
41483     {
41484      "name": "hideMode",
41485      "type": "String",
41486      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
41487      "memberOf": "Roo.Component",
41488      "optvals": [
41489       "display",
41490       "visibility"
41491      ]
41492     },
41493     {
41494      "name": "actionMode",
41495      "type": "String",
41496      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
41497      "memberOf": "Roo.Component"
41498     },
41499     {
41500      "name": "listeners",
41501      "type": "Object",
41502      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
41503      "memberOf": "Roo.util.Observable"
41504     }
41505    ],
41506    "events": [
41507     {
41508      "name": "beforedestroy",
41509      "sig": "function (_self)\n{\n\n}",
41510      "type": "function",
41511      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
41512     },
41513     {
41514      "name": "beforehide",
41515      "sig": "function (_self)\n{\n\n}",
41516      "type": "function",
41517      "desc": "Fires before the component is hidden. Return false to stop the hide."
41518     },
41519     {
41520      "name": "beforerender",
41521      "sig": "function (_self)\n{\n\n}",
41522      "type": "function",
41523      "desc": "Fires before the component is rendered. Return false to stop the render."
41524     },
41525     {
41526      "name": "beforeshow",
41527      "sig": "function (_self)\n{\n\n}",
41528      "type": "function",
41529      "desc": "Fires before the component is shown.  Return false to stop the show."
41530     },
41531     {
41532      "name": "childrenrendered",
41533      "sig": "function (_self)\n{\n\n}",
41534      "type": "function",
41535      "desc": "Fires when the children have been rendered.."
41536     },
41537     {
41538      "name": "destroy",
41539      "sig": "function (_self)\n{\n\n}",
41540      "type": "function",
41541      "desc": "Fires after the component is destroyed."
41542     },
41543     {
41544      "name": "disable",
41545      "sig": "function (_self)\n{\n\n}",
41546      "type": "function",
41547      "desc": "Fires after the component is disabled."
41548     },
41549     {
41550      "name": "enable",
41551      "sig": "function (_self)\n{\n\n}",
41552      "type": "function",
41553      "desc": "Fires after the component is enabled."
41554     },
41555     {
41556      "name": "hide",
41557      "sig": "function (_self)\n{\n\n}",
41558      "type": "function",
41559      "desc": "Fires after the component is hidden."
41560     },
41561     {
41562      "name": "render",
41563      "sig": "function (_self)\n{\n\n}",
41564      "type": "function",
41565      "desc": "Fires after the component is rendered."
41566     },
41567     {
41568      "name": "show",
41569      "sig": "function (_self)\n{\n\n}",
41570      "type": "function",
41571      "desc": "Fires after the component is shown."
41572     }
41573    ],
41574    "methods": [
41575     {
41576      "name": "addEvents",
41577      "sig": "(Object object)",
41578      "type": "function",
41579      "desc": "Used to define events on this Observable"
41580     },
41581     {
41582      "name": "addListener",
41583      "sig": "(String eventName, Function handler, Object scope, Object options)",
41584      "type": "function",
41585      "desc": "Appends an event handler to this component"
41586     },
41587     {
41588      "name": "capture",
41589      "sig": "(Observable o, Function fn, Object scope)",
41590      "type": "function",
41591      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
41592     },
41593     {
41594      "name": "destroy",
41595      "sig": "()",
41596      "type": "function",
41597      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
41598     },
41599     {
41600      "name": "disable",
41601      "sig": "()",
41602      "type": "function",
41603      "desc": "Disable this component."
41604     },
41605     {
41606      "name": "enable",
41607      "sig": "()",
41608      "type": "function",
41609      "desc": "Enable this component."
41610     },
41611     {
41612      "name": "fireEvent",
41613      "sig": "(String eventName, Object... args)",
41614      "type": "function",
41615      "desc": "Fires the specified event with the passed parameters (minus the event name)."
41616     },
41617     {
41618      "name": "focus",
41619      "sig": "(Boolean selectText)",
41620      "type": "function",
41621      "desc": "Try to focus this component."
41622     },
41623     {
41624      "name": "getChildContainer",
41625      "sig": "()",
41626      "type": "function",
41627      "desc": "Fetch the element to add children to"
41628     },
41629     {
41630      "name": "getEl",
41631      "sig": "()",
41632      "type": "function",
41633      "desc": "Returns the underlying {@link Roo.Element}."
41634     },
41635     {
41636      "name": "getId",
41637      "sig": "()",
41638      "type": "function",
41639      "desc": "Returns the id of this component."
41640     },
41641     {
41642      "name": "hasListener",
41643      "sig": "(String eventName)",
41644      "type": "function",
41645      "desc": "Checks to see if this object has any listeners for a specified event"
41646     },
41647     {
41648      "name": "hide",
41649      "sig": "()",
41650      "type": "function",
41651      "desc": "Hide a component - adds 'hidden' class"
41652     },
41653     {
41654      "name": "initEvents",
41655      "sig": "()",
41656      "type": "function",
41657      "desc": "Initialize Events for the element"
41658     },
41659     {
41660      "name": "isVisible",
41661      "sig": "()",
41662      "type": "function",
41663      "desc": "Returns true if this component is visible."
41664     },
41665     {
41666      "name": "on",
41667      "sig": "(String eventName, Function handler, Object scope, Object options)",
41668      "type": "function",
41669      "desc": "Appends an event handler to this element (shorthand for addListener)"
41670     },
41671     {
41672      "name": "purgeListeners",
41673      "sig": "()",
41674      "type": "function",
41675      "desc": "Removes all listeners for this object"
41676     },
41677     {
41678      "name": "releaseCapture",
41679      "sig": "(Observable o)",
41680      "type": "function",
41681      "desc": "Removes <b>all</b> added captures from the Observable."
41682     },
41683     {
41684      "name": "removeListener",
41685      "sig": "(String eventName, Function handler, Object scope)",
41686      "type": "function",
41687      "desc": "Removes a listener"
41688     },
41689     {
41690      "name": "render",
41691      "sig": "(String/HTMLElement/Element container)",
41692      "type": "function",
41693      "desc": "If this is a lazy rendering component, render it to its container element."
41694     },
41695     {
41696      "name": "setDisabled",
41697      "sig": "(Boolean disabled)",
41698      "type": "function",
41699      "desc": "Convenience function for setting disabled/enabled by boolean."
41700     },
41701     {
41702      "name": "setVisible",
41703      "sig": "(Boolean visible)",
41704      "type": "function",
41705      "desc": "Convenience function to hide or show this component by boolean."
41706     },
41707     {
41708      "name": "show",
41709      "sig": "()",
41710      "type": "function",
41711      "desc": "Show a component - removes 'hidden' class"
41712     },
41713     {
41714      "name": "tooltipEl",
41715      "sig": "()",
41716      "type": "function",
41717      "desc": "Fetch the element to display the tooltip on."
41718     },
41719     {
41720      "name": "un",
41721      "sig": "(String eventName, Function handler, Object scope)",
41722      "type": "function",
41723      "desc": "Removes a listener (shorthand for removeListener)"
41724     }
41725    ]
41726   },
41727   "Roo.bootstrap.TextArea": {
41728    "props": [
41729     {
41730      "name": "cols",
41731      "type": "Number",
41732      "desc": "Specifies the visible width of a text area",
41733      "memberOf": ""
41734     },
41735     {
41736      "name": "rows",
41737      "type": "Number",
41738      "desc": "Specifies the visible number of lines in a text area",
41739      "memberOf": ""
41740     },
41741     {
41742      "name": "wrap",
41743      "type": "string",
41744      "desc": "Specifies how the text in a text area is to be wrapped when submitted in a form",
41745      "memberOf": "",
41746      "optvals": [
41747       "soft",
41748       "hard"
41749      ]
41750     },
41751     {
41752      "name": "resize",
41753      "type": "string",
41754      "desc": "",
41755      "memberOf": "",
41756      "optvals": [
41757       "none",
41758       "both",
41759       "horizontal",
41760       "vertical",
41761       "inherit",
41762       "initial"
41763      ]
41764     },
41765     {
41766      "name": "html",
41767      "type": "string",
41768      "desc": "text",
41769      "memberOf": ""
41770     },
41771     {
41772      "name": "disabled",
41773      "type": "Boolean",
41774      "desc": "is it disabled",
41775      "memberOf": "Roo.bootstrap.Input"
41776     },
41777     {
41778      "name": "inputType",
41779      "type": "String",
41780      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
41781      "memberOf": "Roo.bootstrap.Input"
41782     },
41783     {
41784      "name": "name",
41785      "type": "String",
41786      "desc": "name of the input",
41787      "memberOf": "Roo.bootstrap.Input"
41788     },
41789     {
41790      "name": "fieldLabel",
41791      "type": "string",
41792      "desc": "- the label associated",
41793      "memberOf": "Roo.bootstrap.Input"
41794     },
41795     {
41796      "name": "placeholder",
41797      "type": "string",
41798      "desc": "- placeholder to put in text.",
41799      "memberOf": "Roo.bootstrap.Input"
41800     },
41801     {
41802      "name": "before",
41803      "type": "string",
41804      "desc": "- input group add on before",
41805      "memberOf": "Roo.bootstrap.Input"
41806     },
41807     {
41808      "name": "after",
41809      "type": "string",
41810      "desc": "- input group add on after",
41811      "memberOf": "Roo.bootstrap.Input"
41812     },
41813     {
41814      "name": "size",
41815      "type": "string",
41816      "desc": "- (lg|sm) or leave empty..",
41817      "memberOf": "Roo.bootstrap.Input"
41818     },
41819     {
41820      "name": "xs",
41821      "type": "Number",
41822      "desc": "colspan out of 12 for mobile-sized screens",
41823      "memberOf": "Roo.bootstrap.Input"
41824     },
41825     {
41826      "name": "sm",
41827      "type": "Number",
41828      "desc": "colspan out of 12 for tablet-sized screens",
41829      "memberOf": "Roo.bootstrap.Input"
41830     },
41831     {
41832      "name": "md",
41833      "type": "Number",
41834      "desc": "colspan out of 12 for computer-sized screens",
41835      "memberOf": "Roo.bootstrap.Input"
41836     },
41837     {
41838      "name": "lg",
41839      "type": "Number",
41840      "desc": "colspan out of 12 for large computer-sized screens",
41841      "memberOf": "Roo.bootstrap.Input"
41842     },
41843     {
41844      "name": "value",
41845      "type": "string",
41846      "desc": "default value of the input",
41847      "memberOf": "Roo.bootstrap.Input"
41848     },
41849     {
41850      "name": "labelWidth",
41851      "type": "Number",
41852      "desc": "set the width of label (0-12)",
41853      "memberOf": "Roo.bootstrap.Input"
41854     },
41855     {
41856      "name": "labelAlign",
41857      "type": "String",
41858      "desc": "",
41859      "memberOf": "Roo.bootstrap.Input",
41860      "optvals": [
41861       "top",
41862       "left"
41863      ]
41864     },
41865     {
41866      "name": "readOnly",
41867      "type": "Boolean",
41868      "desc": "Specifies that the field should be read-only",
41869      "memberOf": "Roo.bootstrap.Input"
41870     },
41871     {
41872      "name": "autocomplete",
41873      "type": "String",
41874      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
41875      "memberOf": "Roo.bootstrap.Input"
41876     },
41877     {
41878      "name": "indicatorpos",
41879      "type": "String",
41880      "desc": "default left",
41881      "memberOf": "Roo.bootstrap.Input",
41882      "optvals": [
41883       "left",
41884       "right"
41885      ]
41886     },
41887     {
41888      "name": "align",
41889      "type": "String",
41890      "desc": "Default left",
41891      "memberOf": "Roo.bootstrap.Input",
41892      "optvals": [
41893       "left",
41894       "center",
41895       "right"
41896      ]
41897     },
41898     {
41899      "name": "forceFeedback",
41900      "type": "Boolean",
41901      "desc": "Default false",
41902      "memberOf": "Roo.bootstrap.Input",
41903      "optvals": [
41904       "true",
41905       "false"
41906      ]
41907     },
41908     {
41909      "name": "validationEvent",
41910      "type": "String/Boolean",
41911      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
41912      "memberOf": "Roo.bootstrap.Input"
41913     },
41914     {
41915      "name": "validateOnBlur",
41916      "type": "Boolean",
41917      "desc": "Whether the field should validate when it loses focus (defaults to true).",
41918      "memberOf": "Roo.bootstrap.Input"
41919     },
41920     {
41921      "name": "validationDelay",
41922      "type": "Number",
41923      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
41924      "memberOf": "Roo.bootstrap.Input"
41925     },
41926     {
41927      "name": "focusClass",
41928      "type": "String",
41929      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
41930      "memberOf": "Roo.bootstrap.Input"
41931     },
41932     {
41933      "name": "invalidClass",
41934      "type": "String",
41935      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
41936      "memberOf": "Roo.bootstrap.Input"
41937     },
41938     {
41939      "name": "validClass",
41940      "type": "String",
41941      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
41942      "memberOf": "Roo.bootstrap.Input"
41943     },
41944     {
41945      "name": "hasFeedback",
41946      "type": "Boolean",
41947      "desc": "default true",
41948      "memberOf": "Roo.bootstrap.Input",
41949      "optvals": [
41950       "true",
41951       "false"
41952      ]
41953     },
41954     {
41955      "name": "invalidFeedbackIcon",
41956      "type": "String",
41957      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
41958      "memberOf": "Roo.bootstrap.Input"
41959     },
41960     {
41961      "name": "validFeedbackIcon",
41962      "type": "String",
41963      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
41964      "memberOf": "Roo.bootstrap.Input"
41965     },
41966     {
41967      "name": "selectOnFocus",
41968      "type": "Boolean",
41969      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
41970      "memberOf": "Roo.bootstrap.Input"
41971     },
41972     {
41973      "name": "maskRe",
41974      "type": "String",
41975      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
41976      "memberOf": "Roo.bootstrap.Input"
41977     },
41978     {
41979      "name": "vtype",
41980      "type": "String",
41981      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
41982      "memberOf": "Roo.bootstrap.Input"
41983     },
41984     {
41985      "name": "disableKeyFilter",
41986      "type": "Boolean",
41987      "desc": "True to disable input keystroke filtering (defaults to false)",
41988      "memberOf": "Roo.bootstrap.Input"
41989     },
41990     {
41991      "name": "allowBlank",
41992      "type": "Boolean",
41993      "desc": "False to validate that the value length > 0 (defaults to true)",
41994      "memberOf": "Roo.bootstrap.Input"
41995     },
41996     {
41997      "name": "blankText",
41998      "type": "String",
41999      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
42000      "memberOf": "Roo.bootstrap.Input"
42001     },
42002     {
42003      "name": "minLength",
42004      "type": "Number",
42005      "desc": "Minimum input field length required (defaults to 0)",
42006      "memberOf": "Roo.bootstrap.Input"
42007     },
42008     {
42009      "name": "maxLength",
42010      "type": "Number",
42011      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
42012      "memberOf": "Roo.bootstrap.Input"
42013     },
42014     {
42015      "name": "minLengthText",
42016      "type": "String",
42017      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
42018      "memberOf": "Roo.bootstrap.Input"
42019     },
42020     {
42021      "name": "maxLengthText",
42022      "type": "String",
42023      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
42024      "memberOf": "Roo.bootstrap.Input"
42025     },
42026     {
42027      "name": "validator",
42028      "type": "Function",
42029      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
42030      "memberOf": "Roo.bootstrap.Input"
42031     },
42032     {
42033      "name": "regex",
42034      "type": "RegExp",
42035      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
42036      "memberOf": "Roo.bootstrap.Input"
42037     },
42038     {
42039      "name": "regexText",
42040      "type": "String",
42041      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
42042      "memberOf": "Roo.bootstrap.Input"
42043     },
42044     {
42045      "name": "cls",
42046      "type": "String",
42047      "desc": "css class",
42048      "memberOf": "Roo.bootstrap.Component"
42049     },
42050     {
42051      "name": "style",
42052      "type": "String",
42053      "desc": "any extra css",
42054      "memberOf": "Roo.bootstrap.Component"
42055     },
42056     {
42057      "name": "xattr",
42058      "type": "Object",
42059      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
42060      "memberOf": "Roo.bootstrap.Component"
42061     },
42062     {
42063      "name": "can_build_overlaid",
42064      "type": "Boolean",
42065      "desc": "True if element can be rebuild from a HTML page",
42066      "memberOf": "Roo.bootstrap.Component"
42067     },
42068     {
42069      "name": "dataId",
42070      "type": "string",
42071      "desc": "cutomer id",
42072      "memberOf": "Roo.bootstrap.Component"
42073     },
42074     {
42075      "name": "tooltip",
42076      "type": "string",
42077      "desc": "Text for the tooltip",
42078      "memberOf": "Roo.bootstrap.Component"
42079     },
42080     {
42081      "name": "container_method",
42082      "type": "string",
42083      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
42084      "memberOf": "Roo.bootstrap.Component"
42085     },
42086     {
42087      "name": "disableClass",
42088      "type": "String",
42089      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
42090      "memberOf": "Roo.Component"
42091     },
42092     {
42093      "name": "allowDomMove",
42094      "type": "Boolean",
42095      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
42096      "memberOf": "Roo.Component"
42097     },
42098     {
42099      "name": "hideMode",
42100      "type": "String",
42101      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
42102      "memberOf": "Roo.Component",
42103      "optvals": [
42104       "display",
42105       "visibility"
42106      ]
42107     },
42108     {
42109      "name": "actionMode",
42110      "type": "String",
42111      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
42112      "memberOf": "Roo.Component"
42113     },
42114     {
42115      "name": "listeners",
42116      "type": "Object",
42117      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
42118      "memberOf": "Roo.util.Observable"
42119     }
42120    ],
42121    "events": [
42122     {
42123      "name": "beforedestroy",
42124      "sig": "function (_self)\n{\n\n}",
42125      "type": "function",
42126      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
42127     },
42128     {
42129      "name": "beforehide",
42130      "sig": "function (_self)\n{\n\n}",
42131      "type": "function",
42132      "desc": "Fires before the component is hidden. Return false to stop the hide."
42133     },
42134     {
42135      "name": "beforerender",
42136      "sig": "function (_self)\n{\n\n}",
42137      "type": "function",
42138      "desc": "Fires before the component is rendered. Return false to stop the render."
42139     },
42140     {
42141      "name": "beforeshow",
42142      "sig": "function (_self)\n{\n\n}",
42143      "type": "function",
42144      "desc": "Fires before the component is shown.  Return false to stop the show."
42145     },
42146     {
42147      "name": "blur",
42148      "sig": "function (_self)\n{\n\n}",
42149      "type": "function",
42150      "desc": "Fires when this field loses input focus."
42151     },
42152     {
42153      "name": "change",
42154      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
42155      "type": "function",
42156      "desc": "Fires just before the field blurs if the field value has changed."
42157     },
42158     {
42159      "name": "childrenrendered",
42160      "sig": "function (_self)\n{\n\n}",
42161      "type": "function",
42162      "desc": "Fires when the children have been rendered.."
42163     },
42164     {
42165      "name": "destroy",
42166      "sig": "function (_self)\n{\n\n}",
42167      "type": "function",
42168      "desc": "Fires after the component is destroyed."
42169     },
42170     {
42171      "name": "disable",
42172      "sig": "function (_self)\n{\n\n}",
42173      "type": "function",
42174      "desc": "Fires after the component is disabled."
42175     },
42176     {
42177      "name": "enable",
42178      "sig": "function (_self)\n{\n\n}",
42179      "type": "function",
42180      "desc": "Fires after the component is enabled."
42181     },
42182     {
42183      "name": "focus",
42184      "sig": "function (_self)\n{\n\n}",
42185      "type": "function",
42186      "desc": "Fires when this field receives input focus."
42187     },
42188     {
42189      "name": "hide",
42190      "sig": "function (_self)\n{\n\n}",
42191      "type": "function",
42192      "desc": "Fires after the component is hidden."
42193     },
42194     {
42195      "name": "invalid",
42196      "sig": "function (_self, msg)\n{\n\n}",
42197      "type": "function",
42198      "desc": "Fires after the field has been marked as invalid."
42199     },
42200     {
42201      "name": "keyup",
42202      "sig": "function (_self, e)\n{\n\n}",
42203      "type": "function",
42204      "desc": "Fires after the key up"
42205     },
42206     {
42207      "name": "render",
42208      "sig": "function (_self)\n{\n\n}",
42209      "type": "function",
42210      "desc": "Fires after the component is rendered."
42211     },
42212     {
42213      "name": "show",
42214      "sig": "function (_self)\n{\n\n}",
42215      "type": "function",
42216      "desc": "Fires after the component is shown."
42217     },
42218     {
42219      "name": "specialkey",
42220      "sig": "function (_self, e)\n{\n\n}",
42221      "type": "function",
42222      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
42223     },
42224     {
42225      "name": "valid",
42226      "sig": "function (_self)\n{\n\n}",
42227      "type": "function",
42228      "desc": "Fires after the field has been validated with no errors."
42229     }
42230    ],
42231    "methods": [
42232     {
42233      "name": "addEvents",
42234      "sig": "(Object object)",
42235      "type": "function",
42236      "desc": "Used to define events on this Observable"
42237     },
42238     {
42239      "name": "addListener",
42240      "sig": "(String eventName, Function handler, Object scope, Object options)",
42241      "type": "function",
42242      "desc": "Appends an event handler to this component"
42243     },
42244     {
42245      "name": "capture",
42246      "sig": "(Observable o, Function fn, Object scope)",
42247      "type": "function",
42248      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
42249     },
42250     {
42251      "name": "clearInvalid",
42252      "sig": "()",
42253      "type": "function",
42254      "desc": "Clear any invalid styles/messages for this field"
42255     },
42256     {
42257      "name": "destroy",
42258      "sig": "()",
42259      "type": "function",
42260      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
42261     },
42262     {
42263      "name": "disable",
42264      "sig": "()",
42265      "type": "function",
42266      "desc": "Disable this component."
42267     },
42268     {
42269      "name": "enable",
42270      "sig": "()",
42271      "type": "function",
42272      "desc": "Enable this component."
42273     },
42274     {
42275      "name": "fireEvent",
42276      "sig": "(String eventName, Object... args)",
42277      "type": "function",
42278      "desc": "Fires the specified event with the passed parameters (minus the event name)."
42279     },
42280     {
42281      "name": "focus",
42282      "sig": "(Boolean selectText)",
42283      "type": "function",
42284      "desc": "Try to focus this component."
42285     },
42286     {
42287      "name": "getChildContainer",
42288      "sig": "()",
42289      "type": "function",
42290      "desc": "Fetch the element to add children to"
42291     },
42292     {
42293      "name": "getEl",
42294      "sig": "()",
42295      "type": "function",
42296      "desc": "Returns the underlying {@link Roo.Element}."
42297     },
42298     {
42299      "name": "getId",
42300      "sig": "()",
42301      "type": "function",
42302      "desc": "Returns the id of this component."
42303     },
42304     {
42305      "name": "getName",
42306      "sig": "()",
42307      "type": "function",
42308      "desc": "Returns the name of the field"
42309     },
42310     {
42311      "name": "getRawValue",
42312      "sig": "()",
42313      "type": "function",
42314      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
42315     },
42316     {
42317      "name": "getValue",
42318      "sig": "()",
42319      "type": "function",
42320      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
42321     },
42322     {
42323      "name": "hasListener",
42324      "sig": "(String eventName)",
42325      "type": "function",
42326      "desc": "Checks to see if this object has any listeners for a specified event"
42327     },
42328     {
42329      "name": "hide",
42330      "sig": "()",
42331      "type": "function",
42332      "desc": "Hide a component - adds 'hidden' class"
42333     },
42334     {
42335      "name": "initEvents",
42336      "sig": "()",
42337      "type": "function",
42338      "desc": "Initialize Events for the element"
42339     },
42340     {
42341      "name": "inputEl",
42342      "sig": "()",
42343      "type": "function",
42344      "desc": "return the real textarea element."
42345     },
42346     {
42347      "name": "isVisible",
42348      "sig": "()",
42349      "type": "function",
42350      "desc": "Returns true if this component is visible."
42351     },
42352     {
42353      "name": "markInvalid",
42354      "sig": "(String msg)",
42355      "type": "function",
42356      "desc": "Mark this field as invalid"
42357     },
42358     {
42359      "name": "markValid",
42360      "sig": "()",
42361      "type": "function",
42362      "desc": "Mark this field as valid"
42363     },
42364     {
42365      "name": "on",
42366      "sig": "(String eventName, Function handler, Object scope, Object options)",
42367      "type": "function",
42368      "desc": "Appends an event handler to this element (shorthand for addListener)"
42369     },
42370     {
42371      "name": "purgeListeners",
42372      "sig": "()",
42373      "type": "function",
42374      "desc": "Removes all listeners for this object"
42375     },
42376     {
42377      "name": "releaseCapture",
42378      "sig": "(Observable o)",
42379      "type": "function",
42380      "desc": "Removes <b>all</b> added captures from the Observable."
42381     },
42382     {
42383      "name": "removeListener",
42384      "sig": "(String eventName, Function handler, Object scope)",
42385      "type": "function",
42386      "desc": "Removes a listener"
42387     },
42388     {
42389      "name": "render",
42390      "sig": "(String/HTMLElement/Element container)",
42391      "type": "function",
42392      "desc": "If this is a lazy rendering component, render it to its container element."
42393     },
42394     {
42395      "name": "reset",
42396      "sig": "()",
42397      "type": "function",
42398      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
42399     },
42400     {
42401      "name": "setDisabled",
42402      "sig": "(Boolean disabled)",
42403      "type": "function",
42404      "desc": "Convenience function for setting disabled/enabled by boolean."
42405     },
42406     {
42407      "name": "setRawValue",
42408      "sig": "(Mixed value)",
42409      "type": "function",
42410      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
42411     },
42412     {
42413      "name": "setValue",
42414      "sig": "(Mixed value)",
42415      "type": "function",
42416      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
42417     },
42418     {
42419      "name": "setVisible",
42420      "sig": "(Boolean visible)",
42421      "type": "function",
42422      "desc": "Convenience function to hide or show this component by boolean."
42423     },
42424     {
42425      "name": "show",
42426      "sig": "()",
42427      "type": "function",
42428      "desc": "Show a component - removes 'hidden' class"
42429     },
42430     {
42431      "name": "tooltipEl",
42432      "sig": "()",
42433      "type": "function",
42434      "desc": "Fetch the element to display the tooltip on."
42435     },
42436     {
42437      "name": "un",
42438      "sig": "(String eventName, Function handler, Object scope)",
42439      "type": "function",
42440      "desc": "Removes a listener (shorthand for removeListener)"
42441     },
42442     {
42443      "name": "validate",
42444      "sig": "()",
42445      "type": "function",
42446      "desc": "Validates the field value"
42447     },
42448     {
42449      "name": "validateValue",
42450      "sig": "(Mixed value)",
42451      "type": "function",
42452      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
42453     }
42454    ]
42455   },
42456   "Roo.bootstrap.TimeField": {
42457    "props": [
42458     {
42459      "name": "format",
42460      "type": "String",
42461      "desc": "The default time format string which can be overriden for localization support.  The format must be\nvalid according to {@link Date#parseDate} (defaults to 'H:i').",
42462      "memberOf": ""
42463     },
42464     {
42465      "name": "disabled",
42466      "type": "Boolean",
42467      "desc": "is it disabled",
42468      "memberOf": "Roo.bootstrap.Input"
42469     },
42470     {
42471      "name": "inputType",
42472      "type": "String",
42473      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
42474      "memberOf": "Roo.bootstrap.Input"
42475     },
42476     {
42477      "name": "name",
42478      "type": "String",
42479      "desc": "name of the input",
42480      "memberOf": "Roo.bootstrap.Input"
42481     },
42482     {
42483      "name": "fieldLabel",
42484      "type": "string",
42485      "desc": "- the label associated",
42486      "memberOf": "Roo.bootstrap.Input"
42487     },
42488     {
42489      "name": "placeholder",
42490      "type": "string",
42491      "desc": "- placeholder to put in text.",
42492      "memberOf": "Roo.bootstrap.Input"
42493     },
42494     {
42495      "name": "before",
42496      "type": "string",
42497      "desc": "- input group add on before",
42498      "memberOf": "Roo.bootstrap.Input"
42499     },
42500     {
42501      "name": "after",
42502      "type": "string",
42503      "desc": "- input group add on after",
42504      "memberOf": "Roo.bootstrap.Input"
42505     },
42506     {
42507      "name": "size",
42508      "type": "string",
42509      "desc": "- (lg|sm) or leave empty..",
42510      "memberOf": "Roo.bootstrap.Input"
42511     },
42512     {
42513      "name": "xs",
42514      "type": "Number",
42515      "desc": "colspan out of 12 for mobile-sized screens",
42516      "memberOf": "Roo.bootstrap.Input"
42517     },
42518     {
42519      "name": "sm",
42520      "type": "Number",
42521      "desc": "colspan out of 12 for tablet-sized screens",
42522      "memberOf": "Roo.bootstrap.Input"
42523     },
42524     {
42525      "name": "md",
42526      "type": "Number",
42527      "desc": "colspan out of 12 for computer-sized screens",
42528      "memberOf": "Roo.bootstrap.Input"
42529     },
42530     {
42531      "name": "lg",
42532      "type": "Number",
42533      "desc": "colspan out of 12 for large computer-sized screens",
42534      "memberOf": "Roo.bootstrap.Input"
42535     },
42536     {
42537      "name": "value",
42538      "type": "string",
42539      "desc": "default value of the input",
42540      "memberOf": "Roo.bootstrap.Input"
42541     },
42542     {
42543      "name": "labelWidth",
42544      "type": "Number",
42545      "desc": "set the width of label (0-12)",
42546      "memberOf": "Roo.bootstrap.Input"
42547     },
42548     {
42549      "name": "labelAlign",
42550      "type": "String",
42551      "desc": "",
42552      "memberOf": "Roo.bootstrap.Input",
42553      "optvals": [
42554       "top",
42555       "left"
42556      ]
42557     },
42558     {
42559      "name": "readOnly",
42560      "type": "Boolean",
42561      "desc": "Specifies that the field should be read-only",
42562      "memberOf": "Roo.bootstrap.Input"
42563     },
42564     {
42565      "name": "autocomplete",
42566      "type": "String",
42567      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
42568      "memberOf": "Roo.bootstrap.Input"
42569     },
42570     {
42571      "name": "indicatorpos",
42572      "type": "String",
42573      "desc": "default left",
42574      "memberOf": "Roo.bootstrap.Input",
42575      "optvals": [
42576       "left",
42577       "right"
42578      ]
42579     },
42580     {
42581      "name": "align",
42582      "type": "String",
42583      "desc": "Default left",
42584      "memberOf": "Roo.bootstrap.Input",
42585      "optvals": [
42586       "left",
42587       "center",
42588       "right"
42589      ]
42590     },
42591     {
42592      "name": "forceFeedback",
42593      "type": "Boolean",
42594      "desc": "Default false",
42595      "memberOf": "Roo.bootstrap.Input",
42596      "optvals": [
42597       "true",
42598       "false"
42599      ]
42600     },
42601     {
42602      "name": "validationEvent",
42603      "type": "String/Boolean",
42604      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
42605      "memberOf": "Roo.bootstrap.Input"
42606     },
42607     {
42608      "name": "validateOnBlur",
42609      "type": "Boolean",
42610      "desc": "Whether the field should validate when it loses focus (defaults to true).",
42611      "memberOf": "Roo.bootstrap.Input"
42612     },
42613     {
42614      "name": "validationDelay",
42615      "type": "Number",
42616      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
42617      "memberOf": "Roo.bootstrap.Input"
42618     },
42619     {
42620      "name": "focusClass",
42621      "type": "String",
42622      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
42623      "memberOf": "Roo.bootstrap.Input"
42624     },
42625     {
42626      "name": "invalidClass",
42627      "type": "String",
42628      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
42629      "memberOf": "Roo.bootstrap.Input"
42630     },
42631     {
42632      "name": "validClass",
42633      "type": "String",
42634      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
42635      "memberOf": "Roo.bootstrap.Input"
42636     },
42637     {
42638      "name": "hasFeedback",
42639      "type": "Boolean",
42640      "desc": "default true",
42641      "memberOf": "Roo.bootstrap.Input",
42642      "optvals": [
42643       "true",
42644       "false"
42645      ]
42646     },
42647     {
42648      "name": "invalidFeedbackIcon",
42649      "type": "String",
42650      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
42651      "memberOf": "Roo.bootstrap.Input"
42652     },
42653     {
42654      "name": "validFeedbackIcon",
42655      "type": "String",
42656      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
42657      "memberOf": "Roo.bootstrap.Input"
42658     },
42659     {
42660      "name": "selectOnFocus",
42661      "type": "Boolean",
42662      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
42663      "memberOf": "Roo.bootstrap.Input"
42664     },
42665     {
42666      "name": "maskRe",
42667      "type": "String",
42668      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
42669      "memberOf": "Roo.bootstrap.Input"
42670     },
42671     {
42672      "name": "vtype",
42673      "type": "String",
42674      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
42675      "memberOf": "Roo.bootstrap.Input"
42676     },
42677     {
42678      "name": "disableKeyFilter",
42679      "type": "Boolean",
42680      "desc": "True to disable input keystroke filtering (defaults to false)",
42681      "memberOf": "Roo.bootstrap.Input"
42682     },
42683     {
42684      "name": "allowBlank",
42685      "type": "Boolean",
42686      "desc": "False to validate that the value length > 0 (defaults to true)",
42687      "memberOf": "Roo.bootstrap.Input"
42688     },
42689     {
42690      "name": "blankText",
42691      "type": "String",
42692      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
42693      "memberOf": "Roo.bootstrap.Input"
42694     },
42695     {
42696      "name": "minLength",
42697      "type": "Number",
42698      "desc": "Minimum input field length required (defaults to 0)",
42699      "memberOf": "Roo.bootstrap.Input"
42700     },
42701     {
42702      "name": "maxLength",
42703      "type": "Number",
42704      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
42705      "memberOf": "Roo.bootstrap.Input"
42706     },
42707     {
42708      "name": "minLengthText",
42709      "type": "String",
42710      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
42711      "memberOf": "Roo.bootstrap.Input"
42712     },
42713     {
42714      "name": "maxLengthText",
42715      "type": "String",
42716      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
42717      "memberOf": "Roo.bootstrap.Input"
42718     },
42719     {
42720      "name": "validator",
42721      "type": "Function",
42722      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
42723      "memberOf": "Roo.bootstrap.Input"
42724     },
42725     {
42726      "name": "regex",
42727      "type": "RegExp",
42728      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
42729      "memberOf": "Roo.bootstrap.Input"
42730     },
42731     {
42732      "name": "regexText",
42733      "type": "String",
42734      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
42735      "memberOf": "Roo.bootstrap.Input"
42736     },
42737     {
42738      "name": "cls",
42739      "type": "String",
42740      "desc": "css class",
42741      "memberOf": "Roo.bootstrap.Component"
42742     },
42743     {
42744      "name": "style",
42745      "type": "String",
42746      "desc": "any extra css",
42747      "memberOf": "Roo.bootstrap.Component"
42748     },
42749     {
42750      "name": "xattr",
42751      "type": "Object",
42752      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
42753      "memberOf": "Roo.bootstrap.Component"
42754     },
42755     {
42756      "name": "can_build_overlaid",
42757      "type": "Boolean",
42758      "desc": "True if element can be rebuild from a HTML page",
42759      "memberOf": "Roo.bootstrap.Component"
42760     },
42761     {
42762      "name": "dataId",
42763      "type": "string",
42764      "desc": "cutomer id",
42765      "memberOf": "Roo.bootstrap.Component"
42766     },
42767     {
42768      "name": "tooltip",
42769      "type": "string",
42770      "desc": "Text for the tooltip",
42771      "memberOf": "Roo.bootstrap.Component"
42772     },
42773     {
42774      "name": "container_method",
42775      "type": "string",
42776      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
42777      "memberOf": "Roo.bootstrap.Component"
42778     },
42779     {
42780      "name": "disableClass",
42781      "type": "String",
42782      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
42783      "memberOf": "Roo.Component"
42784     },
42785     {
42786      "name": "allowDomMove",
42787      "type": "Boolean",
42788      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
42789      "memberOf": "Roo.Component"
42790     },
42791     {
42792      "name": "hideMode",
42793      "type": "String",
42794      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
42795      "memberOf": "Roo.Component",
42796      "optvals": [
42797       "display",
42798       "visibility"
42799      ]
42800     },
42801     {
42802      "name": "actionMode",
42803      "type": "String",
42804      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
42805      "memberOf": "Roo.Component"
42806     },
42807     {
42808      "name": "listeners",
42809      "type": "Object",
42810      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
42811      "memberOf": "Roo.util.Observable"
42812     }
42813    ],
42814    "events": [
42815     {
42816      "name": "beforedestroy",
42817      "sig": "function (_self)\n{\n\n}",
42818      "type": "function",
42819      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
42820     },
42821     {
42822      "name": "beforehide",
42823      "sig": "function (_self)\n{\n\n}",
42824      "type": "function",
42825      "desc": "Fires before the component is hidden. Return false to stop the hide."
42826     },
42827     {
42828      "name": "beforerender",
42829      "sig": "function (_self)\n{\n\n}",
42830      "type": "function",
42831      "desc": "Fires before the component is rendered. Return false to stop the render."
42832     },
42833     {
42834      "name": "beforeshow",
42835      "sig": "function (_self)\n{\n\n}",
42836      "type": "function",
42837      "desc": "Fires before the component is shown.  Return false to stop the show."
42838     },
42839     {
42840      "name": "blur",
42841      "sig": "function (_self)\n{\n\n}",
42842      "type": "function",
42843      "desc": "Fires when this field loses input focus."
42844     },
42845     {
42846      "name": "change",
42847      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
42848      "type": "function",
42849      "desc": "Fires just before the field blurs if the field value has changed."
42850     },
42851     {
42852      "name": "childrenrendered",
42853      "sig": "function (_self)\n{\n\n}",
42854      "type": "function",
42855      "desc": "Fires when the children have been rendered.."
42856     },
42857     {
42858      "name": "destroy",
42859      "sig": "function (_self)\n{\n\n}",
42860      "type": "function",
42861      "desc": "Fires after the component is destroyed."
42862     },
42863     {
42864      "name": "disable",
42865      "sig": "function (_self)\n{\n\n}",
42866      "type": "function",
42867      "desc": "Fires after the component is disabled."
42868     },
42869     {
42870      "name": "enable",
42871      "sig": "function (_self)\n{\n\n}",
42872      "type": "function",
42873      "desc": "Fires after the component is enabled."
42874     },
42875     {
42876      "name": "focus",
42877      "sig": "function (_self)\n{\n\n}",
42878      "type": "function",
42879      "desc": "Fires when this field receives input focus."
42880     },
42881     {
42882      "name": "hide",
42883      "sig": "function (_self)\n{\n\n}",
42884      "type": "function",
42885      "desc": "Fires after the component is hidden."
42886     },
42887     {
42888      "name": "invalid",
42889      "sig": "function (_self, msg)\n{\n\n}",
42890      "type": "function",
42891      "desc": "Fires after the field has been marked as invalid."
42892     },
42893     {
42894      "name": "keyup",
42895      "sig": "function (_self, e)\n{\n\n}",
42896      "type": "function",
42897      "desc": "Fires after the key up"
42898     },
42899     {
42900      "name": "render",
42901      "sig": "function (_self)\n{\n\n}",
42902      "type": "function",
42903      "desc": "Fires after the component is rendered."
42904     },
42905     {
42906      "name": "select",
42907      "sig": "function (_self, date)\n{\n\n}",
42908      "type": "function",
42909      "desc": "Fires when select a date."
42910     },
42911     {
42912      "name": "show",
42913      "sig": "function (thisthis, date)\n{\n\n}",
42914      "type": "function",
42915      "desc": "Fires when this field show."
42916     },
42917     {
42918      "name": "specialkey",
42919      "sig": "function (_self, e)\n{\n\n}",
42920      "type": "function",
42921      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
42922     },
42923     {
42924      "name": "valid",
42925      "sig": "function (_self)\n{\n\n}",
42926      "type": "function",
42927      "desc": "Fires after the field has been validated with no errors."
42928     }
42929    ],
42930    "methods": [
42931     {
42932      "name": "addEvents",
42933      "sig": "(Object object)",
42934      "type": "function",
42935      "desc": "Used to define events on this Observable"
42936     },
42937     {
42938      "name": "addListener",
42939      "sig": "(String eventName, Function handler, Object scope, Object options)",
42940      "type": "function",
42941      "desc": "Appends an event handler to this component"
42942     },
42943     {
42944      "name": "capture",
42945      "sig": "(Observable o, Function fn, Object scope)",
42946      "type": "function",
42947      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
42948     },
42949     {
42950      "name": "clearInvalid",
42951      "sig": "()",
42952      "type": "function",
42953      "desc": "Clear any invalid styles/messages for this field"
42954     },
42955     {
42956      "name": "destroy",
42957      "sig": "()",
42958      "type": "function",
42959      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
42960     },
42961     {
42962      "name": "disable",
42963      "sig": "()",
42964      "type": "function",
42965      "desc": "Disable this component."
42966     },
42967     {
42968      "name": "enable",
42969      "sig": "()",
42970      "type": "function",
42971      "desc": "Enable this component."
42972     },
42973     {
42974      "name": "fireEvent",
42975      "sig": "(String eventName, Object... args)",
42976      "type": "function",
42977      "desc": "Fires the specified event with the passed parameters (minus the event name)."
42978     },
42979     {
42980      "name": "focus",
42981      "sig": "(Boolean selectText)",
42982      "type": "function",
42983      "desc": "Try to focus this component."
42984     },
42985     {
42986      "name": "getChildContainer",
42987      "sig": "()",
42988      "type": "function",
42989      "desc": "Fetch the element to add children to"
42990     },
42991     {
42992      "name": "getEl",
42993      "sig": "()",
42994      "type": "function",
42995      "desc": "Returns the underlying {@link Roo.Element}."
42996     },
42997     {
42998      "name": "getId",
42999      "sig": "()",
43000      "type": "function",
43001      "desc": "Returns the id of this component."
43002     },
43003     {
43004      "name": "getName",
43005      "sig": "()",
43006      "type": "function",
43007      "desc": "Returns the name of the field"
43008     },
43009     {
43010      "name": "getRawValue",
43011      "sig": "()",
43012      "type": "function",
43013      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
43014     },
43015     {
43016      "name": "getValue",
43017      "sig": "()",
43018      "type": "function",
43019      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
43020     },
43021     {
43022      "name": "hasListener",
43023      "sig": "(String eventName)",
43024      "type": "function",
43025      "desc": "Checks to see if this object has any listeners for a specified event"
43026     },
43027     {
43028      "name": "hide",
43029      "sig": "()",
43030      "type": "function",
43031      "desc": "Hide a component - adds 'hidden' class"
43032     },
43033     {
43034      "name": "initEvents",
43035      "sig": "()",
43036      "type": "function",
43037      "desc": "Initialize Events for the element"
43038     },
43039     {
43040      "name": "inputEl",
43041      "sig": "()",
43042      "type": "function",
43043      "desc": "return the real input element."
43044     },
43045     {
43046      "name": "isVisible",
43047      "sig": "()",
43048      "type": "function",
43049      "desc": "Returns true if this component is visible."
43050     },
43051     {
43052      "name": "markInvalid",
43053      "sig": "(String msg)",
43054      "type": "function",
43055      "desc": "Mark this field as invalid"
43056     },
43057     {
43058      "name": "markValid",
43059      "sig": "()",
43060      "type": "function",
43061      "desc": "Mark this field as valid"
43062     },
43063     {
43064      "name": "on",
43065      "sig": "(String eventName, Function handler, Object scope, Object options)",
43066      "type": "function",
43067      "desc": "Appends an event handler to this element (shorthand for addListener)"
43068     },
43069     {
43070      "name": "purgeListeners",
43071      "sig": "()",
43072      "type": "function",
43073      "desc": "Removes all listeners for this object"
43074     },
43075     {
43076      "name": "releaseCapture",
43077      "sig": "(Observable o)",
43078      "type": "function",
43079      "desc": "Removes <b>all</b> added captures from the Observable."
43080     },
43081     {
43082      "name": "removeListener",
43083      "sig": "(String eventName, Function handler, Object scope)",
43084      "type": "function",
43085      "desc": "Removes a listener"
43086     },
43087     {
43088      "name": "render",
43089      "sig": "(String/HTMLElement/Element container)",
43090      "type": "function",
43091      "desc": "If this is a lazy rendering component, render it to its container element."
43092     },
43093     {
43094      "name": "reset",
43095      "sig": "()",
43096      "type": "function",
43097      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
43098     },
43099     {
43100      "name": "setDisabled",
43101      "sig": "(Boolean disabled)",
43102      "type": "function",
43103      "desc": "Convenience function for setting disabled/enabled by boolean."
43104     },
43105     {
43106      "name": "setRawValue",
43107      "sig": "(Mixed value)",
43108      "type": "function",
43109      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
43110     },
43111     {
43112      "name": "setValue",
43113      "sig": "(Mixed value)",
43114      "type": "function",
43115      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
43116     },
43117     {
43118      "name": "setVisible",
43119      "sig": "(Boolean visible)",
43120      "type": "function",
43121      "desc": "Convenience function to hide or show this component by boolean."
43122     },
43123     {
43124      "name": "show",
43125      "sig": "()",
43126      "type": "function",
43127      "desc": "Show a component - removes 'hidden' class"
43128     },
43129     {
43130      "name": "tooltipEl",
43131      "sig": "()",
43132      "type": "function",
43133      "desc": "Fetch the element to display the tooltip on."
43134     },
43135     {
43136      "name": "un",
43137      "sig": "(String eventName, Function handler, Object scope)",
43138      "type": "function",
43139      "desc": "Removes a listener (shorthand for removeListener)"
43140     },
43141     {
43142      "name": "validate",
43143      "sig": "()",
43144      "type": "function",
43145      "desc": "Validates the field value"
43146     },
43147     {
43148      "name": "validateValue",
43149      "sig": "(Mixed value)",
43150      "type": "function",
43151      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
43152     }
43153    ]
43154   },
43155   "Roo.bootstrap.Tooltip": {
43156    "props": [],
43157    "events": [],
43158    "methods": [
43159     {
43160      "name": "currentEl",
43161      "sig": "()",
43162      "type": "function",
43163      "desc": ""
43164     }
43165    ]
43166   },
43167   "Roo.bootstrap.TriggerField": {
43168    "props": [
43169     {
43170      "name": "triggerClass",
43171      "type": "String",
43172      "desc": "An additional CSS class used to style the trigger button.  The trigger will always get the\nclass 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.",
43173      "memberOf": ""
43174     },
43175     {
43176      "name": "caret",
43177      "type": "String",
43178      "desc": "a fontawesome for the trigger icon see http://fortawesome.github.io/Font-Awesome/icons/",
43179      "memberOf": "",
43180      "optvals": [
43181       "search",
43182       "calendar"
43183      ]
43184     },
43185     {
43186      "name": "hideTrigger",
43187      "type": "Boolean",
43188      "desc": "True to hide the trigger element and display only the base text field (defaults to false)",
43189      "memberOf": ""
43190     },
43191     {
43192      "name": "removable",
43193      "type": "Boolean",
43194      "desc": "special filter default false",
43195      "memberOf": "",
43196      "optvals": [
43197       "true",
43198       "false"
43199      ]
43200     },
43201     {
43202      "name": "disabled",
43203      "type": "Boolean",
43204      "desc": "is it disabled",
43205      "memberOf": "Roo.bootstrap.Input"
43206     },
43207     {
43208      "name": "inputType",
43209      "type": "String",
43210      "desc": "button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text",
43211      "memberOf": "Roo.bootstrap.Input"
43212     },
43213     {
43214      "name": "name",
43215      "type": "String",
43216      "desc": "name of the input",
43217      "memberOf": "Roo.bootstrap.Input"
43218     },
43219     {
43220      "name": "fieldLabel",
43221      "type": "string",
43222      "desc": "- the label associated",
43223      "memberOf": "Roo.bootstrap.Input"
43224     },
43225     {
43226      "name": "placeholder",
43227      "type": "string",
43228      "desc": "- placeholder to put in text.",
43229      "memberOf": "Roo.bootstrap.Input"
43230     },
43231     {
43232      "name": "before",
43233      "type": "string",
43234      "desc": "- input group add on before",
43235      "memberOf": "Roo.bootstrap.Input"
43236     },
43237     {
43238      "name": "after",
43239      "type": "string",
43240      "desc": "- input group add on after",
43241      "memberOf": "Roo.bootstrap.Input"
43242     },
43243     {
43244      "name": "size",
43245      "type": "string",
43246      "desc": "- (lg|sm) or leave empty..",
43247      "memberOf": "Roo.bootstrap.Input"
43248     },
43249     {
43250      "name": "xs",
43251      "type": "Number",
43252      "desc": "colspan out of 12 for mobile-sized screens",
43253      "memberOf": "Roo.bootstrap.Input"
43254     },
43255     {
43256      "name": "sm",
43257      "type": "Number",
43258      "desc": "colspan out of 12 for tablet-sized screens",
43259      "memberOf": "Roo.bootstrap.Input"
43260     },
43261     {
43262      "name": "md",
43263      "type": "Number",
43264      "desc": "colspan out of 12 for computer-sized screens",
43265      "memberOf": "Roo.bootstrap.Input"
43266     },
43267     {
43268      "name": "lg",
43269      "type": "Number",
43270      "desc": "colspan out of 12 for large computer-sized screens",
43271      "memberOf": "Roo.bootstrap.Input"
43272     },
43273     {
43274      "name": "value",
43275      "type": "string",
43276      "desc": "default value of the input",
43277      "memberOf": "Roo.bootstrap.Input"
43278     },
43279     {
43280      "name": "labelWidth",
43281      "type": "Number",
43282      "desc": "set the width of label (0-12)",
43283      "memberOf": "Roo.bootstrap.Input"
43284     },
43285     {
43286      "name": "labelAlign",
43287      "type": "String",
43288      "desc": "",
43289      "memberOf": "Roo.bootstrap.Input",
43290      "optvals": [
43291       "top",
43292       "left"
43293      ]
43294     },
43295     {
43296      "name": "readOnly",
43297      "type": "Boolean",
43298      "desc": "Specifies that the field should be read-only",
43299      "memberOf": "Roo.bootstrap.Input"
43300     },
43301     {
43302      "name": "autocomplete",
43303      "type": "String",
43304      "desc": "- default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en",
43305      "memberOf": "Roo.bootstrap.Input"
43306     },
43307     {
43308      "name": "indicatorpos",
43309      "type": "String",
43310      "desc": "default left",
43311      "memberOf": "Roo.bootstrap.Input",
43312      "optvals": [
43313       "left",
43314       "right"
43315      ]
43316     },
43317     {
43318      "name": "align",
43319      "type": "String",
43320      "desc": "Default left",
43321      "memberOf": "Roo.bootstrap.Input",
43322      "optvals": [
43323       "left",
43324       "center",
43325       "right"
43326      ]
43327     },
43328     {
43329      "name": "forceFeedback",
43330      "type": "Boolean",
43331      "desc": "Default false",
43332      "memberOf": "Roo.bootstrap.Input",
43333      "optvals": [
43334       "true",
43335       "false"
43336      ]
43337     },
43338     {
43339      "name": "validationEvent",
43340      "type": "String/Boolean",
43341      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
43342      "memberOf": "Roo.bootstrap.Input"
43343     },
43344     {
43345      "name": "validateOnBlur",
43346      "type": "Boolean",
43347      "desc": "Whether the field should validate when it loses focus (defaults to true).",
43348      "memberOf": "Roo.bootstrap.Input"
43349     },
43350     {
43351      "name": "validationDelay",
43352      "type": "Number",
43353      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
43354      "memberOf": "Roo.bootstrap.Input"
43355     },
43356     {
43357      "name": "focusClass",
43358      "type": "String",
43359      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
43360      "memberOf": "Roo.bootstrap.Input"
43361     },
43362     {
43363      "name": "invalidClass",
43364      "type": "String",
43365      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
43366      "memberOf": "Roo.bootstrap.Input"
43367     },
43368     {
43369      "name": "validClass",
43370      "type": "String",
43371      "desc": "The CSS class to use when marking a field valid (defaults to \"x-form-invalid\")",
43372      "memberOf": "Roo.bootstrap.Input"
43373     },
43374     {
43375      "name": "hasFeedback",
43376      "type": "Boolean",
43377      "desc": "default true",
43378      "memberOf": "Roo.bootstrap.Input",
43379      "optvals": [
43380       "true",
43381       "false"
43382      ]
43383     },
43384     {
43385      "name": "invalidFeedbackIcon",
43386      "type": "String",
43387      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
43388      "memberOf": "Roo.bootstrap.Input"
43389     },
43390     {
43391      "name": "validFeedbackIcon",
43392      "type": "String",
43393      "desc": "The CSS class to use when create feedback icon (defaults to \"x-form-invalid\")",
43394      "memberOf": "Roo.bootstrap.Input"
43395     },
43396     {
43397      "name": "selectOnFocus",
43398      "type": "Boolean",
43399      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
43400      "memberOf": "Roo.bootstrap.Input"
43401     },
43402     {
43403      "name": "maskRe",
43404      "type": "String",
43405      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
43406      "memberOf": "Roo.bootstrap.Input"
43407     },
43408     {
43409      "name": "vtype",
43410      "type": "String",
43411      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
43412      "memberOf": "Roo.bootstrap.Input"
43413     },
43414     {
43415      "name": "disableKeyFilter",
43416      "type": "Boolean",
43417      "desc": "True to disable input keystroke filtering (defaults to false)",
43418      "memberOf": "Roo.bootstrap.Input"
43419     },
43420     {
43421      "name": "allowBlank",
43422      "type": "Boolean",
43423      "desc": "False to validate that the value length > 0 (defaults to true)",
43424      "memberOf": "Roo.bootstrap.Input"
43425     },
43426     {
43427      "name": "blankText",
43428      "type": "String",
43429      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
43430      "memberOf": "Roo.bootstrap.Input"
43431     },
43432     {
43433      "name": "minLength",
43434      "type": "Number",
43435      "desc": "Minimum input field length required (defaults to 0)",
43436      "memberOf": "Roo.bootstrap.Input"
43437     },
43438     {
43439      "name": "maxLength",
43440      "type": "Number",
43441      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
43442      "memberOf": "Roo.bootstrap.Input"
43443     },
43444     {
43445      "name": "minLengthText",
43446      "type": "String",
43447      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
43448      "memberOf": "Roo.bootstrap.Input"
43449     },
43450     {
43451      "name": "maxLengthText",
43452      "type": "String",
43453      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
43454      "memberOf": "Roo.bootstrap.Input"
43455     },
43456     {
43457      "name": "validator",
43458      "type": "Function",
43459      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
43460      "memberOf": "Roo.bootstrap.Input"
43461     },
43462     {
43463      "name": "regex",
43464      "type": "RegExp",
43465      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
43466      "memberOf": "Roo.bootstrap.Input"
43467     },
43468     {
43469      "name": "regexText",
43470      "type": "String",
43471      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
43472      "memberOf": "Roo.bootstrap.Input"
43473     },
43474     {
43475      "name": "cls",
43476      "type": "String",
43477      "desc": "css class",
43478      "memberOf": "Roo.bootstrap.Component"
43479     },
43480     {
43481      "name": "style",
43482      "type": "String",
43483      "desc": "any extra css",
43484      "memberOf": "Roo.bootstrap.Component"
43485     },
43486     {
43487      "name": "xattr",
43488      "type": "Object",
43489      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
43490      "memberOf": "Roo.bootstrap.Component"
43491     },
43492     {
43493      "name": "can_build_overlaid",
43494      "type": "Boolean",
43495      "desc": "True if element can be rebuild from a HTML page",
43496      "memberOf": "Roo.bootstrap.Component"
43497     },
43498     {
43499      "name": "dataId",
43500      "type": "string",
43501      "desc": "cutomer id",
43502      "memberOf": "Roo.bootstrap.Component"
43503     },
43504     {
43505      "name": "tooltip",
43506      "type": "string",
43507      "desc": "Text for the tooltip",
43508      "memberOf": "Roo.bootstrap.Component"
43509     },
43510     {
43511      "name": "container_method",
43512      "type": "string",
43513      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
43514      "memberOf": "Roo.bootstrap.Component"
43515     },
43516     {
43517      "name": "disableClass",
43518      "type": "String",
43519      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
43520      "memberOf": "Roo.Component"
43521     },
43522     {
43523      "name": "allowDomMove",
43524      "type": "Boolean",
43525      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
43526      "memberOf": "Roo.Component"
43527     },
43528     {
43529      "name": "hideMode",
43530      "type": "String",
43531      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
43532      "memberOf": "Roo.Component",
43533      "optvals": [
43534       "display",
43535       "visibility"
43536      ]
43537     },
43538     {
43539      "name": "actionMode",
43540      "type": "String",
43541      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
43542      "memberOf": "Roo.Component"
43543     },
43544     {
43545      "name": "listeners",
43546      "type": "Object",
43547      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
43548      "memberOf": "Roo.util.Observable"
43549     }
43550    ],
43551    "events": [
43552     {
43553      "name": "beforedestroy",
43554      "sig": "function (_self)\n{\n\n}",
43555      "type": "function",
43556      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
43557     },
43558     {
43559      "name": "beforehide",
43560      "sig": "function (_self)\n{\n\n}",
43561      "type": "function",
43562      "desc": "Fires before the component is hidden. Return false to stop the hide."
43563     },
43564     {
43565      "name": "beforerender",
43566      "sig": "function (_self)\n{\n\n}",
43567      "type": "function",
43568      "desc": "Fires before the component is rendered. Return false to stop the render."
43569     },
43570     {
43571      "name": "beforeshow",
43572      "sig": "function (_self)\n{\n\n}",
43573      "type": "function",
43574      "desc": "Fires before the component is shown.  Return false to stop the show."
43575     },
43576     {
43577      "name": "blur",
43578      "sig": "function (_self)\n{\n\n}",
43579      "type": "function",
43580      "desc": "Fires when this field loses input focus."
43581     },
43582     {
43583      "name": "change",
43584      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
43585      "type": "function",
43586      "desc": "Fires just before the field blurs if the field value has changed."
43587     },
43588     {
43589      "name": "childrenrendered",
43590      "sig": "function (_self)\n{\n\n}",
43591      "type": "function",
43592      "desc": "Fires when the children have been rendered.."
43593     },
43594     {
43595      "name": "destroy",
43596      "sig": "function (_self)\n{\n\n}",
43597      "type": "function",
43598      "desc": "Fires after the component is destroyed."
43599     },
43600     {
43601      "name": "disable",
43602      "sig": "function (_self)\n{\n\n}",
43603      "type": "function",
43604      "desc": "Fires after the component is disabled."
43605     },
43606     {
43607      "name": "enable",
43608      "sig": "function (_self)\n{\n\n}",
43609      "type": "function",
43610      "desc": "Fires after the component is enabled."
43611     },
43612     {
43613      "name": "focus",
43614      "sig": "function (_self)\n{\n\n}",
43615      "type": "function",
43616      "desc": "Fires when this field receives input focus."
43617     },
43618     {
43619      "name": "hide",
43620      "sig": "function (_self)\n{\n\n}",
43621      "type": "function",
43622      "desc": "Fires after the component is hidden."
43623     },
43624     {
43625      "name": "invalid",
43626      "sig": "function (_self, msg)\n{\n\n}",
43627      "type": "function",
43628      "desc": "Fires after the field has been marked as invalid."
43629     },
43630     {
43631      "name": "keyup",
43632      "sig": "function (_self, e)\n{\n\n}",
43633      "type": "function",
43634      "desc": "Fires after the key up"
43635     },
43636     {
43637      "name": "render",
43638      "sig": "function (_self)\n{\n\n}",
43639      "type": "function",
43640      "desc": "Fires after the component is rendered."
43641     },
43642     {
43643      "name": "show",
43644      "sig": "function (_self)\n{\n\n}",
43645      "type": "function",
43646      "desc": "Fires after the component is shown."
43647     },
43648     {
43649      "name": "specialkey",
43650      "sig": "function (_self, e)\n{\n\n}",
43651      "type": "function",
43652      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
43653     },
43654     {
43655      "name": "valid",
43656      "sig": "function (_self)\n{\n\n}",
43657      "type": "function",
43658      "desc": "Fires after the field has been validated with no errors."
43659     }
43660    ],
43661    "methods": [
43662     {
43663      "name": "addEvents",
43664      "sig": "(Object object)",
43665      "type": "function",
43666      "desc": "Used to define events on this Observable"
43667     },
43668     {
43669      "name": "addListener",
43670      "sig": "(String eventName, Function handler, Object scope, Object options)",
43671      "type": "function",
43672      "desc": "Appends an event handler to this component"
43673     },
43674     {
43675      "name": "capture",
43676      "sig": "(Observable o, Function fn, Object scope)",
43677      "type": "function",
43678      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
43679     },
43680     {
43681      "name": "clearInvalid",
43682      "sig": "()",
43683      "type": "function",
43684      "desc": "Clear any invalid styles/messages for this field"
43685     },
43686     {
43687      "name": "destroy",
43688      "sig": "()",
43689      "type": "function",
43690      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
43691     },
43692     {
43693      "name": "disable",
43694      "sig": "()",
43695      "type": "function",
43696      "desc": "Disable this component."
43697     },
43698     {
43699      "name": "enable",
43700      "sig": "()",
43701      "type": "function",
43702      "desc": "Enable this component."
43703     },
43704     {
43705      "name": "fireEvent",
43706      "sig": "(String eventName, Object... args)",
43707      "type": "function",
43708      "desc": "Fires the specified event with the passed parameters (minus the event name)."
43709     },
43710     {
43711      "name": "focus",
43712      "sig": "(Boolean selectText)",
43713      "type": "function",
43714      "desc": "Try to focus this component."
43715     },
43716     {
43717      "name": "getChildContainer",
43718      "sig": "()",
43719      "type": "function",
43720      "desc": "Fetch the element to add children to"
43721     },
43722     {
43723      "name": "getEl",
43724      "sig": "()",
43725      "type": "function",
43726      "desc": "Returns the underlying {@link Roo.Element}."
43727     },
43728     {
43729      "name": "getId",
43730      "sig": "()",
43731      "type": "function",
43732      "desc": "Returns the id of this component."
43733     },
43734     {
43735      "name": "getName",
43736      "sig": "()",
43737      "type": "function",
43738      "desc": "Returns the name of the field"
43739     },
43740     {
43741      "name": "getRawValue",
43742      "sig": "()",
43743      "type": "function",
43744      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
43745     },
43746     {
43747      "name": "getValue",
43748      "sig": "()",
43749      "type": "function",
43750      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
43751     },
43752     {
43753      "name": "hasListener",
43754      "sig": "(String eventName)",
43755      "type": "function",
43756      "desc": "Checks to see if this object has any listeners for a specified event"
43757     },
43758     {
43759      "name": "hide",
43760      "sig": "()",
43761      "type": "function",
43762      "desc": "Hide a component - adds 'hidden' class"
43763     },
43764     {
43765      "name": "initEvents",
43766      "sig": "()",
43767      "type": "function",
43768      "desc": "Initialize Events for the element"
43769     },
43770     {
43771      "name": "inputEl",
43772      "sig": "()",
43773      "type": "function",
43774      "desc": "return the real input element."
43775     },
43776     {
43777      "name": "isVisible",
43778      "sig": "()",
43779      "type": "function",
43780      "desc": "Returns true if this component is visible."
43781     },
43782     {
43783      "name": "markInvalid",
43784      "sig": "(String msg)",
43785      "type": "function",
43786      "desc": "Mark this field as invalid"
43787     },
43788     {
43789      "name": "markValid",
43790      "sig": "()",
43791      "type": "function",
43792      "desc": "Mark this field as valid"
43793     },
43794     {
43795      "name": "on",
43796      "sig": "(String eventName, Function handler, Object scope, Object options)",
43797      "type": "function",
43798      "desc": "Appends an event handler to this element (shorthand for addListener)"
43799     },
43800     {
43801      "name": "onTriggerClick",
43802      "sig": "(EventObject e)",
43803      "type": "function",
43804      "desc": "The function that should handle the trigger's click event.  This method does nothing by default until overridden\nby an implementing function."
43805     },
43806     {
43807      "name": "purgeListeners",
43808      "sig": "()",
43809      "type": "function",
43810      "desc": "Removes all listeners for this object"
43811     },
43812     {
43813      "name": "releaseCapture",
43814      "sig": "(Observable o)",
43815      "type": "function",
43816      "desc": "Removes <b>all</b> added captures from the Observable."
43817     },
43818     {
43819      "name": "removeListener",
43820      "sig": "(String eventName, Function handler, Object scope)",
43821      "type": "function",
43822      "desc": "Removes a listener"
43823     },
43824     {
43825      "name": "render",
43826      "sig": "(String/HTMLElement/Element container)",
43827      "type": "function",
43828      "desc": "If this is a lazy rendering component, render it to its container element."
43829     },
43830     {
43831      "name": "reset",
43832      "sig": "()",
43833      "type": "function",
43834      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
43835     },
43836     {
43837      "name": "setDisabled",
43838      "sig": "(Boolean disabled)",
43839      "type": "function",
43840      "desc": "Convenience function for setting disabled/enabled by boolean."
43841     },
43842     {
43843      "name": "setRawValue",
43844      "sig": "(Mixed value)",
43845      "type": "function",
43846      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
43847     },
43848     {
43849      "name": "setValue",
43850      "sig": "(Mixed value)",
43851      "type": "function",
43852      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
43853     },
43854     {
43855      "name": "setVisible",
43856      "sig": "(Boolean visible)",
43857      "type": "function",
43858      "desc": "Convenience function to hide or show this component by boolean."
43859     },
43860     {
43861      "name": "show",
43862      "sig": "()",
43863      "type": "function",
43864      "desc": "Show a component - removes 'hidden' class"
43865     },
43866     {
43867      "name": "tooltipEl",
43868      "sig": "()",
43869      "type": "function",
43870      "desc": "Fetch the element to display the tooltip on."
43871     },
43872     {
43873      "name": "un",
43874      "sig": "(String eventName, Function handler, Object scope)",
43875      "type": "function",
43876      "desc": "Removes a listener (shorthand for removeListener)"
43877     },
43878     {
43879      "name": "validate",
43880      "sig": "()",
43881      "type": "function",
43882      "desc": "Validates the field value"
43883     },
43884     {
43885      "name": "validateValue",
43886      "sig": "(Mixed value)",
43887      "type": "function",
43888      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
43889     }
43890    ]
43891   },
43892   "Roo.bootstrap.UploadCropbox": {
43893    "props": [
43894     {
43895      "name": "emptyText",
43896      "type": "String",
43897      "desc": "show when image has been loaded",
43898      "memberOf": ""
43899     },
43900     {
43901      "name": "rotateNotify",
43902      "type": "String",
43903      "desc": "show when image too small to rotate",
43904      "memberOf": ""
43905     },
43906     {
43907      "name": "errorTimeout",
43908      "type": "Number",
43909      "desc": "default 3000",
43910      "memberOf": ""
43911     },
43912     {
43913      "name": "minWidth",
43914      "type": "Number",
43915      "desc": "default 300",
43916      "memberOf": ""
43917     },
43918     {
43919      "name": "minHeight",
43920      "type": "Number",
43921      "desc": "default 300",
43922      "memberOf": ""
43923     },
43924     {
43925      "name": "buttons",
43926      "type": "Array",
43927      "desc": "default ['rotateLeft', 'pictureBtn', 'rotateRight']",
43928      "memberOf": ""
43929     },
43930     {
43931      "name": "isDocument",
43932      "type": "Boolean",
43933      "desc": "default false",
43934      "memberOf": "",
43935      "optvals": [
43936       "true",
43937       "false"
43938      ]
43939     },
43940     {
43941      "name": "url",
43942      "type": "String",
43943      "desc": "action url",
43944      "memberOf": ""
43945     },
43946     {
43947      "name": "paramName",
43948      "type": "String",
43949      "desc": "default 'imageUpload'",
43950      "memberOf": ""
43951     },
43952     {
43953      "name": "method",
43954      "type": "String",
43955      "desc": "default POST",
43956      "memberOf": ""
43957     },
43958     {
43959      "name": "loadMask",
43960      "type": "Boolean",
43961      "desc": "default true",
43962      "memberOf": "",
43963      "optvals": [
43964       "true",
43965       "false"
43966      ]
43967     },
43968     {
43969      "name": "loadingText",
43970      "type": "Boolean",
43971      "desc": "default 'Loading...'",
43972      "memberOf": ""
43973     },
43974     {
43975      "name": "cls",
43976      "type": "String",
43977      "desc": "css class",
43978      "memberOf": "Roo.bootstrap.Component"
43979     },
43980     {
43981      "name": "style",
43982      "type": "String",
43983      "desc": "any extra css",
43984      "memberOf": "Roo.bootstrap.Component"
43985     },
43986     {
43987      "name": "xattr",
43988      "type": "Object",
43989      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
43990      "memberOf": "Roo.bootstrap.Component"
43991     },
43992     {
43993      "name": "can_build_overlaid",
43994      "type": "Boolean",
43995      "desc": "True if element can be rebuild from a HTML page",
43996      "memberOf": "Roo.bootstrap.Component"
43997     },
43998     {
43999      "name": "dataId",
44000      "type": "string",
44001      "desc": "cutomer id",
44002      "memberOf": "Roo.bootstrap.Component"
44003     },
44004     {
44005      "name": "name",
44006      "type": "string",
44007      "desc": "Specifies name attribute",
44008      "memberOf": "Roo.bootstrap.Component"
44009     },
44010     {
44011      "name": "tooltip",
44012      "type": "string",
44013      "desc": "Text for the tooltip",
44014      "memberOf": "Roo.bootstrap.Component"
44015     },
44016     {
44017      "name": "container_method",
44018      "type": "string",
44019      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
44020      "memberOf": "Roo.bootstrap.Component"
44021     },
44022     {
44023      "name": "disableClass",
44024      "type": "String",
44025      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
44026      "memberOf": "Roo.Component"
44027     },
44028     {
44029      "name": "allowDomMove",
44030      "type": "Boolean",
44031      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
44032      "memberOf": "Roo.Component"
44033     },
44034     {
44035      "name": "hideMode",
44036      "type": "String",
44037      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
44038      "memberOf": "Roo.Component",
44039      "optvals": [
44040       "display",
44041       "visibility"
44042      ]
44043     },
44044     {
44045      "name": "actionMode",
44046      "type": "String",
44047      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
44048      "memberOf": "Roo.Component"
44049     },
44050     {
44051      "name": "listeners",
44052      "type": "Object",
44053      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
44054      "memberOf": "Roo.util.Observable"
44055     }
44056    ],
44057    "events": [
44058     {
44059      "name": "arrange",
44060      "sig": "function (_self, formData)\n{\n\n}",
44061      "type": "function",
44062      "desc": "Fire when arrange the file data"
44063     },
44064     {
44065      "name": "beforedestroy",
44066      "sig": "function (_self)\n{\n\n}",
44067      "type": "function",
44068      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
44069     },
44070     {
44071      "name": "beforehide",
44072      "sig": "function (_self)\n{\n\n}",
44073      "type": "function",
44074      "desc": "Fires before the component is hidden. Return false to stop the hide."
44075     },
44076     {
44077      "name": "beforeloadcanvas",
44078      "sig": "function (_self, src)\n{\n\n}",
44079      "type": "function",
44080      "desc": "Fire before load the canvas"
44081     },
44082     {
44083      "name": "beforerender",
44084      "sig": "function (_self)\n{\n\n}",
44085      "type": "function",
44086      "desc": "Fires before the component is rendered. Return false to stop the render."
44087     },
44088     {
44089      "name": "beforeselectfile",
44090      "sig": "function (_self)\n{\n\n}",
44091      "type": "function",
44092      "desc": "Fire before select file"
44093     },
44094     {
44095      "name": "beforeshow",
44096      "sig": "function (_self)\n{\n\n}",
44097      "type": "function",
44098      "desc": "Fires before the component is shown.  Return false to stop the show."
44099     },
44100     {
44101      "name": "childrenrendered",
44102      "sig": "function (_self)\n{\n\n}",
44103      "type": "function",
44104      "desc": "Fires when the children have been rendered.."
44105     },
44106     {
44107      "name": "crop",
44108      "sig": "function (_self, data)\n{\n\n}",
44109      "type": "function",
44110      "desc": "Fire after initEvent"
44111     },
44112     {
44113      "name": "destroy",
44114      "sig": "function (_self)\n{\n\n}",
44115      "type": "function",
44116      "desc": "Fires after the component is destroyed."
44117     },
44118     {
44119      "name": "disable",
44120      "sig": "function (_self)\n{\n\n}",
44121      "type": "function",
44122      "desc": "Fires after the component is disabled."
44123     },
44124     {
44125      "name": "download",
44126      "sig": "function (_self)\n{\n\n}",
44127      "type": "function",
44128      "desc": "Fire when download the image"
44129     },
44130     {
44131      "name": "enable",
44132      "sig": "function (_self)\n{\n\n}",
44133      "type": "function",
44134      "desc": "Fires after the component is enabled."
44135     },
44136     {
44137      "name": "exception",
44138      "sig": "function (_self, xhr)\n{\n\n}",
44139      "type": "function",
44140      "desc": "Fire when get exception"
44141     },
44142     {
44143      "name": "footerbuttonclick",
44144      "sig": "function (_self, type)\n{\n\n}",
44145      "type": "function",
44146      "desc": "Fire when footerbuttonclick"
44147     },
44148     {
44149      "name": "hide",
44150      "sig": "function (_self)\n{\n\n}",
44151      "type": "function",
44152      "desc": "Fires after the component is hidden."
44153     },
44154     {
44155      "name": "initial",
44156      "sig": "function (_self)\n{\n\n}",
44157      "type": "function",
44158      "desc": "Fire after initEvent"
44159     },
44160     {
44161      "name": "inspect",
44162      "sig": "function (_self, file)\n{\n\n}",
44163      "type": "function",
44164      "desc": "Fire when inspect the file"
44165     },
44166     {
44167      "name": "prepare",
44168      "sig": "function (_self, file)\n{\n\n}",
44169      "type": "function",
44170      "desc": "Fire when preparing the file data"
44171     },
44172     {
44173      "name": "render",
44174      "sig": "function (_self)\n{\n\n}",
44175      "type": "function",
44176      "desc": "Fires after the component is rendered."
44177     },
44178     {
44179      "name": "resize",
44180      "sig": "function (_self)\n{\n\n}",
44181      "type": "function",
44182      "desc": "Fire when resize"
44183     },
44184     {
44185      "name": "rotate",
44186      "sig": "function (_self, pos)\n{\n\n}",
44187      "type": "function",
44188      "desc": "Fire when rotate the image"
44189     },
44190     {
44191      "name": "show",
44192      "sig": "function (_self)\n{\n\n}",
44193      "type": "function",
44194      "desc": "Fires after the component is shown."
44195     },
44196     {
44197      "name": "trash",
44198      "sig": "function (_self)\n{\n\n}",
44199      "type": "function",
44200      "desc": "Fire when trash image"
44201     },
44202     {
44203      "name": "upload",
44204      "sig": "function (_self, data)\n{\n\n}",
44205      "type": "function",
44206      "desc": "Fire when xhr upload the file"
44207     }
44208    ],
44209    "methods": [
44210     {
44211      "name": "addEvents",
44212      "sig": "(Object object)",
44213      "type": "function",
44214      "desc": "Used to define events on this Observable"
44215     },
44216     {
44217      "name": "addListener",
44218      "sig": "(String eventName, Function handler, Object scope, Object options)",
44219      "type": "function",
44220      "desc": "Appends an event handler to this component"
44221     },
44222     {
44223      "name": "capture",
44224      "sig": "(Observable o, Function fn, Object scope)",
44225      "type": "function",
44226      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
44227     },
44228     {
44229      "name": "destroy",
44230      "sig": "()",
44231      "type": "function",
44232      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
44233     },
44234     {
44235      "name": "disable",
44236      "sig": "()",
44237      "type": "function",
44238      "desc": "Disable this component."
44239     },
44240     {
44241      "name": "enable",
44242      "sig": "()",
44243      "type": "function",
44244      "desc": "Enable this component."
44245     },
44246     {
44247      "name": "fireEvent",
44248      "sig": "(String eventName, Object... args)",
44249      "type": "function",
44250      "desc": "Fires the specified event with the passed parameters (minus the event name)."
44251     },
44252     {
44253      "name": "focus",
44254      "sig": "(Boolean selectText)",
44255      "type": "function",
44256      "desc": "Try to focus this component."
44257     },
44258     {
44259      "name": "getChildContainer",
44260      "sig": "()",
44261      "type": "function",
44262      "desc": "Fetch the element to add children to"
44263     },
44264     {
44265      "name": "getEl",
44266      "sig": "()",
44267      "type": "function",
44268      "desc": "Returns the underlying {@link Roo.Element}."
44269     },
44270     {
44271      "name": "getId",
44272      "sig": "()",
44273      "type": "function",
44274      "desc": "Returns the id of this component."
44275     },
44276     {
44277      "name": "hasListener",
44278      "sig": "(String eventName)",
44279      "type": "function",
44280      "desc": "Checks to see if this object has any listeners for a specified event"
44281     },
44282     {
44283      "name": "hide",
44284      "sig": "()",
44285      "type": "function",
44286      "desc": "Hide a component - adds 'hidden' class"
44287     },
44288     {
44289      "name": "initEvents",
44290      "sig": "()",
44291      "type": "function",
44292      "desc": "Initialize Events for the element"
44293     },
44294     {
44295      "name": "isVisible",
44296      "sig": "()",
44297      "type": "function",
44298      "desc": "Returns true if this component is visible."
44299     },
44300     {
44301      "name": "on",
44302      "sig": "(String eventName, Function handler, Object scope, Object options)",
44303      "type": "function",
44304      "desc": "Appends an event handler to this element (shorthand for addListener)"
44305     },
44306     {
44307      "name": "purgeListeners",
44308      "sig": "()",
44309      "type": "function",
44310      "desc": "Removes all listeners for this object"
44311     },
44312     {
44313      "name": "releaseCapture",
44314      "sig": "(Observable o)",
44315      "type": "function",
44316      "desc": "Removes <b>all</b> added captures from the Observable."
44317     },
44318     {
44319      "name": "removeListener",
44320      "sig": "(String eventName, Function handler, Object scope)",
44321      "type": "function",
44322      "desc": "Removes a listener"
44323     },
44324     {
44325      "name": "render",
44326      "sig": "(String/HTMLElement/Element container)",
44327      "type": "function",
44328      "desc": "If this is a lazy rendering component, render it to its container element."
44329     },
44330     {
44331      "name": "setDisabled",
44332      "sig": "(Boolean disabled)",
44333      "type": "function",
44334      "desc": "Convenience function for setting disabled/enabled by boolean."
44335     },
44336     {
44337      "name": "setVisible",
44338      "sig": "(Boolean visible)",
44339      "type": "function",
44340      "desc": "Convenience function to hide or show this component by boolean."
44341     },
44342     {
44343      "name": "show",
44344      "sig": "()",
44345      "type": "function",
44346      "desc": "Show a component - removes 'hidden' class"
44347     },
44348     {
44349      "name": "tooltipEl",
44350      "sig": "()",
44351      "type": "function",
44352      "desc": "Fetch the element to display the tooltip on."
44353     },
44354     {
44355      "name": "un",
44356      "sig": "(String eventName, Function handler, Object scope)",
44357      "type": "function",
44358      "desc": "Removes a listener (shorthand for removeListener)"
44359     }
44360    ]
44361   },
44362   "Roo.bootstrap.dash": {
44363    "props": [],
44364    "events": [],
44365    "methods": []
44366   },
44367   "Roo.bootstrap.dash.NumberBox": {
44368    "props": [
44369     {
44370      "name": "headline",
44371      "type": "String",
44372      "desc": "Box headline",
44373      "memberOf": ""
44374     },
44375     {
44376      "name": "content",
44377      "type": "String",
44378      "desc": "Box content",
44379      "memberOf": ""
44380     },
44381     {
44382      "name": "icon",
44383      "type": "String",
44384      "desc": "Box icon",
44385      "memberOf": ""
44386     },
44387     {
44388      "name": "footer",
44389      "type": "String",
44390      "desc": "Footer text",
44391      "memberOf": ""
44392     },
44393     {
44394      "name": "fhref",
44395      "type": "String",
44396      "desc": "Footer href",
44397      "memberOf": ""
44398     },
44399     {
44400      "name": "cls",
44401      "type": "String",
44402      "desc": "css class",
44403      "memberOf": "Roo.bootstrap.Component"
44404     },
44405     {
44406      "name": "style",
44407      "type": "String",
44408      "desc": "any extra css",
44409      "memberOf": "Roo.bootstrap.Component"
44410     },
44411     {
44412      "name": "xattr",
44413      "type": "Object",
44414      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
44415      "memberOf": "Roo.bootstrap.Component"
44416     },
44417     {
44418      "name": "can_build_overlaid",
44419      "type": "Boolean",
44420      "desc": "True if element can be rebuild from a HTML page",
44421      "memberOf": "Roo.bootstrap.Component"
44422     },
44423     {
44424      "name": "dataId",
44425      "type": "string",
44426      "desc": "cutomer id",
44427      "memberOf": "Roo.bootstrap.Component"
44428     },
44429     {
44430      "name": "name",
44431      "type": "string",
44432      "desc": "Specifies name attribute",
44433      "memberOf": "Roo.bootstrap.Component"
44434     },
44435     {
44436      "name": "tooltip",
44437      "type": "string",
44438      "desc": "Text for the tooltip",
44439      "memberOf": "Roo.bootstrap.Component"
44440     },
44441     {
44442      "name": "container_method",
44443      "type": "string",
44444      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
44445      "memberOf": "Roo.bootstrap.Component"
44446     },
44447     {
44448      "name": "disableClass",
44449      "type": "String",
44450      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
44451      "memberOf": "Roo.Component"
44452     },
44453     {
44454      "name": "allowDomMove",
44455      "type": "Boolean",
44456      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
44457      "memberOf": "Roo.Component"
44458     },
44459     {
44460      "name": "hideMode",
44461      "type": "String",
44462      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
44463      "memberOf": "Roo.Component",
44464      "optvals": [
44465       "display",
44466       "visibility"
44467      ]
44468     },
44469     {
44470      "name": "actionMode",
44471      "type": "String",
44472      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
44473      "memberOf": "Roo.Component"
44474     },
44475     {
44476      "name": "listeners",
44477      "type": "Object",
44478      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
44479      "memberOf": "Roo.util.Observable"
44480     }
44481    ],
44482    "events": [
44483     {
44484      "name": "beforedestroy",
44485      "sig": "function (_self)\n{\n\n}",
44486      "type": "function",
44487      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
44488     },
44489     {
44490      "name": "beforehide",
44491      "sig": "function (_self)\n{\n\n}",
44492      "type": "function",
44493      "desc": "Fires before the component is hidden. Return false to stop the hide."
44494     },
44495     {
44496      "name": "beforerender",
44497      "sig": "function (_self)\n{\n\n}",
44498      "type": "function",
44499      "desc": "Fires before the component is rendered. Return false to stop the render."
44500     },
44501     {
44502      "name": "beforeshow",
44503      "sig": "function (_self)\n{\n\n}",
44504      "type": "function",
44505      "desc": "Fires before the component is shown.  Return false to stop the show."
44506     },
44507     {
44508      "name": "childrenrendered",
44509      "sig": "function (_self)\n{\n\n}",
44510      "type": "function",
44511      "desc": "Fires when the children have been rendered.."
44512     },
44513     {
44514      "name": "destroy",
44515      "sig": "function (_self)\n{\n\n}",
44516      "type": "function",
44517      "desc": "Fires after the component is destroyed."
44518     },
44519     {
44520      "name": "disable",
44521      "sig": "function (_self)\n{\n\n}",
44522      "type": "function",
44523      "desc": "Fires after the component is disabled."
44524     },
44525     {
44526      "name": "enable",
44527      "sig": "function (_self)\n{\n\n}",
44528      "type": "function",
44529      "desc": "Fires after the component is enabled."
44530     },
44531     {
44532      "name": "hide",
44533      "sig": "function (_self)\n{\n\n}",
44534      "type": "function",
44535      "desc": "Fires after the component is hidden."
44536     },
44537     {
44538      "name": "render",
44539      "sig": "function (_self)\n{\n\n}",
44540      "type": "function",
44541      "desc": "Fires after the component is rendered."
44542     },
44543     {
44544      "name": "show",
44545      "sig": "function (_self)\n{\n\n}",
44546      "type": "function",
44547      "desc": "Fires after the component is shown."
44548     }
44549    ],
44550    "methods": [
44551     {
44552      "name": "addEvents",
44553      "sig": "(Object object)",
44554      "type": "function",
44555      "desc": "Used to define events on this Observable"
44556     },
44557     {
44558      "name": "addListener",
44559      "sig": "(String eventName, Function handler, Object scope, Object options)",
44560      "type": "function",
44561      "desc": "Appends an event handler to this component"
44562     },
44563     {
44564      "name": "capture",
44565      "sig": "(Observable o, Function fn, Object scope)",
44566      "type": "function",
44567      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
44568     },
44569     {
44570      "name": "destroy",
44571      "sig": "()",
44572      "type": "function",
44573      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
44574     },
44575     {
44576      "name": "disable",
44577      "sig": "()",
44578      "type": "function",
44579      "desc": "Disable this component."
44580     },
44581     {
44582      "name": "enable",
44583      "sig": "()",
44584      "type": "function",
44585      "desc": "Enable this component."
44586     },
44587     {
44588      "name": "fireEvent",
44589      "sig": "(String eventName, Object... args)",
44590      "type": "function",
44591      "desc": "Fires the specified event with the passed parameters (minus the event name)."
44592     },
44593     {
44594      "name": "focus",
44595      "sig": "(Boolean selectText)",
44596      "type": "function",
44597      "desc": "Try to focus this component."
44598     },
44599     {
44600      "name": "getChildContainer",
44601      "sig": "()",
44602      "type": "function",
44603      "desc": "Fetch the element to add children to"
44604     },
44605     {
44606      "name": "getEl",
44607      "sig": "()",
44608      "type": "function",
44609      "desc": "Returns the underlying {@link Roo.Element}."
44610     },
44611     {
44612      "name": "getId",
44613      "sig": "()",
44614      "type": "function",
44615      "desc": "Returns the id of this component."
44616     },
44617     {
44618      "name": "hasListener",
44619      "sig": "(String eventName)",
44620      "type": "function",
44621      "desc": "Checks to see if this object has any listeners for a specified event"
44622     },
44623     {
44624      "name": "hide",
44625      "sig": "()",
44626      "type": "function",
44627      "desc": "Hide a component - adds 'hidden' class"
44628     },
44629     {
44630      "name": "initEvents",
44631      "sig": "()",
44632      "type": "function",
44633      "desc": "Initialize Events for the element"
44634     },
44635     {
44636      "name": "isVisible",
44637      "sig": "()",
44638      "type": "function",
44639      "desc": "Returns true if this component is visible."
44640     },
44641     {
44642      "name": "on",
44643      "sig": "(String eventName, Function handler, Object scope, Object options)",
44644      "type": "function",
44645      "desc": "Appends an event handler to this element (shorthand for addListener)"
44646     },
44647     {
44648      "name": "purgeListeners",
44649      "sig": "()",
44650      "type": "function",
44651      "desc": "Removes all listeners for this object"
44652     },
44653     {
44654      "name": "releaseCapture",
44655      "sig": "(Observable o)",
44656      "type": "function",
44657      "desc": "Removes <b>all</b> added captures from the Observable."
44658     },
44659     {
44660      "name": "removeListener",
44661      "sig": "(String eventName, Function handler, Object scope)",
44662      "type": "function",
44663      "desc": "Removes a listener"
44664     },
44665     {
44666      "name": "render",
44667      "sig": "(String/HTMLElement/Element container)",
44668      "type": "function",
44669      "desc": "If this is a lazy rendering component, render it to its container element."
44670     },
44671     {
44672      "name": "setDisabled",
44673      "sig": "(Boolean disabled)",
44674      "type": "function",
44675      "desc": "Convenience function for setting disabled/enabled by boolean."
44676     },
44677     {
44678      "name": "setVisible",
44679      "sig": "(Boolean visible)",
44680      "type": "function",
44681      "desc": "Convenience function to hide or show this component by boolean."
44682     },
44683     {
44684      "name": "show",
44685      "sig": "()",
44686      "type": "function",
44687      "desc": "Show a component - removes 'hidden' class"
44688     },
44689     {
44690      "name": "tooltipEl",
44691      "sig": "()",
44692      "type": "function",
44693      "desc": "Fetch the element to display the tooltip on."
44694     },
44695     {
44696      "name": "un",
44697      "sig": "(String eventName, Function handler, Object scope)",
44698      "type": "function",
44699      "desc": "Removes a listener (shorthand for removeListener)"
44700     }
44701    ]
44702   },
44703   "Roo.bootstrap.dash.TabBox": {
44704    "props": [
44705     {
44706      "name": "title",
44707      "type": "String",
44708      "desc": "Title of the TabBox",
44709      "memberOf": ""
44710     },
44711     {
44712      "name": "icon",
44713      "type": "String",
44714      "desc": "Icon of the TabBox",
44715      "memberOf": ""
44716     },
44717     {
44718      "name": "showtabs",
44719      "type": "Boolean",
44720      "desc": "show the tabs default true",
44721      "memberOf": "",
44722      "optvals": [
44723       "true",
44724       "false"
44725      ]
44726     },
44727     {
44728      "name": "tabScrollable",
44729      "type": "Boolean",
44730      "desc": "tab scrollable when mobile view default false",
44731      "memberOf": "",
44732      "optvals": [
44733       "true",
44734       "false"
44735      ]
44736     },
44737     {
44738      "name": "cls",
44739      "type": "String",
44740      "desc": "css class",
44741      "memberOf": "Roo.bootstrap.Component"
44742     },
44743     {
44744      "name": "style",
44745      "type": "String",
44746      "desc": "any extra css",
44747      "memberOf": "Roo.bootstrap.Component"
44748     },
44749     {
44750      "name": "xattr",
44751      "type": "Object",
44752      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
44753      "memberOf": "Roo.bootstrap.Component"
44754     },
44755     {
44756      "name": "can_build_overlaid",
44757      "type": "Boolean",
44758      "desc": "True if element can be rebuild from a HTML page",
44759      "memberOf": "Roo.bootstrap.Component"
44760     },
44761     {
44762      "name": "dataId",
44763      "type": "string",
44764      "desc": "cutomer id",
44765      "memberOf": "Roo.bootstrap.Component"
44766     },
44767     {
44768      "name": "name",
44769      "type": "string",
44770      "desc": "Specifies name attribute",
44771      "memberOf": "Roo.bootstrap.Component"
44772     },
44773     {
44774      "name": "tooltip",
44775      "type": "string",
44776      "desc": "Text for the tooltip",
44777      "memberOf": "Roo.bootstrap.Component"
44778     },
44779     {
44780      "name": "container_method",
44781      "type": "string",
44782      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
44783      "memberOf": "Roo.bootstrap.Component"
44784     },
44785     {
44786      "name": "disableClass",
44787      "type": "String",
44788      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
44789      "memberOf": "Roo.Component"
44790     },
44791     {
44792      "name": "allowDomMove",
44793      "type": "Boolean",
44794      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
44795      "memberOf": "Roo.Component"
44796     },
44797     {
44798      "name": "hideMode",
44799      "type": "String",
44800      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
44801      "memberOf": "Roo.Component",
44802      "optvals": [
44803       "display",
44804       "visibility"
44805      ]
44806     },
44807     {
44808      "name": "actionMode",
44809      "type": "String",
44810      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
44811      "memberOf": "Roo.Component"
44812     },
44813     {
44814      "name": "listeners",
44815      "type": "Object",
44816      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
44817      "memberOf": "Roo.util.Observable"
44818     }
44819    ],
44820    "events": [
44821     {
44822      "name": "activatepane",
44823      "sig": "function (pane)\n{\n\n}",
44824      "type": "function",
44825      "desc": "When a pane is activated"
44826     },
44827     {
44828      "name": "addpane",
44829      "sig": "function (pane)\n{\n\n}",
44830      "type": "function",
44831      "desc": "When a pane is added"
44832     },
44833     {
44834      "name": "beforedestroy",
44835      "sig": "function (_self)\n{\n\n}",
44836      "type": "function",
44837      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
44838     },
44839     {
44840      "name": "beforehide",
44841      "sig": "function (_self)\n{\n\n}",
44842      "type": "function",
44843      "desc": "Fires before the component is hidden. Return false to stop the hide."
44844     },
44845     {
44846      "name": "beforerender",
44847      "sig": "function (_self)\n{\n\n}",
44848      "type": "function",
44849      "desc": "Fires before the component is rendered. Return false to stop the render."
44850     },
44851     {
44852      "name": "beforeshow",
44853      "sig": "function (_self)\n{\n\n}",
44854      "type": "function",
44855      "desc": "Fires before the component is shown.  Return false to stop the show."
44856     },
44857     {
44858      "name": "childrenrendered",
44859      "sig": "function (_self)\n{\n\n}",
44860      "type": "function",
44861      "desc": "Fires when the children have been rendered.."
44862     },
44863     {
44864      "name": "destroy",
44865      "sig": "function (_self)\n{\n\n}",
44866      "type": "function",
44867      "desc": "Fires after the component is destroyed."
44868     },
44869     {
44870      "name": "disable",
44871      "sig": "function (_self)\n{\n\n}",
44872      "type": "function",
44873      "desc": "Fires after the component is disabled."
44874     },
44875     {
44876      "name": "enable",
44877      "sig": "function (_self)\n{\n\n}",
44878      "type": "function",
44879      "desc": "Fires after the component is enabled."
44880     },
44881     {
44882      "name": "hide",
44883      "sig": "function (_self)\n{\n\n}",
44884      "type": "function",
44885      "desc": "Fires after the component is hidden."
44886     },
44887     {
44888      "name": "render",
44889      "sig": "function (_self)\n{\n\n}",
44890      "type": "function",
44891      "desc": "Fires after the component is rendered."
44892     },
44893     {
44894      "name": "show",
44895      "sig": "function (_self)\n{\n\n}",
44896      "type": "function",
44897      "desc": "Fires after the component is shown."
44898     }
44899    ],
44900    "methods": [
44901     {
44902      "name": "addEvents",
44903      "sig": "(Object object)",
44904      "type": "function",
44905      "desc": "Used to define events on this Observable"
44906     },
44907     {
44908      "name": "addListener",
44909      "sig": "(String eventName, Function handler, Object scope, Object options)",
44910      "type": "function",
44911      "desc": "Appends an event handler to this component"
44912     },
44913     {
44914      "name": "capture",
44915      "sig": "(Observable o, Function fn, Object scope)",
44916      "type": "function",
44917      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
44918     },
44919     {
44920      "name": "destroy",
44921      "sig": "()",
44922      "type": "function",
44923      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
44924     },
44925     {
44926      "name": "disable",
44927      "sig": "()",
44928      "type": "function",
44929      "desc": "Disable this component."
44930     },
44931     {
44932      "name": "enable",
44933      "sig": "()",
44934      "type": "function",
44935      "desc": "Enable this component."
44936     },
44937     {
44938      "name": "fireEvent",
44939      "sig": "(String eventName, Object... args)",
44940      "type": "function",
44941      "desc": "Fires the specified event with the passed parameters (minus the event name)."
44942     },
44943     {
44944      "name": "focus",
44945      "sig": "(Boolean selectText)",
44946      "type": "function",
44947      "desc": "Try to focus this component."
44948     },
44949     {
44950      "name": "getChildContainer",
44951      "sig": "()",
44952      "type": "function",
44953      "desc": "Fetch the element to add children to"
44954     },
44955     {
44956      "name": "getEl",
44957      "sig": "()",
44958      "type": "function",
44959      "desc": "Returns the underlying {@link Roo.Element}."
44960     },
44961     {
44962      "name": "getId",
44963      "sig": "()",
44964      "type": "function",
44965      "desc": "Returns the id of this component."
44966     },
44967     {
44968      "name": "hasListener",
44969      "sig": "(String eventName)",
44970      "type": "function",
44971      "desc": "Checks to see if this object has any listeners for a specified event"
44972     },
44973     {
44974      "name": "hide",
44975      "sig": "()",
44976      "type": "function",
44977      "desc": "Hide a component - adds 'hidden' class"
44978     },
44979     {
44980      "name": "initEvents",
44981      "sig": "()",
44982      "type": "function",
44983      "desc": "Initialize Events for the element"
44984     },
44985     {
44986      "name": "isVisible",
44987      "sig": "()",
44988      "type": "function",
44989      "desc": "Returns true if this component is visible."
44990     },
44991     {
44992      "name": "on",
44993      "sig": "(String eventName, Function handler, Object scope, Object options)",
44994      "type": "function",
44995      "desc": "Appends an event handler to this element (shorthand for addListener)"
44996     },
44997     {
44998      "name": "purgeListeners",
44999      "sig": "()",
45000      "type": "function",
45001      "desc": "Removes all listeners for this object"
45002     },
45003     {
45004      "name": "releaseCapture",
45005      "sig": "(Observable o)",
45006      "type": "function",
45007      "desc": "Removes <b>all</b> added captures from the Observable."
45008     },
45009     {
45010      "name": "removeListener",
45011      "sig": "(String eventName, Function handler, Object scope)",
45012      "type": "function",
45013      "desc": "Removes a listener"
45014     },
45015     {
45016      "name": "render",
45017      "sig": "(String/HTMLElement/Element container)",
45018      "type": "function",
45019      "desc": "If this is a lazy rendering component, render it to its container element."
45020     },
45021     {
45022      "name": "setDisabled",
45023      "sig": "(Boolean disabled)",
45024      "type": "function",
45025      "desc": "Convenience function for setting disabled/enabled by boolean."
45026     },
45027     {
45028      "name": "setTitle",
45029      "sig": "(String html)",
45030      "type": "function",
45031      "desc": "Updates the box title"
45032     },
45033     {
45034      "name": "setVisible",
45035      "sig": "(Boolean visible)",
45036      "type": "function",
45037      "desc": "Convenience function to hide or show this component by boolean."
45038     },
45039     {
45040      "name": "show",
45041      "sig": "()",
45042      "type": "function",
45043      "desc": "Show a component - removes 'hidden' class"
45044     },
45045     {
45046      "name": "tooltipEl",
45047      "sig": "()",
45048      "type": "function",
45049      "desc": "Fetch the element to display the tooltip on."
45050     },
45051     {
45052      "name": "un",
45053      "sig": "(String eventName, Function handler, Object scope)",
45054      "type": "function",
45055      "desc": "Removes a listener (shorthand for removeListener)"
45056     }
45057    ]
45058   },
45059   "Roo.bootstrap.dash.TabPane": {
45060    "props": [
45061     {
45062      "name": "active",
45063      "type": "Boolean",
45064      "desc": "Default false",
45065      "memberOf": "",
45066      "optvals": [
45067       "false",
45068       "true"
45069      ]
45070     },
45071     {
45072      "name": "title",
45073      "type": "String",
45074      "desc": "title of panel",
45075      "memberOf": ""
45076     },
45077     {
45078      "name": "cls",
45079      "type": "String",
45080      "desc": "css class",
45081      "memberOf": "Roo.bootstrap.Component"
45082     },
45083     {
45084      "name": "style",
45085      "type": "String",
45086      "desc": "any extra css",
45087      "memberOf": "Roo.bootstrap.Component"
45088     },
45089     {
45090      "name": "xattr",
45091      "type": "Object",
45092      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
45093      "memberOf": "Roo.bootstrap.Component"
45094     },
45095     {
45096      "name": "can_build_overlaid",
45097      "type": "Boolean",
45098      "desc": "True if element can be rebuild from a HTML page",
45099      "memberOf": "Roo.bootstrap.Component"
45100     },
45101     {
45102      "name": "dataId",
45103      "type": "string",
45104      "desc": "cutomer id",
45105      "memberOf": "Roo.bootstrap.Component"
45106     },
45107     {
45108      "name": "name",
45109      "type": "string",
45110      "desc": "Specifies name attribute",
45111      "memberOf": "Roo.bootstrap.Component"
45112     },
45113     {
45114      "name": "tooltip",
45115      "type": "string",
45116      "desc": "Text for the tooltip",
45117      "memberOf": "Roo.bootstrap.Component"
45118     },
45119     {
45120      "name": "container_method",
45121      "type": "string",
45122      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
45123      "memberOf": "Roo.bootstrap.Component"
45124     },
45125     {
45126      "name": "disableClass",
45127      "type": "String",
45128      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
45129      "memberOf": "Roo.Component"
45130     },
45131     {
45132      "name": "allowDomMove",
45133      "type": "Boolean",
45134      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
45135      "memberOf": "Roo.Component"
45136     },
45137     {
45138      "name": "hideMode",
45139      "type": "String",
45140      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
45141      "memberOf": "Roo.Component",
45142      "optvals": [
45143       "display",
45144       "visibility"
45145      ]
45146     },
45147     {
45148      "name": "actionMode",
45149      "type": "String",
45150      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
45151      "memberOf": "Roo.Component"
45152     },
45153     {
45154      "name": "listeners",
45155      "type": "Object",
45156      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
45157      "memberOf": "Roo.util.Observable"
45158     }
45159    ],
45160    "events": [
45161     {
45162      "name": "activate",
45163      "sig": "function (pane)\n{\n\n}",
45164      "type": "function",
45165      "desc": "When a pane is activated"
45166     },
45167     {
45168      "name": "beforedestroy",
45169      "sig": "function (_self)\n{\n\n}",
45170      "type": "function",
45171      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
45172     },
45173     {
45174      "name": "beforehide",
45175      "sig": "function (_self)\n{\n\n}",
45176      "type": "function",
45177      "desc": "Fires before the component is hidden. Return false to stop the hide."
45178     },
45179     {
45180      "name": "beforerender",
45181      "sig": "function (_self)\n{\n\n}",
45182      "type": "function",
45183      "desc": "Fires before the component is rendered. Return false to stop the render."
45184     },
45185     {
45186      "name": "beforeshow",
45187      "sig": "function (_self)\n{\n\n}",
45188      "type": "function",
45189      "desc": "Fires before the component is shown.  Return false to stop the show."
45190     },
45191     {
45192      "name": "childrenrendered",
45193      "sig": "function (_self)\n{\n\n}",
45194      "type": "function",
45195      "desc": "Fires when the children have been rendered.."
45196     },
45197     {
45198      "name": "destroy",
45199      "sig": "function (_self)\n{\n\n}",
45200      "type": "function",
45201      "desc": "Fires after the component is destroyed."
45202     },
45203     {
45204      "name": "disable",
45205      "sig": "function (_self)\n{\n\n}",
45206      "type": "function",
45207      "desc": "Fires after the component is disabled."
45208     },
45209     {
45210      "name": "enable",
45211      "sig": "function (_self)\n{\n\n}",
45212      "type": "function",
45213      "desc": "Fires after the component is enabled."
45214     },
45215     {
45216      "name": "hide",
45217      "sig": "function (_self)\n{\n\n}",
45218      "type": "function",
45219      "desc": "Fires after the component is hidden."
45220     },
45221     {
45222      "name": "render",
45223      "sig": "function (_self)\n{\n\n}",
45224      "type": "function",
45225      "desc": "Fires after the component is rendered."
45226     },
45227     {
45228      "name": "show",
45229      "sig": "function (_self)\n{\n\n}",
45230      "type": "function",
45231      "desc": "Fires after the component is shown."
45232     }
45233    ],
45234    "methods": [
45235     {
45236      "name": "addEvents",
45237      "sig": "(Object object)",
45238      "type": "function",
45239      "desc": "Used to define events on this Observable"
45240     },
45241     {
45242      "name": "addListener",
45243      "sig": "(String eventName, Function handler, Object scope, Object options)",
45244      "type": "function",
45245      "desc": "Appends an event handler to this component"
45246     },
45247     {
45248      "name": "capture",
45249      "sig": "(Observable o, Function fn, Object scope)",
45250      "type": "function",
45251      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
45252     },
45253     {
45254      "name": "destroy",
45255      "sig": "()",
45256      "type": "function",
45257      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
45258     },
45259     {
45260      "name": "disable",
45261      "sig": "()",
45262      "type": "function",
45263      "desc": "Disable this component."
45264     },
45265     {
45266      "name": "enable",
45267      "sig": "()",
45268      "type": "function",
45269      "desc": "Enable this component."
45270     },
45271     {
45272      "name": "fireEvent",
45273      "sig": "(String eventName, Object... args)",
45274      "type": "function",
45275      "desc": "Fires the specified event with the passed parameters (minus the event name)."
45276     },
45277     {
45278      "name": "focus",
45279      "sig": "(Boolean selectText)",
45280      "type": "function",
45281      "desc": "Try to focus this component."
45282     },
45283     {
45284      "name": "getChildContainer",
45285      "sig": "()",
45286      "type": "function",
45287      "desc": "Fetch the element to add children to"
45288     },
45289     {
45290      "name": "getEl",
45291      "sig": "()",
45292      "type": "function",
45293      "desc": "Returns the underlying {@link Roo.Element}."
45294     },
45295     {
45296      "name": "getId",
45297      "sig": "()",
45298      "type": "function",
45299      "desc": "Returns the id of this component."
45300     },
45301     {
45302      "name": "hasListener",
45303      "sig": "(String eventName)",
45304      "type": "function",
45305      "desc": "Checks to see if this object has any listeners for a specified event"
45306     },
45307     {
45308      "name": "hide",
45309      "sig": "()",
45310      "type": "function",
45311      "desc": "Hide a component - adds 'hidden' class"
45312     },
45313     {
45314      "name": "initEvents",
45315      "sig": "()",
45316      "type": "function",
45317      "desc": "Initialize Events for the element"
45318     },
45319     {
45320      "name": "isVisible",
45321      "sig": "()",
45322      "type": "function",
45323      "desc": "Returns true if this component is visible."
45324     },
45325     {
45326      "name": "on",
45327      "sig": "(String eventName, Function handler, Object scope, Object options)",
45328      "type": "function",
45329      "desc": "Appends an event handler to this element (shorthand for addListener)"
45330     },
45331     {
45332      "name": "purgeListeners",
45333      "sig": "()",
45334      "type": "function",
45335      "desc": "Removes all listeners for this object"
45336     },
45337     {
45338      "name": "releaseCapture",
45339      "sig": "(Observable o)",
45340      "type": "function",
45341      "desc": "Removes <b>all</b> added captures from the Observable."
45342     },
45343     {
45344      "name": "removeListener",
45345      "sig": "(String eventName, Function handler, Object scope)",
45346      "type": "function",
45347      "desc": "Removes a listener"
45348     },
45349     {
45350      "name": "render",
45351      "sig": "(String/HTMLElement/Element container)",
45352      "type": "function",
45353      "desc": "If this is a lazy rendering component, render it to its container element."
45354     },
45355     {
45356      "name": "setDisabled",
45357      "sig": "(Boolean disabled)",
45358      "type": "function",
45359      "desc": "Convenience function for setting disabled/enabled by boolean."
45360     },
45361     {
45362      "name": "setTitle",
45363      "sig": "(String html)",
45364      "type": "function",
45365      "desc": "Updates the tab title"
45366     },
45367     {
45368      "name": "setVisible",
45369      "sig": "(Boolean visible)",
45370      "type": "function",
45371      "desc": "Convenience function to hide or show this component by boolean."
45372     },
45373     {
45374      "name": "show",
45375      "sig": "()",
45376      "type": "function",
45377      "desc": "Show a component - removes 'hidden' class"
45378     },
45379     {
45380      "name": "tooltipEl",
45381      "sig": "()",
45382      "type": "function",
45383      "desc": "Fetch the element to display the tooltip on."
45384     },
45385     {
45386      "name": "un",
45387      "sig": "(String eventName, Function handler, Object scope)",
45388      "type": "function",
45389      "desc": "Removes a listener (shorthand for removeListener)"
45390     }
45391    ]
45392   },
45393   "Roo.bootstrap.htmleditor": {
45394    "props": [],
45395    "events": [],
45396    "methods": []
45397   },
45398   "Roo.bootstrap.htmleditor.ToolbarStandard": {
45399    "props": [
45400     {
45401      "name": "disable",
45402      "type": "Object",
45403      "desc": "List of elements to disable..",
45404      "memberOf": ""
45405     },
45406     {
45407      "name": "btns",
45408      "type": "Array",
45409      "desc": "List of additional buttons.\n\n\nNEEDS Extra CSS? \n.x-html-editor-tb .x-edit-none .x-btn-text { background: none; }",
45410      "memberOf": ""
45411     }
45412    ],
45413    "events": [],
45414    "methods": [
45415     {
45416      "name": "updateToolbar",
45417      "sig": "()",
45418      "type": "function",
45419      "desc": "Protected method that will not generally be called directly. It triggers\na toolbar update by reading the markup state of the current selection in the editor."
45420     }
45421    ]
45422   },
45423   "Roo.bootstrap.layout": {
45424    "props": [],
45425    "events": [],
45426    "methods": []
45427   },
45428   "Roo.bootstrap.layout.Basic": {
45429    "props": [
45430     {
45431      "name": "mgr",
45432      "type": "Roo.bootstrap.layout.Manager",
45433      "desc": "The manager",
45434      "memberOf": ""
45435     },
45436     {
45437      "name": "region",
45438      "type": "string",
45439      "desc": "the region that it inhabits..",
45440      "memberOf": ""
45441     },
45442     {
45443      "name": "skipConfig",
45444      "type": "bool",
45445      "desc": "skip config?",
45446      "memberOf": ""
45447     },
45448     {
45449      "name": "listeners",
45450      "type": "Object",
45451      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
45452      "memberOf": "Roo.util.Observable"
45453     }
45454    ],
45455    "events": [],
45456    "methods": [
45457     {
45458      "name": "add",
45459      "sig": "(ContentPanel... panel)",
45460      "type": "function",
45461      "desc": "Add the passed ContentPanel(s)"
45462     },
45463     {
45464      "name": "addEvents",
45465      "sig": "(Object object)",
45466      "type": "function",
45467      "desc": "Used to define events on this Observable"
45468     },
45469     {
45470      "name": "addListener",
45471      "sig": "(String eventName, Function handler, Object scope, Object options)",
45472      "type": "function",
45473      "desc": "Appends an event handler to this component"
45474     },
45475     {
45476      "name": "capture",
45477      "sig": "(Observable o, Function fn, Object scope)",
45478      "type": "function",
45479      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
45480     },
45481     {
45482      "name": "fireEvent",
45483      "sig": "(String eventName, Object... args)",
45484      "type": "function",
45485      "desc": "Fires the specified event with the passed parameters (minus the event name)."
45486     },
45487     {
45488      "name": "getActivePanel",
45489      "sig": "()",
45490      "type": "function",
45491      "desc": "Get the active panel for this region."
45492     },
45493     {
45494      "name": "getEl",
45495      "sig": "()",
45496      "type": "function",
45497      "desc": "Returns the container element for this region."
45498     },
45499     {
45500      "name": "getPanel",
45501      "sig": "(Number/String/ContentPanel panel)",
45502      "type": "function",
45503      "desc": "Returns the panel specified or null if it's not in this region."
45504     },
45505     {
45506      "name": "getPosition",
45507      "sig": "()",
45508      "type": "function",
45509      "desc": "Returns this regions position (north/south/east/west/center)."
45510     },
45511     {
45512      "name": "hasListener",
45513      "sig": "(String eventName)",
45514      "type": "function",
45515      "desc": "Checks to see if this object has any listeners for a specified event"
45516     },
45517     {
45518      "name": "hasPanel",
45519      "sig": "(Number/String/ContentPanel panel)",
45520      "type": "function",
45521      "desc": "Returns true if the panel is in this region."
45522     },
45523     {
45524      "name": "isVisible",
45525      "sig": "()",
45526      "type": "function",
45527      "desc": "Returns true if this region is currently visible."
45528     },
45529     {
45530      "name": "on",
45531      "sig": "(String eventName, Function handler, Object scope, Object options)",
45532      "type": "function",
45533      "desc": "Appends an event handler to this element (shorthand for addListener)"
45534     },
45535     {
45536      "name": "purgeListeners",
45537      "sig": "()",
45538      "type": "function",
45539      "desc": "Removes all listeners for this object"
45540     },
45541     {
45542      "name": "releaseCapture",
45543      "sig": "(Observable o)",
45544      "type": "function",
45545      "desc": "Removes <b>all</b> added captures from the Observable."
45546     },
45547     {
45548      "name": "remove",
45549      "sig": "(Number/String/ContentPanel panel, Boolean preservePanel)",
45550      "type": "function",
45551      "desc": "Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed."
45552     },
45553     {
45554      "name": "removeListener",
45555      "sig": "(String eventName, Function handler, Object scope)",
45556      "type": "function",
45557      "desc": "Removes a listener"
45558     },
45559     {
45560      "name": "resizeTo",
45561      "sig": "(Number newSize)",
45562      "type": "function",
45563      "desc": "Resizes the region to the specified size. For vertical regions (west, east) this adjusts \nthe width, for horizontal (north, south) the height."
45564     },
45565     {
45566      "name": "showPanel",
45567      "sig": "(Number/String/ContentPanel panelId)",
45568      "type": "function",
45569      "desc": "Show the specified panel."
45570     },
45571     {
45572      "name": "un",
45573      "sig": "(String eventName, Function handler, Object scope)",
45574      "type": "function",
45575      "desc": "Removes a listener (shorthand for removeListener)"
45576     }
45577    ]
45578   },
45579   "Roo.bootstrap.layout.Border": {
45580    "props": [
45581     {
45582      "name": "cls",
45583      "type": "String",
45584      "desc": "css class",
45585      "memberOf": "Roo.bootstrap.Component"
45586     },
45587     {
45588      "name": "style",
45589      "type": "String",
45590      "desc": "any extra css",
45591      "memberOf": "Roo.bootstrap.Component"
45592     },
45593     {
45594      "name": "xattr",
45595      "type": "Object",
45596      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
45597      "memberOf": "Roo.bootstrap.Component"
45598     },
45599     {
45600      "name": "can_build_overlaid",
45601      "type": "Boolean",
45602      "desc": "True if element can be rebuild from a HTML page",
45603      "memberOf": "Roo.bootstrap.Component"
45604     },
45605     {
45606      "name": "dataId",
45607      "type": "string",
45608      "desc": "cutomer id",
45609      "memberOf": "Roo.bootstrap.Component"
45610     },
45611     {
45612      "name": "name",
45613      "type": "string",
45614      "desc": "Specifies name attribute",
45615      "memberOf": "Roo.bootstrap.Component"
45616     },
45617     {
45618      "name": "tooltip",
45619      "type": "string",
45620      "desc": "Text for the tooltip",
45621      "memberOf": "Roo.bootstrap.Component"
45622     },
45623     {
45624      "name": "container_method",
45625      "type": "string",
45626      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
45627      "memberOf": "Roo.bootstrap.Component"
45628     },
45629     {
45630      "name": "disableClass",
45631      "type": "String",
45632      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
45633      "memberOf": "Roo.Component"
45634     },
45635     {
45636      "name": "allowDomMove",
45637      "type": "Boolean",
45638      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
45639      "memberOf": "Roo.Component"
45640     },
45641     {
45642      "name": "hideMode",
45643      "type": "String",
45644      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
45645      "memberOf": "Roo.Component",
45646      "optvals": [
45647       "display",
45648       "visibility"
45649      ]
45650     },
45651     {
45652      "name": "actionMode",
45653      "type": "String",
45654      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
45655      "memberOf": "Roo.Component"
45656     },
45657     {
45658      "name": "listeners",
45659      "type": "Object",
45660      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
45661      "memberOf": "Roo.util.Observable"
45662     }
45663    ],
45664    "events": [
45665     {
45666      "name": "beforedestroy",
45667      "sig": "function (_self)\n{\n\n}",
45668      "type": "function",
45669      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
45670     },
45671     {
45672      "name": "beforehide",
45673      "sig": "function (_self)\n{\n\n}",
45674      "type": "function",
45675      "desc": "Fires before the component is hidden. Return false to stop the hide."
45676     },
45677     {
45678      "name": "beforerender",
45679      "sig": "function (_self)\n{\n\n}",
45680      "type": "function",
45681      "desc": "Fires before the component is rendered. Return false to stop the render."
45682     },
45683     {
45684      "name": "beforeshow",
45685      "sig": "function (_self)\n{\n\n}",
45686      "type": "function",
45687      "desc": "Fires before the component is shown.  Return false to stop the show."
45688     },
45689     {
45690      "name": "childrenrendered",
45691      "sig": "function (_self)\n{\n\n}",
45692      "type": "function",
45693      "desc": "Fires when the children have been rendered.."
45694     },
45695     {
45696      "name": "destroy",
45697      "sig": "function (_self)\n{\n\n}",
45698      "type": "function",
45699      "desc": "Fires after the component is destroyed."
45700     },
45701     {
45702      "name": "disable",
45703      "sig": "function (_self)\n{\n\n}",
45704      "type": "function",
45705      "desc": "Fires after the component is disabled."
45706     },
45707     {
45708      "name": "enable",
45709      "sig": "function (_self)\n{\n\n}",
45710      "type": "function",
45711      "desc": "Fires after the component is enabled."
45712     },
45713     {
45714      "name": "hide",
45715      "sig": "function (_self)\n{\n\n}",
45716      "type": "function",
45717      "desc": "Fires after the component is hidden."
45718     },
45719     {
45720      "name": "layout",
45721      "sig": "function (_self)\n{\n\n}",
45722      "type": "function",
45723      "desc": "Fires when a layout is performed."
45724     },
45725     {
45726      "name": "regioncollapsed",
45727      "sig": "function (region)\n{\n\n}",
45728      "type": "function",
45729      "desc": "Fires when a region is collapsed."
45730     },
45731     {
45732      "name": "regionexpanded",
45733      "sig": "function (region)\n{\n\n}",
45734      "type": "function",
45735      "desc": "Fires when a region is expanded."
45736     },
45737     {
45738      "name": "regionresized",
45739      "sig": "function (region, newSize)\n{\n\n}",
45740      "type": "function",
45741      "desc": "Fires when the user resizes a region."
45742     },
45743     {
45744      "name": "render",
45745      "sig": "function (_self)\n{\n\n}",
45746      "type": "function",
45747      "desc": "Fires after the component is rendered."
45748     },
45749     {
45750      "name": "show",
45751      "sig": "function (_self)\n{\n\n}",
45752      "type": "function",
45753      "desc": "Fires after the component is shown."
45754     }
45755    ],
45756    "methods": [
45757     {
45758      "name": "add",
45759      "sig": "(String target, Roo.ContentPanel panel)",
45760      "type": "function",
45761      "desc": "Adds a ContentPanel (or subclass) to this layout."
45762     },
45763     {
45764      "name": "addEvents",
45765      "sig": "(Object object)",
45766      "type": "function",
45767      "desc": "Used to define events on this Observable"
45768     },
45769     {
45770      "name": "addListener",
45771      "sig": "(String eventName, Function handler, Object scope, Object options)",
45772      "type": "function",
45773      "desc": "Appends an event handler to this component"
45774     },
45775     {
45776      "name": "addRegion",
45777      "sig": "(String target, Object config)",
45778      "type": "function",
45779      "desc": "Creates and adds a new region if it doesn't already exist."
45780     },
45781     {
45782      "name": "addxtype",
45783      "sig": "(Object cfg)",
45784      "type": "function",
45785      "desc": "Adds a xtype elements to the layout.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'ContentPanel',\n       region: 'west',\n       items: [ .... ]\n   }\n);\n\nlayout.addxtype({\n        xtype : 'NestedLayoutPanel',\n        region: 'west',\n        layout: {\n           center: { },\n           west: { }   \n        },\n        items : [ ... list of content panels or nested layout panels.. ]\n   }\n);\n</code></pre>"
45786     },
45787     {
45788      "name": "beginUpdate",
45789      "sig": "()",
45790      "type": "function",
45791      "desc": "Suspend the LayoutManager from doing auto-layouts while\nmaking multiple add or remove calls"
45792     },
45793     {
45794      "name": "capture",
45795      "sig": "(Observable o, Function fn, Object scope)",
45796      "type": "function",
45797      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
45798     },
45799     {
45800      "name": "destroy",
45801      "sig": "()",
45802      "type": "function",
45803      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
45804     },
45805     {
45806      "name": "disable",
45807      "sig": "()",
45808      "type": "function",
45809      "desc": "Disable this component."
45810     },
45811     {
45812      "name": "enable",
45813      "sig": "()",
45814      "type": "function",
45815      "desc": "Enable this component."
45816     },
45817     {
45818      "name": "endUpdate",
45819      "sig": "(Boolean noLayout)",
45820      "type": "function",
45821      "desc": "Restore auto-layouts and optionally disable the manager from performing a layout"
45822     },
45823     {
45824      "name": "findPanel",
45825      "sig": "(String panelId)",
45826      "type": "function",
45827      "desc": "Searches all regions for a panel with the specified id"
45828     },
45829     {
45830      "name": "fireEvent",
45831      "sig": "(String eventName, Object... args)",
45832      "type": "function",
45833      "desc": "Fires the specified event with the passed parameters (minus the event name)."
45834     },
45835     {
45836      "name": "focus",
45837      "sig": "(Boolean selectText)",
45838      "type": "function",
45839      "desc": "Try to focus this component."
45840     },
45841     {
45842      "name": "getChildContainer",
45843      "sig": "()",
45844      "type": "function",
45845      "desc": "Fetch the element to add children to"
45846     },
45847     {
45848      "name": "getEl",
45849      "sig": "()",
45850      "type": "function",
45851      "desc": "Returns the Element this layout is bound to."
45852     },
45853     {
45854      "name": "getId",
45855      "sig": "()",
45856      "type": "function",
45857      "desc": "Returns the id of this component."
45858     },
45859     {
45860      "name": "getRegion",
45861      "sig": "(String target)",
45862      "type": "function",
45863      "desc": "Returns the specified region."
45864     },
45865     {
45866      "name": "getViewSize",
45867      "sig": "()",
45868      "type": "function",
45869      "desc": "Returns the size of the current view. This method normalizes document.body and element embedded layouts and\nperforms box-model adjustments."
45870     },
45871     {
45872      "name": "hasListener",
45873      "sig": "(String eventName)",
45874      "type": "function",
45875      "desc": "Checks to see if this object has any listeners for a specified event"
45876     },
45877     {
45878      "name": "hide",
45879      "sig": "()",
45880      "type": "function",
45881      "desc": "Hide a component - adds 'hidden' class"
45882     },
45883     {
45884      "name": "initEvents",
45885      "sig": "()",
45886      "type": "function",
45887      "desc": "Initialize Events for the element"
45888     },
45889     {
45890      "name": "isUpdating",
45891      "sig": "()",
45892      "type": "function",
45893      "desc": "Returns true if this layout is currently being updated"
45894     },
45895     {
45896      "name": "isVisible",
45897      "sig": "()",
45898      "type": "function",
45899      "desc": "Returns true if this component is visible."
45900     },
45901     {
45902      "name": "layout",
45903      "sig": "()",
45904      "type": "function",
45905      "desc": "Performs a layout update."
45906     },
45907     {
45908      "name": "on",
45909      "sig": "(String eventName, Function handler, Object scope, Object options)",
45910      "type": "function",
45911      "desc": "Appends an event handler to this element (shorthand for addListener)"
45912     },
45913     {
45914      "name": "purgeListeners",
45915      "sig": "()",
45916      "type": "function",
45917      "desc": "Removes all listeners for this object"
45918     },
45919     {
45920      "name": "releaseCapture",
45921      "sig": "(Observable o)",
45922      "type": "function",
45923      "desc": "Removes <b>all</b> added captures from the Observable."
45924     },
45925     {
45926      "name": "remove",
45927      "sig": "(String target, Number/String/Roo.ContentPanel panel)",
45928      "type": "function",
45929      "desc": "Remove a ContentPanel (or subclass) to this layout."
45930     },
45931     {
45932      "name": "removeListener",
45933      "sig": "(String eventName, Function handler, Object scope)",
45934      "type": "function",
45935      "desc": "Removes a listener"
45936     },
45937     {
45938      "name": "render",
45939      "sig": "(String/HTMLElement/Element container)",
45940      "type": "function",
45941      "desc": "If this is a lazy rendering component, render it to its container element."
45942     },
45943     {
45944      "name": "setDisabled",
45945      "sig": "(Boolean disabled)",
45946      "type": "function",
45947      "desc": "Convenience function for setting disabled/enabled by boolean."
45948     },
45949     {
45950      "name": "setVisible",
45951      "sig": "(Boolean visible)",
45952      "type": "function",
45953      "desc": "Convenience function to hide or show this component by boolean."
45954     },
45955     {
45956      "name": "show",
45957      "sig": "()",
45958      "type": "function",
45959      "desc": "Show a component - removes 'hidden' class"
45960     },
45961     {
45962      "name": "showPanel",
45963      "sig": "(String/ContentPanel panelId)",
45964      "type": "function",
45965      "desc": "Searches all regions for a panel with the specified id and activates (shows) it."
45966     },
45967     {
45968      "name": "tooltipEl",
45969      "sig": "()",
45970      "type": "function",
45971      "desc": "Fetch the element to display the tooltip on."
45972     },
45973     {
45974      "name": "un",
45975      "sig": "(String eventName, Function handler, Object scope)",
45976      "type": "function",
45977      "desc": "Removes a listener (shorthand for removeListener)"
45978     }
45979    ]
45980   },
45981   "Roo.bootstrap.layout.Manager": {
45982    "props": [
45983     {
45984      "name": "cls",
45985      "type": "String",
45986      "desc": "css class",
45987      "memberOf": "Roo.bootstrap.Component"
45988     },
45989     {
45990      "name": "style",
45991      "type": "String",
45992      "desc": "any extra css",
45993      "memberOf": "Roo.bootstrap.Component"
45994     },
45995     {
45996      "name": "xattr",
45997      "type": "Object",
45998      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
45999      "memberOf": "Roo.bootstrap.Component"
46000     },
46001     {
46002      "name": "can_build_overlaid",
46003      "type": "Boolean",
46004      "desc": "True if element can be rebuild from a HTML page",
46005      "memberOf": "Roo.bootstrap.Component"
46006     },
46007     {
46008      "name": "dataId",
46009      "type": "string",
46010      "desc": "cutomer id",
46011      "memberOf": "Roo.bootstrap.Component"
46012     },
46013     {
46014      "name": "name",
46015      "type": "string",
46016      "desc": "Specifies name attribute",
46017      "memberOf": "Roo.bootstrap.Component"
46018     },
46019     {
46020      "name": "tooltip",
46021      "type": "string",
46022      "desc": "Text for the tooltip",
46023      "memberOf": "Roo.bootstrap.Component"
46024     },
46025     {
46026      "name": "container_method",
46027      "type": "string",
46028      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
46029      "memberOf": "Roo.bootstrap.Component"
46030     },
46031     {
46032      "name": "disableClass",
46033      "type": "String",
46034      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
46035      "memberOf": "Roo.Component"
46036     },
46037     {
46038      "name": "allowDomMove",
46039      "type": "Boolean",
46040      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
46041      "memberOf": "Roo.Component"
46042     },
46043     {
46044      "name": "hideMode",
46045      "type": "String",
46046      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
46047      "memberOf": "Roo.Component",
46048      "optvals": [
46049       "display",
46050       "visibility"
46051      ]
46052     },
46053     {
46054      "name": "actionMode",
46055      "type": "String",
46056      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
46057      "memberOf": "Roo.Component"
46058     },
46059     {
46060      "name": "listeners",
46061      "type": "Object",
46062      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
46063      "memberOf": "Roo.util.Observable"
46064     }
46065    ],
46066    "events": [
46067     {
46068      "name": "beforedestroy",
46069      "sig": "function (_self)\n{\n\n}",
46070      "type": "function",
46071      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
46072     },
46073     {
46074      "name": "beforehide",
46075      "sig": "function (_self)\n{\n\n}",
46076      "type": "function",
46077      "desc": "Fires before the component is hidden. Return false to stop the hide."
46078     },
46079     {
46080      "name": "beforerender",
46081      "sig": "function (_self)\n{\n\n}",
46082      "type": "function",
46083      "desc": "Fires before the component is rendered. Return false to stop the render."
46084     },
46085     {
46086      "name": "beforeshow",
46087      "sig": "function (_self)\n{\n\n}",
46088      "type": "function",
46089      "desc": "Fires before the component is shown.  Return false to stop the show."
46090     },
46091     {
46092      "name": "childrenrendered",
46093      "sig": "function (_self)\n{\n\n}",
46094      "type": "function",
46095      "desc": "Fires when the children have been rendered.."
46096     },
46097     {
46098      "name": "destroy",
46099      "sig": "function (_self)\n{\n\n}",
46100      "type": "function",
46101      "desc": "Fires after the component is destroyed."
46102     },
46103     {
46104      "name": "disable",
46105      "sig": "function (_self)\n{\n\n}",
46106      "type": "function",
46107      "desc": "Fires after the component is disabled."
46108     },
46109     {
46110      "name": "enable",
46111      "sig": "function (_self)\n{\n\n}",
46112      "type": "function",
46113      "desc": "Fires after the component is enabled."
46114     },
46115     {
46116      "name": "hide",
46117      "sig": "function (_self)\n{\n\n}",
46118      "type": "function",
46119      "desc": "Fires after the component is hidden."
46120     },
46121     {
46122      "name": "layout",
46123      "sig": "function (_self)\n{\n\n}",
46124      "type": "function",
46125      "desc": "Fires when a layout is performed."
46126     },
46127     {
46128      "name": "regioncollapsed",
46129      "sig": "function (region)\n{\n\n}",
46130      "type": "function",
46131      "desc": "Fires when a region is collapsed."
46132     },
46133     {
46134      "name": "regionexpanded",
46135      "sig": "function (region)\n{\n\n}",
46136      "type": "function",
46137      "desc": "Fires when a region is expanded."
46138     },
46139     {
46140      "name": "regionresized",
46141      "sig": "function (region, newSize)\n{\n\n}",
46142      "type": "function",
46143      "desc": "Fires when the user resizes a region."
46144     },
46145     {
46146      "name": "render",
46147      "sig": "function (_self)\n{\n\n}",
46148      "type": "function",
46149      "desc": "Fires after the component is rendered."
46150     },
46151     {
46152      "name": "show",
46153      "sig": "function (_self)\n{\n\n}",
46154      "type": "function",
46155      "desc": "Fires after the component is shown."
46156     }
46157    ],
46158    "methods": [
46159     {
46160      "name": "addEvents",
46161      "sig": "(Object object)",
46162      "type": "function",
46163      "desc": "Used to define events on this Observable"
46164     },
46165     {
46166      "name": "addListener",
46167      "sig": "(String eventName, Function handler, Object scope, Object options)",
46168      "type": "function",
46169      "desc": "Appends an event handler to this component"
46170     },
46171     {
46172      "name": "beginUpdate",
46173      "sig": "()",
46174      "type": "function",
46175      "desc": "Suspend the LayoutManager from doing auto-layouts while\nmaking multiple add or remove calls"
46176     },
46177     {
46178      "name": "capture",
46179      "sig": "(Observable o, Function fn, Object scope)",
46180      "type": "function",
46181      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
46182     },
46183     {
46184      "name": "destroy",
46185      "sig": "()",
46186      "type": "function",
46187      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
46188     },
46189     {
46190      "name": "disable",
46191      "sig": "()",
46192      "type": "function",
46193      "desc": "Disable this component."
46194     },
46195     {
46196      "name": "enable",
46197      "sig": "()",
46198      "type": "function",
46199      "desc": "Enable this component."
46200     },
46201     {
46202      "name": "endUpdate",
46203      "sig": "(Boolean noLayout)",
46204      "type": "function",
46205      "desc": "Restore auto-layouts and optionally disable the manager from performing a layout"
46206     },
46207     {
46208      "name": "fireEvent",
46209      "sig": "(String eventName, Object... args)",
46210      "type": "function",
46211      "desc": "Fires the specified event with the passed parameters (minus the event name)."
46212     },
46213     {
46214      "name": "focus",
46215      "sig": "(Boolean selectText)",
46216      "type": "function",
46217      "desc": "Try to focus this component."
46218     },
46219     {
46220      "name": "getChildContainer",
46221      "sig": "()",
46222      "type": "function",
46223      "desc": "Fetch the element to add children to"
46224     },
46225     {
46226      "name": "getEl",
46227      "sig": "()",
46228      "type": "function",
46229      "desc": "Returns the Element this layout is bound to."
46230     },
46231     {
46232      "name": "getId",
46233      "sig": "()",
46234      "type": "function",
46235      "desc": "Returns the id of this component."
46236     },
46237     {
46238      "name": "getRegion",
46239      "sig": "(String target)",
46240      "type": "function",
46241      "desc": "Returns the specified region."
46242     },
46243     {
46244      "name": "getViewSize",
46245      "sig": "()",
46246      "type": "function",
46247      "desc": "Returns the size of the current view. This method normalizes document.body and element embedded layouts and\nperforms box-model adjustments."
46248     },
46249     {
46250      "name": "hasListener",
46251      "sig": "(String eventName)",
46252      "type": "function",
46253      "desc": "Checks to see if this object has any listeners for a specified event"
46254     },
46255     {
46256      "name": "hide",
46257      "sig": "()",
46258      "type": "function",
46259      "desc": "Hide a component - adds 'hidden' class"
46260     },
46261     {
46262      "name": "initEvents",
46263      "sig": "()",
46264      "type": "function",
46265      "desc": "Initialize Events for the element"
46266     },
46267     {
46268      "name": "isUpdating",
46269      "sig": "()",
46270      "type": "function",
46271      "desc": "Returns true if this layout is currently being updated"
46272     },
46273     {
46274      "name": "isVisible",
46275      "sig": "()",
46276      "type": "function",
46277      "desc": "Returns true if this component is visible."
46278     },
46279     {
46280      "name": "on",
46281      "sig": "(String eventName, Function handler, Object scope, Object options)",
46282      "type": "function",
46283      "desc": "Appends an event handler to this element (shorthand for addListener)"
46284     },
46285     {
46286      "name": "purgeListeners",
46287      "sig": "()",
46288      "type": "function",
46289      "desc": "Removes all listeners for this object"
46290     },
46291     {
46292      "name": "releaseCapture",
46293      "sig": "(Observable o)",
46294      "type": "function",
46295      "desc": "Removes <b>all</b> added captures from the Observable."
46296     },
46297     {
46298      "name": "removeListener",
46299      "sig": "(String eventName, Function handler, Object scope)",
46300      "type": "function",
46301      "desc": "Removes a listener"
46302     },
46303     {
46304      "name": "render",
46305      "sig": "(String/HTMLElement/Element container)",
46306      "type": "function",
46307      "desc": "If this is a lazy rendering component, render it to its container element."
46308     },
46309     {
46310      "name": "setDisabled",
46311      "sig": "(Boolean disabled)",
46312      "type": "function",
46313      "desc": "Convenience function for setting disabled/enabled by boolean."
46314     },
46315     {
46316      "name": "setVisible",
46317      "sig": "(Boolean visible)",
46318      "type": "function",
46319      "desc": "Convenience function to hide or show this component by boolean."
46320     },
46321     {
46322      "name": "show",
46323      "sig": "()",
46324      "type": "function",
46325      "desc": "Show a component - removes 'hidden' class"
46326     },
46327     {
46328      "name": "tooltipEl",
46329      "sig": "()",
46330      "type": "function",
46331      "desc": "Fetch the element to display the tooltip on."
46332     },
46333     {
46334      "name": "un",
46335      "sig": "(String eventName, Function handler, Object scope)",
46336      "type": "function",
46337      "desc": "Removes a listener (shorthand for removeListener)"
46338     }
46339    ]
46340   },
46341   "Roo.bootstrap.layout.Region": {
46342    "props": [
46343     {
46344      "name": "margins",
46345      "type": "Object",
46346      "desc": "Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})",
46347      "memberOf": ""
46348     },
46349     {
46350      "name": "cmargins",
46351      "type": "Object",
46352      "desc": "Margins for the element when collapsed (defaults to: north/south {top: 2, left: 0, right:0, bottom: 2} or east/west {top: 0, left: 2, right:2, bottom: 0})",
46353      "memberOf": ""
46354     },
46355     {
46356      "name": "tabPosition",
46357      "type": "String",
46358      "desc": "\"top\" or \"bottom\" (defaults to \"bottom\")",
46359      "memberOf": "",
46360      "optvals": [
46361       "top",
46362       "bottom"
46363      ]
46364     },
46365     {
46366      "name": "alwaysShowTabs",
46367      "type": "Boolean",
46368      "desc": "True to always display tabs even when there is only 1 panel (defaults to false)",
46369      "memberOf": ""
46370     },
46371     {
46372      "name": "autoScroll",
46373      "type": "Boolean",
46374      "desc": "True to enable overflow scrolling (defaults to false)",
46375      "memberOf": ""
46376     },
46377     {
46378      "name": "titlebar",
46379      "type": "Boolean",
46380      "desc": "True to display a title bar (defaults to true)",
46381      "memberOf": ""
46382     },
46383     {
46384      "name": "title",
46385      "type": "String",
46386      "desc": "The title for the region (overrides panel titles)",
46387      "memberOf": ""
46388     },
46389     {
46390      "name": "animate",
46391      "type": "Boolean",
46392      "desc": "True to animate expand/collapse (defaults to false)",
46393      "memberOf": ""
46394     },
46395     {
46396      "name": "autoHide",
46397      "type": "Boolean",
46398      "desc": "False to disable auto hiding when the mouse leaves the \"floated\" region (defaults to true)",
46399      "memberOf": ""
46400     },
46401     {
46402      "name": "preservePanels",
46403      "type": "Boolean",
46404      "desc": "True to preserve removed panels so they can be readded later (defaults to false)",
46405      "memberOf": ""
46406     },
46407     {
46408      "name": "closeOnTab",
46409      "type": "Boolean",
46410      "desc": "True to place the close icon on the tabs instead of the region titlebar (defaults to false)",
46411      "memberOf": ""
46412     },
46413     {
46414      "name": "hideTabs",
46415      "type": "Boolean",
46416      "desc": "True to hide the tab strip (defaults to false)",
46417      "memberOf": ""
46418     },
46419     {
46420      "name": "resizeTabs",
46421      "type": "Boolean",
46422      "desc": "True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within\n                     the space available, similar to FireFox 1.5 tabs (defaults to false)",
46423      "memberOf": ""
46424     },
46425     {
46426      "name": "minTabWidth",
46427      "type": "Number",
46428      "desc": "The minimum tab width (defaults to 40)",
46429      "memberOf": ""
46430     },
46431     {
46432      "name": "preferredTabWidth",
46433      "type": "Number",
46434      "desc": "The preferred tab width (defaults to 150)",
46435      "memberOf": ""
46436     },
46437     {
46438      "name": "overflow",
46439      "type": "String",
46440      "desc": "if you have menus in the region, then you need to set this to visible.",
46441      "memberOf": "",
46442      "optvals": [
46443       "hidden",
46444       "visible"
46445      ]
46446     },
46447     {
46448      "name": "hidden",
46449      "type": "Boolean",
46450      "desc": "True to start the region hidden (defaults to false)",
46451      "memberOf": ""
46452     },
46453     {
46454      "name": "hideWhenEmpty",
46455      "type": "Boolean",
46456      "desc": "True to hide the region when it has no panels",
46457      "memberOf": ""
46458     },
46459     {
46460      "name": "disableTabTips",
46461      "type": "Boolean",
46462      "desc": "True to disable tab tooltips",
46463      "memberOf": ""
46464     },
46465     {
46466      "name": "width",
46467      "type": "Number",
46468      "desc": "For East/West panels",
46469      "memberOf": ""
46470     },
46471     {
46472      "name": "height",
46473      "type": "Number",
46474      "desc": "For North/South panels",
46475      "memberOf": ""
46476     },
46477     {
46478      "name": "split",
46479      "type": "Boolean",
46480      "desc": "To show the splitter",
46481      "memberOf": ""
46482     },
46483     {
46484      "name": "toolbar",
46485      "type": "Boolean",
46486      "desc": "xtype configuration for a toolbar - shows on right of tabbar",
46487      "memberOf": ""
46488     },
46489     {
46490      "name": "cls",
46491      "type": "string",
46492      "desc": "Extra CSS classes to add to region",
46493      "memberOf": ""
46494     },
46495     {
46496      "name": "mgr",
46497      "type": "Roo.bootstrap.layout.Manager",
46498      "desc": "The manager",
46499      "memberOf": ""
46500     },
46501     {
46502      "name": "region",
46503      "type": "string",
46504      "desc": "the region that it inhabits..",
46505      "memberOf": ""
46506     },
46507     {
46508      "name": "skipConfig",
46509      "type": "bool",
46510      "desc": "skip config?",
46511      "memberOf": "Roo.bootstrap.layout.Basic"
46512     },
46513     {
46514      "name": "listeners",
46515      "type": "Object",
46516      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
46517      "memberOf": "Roo.util.Observable"
46518     }
46519    ],
46520    "events": [],
46521    "methods": [
46522     {
46523      "name": "add",
46524      "sig": "(ContentPanel... panel)",
46525      "type": "function",
46526      "desc": "Adds the passed ContentPanel(s) to this region."
46527     },
46528     {
46529      "name": "addEvents",
46530      "sig": "(Object object)",
46531      "type": "function",
46532      "desc": "Used to define events on this Observable"
46533     },
46534     {
46535      "name": "addListener",
46536      "sig": "(String eventName, Function handler, Object scope, Object options)",
46537      "type": "function",
46538      "desc": "Appends an event handler to this component"
46539     },
46540     {
46541      "name": "animateCollapse",
46542      "sig": "(Boolean skipAnim)",
46543      "type": "function",
46544      "desc": "Collapses this region."
46545     },
46546     {
46547      "name": "animateExpand",
46548      "sig": "(Roo.EventObject e, Boolean skipAnim)",
46549      "type": "function",
46550      "desc": "Expands this region if it was previously collapsed."
46551     },
46552     {
46553      "name": "capture",
46554      "sig": "(Observable o, Function fn, Object scope)",
46555      "type": "function",
46556      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
46557     },
46558     {
46559      "name": "fireEvent",
46560      "sig": "(String eventName, Object... args)",
46561      "type": "function",
46562      "desc": "Fires the specified event with the passed parameters (minus the event name)."
46563     },
46564     {
46565      "name": "getActivePanel",
46566      "sig": "()",
46567      "type": "function",
46568      "desc": "Get the active panel for this region."
46569     },
46570     {
46571      "name": "getBox",
46572      "sig": "(String title)",
46573      "type": "function",
46574      "desc": "Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)"
46575     },
46576     {
46577      "name": "getEl",
46578      "sig": "()",
46579      "type": "function",
46580      "desc": "Returns the container element for this region."
46581     },
46582     {
46583      "name": "getPanel",
46584      "sig": "(Number/String/ContentPanel panel)",
46585      "type": "function",
46586      "desc": "Returns the panel specified or null if it's not in this region."
46587     },
46588     {
46589      "name": "getPosition",
46590      "sig": "()",
46591      "type": "function",
46592      "desc": "Returns this regions position (north/south/east/west/center)."
46593     },
46594     {
46595      "name": "getTabs",
46596      "sig": "()",
46597      "type": "function",
46598      "desc": "Returns the TabPanel component used by this region"
46599     },
46600     {
46601      "name": "hasListener",
46602      "sig": "(String eventName)",
46603      "type": "function",
46604      "desc": "Checks to see if this object has any listeners for a specified event"
46605     },
46606     {
46607      "name": "hasPanel",
46608      "sig": "(Number/String/ContentPanel panel)",
46609      "type": "function",
46610      "desc": "Returns true if the panel is in this region."
46611     },
46612     {
46613      "name": "hide",
46614      "sig": "()",
46615      "type": "function",
46616      "desc": "Hides this region."
46617     },
46618     {
46619      "name": "hidePanel",
46620      "sig": "(Number/String/ContentPanel panel)",
46621      "type": "function",
46622      "desc": "Hides the tab for the specified panel."
46623     },
46624     {
46625      "name": "isVisible",
46626      "sig": "()",
46627      "type": "function",
46628      "desc": "Returns true if this region is currently visible."
46629     },
46630     {
46631      "name": "on",
46632      "sig": "(String eventName, Function handler, Object scope, Object options)",
46633      "type": "function",
46634      "desc": "Appends an event handler to this element (shorthand for addListener)"
46635     },
46636     {
46637      "name": "purgeListeners",
46638      "sig": "()",
46639      "type": "function",
46640      "desc": "Removes all listeners for this object"
46641     },
46642     {
46643      "name": "releaseCapture",
46644      "sig": "(Observable o)",
46645      "type": "function",
46646      "desc": "Removes <b>all</b> added captures from the Observable."
46647     },
46648     {
46649      "name": "remove",
46650      "sig": "(Number/String/ContentPanel panel, Boolean preservePanel)",
46651      "type": "function",
46652      "desc": "Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed."
46653     },
46654     {
46655      "name": "removeListener",
46656      "sig": "(String eventName, Function handler, Object scope)",
46657      "type": "function",
46658      "desc": "Removes a listener"
46659     },
46660     {
46661      "name": "resizeTo",
46662      "sig": "(Number newSize)",
46663      "type": "function",
46664      "desc": "Resizes the region to the specified size. For vertical regions (west, east) this adjusts \nthe width, for horizontal (north, south) the height."
46665     },
46666     {
46667      "name": "show",
46668      "sig": "()",
46669      "type": "function",
46670      "desc": "Shows this region if it was previously hidden."
46671     },
46672     {
46673      "name": "showPanel",
46674      "sig": "(Number/String/ContentPanel panelId)",
46675      "type": "function",
46676      "desc": "Shows the specified panel."
46677     },
46678     {
46679      "name": "un",
46680      "sig": "(String eventName, Function handler, Object scope)",
46681      "type": "function",
46682      "desc": "Removes a listener (shorthand for removeListener)"
46683     },
46684     {
46685      "name": "unhidePanel",
46686      "sig": "(Number/String/ContentPanel panel)",
46687      "type": "function",
46688      "desc": "Unhides the tab for a previously hidden panel."
46689     }
46690    ]
46691   },
46692   "Roo.bootstrap.layout.Split": {
46693    "props": [
46694     {
46695      "name": "collapsible",
46696      "type": "Boolean",
46697      "desc": "False to disable collapsing (defaults to true)",
46698      "memberOf": "Roo.LayoutRegion"
46699     },
46700     {
46701      "name": "collapsed",
46702      "type": "Boolean",
46703      "desc": "True to set the initial display to collapsed (defaults to false)",
46704      "memberOf": "Roo.LayoutRegion"
46705     },
46706     {
46707      "name": "floatable",
46708      "type": "Boolean",
46709      "desc": "False to disable floating (defaults to true)",
46710      "memberOf": "Roo.LayoutRegion"
46711     },
46712     {
46713      "name": "margins",
46714      "type": "Object",
46715      "desc": "Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})",
46716      "memberOf": "Roo.LayoutRegion"
46717     },
46718     {
46719      "name": "cmargins",
46720      "type": "Object",
46721      "desc": "Margins for the element when collapsed (defaults to: north/south {top: 2, left: 0, right:0, bottom: 2} or east/west {top: 0, left: 2, right:2, bottom: 0})",
46722      "memberOf": "Roo.LayoutRegion"
46723     },
46724     {
46725      "name": "tabPosition",
46726      "type": "String",
46727      "desc": "\"top\" or \"bottom\" (defaults to \"bottom\")",
46728      "memberOf": "Roo.LayoutRegion",
46729      "optvals": [
46730       "top",
46731       "bottom"
46732      ]
46733     },
46734     {
46735      "name": "collapsedTitle",
46736      "type": "String",
46737      "desc": "Optional string message to display in the collapsed block of a north or south region",
46738      "memberOf": "Roo.LayoutRegion"
46739     },
46740     {
46741      "name": "alwaysShowTabs",
46742      "type": "Boolean",
46743      "desc": "True to always display tabs even when there is only 1 panel (defaults to false)",
46744      "memberOf": "Roo.LayoutRegion"
46745     },
46746     {
46747      "name": "autoScroll",
46748      "type": "Boolean",
46749      "desc": "True to enable overflow scrolling (defaults to false)",
46750      "memberOf": "Roo.LayoutRegion"
46751     },
46752     {
46753      "name": "titlebar",
46754      "type": "Boolean",
46755      "desc": "True to display a title bar (defaults to true)",
46756      "memberOf": "Roo.LayoutRegion"
46757     },
46758     {
46759      "name": "title",
46760      "type": "String",
46761      "desc": "The title for the region (overrides panel titles)",
46762      "memberOf": "Roo.LayoutRegion"
46763     },
46764     {
46765      "name": "animate",
46766      "type": "Boolean",
46767      "desc": "True to animate expand/collapse (defaults to false)",
46768      "memberOf": "Roo.LayoutRegion"
46769     },
46770     {
46771      "name": "autoHide",
46772      "type": "Boolean",
46773      "desc": "False to disable auto hiding when the mouse leaves the \"floated\" region (defaults to true)",
46774      "memberOf": "Roo.LayoutRegion"
46775     },
46776     {
46777      "name": "preservePanels",
46778      "type": "Boolean",
46779      "desc": "True to preserve removed panels so they can be readded later (defaults to false)",
46780      "memberOf": "Roo.LayoutRegion"
46781     },
46782     {
46783      "name": "closeOnTab",
46784      "type": "Boolean",
46785      "desc": "True to place the close icon on the tabs instead of the region titlebar (defaults to false)",
46786      "memberOf": "Roo.LayoutRegion"
46787     },
46788     {
46789      "name": "hideTabs",
46790      "type": "Boolean",
46791      "desc": "True to hide the tab strip (defaults to false)",
46792      "memberOf": "Roo.LayoutRegion"
46793     },
46794     {
46795      "name": "resizeTabs",
46796      "type": "Boolean",
46797      "desc": "True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within\n                     the space available, similar to FireFox 1.5 tabs (defaults to false)",
46798      "memberOf": "Roo.LayoutRegion"
46799     },
46800     {
46801      "name": "minTabWidth",
46802      "type": "Number",
46803      "desc": "The minimum tab width (defaults to 40)",
46804      "memberOf": "Roo.LayoutRegion"
46805     },
46806     {
46807      "name": "preferredTabWidth",
46808      "type": "Number",
46809      "desc": "The preferred tab width (defaults to 150)",
46810      "memberOf": "Roo.LayoutRegion"
46811     },
46812     {
46813      "name": "showPin",
46814      "type": "Boolean",
46815      "desc": "True to show a pin button",
46816      "memberOf": "Roo.LayoutRegion"
46817     },
46818     {
46819      "name": "hidden",
46820      "type": "Boolean",
46821      "desc": "True to start the region hidden (defaults to false)",
46822      "memberOf": "Roo.LayoutRegion"
46823     },
46824     {
46825      "name": "hideWhenEmpty",
46826      "type": "Boolean",
46827      "desc": "True to hide the region when it has no panels",
46828      "memberOf": "Roo.LayoutRegion"
46829     },
46830     {
46831      "name": "disableTabTips",
46832      "type": "Boolean",
46833      "desc": "True to disable tab tooltips",
46834      "memberOf": "Roo.LayoutRegion"
46835     },
46836     {
46837      "name": "width",
46838      "type": "Number",
46839      "desc": "For East/West panels",
46840      "memberOf": "Roo.LayoutRegion"
46841     },
46842     {
46843      "name": "height",
46844      "type": "Number",
46845      "desc": "For North/South panels",
46846      "memberOf": "Roo.LayoutRegion"
46847     },
46848     {
46849      "name": "split",
46850      "type": "Boolean",
46851      "desc": "To show the splitter",
46852      "memberOf": "Roo.LayoutRegion"
46853     },
46854     {
46855      "name": "toolbar",
46856      "type": "Boolean",
46857      "desc": "xtype configuration for a toolbar - shows on right of tabbar",
46858      "memberOf": "Roo.LayoutRegion"
46859     },
46860     {
46861      "name": "listeners",
46862      "type": "Object",
46863      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
46864      "memberOf": "Roo.util.Observable"
46865     }
46866    ],
46867    "events": [
46868     {
46869      "name": "beforecollapse",
46870      "sig": "function (_self)\n{\n\n}",
46871      "type": "function",
46872      "desc": "Fires when this region before collapse."
46873     },
46874     {
46875      "name": "beforeremove",
46876      "sig": "function (_self, panel, e)\n{\n\n}",
46877      "type": "function",
46878      "desc": "Fires before a panel is removed (or closed). To cancel the removal set \"e.cancel = true\" on the event argument."
46879     },
46880     {
46881      "name": "collapsed",
46882      "sig": "function (_self)\n{\n\n}",
46883      "type": "function",
46884      "desc": "Fires when this region is collapsed."
46885     },
46886     {
46887      "name": "expanded",
46888      "sig": "function (_self)\n{\n\n}",
46889      "type": "function",
46890      "desc": "Fires when this region is expanded."
46891     },
46892     {
46893      "name": "invalidated",
46894      "sig": "function (_self)\n{\n\n}",
46895      "type": "function",
46896      "desc": "Fires when the layout for this region is changed."
46897     },
46898     {
46899      "name": "panelactivated",
46900      "sig": "function (_self, panel)\n{\n\n}",
46901      "type": "function",
46902      "desc": "Fires when a panel is activated."
46903     },
46904     {
46905      "name": "paneladded",
46906      "sig": "function (_self, panel)\n{\n\n}",
46907      "type": "function",
46908      "desc": "Fires when a panel is added."
46909     },
46910     {
46911      "name": "panelremoved",
46912      "sig": "function (_self, panel)\n{\n\n}",
46913      "type": "function",
46914      "desc": "Fires when a panel is removed."
46915     },
46916     {
46917      "name": "resized",
46918      "sig": "function (_self, newSize)\n{\n\n}",
46919      "type": "function",
46920      "desc": "Fires when the user resizes this region."
46921     },
46922     {
46923      "name": "slidehide",
46924      "sig": "function (_self)\n{\n\n}",
46925      "type": "function",
46926      "desc": "Fires when this region slides out of view."
46927     },
46928     {
46929      "name": "slideshow",
46930      "sig": "function (_self)\n{\n\n}",
46931      "type": "function",
46932      "desc": "Fires when this region is slid into view."
46933     },
46934     {
46935      "name": "visibilitychange",
46936      "sig": "function (_self, visibility)\n{\n\n}",
46937      "type": "function",
46938      "desc": "Fires when this region is shown or hidden"
46939     }
46940    ],
46941    "methods": [
46942     {
46943      "name": "add",
46944      "sig": "(ContentPanel... panel)",
46945      "type": "function",
46946      "desc": "Adds the passed ContentPanel(s) to this region."
46947     },
46948     {
46949      "name": "addEvents",
46950      "sig": "(Object object)",
46951      "type": "function",
46952      "desc": "Used to define events on this Observable"
46953     },
46954     {
46955      "name": "addListener",
46956      "sig": "(String eventName, Function handler, Object scope, Object options)",
46957      "type": "function",
46958      "desc": "Appends an event handler to this component"
46959     },
46960     {
46961      "name": "capture",
46962      "sig": "(Observable o, Function fn, Object scope)",
46963      "type": "function",
46964      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
46965     },
46966     {
46967      "name": "collapse",
46968      "sig": "(Boolean skipAnim)",
46969      "type": "function",
46970      "desc": "Collapses this region."
46971     },
46972     {
46973      "name": "expand",
46974      "sig": "(Roo.EventObject e, Boolean skipAnim)",
46975      "type": "function",
46976      "desc": "Expands this region if it was previously collapsed."
46977     },
46978     {
46979      "name": "fireEvent",
46980      "sig": "(String eventName, Object... args)",
46981      "type": "function",
46982      "desc": "Fires the specified event with the passed parameters (minus the event name)."
46983     },
46984     {
46985      "name": "getActivePanel",
46986      "sig": "()",
46987      "type": "function",
46988      "desc": "Get the active panel for this region."
46989     },
46990     {
46991      "name": "getEl",
46992      "sig": "()",
46993      "type": "function",
46994      "desc": "Returns the container element for this region."
46995     },
46996     {
46997      "name": "getPanel",
46998      "sig": "(Number/String/ContentPanel panel)",
46999      "type": "function",
47000      "desc": "Returns the panel specified or null if it's not in this region."
47001     },
47002     {
47003      "name": "getPosition",
47004      "sig": "()",
47005      "type": "function",
47006      "desc": "Returns this regions position (north/south/east/west/center)."
47007     },
47008     {
47009      "name": "getSplitBar",
47010      "sig": "()",
47011      "type": "function",
47012      "desc": "Returns the {@link Roo.SplitBar} for this region."
47013     },
47014     {
47015      "name": "getTabs",
47016      "sig": "()",
47017      "type": "function",
47018      "desc": "Returns the TabPanel component used by this region"
47019     },
47020     {
47021      "name": "hasListener",
47022      "sig": "(String eventName)",
47023      "type": "function",
47024      "desc": "Checks to see if this object has any listeners for a specified event"
47025     },
47026     {
47027      "name": "hasPanel",
47028      "sig": "(Number/String/ContentPanel panel)",
47029      "type": "function",
47030      "desc": "Returns true if the panel is in this region."
47031     },
47032     {
47033      "name": "hide",
47034      "sig": "()",
47035      "type": "function",
47036      "desc": "Hides this region."
47037     },
47038     {
47039      "name": "hidePanel",
47040      "sig": "(Number/String/ContentPanel panel)",
47041      "type": "function",
47042      "desc": "Hides the tab for the specified panel."
47043     },
47044     {
47045      "name": "isVisible",
47046      "sig": "()",
47047      "type": "function",
47048      "desc": "Returns true if this region is currently visible."
47049     },
47050     {
47051      "name": "on",
47052      "sig": "(String eventName, Function handler, Object scope, Object options)",
47053      "type": "function",
47054      "desc": "Appends an event handler to this element (shorthand for addListener)"
47055     },
47056     {
47057      "name": "purgeListeners",
47058      "sig": "()",
47059      "type": "function",
47060      "desc": "Removes all listeners for this object"
47061     },
47062     {
47063      "name": "releaseCapture",
47064      "sig": "(Observable o)",
47065      "type": "function",
47066      "desc": "Removes <b>all</b> added captures from the Observable."
47067     },
47068     {
47069      "name": "remove",
47070      "sig": "(Number/String/ContentPanel panel, Boolean preservePanel)",
47071      "type": "function",
47072      "desc": "Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed."
47073     },
47074     {
47075      "name": "removeListener",
47076      "sig": "(String eventName, Function handler, Object scope)",
47077      "type": "function",
47078      "desc": "Removes a listener"
47079     },
47080     {
47081      "name": "resizeTo",
47082      "sig": "(Number newSize)",
47083      "type": "function",
47084      "desc": "Resizes the region to the specified size. For vertical regions (west, east) this adjusts \nthe width, for horizontal (north, south) the height."
47085     },
47086     {
47087      "name": "setCollapsedTitle",
47088      "sig": "(String title)",
47089      "type": "function",
47090      "desc": "Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)"
47091     },
47092     {
47093      "name": "show",
47094      "sig": "()",
47095      "type": "function",
47096      "desc": "Shows this region if it was previously hidden."
47097     },
47098     {
47099      "name": "showPanel",
47100      "sig": "(Number/String/ContentPanel panelId)",
47101      "type": "function",
47102      "desc": "Shows the specified panel."
47103     },
47104     {
47105      "name": "un",
47106      "sig": "(String eventName, Function handler, Object scope)",
47107      "type": "function",
47108      "desc": "Removes a listener (shorthand for removeListener)"
47109     },
47110     {
47111      "name": "unhidePanel",
47112      "sig": "(Number/String/ContentPanel panel)",
47113      "type": "function",
47114      "desc": "Unhides the tab for a previously hidden panel."
47115     }
47116    ]
47117   },
47118   "Roo.bootstrap.menu": {
47119    "props": [],
47120    "events": [],
47121    "methods": []
47122   },
47123   "Roo.bootstrap.menu.Item": {
47124    "props": [
47125     {
47126      "name": "submenu",
47127      "type": "Boolean",
47128      "desc": "default false",
47129      "memberOf": "",
47130      "optvals": [
47131       "true",
47132       "false"
47133      ]
47134     },
47135     {
47136      "name": "html",
47137      "type": "String",
47138      "desc": "text of the item",
47139      "memberOf": ""
47140     },
47141     {
47142      "name": "href",
47143      "type": "String",
47144      "desc": "the link",
47145      "memberOf": ""
47146     },
47147     {
47148      "name": "disable",
47149      "type": "Boolean",
47150      "desc": "default false",
47151      "memberOf": "",
47152      "optvals": [
47153       "true",
47154       "false"
47155      ]
47156     },
47157     {
47158      "name": "preventDefault",
47159      "type": "Boolean",
47160      "desc": "default true",
47161      "memberOf": "",
47162      "optvals": [
47163       "true",
47164       "false"
47165      ]
47166     },
47167     {
47168      "name": "icon",
47169      "type": "String",
47170      "desc": "Font awesome icon",
47171      "memberOf": ""
47172     },
47173     {
47174      "name": "pos",
47175      "type": "String",
47176      "desc": "Submenu align to (left | right) default right",
47177      "memberOf": ""
47178     },
47179     {
47180      "name": "cls",
47181      "type": "String",
47182      "desc": "css class",
47183      "memberOf": "Roo.bootstrap.Component"
47184     },
47185     {
47186      "name": "style",
47187      "type": "String",
47188      "desc": "any extra css",
47189      "memberOf": "Roo.bootstrap.Component"
47190     },
47191     {
47192      "name": "xattr",
47193      "type": "Object",
47194      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
47195      "memberOf": "Roo.bootstrap.Component"
47196     },
47197     {
47198      "name": "can_build_overlaid",
47199      "type": "Boolean",
47200      "desc": "True if element can be rebuild from a HTML page",
47201      "memberOf": "Roo.bootstrap.Component"
47202     },
47203     {
47204      "name": "dataId",
47205      "type": "string",
47206      "desc": "cutomer id",
47207      "memberOf": "Roo.bootstrap.Component"
47208     },
47209     {
47210      "name": "name",
47211      "type": "string",
47212      "desc": "Specifies name attribute",
47213      "memberOf": "Roo.bootstrap.Component"
47214     },
47215     {
47216      "name": "tooltip",
47217      "type": "string",
47218      "desc": "Text for the tooltip",
47219      "memberOf": "Roo.bootstrap.Component"
47220     },
47221     {
47222      "name": "container_method",
47223      "type": "string",
47224      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
47225      "memberOf": "Roo.bootstrap.Component"
47226     },
47227     {
47228      "name": "disableClass",
47229      "type": "String",
47230      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
47231      "memberOf": "Roo.Component"
47232     },
47233     {
47234      "name": "allowDomMove",
47235      "type": "Boolean",
47236      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
47237      "memberOf": "Roo.Component"
47238     },
47239     {
47240      "name": "hideMode",
47241      "type": "String",
47242      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
47243      "memberOf": "Roo.Component",
47244      "optvals": [
47245       "display",
47246       "visibility"
47247      ]
47248     },
47249     {
47250      "name": "actionMode",
47251      "type": "String",
47252      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
47253      "memberOf": "Roo.Component"
47254     },
47255     {
47256      "name": "listeners",
47257      "type": "Object",
47258      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
47259      "memberOf": "Roo.util.Observable"
47260     }
47261    ],
47262    "events": [
47263     {
47264      "name": "beforedestroy",
47265      "sig": "function (_self)\n{\n\n}",
47266      "type": "function",
47267      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
47268     },
47269     {
47270      "name": "beforehide",
47271      "sig": "function (_self)\n{\n\n}",
47272      "type": "function",
47273      "desc": "Fires before the component is hidden. Return false to stop the hide."
47274     },
47275     {
47276      "name": "beforerender",
47277      "sig": "function (_self)\n{\n\n}",
47278      "type": "function",
47279      "desc": "Fires before the component is rendered. Return false to stop the render."
47280     },
47281     {
47282      "name": "beforeshow",
47283      "sig": "function (_self)\n{\n\n}",
47284      "type": "function",
47285      "desc": "Fires before the component is shown.  Return false to stop the show."
47286     },
47287     {
47288      "name": "childrenrendered",
47289      "sig": "function (_self)\n{\n\n}",
47290      "type": "function",
47291      "desc": "Fires when the children have been rendered.."
47292     },
47293     {
47294      "name": "click",
47295      "sig": "function (e)\n{\n\n}",
47296      "type": "function",
47297      "desc": "The raw click event for the entire grid."
47298     },
47299     {
47300      "name": "destroy",
47301      "sig": "function (_self)\n{\n\n}",
47302      "type": "function",
47303      "desc": "Fires after the component is destroyed."
47304     },
47305     {
47306      "name": "disable",
47307      "sig": "function (_self)\n{\n\n}",
47308      "type": "function",
47309      "desc": "Fires after the component is disabled."
47310     },
47311     {
47312      "name": "enable",
47313      "sig": "function (_self)\n{\n\n}",
47314      "type": "function",
47315      "desc": "Fires after the component is enabled."
47316     },
47317     {
47318      "name": "hide",
47319      "sig": "function (_self)\n{\n\n}",
47320      "type": "function",
47321      "desc": "Fires after the component is hidden."
47322     },
47323     {
47324      "name": "mouseout",
47325      "sig": "function (_self, e)\n{\n\n}",
47326      "type": "function",
47327      "desc": "Fires when the mouse exits this menu"
47328     },
47329     {
47330      "name": "mouseover",
47331      "sig": "function (_self, e)\n{\n\n}",
47332      "type": "function",
47333      "desc": "Fires when the mouse is hovering over this menu"
47334     },
47335     {
47336      "name": "render",
47337      "sig": "function (_self)\n{\n\n}",
47338      "type": "function",
47339      "desc": "Fires after the component is rendered."
47340     },
47341     {
47342      "name": "show",
47343      "sig": "function (_self)\n{\n\n}",
47344      "type": "function",
47345      "desc": "Fires after the component is shown."
47346     }
47347    ],
47348    "methods": [
47349     {
47350      "name": "addEvents",
47351      "sig": "(Object object)",
47352      "type": "function",
47353      "desc": "Used to define events on this Observable"
47354     },
47355     {
47356      "name": "addListener",
47357      "sig": "(String eventName, Function handler, Object scope, Object options)",
47358      "type": "function",
47359      "desc": "Appends an event handler to this component"
47360     },
47361     {
47362      "name": "capture",
47363      "sig": "(Observable o, Function fn, Object scope)",
47364      "type": "function",
47365      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
47366     },
47367     {
47368      "name": "destroy",
47369      "sig": "()",
47370      "type": "function",
47371      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
47372     },
47373     {
47374      "name": "disable",
47375      "sig": "()",
47376      "type": "function",
47377      "desc": "Disable this component."
47378     },
47379     {
47380      "name": "enable",
47381      "sig": "()",
47382      "type": "function",
47383      "desc": "Enable this component."
47384     },
47385     {
47386      "name": "fireEvent",
47387      "sig": "(String eventName, Object... args)",
47388      "type": "function",
47389      "desc": "Fires the specified event with the passed parameters (minus the event name)."
47390     },
47391     {
47392      "name": "focus",
47393      "sig": "(Boolean selectText)",
47394      "type": "function",
47395      "desc": "Try to focus this component."
47396     },
47397     {
47398      "name": "getChildContainer",
47399      "sig": "()",
47400      "type": "function",
47401      "desc": "Fetch the element to add children to"
47402     },
47403     {
47404      "name": "getEl",
47405      "sig": "()",
47406      "type": "function",
47407      "desc": "Returns the underlying {@link Roo.Element}."
47408     },
47409     {
47410      "name": "getId",
47411      "sig": "()",
47412      "type": "function",
47413      "desc": "Returns the id of this component."
47414     },
47415     {
47416      "name": "hasListener",
47417      "sig": "(String eventName)",
47418      "type": "function",
47419      "desc": "Checks to see if this object has any listeners for a specified event"
47420     },
47421     {
47422      "name": "hide",
47423      "sig": "()",
47424      "type": "function",
47425      "desc": "Hide a component - adds 'hidden' class"
47426     },
47427     {
47428      "name": "initEvents",
47429      "sig": "()",
47430      "type": "function",
47431      "desc": "Initialize Events for the element"
47432     },
47433     {
47434      "name": "isVisible",
47435      "sig": "()",
47436      "type": "function",
47437      "desc": "Returns true if this component is visible."
47438     },
47439     {
47440      "name": "on",
47441      "sig": "(String eventName, Function handler, Object scope, Object options)",
47442      "type": "function",
47443      "desc": "Appends an event handler to this element (shorthand for addListener)"
47444     },
47445     {
47446      "name": "purgeListeners",
47447      "sig": "()",
47448      "type": "function",
47449      "desc": "Removes all listeners for this object"
47450     },
47451     {
47452      "name": "releaseCapture",
47453      "sig": "(Observable o)",
47454      "type": "function",
47455      "desc": "Removes <b>all</b> added captures from the Observable."
47456     },
47457     {
47458      "name": "removeListener",
47459      "sig": "(String eventName, Function handler, Object scope)",
47460      "type": "function",
47461      "desc": "Removes a listener"
47462     },
47463     {
47464      "name": "render",
47465      "sig": "(String/HTMLElement/Element container)",
47466      "type": "function",
47467      "desc": "If this is a lazy rendering component, render it to its container element."
47468     },
47469     {
47470      "name": "setDisabled",
47471      "sig": "(Boolean disabled)",
47472      "type": "function",
47473      "desc": "Convenience function for setting disabled/enabled by boolean."
47474     },
47475     {
47476      "name": "setVisible",
47477      "sig": "(Boolean visible)",
47478      "type": "function",
47479      "desc": "Convenience function to hide or show this component by boolean."
47480     },
47481     {
47482      "name": "show",
47483      "sig": "()",
47484      "type": "function",
47485      "desc": "Show a component - removes 'hidden' class"
47486     },
47487     {
47488      "name": "tooltipEl",
47489      "sig": "()",
47490      "type": "function",
47491      "desc": "Fetch the element to display the tooltip on."
47492     },
47493     {
47494      "name": "un",
47495      "sig": "(String eventName, Function handler, Object scope)",
47496      "type": "function",
47497      "desc": "Removes a listener (shorthand for removeListener)"
47498     }
47499    ]
47500   },
47501   "Roo.bootstrap.menu.Menu": {
47502    "props": [
47503     {
47504      "name": "html",
47505      "type": "String",
47506      "desc": "Text of the menu",
47507      "memberOf": ""
47508     },
47509     {
47510      "name": "weight",
47511      "type": "String",
47512      "desc": "",
47513      "memberOf": "",
47514      "optvals": [
47515       "default",
47516       "primary",
47517       "success",
47518       "info",
47519       "warning",
47520       "danger",
47521       "inverse"
47522      ]
47523     },
47524     {
47525      "name": "icon",
47526      "type": "String",
47527      "desc": "Font awesome icon",
47528      "memberOf": ""
47529     },
47530     {
47531      "name": "pos",
47532      "type": "String",
47533      "desc": "Menu align to (top | bottom) default bottom",
47534      "memberOf": ""
47535     },
47536     {
47537      "name": "cls",
47538      "type": "String",
47539      "desc": "css class",
47540      "memberOf": "Roo.bootstrap.Component"
47541     },
47542     {
47543      "name": "style",
47544      "type": "String",
47545      "desc": "any extra css",
47546      "memberOf": "Roo.bootstrap.Component"
47547     },
47548     {
47549      "name": "xattr",
47550      "type": "Object",
47551      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
47552      "memberOf": "Roo.bootstrap.Component"
47553     },
47554     {
47555      "name": "can_build_overlaid",
47556      "type": "Boolean",
47557      "desc": "True if element can be rebuild from a HTML page",
47558      "memberOf": "Roo.bootstrap.Component"
47559     },
47560     {
47561      "name": "dataId",
47562      "type": "string",
47563      "desc": "cutomer id",
47564      "memberOf": "Roo.bootstrap.Component"
47565     },
47566     {
47567      "name": "name",
47568      "type": "string",
47569      "desc": "Specifies name attribute",
47570      "memberOf": "Roo.bootstrap.Component"
47571     },
47572     {
47573      "name": "tooltip",
47574      "type": "string",
47575      "desc": "Text for the tooltip",
47576      "memberOf": "Roo.bootstrap.Component"
47577     },
47578     {
47579      "name": "container_method",
47580      "type": "string",
47581      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
47582      "memberOf": "Roo.bootstrap.Component"
47583     },
47584     {
47585      "name": "disableClass",
47586      "type": "String",
47587      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
47588      "memberOf": "Roo.Component"
47589     },
47590     {
47591      "name": "allowDomMove",
47592      "type": "Boolean",
47593      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
47594      "memberOf": "Roo.Component"
47595     },
47596     {
47597      "name": "hideMode",
47598      "type": "String",
47599      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
47600      "memberOf": "Roo.Component",
47601      "optvals": [
47602       "display",
47603       "visibility"
47604      ]
47605     },
47606     {
47607      "name": "actionMode",
47608      "type": "String",
47609      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
47610      "memberOf": "Roo.Component"
47611     },
47612     {
47613      "name": "listeners",
47614      "type": "Object",
47615      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
47616      "memberOf": "Roo.util.Observable"
47617     }
47618    ],
47619    "events": [
47620     {
47621      "name": "beforedestroy",
47622      "sig": "function (_self)\n{\n\n}",
47623      "type": "function",
47624      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
47625     },
47626     {
47627      "name": "beforehide",
47628      "sig": "function (_self)\n{\n\n}",
47629      "type": "function",
47630      "desc": "Fires before this menu is hidden"
47631     },
47632     {
47633      "name": "beforerender",
47634      "sig": "function (_self)\n{\n\n}",
47635      "type": "function",
47636      "desc": "Fires before the component is rendered. Return false to stop the render."
47637     },
47638     {
47639      "name": "beforeshow",
47640      "sig": "function (_self)\n{\n\n}",
47641      "type": "function",
47642      "desc": "Fires before this menu is displayed"
47643     },
47644     {
47645      "name": "childrenrendered",
47646      "sig": "function (_self)\n{\n\n}",
47647      "type": "function",
47648      "desc": "Fires when the children have been rendered.."
47649     },
47650     {
47651      "name": "click",
47652      "sig": "function (_self, e)\n{\n\n}",
47653      "type": "function",
47654      "desc": "Fires when this menu is clicked (or when the enter key is pressed while it is active)"
47655     },
47656     {
47657      "name": "destroy",
47658      "sig": "function (_self)\n{\n\n}",
47659      "type": "function",
47660      "desc": "Fires after the component is destroyed."
47661     },
47662     {
47663      "name": "disable",
47664      "sig": "function (_self)\n{\n\n}",
47665      "type": "function",
47666      "desc": "Fires after the component is disabled."
47667     },
47668     {
47669      "name": "enable",
47670      "sig": "function (_self)\n{\n\n}",
47671      "type": "function",
47672      "desc": "Fires after the component is enabled."
47673     },
47674     {
47675      "name": "hide",
47676      "sig": "function (_self)\n{\n\n}",
47677      "type": "function",
47678      "desc": "Fires after this menu is hidden"
47679     },
47680     {
47681      "name": "render",
47682      "sig": "function (_self)\n{\n\n}",
47683      "type": "function",
47684      "desc": "Fires after the component is rendered."
47685     },
47686     {
47687      "name": "show",
47688      "sig": "function (_self)\n{\n\n}",
47689      "type": "function",
47690      "desc": "Fires after this menu is displayed"
47691     }
47692    ],
47693    "methods": [
47694     {
47695      "name": "addEvents",
47696      "sig": "(Object object)",
47697      "type": "function",
47698      "desc": "Used to define events on this Observable"
47699     },
47700     {
47701      "name": "addListener",
47702      "sig": "(String eventName, Function handler, Object scope, Object options)",
47703      "type": "function",
47704      "desc": "Appends an event handler to this component"
47705     },
47706     {
47707      "name": "capture",
47708      "sig": "(Observable o, Function fn, Object scope)",
47709      "type": "function",
47710      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
47711     },
47712     {
47713      "name": "destroy",
47714      "sig": "()",
47715      "type": "function",
47716      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
47717     },
47718     {
47719      "name": "disable",
47720      "sig": "()",
47721      "type": "function",
47722      "desc": "Disable this component."
47723     },
47724     {
47725      "name": "enable",
47726      "sig": "()",
47727      "type": "function",
47728      "desc": "Enable this component."
47729     },
47730     {
47731      "name": "fireEvent",
47732      "sig": "(String eventName, Object... args)",
47733      "type": "function",
47734      "desc": "Fires the specified event with the passed parameters (minus the event name)."
47735     },
47736     {
47737      "name": "focus",
47738      "sig": "(Boolean selectText)",
47739      "type": "function",
47740      "desc": "Try to focus this component."
47741     },
47742     {
47743      "name": "getChildContainer",
47744      "sig": "()",
47745      "type": "function",
47746      "desc": "Fetch the element to add children to"
47747     },
47748     {
47749      "name": "getEl",
47750      "sig": "()",
47751      "type": "function",
47752      "desc": "Returns the underlying {@link Roo.Element}."
47753     },
47754     {
47755      "name": "getId",
47756      "sig": "()",
47757      "type": "function",
47758      "desc": "Returns the id of this component."
47759     },
47760     {
47761      "name": "hasListener",
47762      "sig": "(String eventName)",
47763      "type": "function",
47764      "desc": "Checks to see if this object has any listeners for a specified event"
47765     },
47766     {
47767      "name": "hide",
47768      "sig": "()",
47769      "type": "function",
47770      "desc": "Hide a component - adds 'hidden' class"
47771     },
47772     {
47773      "name": "initEvents",
47774      "sig": "()",
47775      "type": "function",
47776      "desc": "Initialize Events for the element"
47777     },
47778     {
47779      "name": "isVisible",
47780      "sig": "()",
47781      "type": "function",
47782      "desc": "Returns true if this component is visible."
47783     },
47784     {
47785      "name": "on",
47786      "sig": "(String eventName, Function handler, Object scope, Object options)",
47787      "type": "function",
47788      "desc": "Appends an event handler to this element (shorthand for addListener)"
47789     },
47790     {
47791      "name": "purgeListeners",
47792      "sig": "()",
47793      "type": "function",
47794      "desc": "Removes all listeners for this object"
47795     },
47796     {
47797      "name": "releaseCapture",
47798      "sig": "(Observable o)",
47799      "type": "function",
47800      "desc": "Removes <b>all</b> added captures from the Observable."
47801     },
47802     {
47803      "name": "removeListener",
47804      "sig": "(String eventName, Function handler, Object scope)",
47805      "type": "function",
47806      "desc": "Removes a listener"
47807     },
47808     {
47809      "name": "render",
47810      "sig": "(String/HTMLElement/Element container)",
47811      "type": "function",
47812      "desc": "If this is a lazy rendering component, render it to its container element."
47813     },
47814     {
47815      "name": "setDisabled",
47816      "sig": "(Boolean disabled)",
47817      "type": "function",
47818      "desc": "Convenience function for setting disabled/enabled by boolean."
47819     },
47820     {
47821      "name": "setVisible",
47822      "sig": "(Boolean visible)",
47823      "type": "function",
47824      "desc": "Convenience function to hide or show this component by boolean."
47825     },
47826     {
47827      "name": "show",
47828      "sig": "()",
47829      "type": "function",
47830      "desc": "Show a component - removes 'hidden' class"
47831     },
47832     {
47833      "name": "tooltipEl",
47834      "sig": "()",
47835      "type": "function",
47836      "desc": "Fetch the element to display the tooltip on."
47837     },
47838     {
47839      "name": "un",
47840      "sig": "(String eventName, Function handler, Object scope)",
47841      "type": "function",
47842      "desc": "Removes a listener (shorthand for removeListener)"
47843     }
47844    ]
47845   },
47846   "Roo.bootstrap.menu.Separator": {
47847    "props": [
47848     {
47849      "name": "cls",
47850      "type": "String",
47851      "desc": "css class",
47852      "memberOf": "Roo.bootstrap.Component"
47853     },
47854     {
47855      "name": "style",
47856      "type": "String",
47857      "desc": "any extra css",
47858      "memberOf": "Roo.bootstrap.Component"
47859     },
47860     {
47861      "name": "xattr",
47862      "type": "Object",
47863      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
47864      "memberOf": "Roo.bootstrap.Component"
47865     },
47866     {
47867      "name": "can_build_overlaid",
47868      "type": "Boolean",
47869      "desc": "True if element can be rebuild from a HTML page",
47870      "memberOf": "Roo.bootstrap.Component"
47871     },
47872     {
47873      "name": "dataId",
47874      "type": "string",
47875      "desc": "cutomer id",
47876      "memberOf": "Roo.bootstrap.Component"
47877     },
47878     {
47879      "name": "name",
47880      "type": "string",
47881      "desc": "Specifies name attribute",
47882      "memberOf": "Roo.bootstrap.Component"
47883     },
47884     {
47885      "name": "tooltip",
47886      "type": "string",
47887      "desc": "Text for the tooltip",
47888      "memberOf": "Roo.bootstrap.Component"
47889     },
47890     {
47891      "name": "container_method",
47892      "type": "string",
47893      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
47894      "memberOf": "Roo.bootstrap.Component"
47895     },
47896     {
47897      "name": "disableClass",
47898      "type": "String",
47899      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
47900      "memberOf": "Roo.Component"
47901     },
47902     {
47903      "name": "allowDomMove",
47904      "type": "Boolean",
47905      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
47906      "memberOf": "Roo.Component"
47907     },
47908     {
47909      "name": "hideMode",
47910      "type": "String",
47911      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
47912      "memberOf": "Roo.Component",
47913      "optvals": [
47914       "display",
47915       "visibility"
47916      ]
47917     },
47918     {
47919      "name": "actionMode",
47920      "type": "String",
47921      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
47922      "memberOf": "Roo.Component"
47923     },
47924     {
47925      "name": "listeners",
47926      "type": "Object",
47927      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
47928      "memberOf": "Roo.util.Observable"
47929     }
47930    ],
47931    "events": [
47932     {
47933      "name": "beforedestroy",
47934      "sig": "function (_self)\n{\n\n}",
47935      "type": "function",
47936      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
47937     },
47938     {
47939      "name": "beforehide",
47940      "sig": "function (_self)\n{\n\n}",
47941      "type": "function",
47942      "desc": "Fires before the component is hidden. Return false to stop the hide."
47943     },
47944     {
47945      "name": "beforerender",
47946      "sig": "function (_self)\n{\n\n}",
47947      "type": "function",
47948      "desc": "Fires before the component is rendered. Return false to stop the render."
47949     },
47950     {
47951      "name": "beforeshow",
47952      "sig": "function (_self)\n{\n\n}",
47953      "type": "function",
47954      "desc": "Fires before the component is shown.  Return false to stop the show."
47955     },
47956     {
47957      "name": "childrenrendered",
47958      "sig": "function (_self)\n{\n\n}",
47959      "type": "function",
47960      "desc": "Fires when the children have been rendered.."
47961     },
47962     {
47963      "name": "destroy",
47964      "sig": "function (_self)\n{\n\n}",
47965      "type": "function",
47966      "desc": "Fires after the component is destroyed."
47967     },
47968     {
47969      "name": "disable",
47970      "sig": "function (_self)\n{\n\n}",
47971      "type": "function",
47972      "desc": "Fires after the component is disabled."
47973     },
47974     {
47975      "name": "enable",
47976      "sig": "function (_self)\n{\n\n}",
47977      "type": "function",
47978      "desc": "Fires after the component is enabled."
47979     },
47980     {
47981      "name": "hide",
47982      "sig": "function (_self)\n{\n\n}",
47983      "type": "function",
47984      "desc": "Fires after the component is hidden."
47985     },
47986     {
47987      "name": "render",
47988      "sig": "function (_self)\n{\n\n}",
47989      "type": "function",
47990      "desc": "Fires after the component is rendered."
47991     },
47992     {
47993      "name": "show",
47994      "sig": "function (_self)\n{\n\n}",
47995      "type": "function",
47996      "desc": "Fires after the component is shown."
47997     }
47998    ],
47999    "methods": [
48000     {
48001      "name": "addEvents",
48002      "sig": "(Object object)",
48003      "type": "function",
48004      "desc": "Used to define events on this Observable"
48005     },
48006     {
48007      "name": "addListener",
48008      "sig": "(String eventName, Function handler, Object scope, Object options)",
48009      "type": "function",
48010      "desc": "Appends an event handler to this component"
48011     },
48012     {
48013      "name": "capture",
48014      "sig": "(Observable o, Function fn, Object scope)",
48015      "type": "function",
48016      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
48017     },
48018     {
48019      "name": "destroy",
48020      "sig": "()",
48021      "type": "function",
48022      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
48023     },
48024     {
48025      "name": "disable",
48026      "sig": "()",
48027      "type": "function",
48028      "desc": "Disable this component."
48029     },
48030     {
48031      "name": "enable",
48032      "sig": "()",
48033      "type": "function",
48034      "desc": "Enable this component."
48035     },
48036     {
48037      "name": "fireEvent",
48038      "sig": "(String eventName, Object... args)",
48039      "type": "function",
48040      "desc": "Fires the specified event with the passed parameters (minus the event name)."
48041     },
48042     {
48043      "name": "focus",
48044      "sig": "(Boolean selectText)",
48045      "type": "function",
48046      "desc": "Try to focus this component."
48047     },
48048     {
48049      "name": "getChildContainer",
48050      "sig": "()",
48051      "type": "function",
48052      "desc": "Fetch the element to add children to"
48053     },
48054     {
48055      "name": "getEl",
48056      "sig": "()",
48057      "type": "function",
48058      "desc": "Returns the underlying {@link Roo.Element}."
48059     },
48060     {
48061      "name": "getId",
48062      "sig": "()",
48063      "type": "function",
48064      "desc": "Returns the id of this component."
48065     },
48066     {
48067      "name": "hasListener",
48068      "sig": "(String eventName)",
48069      "type": "function",
48070      "desc": "Checks to see if this object has any listeners for a specified event"
48071     },
48072     {
48073      "name": "hide",
48074      "sig": "()",
48075      "type": "function",
48076      "desc": "Hide a component - adds 'hidden' class"
48077     },
48078     {
48079      "name": "initEvents",
48080      "sig": "()",
48081      "type": "function",
48082      "desc": "Initialize Events for the element"
48083     },
48084     {
48085      "name": "isVisible",
48086      "sig": "()",
48087      "type": "function",
48088      "desc": "Returns true if this component is visible."
48089     },
48090     {
48091      "name": "on",
48092      "sig": "(String eventName, Function handler, Object scope, Object options)",
48093      "type": "function",
48094      "desc": "Appends an event handler to this element (shorthand for addListener)"
48095     },
48096     {
48097      "name": "purgeListeners",
48098      "sig": "()",
48099      "type": "function",
48100      "desc": "Removes all listeners for this object"
48101     },
48102     {
48103      "name": "releaseCapture",
48104      "sig": "(Observable o)",
48105      "type": "function",
48106      "desc": "Removes <b>all</b> added captures from the Observable."
48107     },
48108     {
48109      "name": "removeListener",
48110      "sig": "(String eventName, Function handler, Object scope)",
48111      "type": "function",
48112      "desc": "Removes a listener"
48113     },
48114     {
48115      "name": "render",
48116      "sig": "(String/HTMLElement/Element container)",
48117      "type": "function",
48118      "desc": "If this is a lazy rendering component, render it to its container element."
48119     },
48120     {
48121      "name": "setDisabled",
48122      "sig": "(Boolean disabled)",
48123      "type": "function",
48124      "desc": "Convenience function for setting disabled/enabled by boolean."
48125     },
48126     {
48127      "name": "setVisible",
48128      "sig": "(Boolean visible)",
48129      "type": "function",
48130      "desc": "Convenience function to hide or show this component by boolean."
48131     },
48132     {
48133      "name": "show",
48134      "sig": "()",
48135      "type": "function",
48136      "desc": "Show a component - removes 'hidden' class"
48137     },
48138     {
48139      "name": "tooltipEl",
48140      "sig": "()",
48141      "type": "function",
48142      "desc": "Fetch the element to display the tooltip on."
48143     },
48144     {
48145      "name": "un",
48146      "sig": "(String eventName, Function handler, Object scope)",
48147      "type": "function",
48148      "desc": "Removes a listener (shorthand for removeListener)"
48149     }
48150    ]
48151   },
48152   "Roo.bootstrap.panel": {
48153    "props": [],
48154    "events": [],
48155    "methods": []
48156   },
48157   "Roo.bootstrap.panel.Content": {
48158    "props": [
48159     {
48160      "name": "fitToFrame",
48161      "type": "Boolean",
48162      "desc": "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
48163      "memberOf": ""
48164     },
48165     {
48166      "name": "fitContainer",
48167      "type": "Boolean",
48168      "desc": "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
48169      "memberOf": ""
48170     },
48171     {
48172      "name": "autoCreate",
48173      "type": "Boolean/Object",
48174      "desc": "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
48175      "memberOf": ""
48176     },
48177     {
48178      "name": "closable",
48179      "type": "Boolean",
48180      "desc": "True if the panel can be closed/removed",
48181      "memberOf": ""
48182     },
48183     {
48184      "name": "background",
48185      "type": "Boolean",
48186      "desc": "True if the panel should not be activated when it is added (defaults to false)",
48187      "memberOf": ""
48188     },
48189     {
48190      "name": "resizeEl",
48191      "type": "String/HTMLElement/Element",
48192      "desc": "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
48193      "memberOf": ""
48194     },
48195     {
48196      "name": "toolbar",
48197      "type": "Toolbar",
48198      "desc": "A toolbar for this panel",
48199      "memberOf": ""
48200     },
48201     {
48202      "name": "autoScroll",
48203      "type": "Boolean",
48204      "desc": "True to scroll overflow in this panel (use with {@link #fitToFrame})",
48205      "memberOf": ""
48206     },
48207     {
48208      "name": "title",
48209      "type": "String",
48210      "desc": "The title for this panel",
48211      "memberOf": ""
48212     },
48213     {
48214      "name": "adjustments",
48215      "type": "Array",
48216      "desc": "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
48217      "memberOf": ""
48218     },
48219     {
48220      "name": "url",
48221      "type": "String",
48222      "desc": "Calls {@link #setUrl} with this value",
48223      "memberOf": ""
48224     },
48225     {
48226      "name": "region",
48227      "type": "String",
48228      "desc": "which region to put this panel on (when used with xtype constructors)",
48229      "memberOf": "",
48230      "optvals": [
48231       "center",
48232       "north",
48233       "south",
48234       "east",
48235       "west"
48236      ]
48237     },
48238     {
48239      "name": "params",
48240      "type": "String/Object",
48241      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
48242      "memberOf": ""
48243     },
48244     {
48245      "name": "loadOnce",
48246      "type": "Boolean",
48247      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
48248      "memberOf": ""
48249     },
48250     {
48251      "name": "content",
48252      "type": "String",
48253      "desc": "Raw content to fill content panel with (uses setContent on construction.)",
48254      "memberOf": ""
48255     },
48256     {
48257      "name": "badges",
48258      "type": "Boolean",
48259      "desc": "render the badges",
48260      "memberOf": ""
48261     },
48262     {
48263      "name": "listeners",
48264      "type": "Object",
48265      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
48266      "memberOf": "Roo.util.Observable"
48267     }
48268    ],
48269    "events": [
48270     {
48271      "name": "activate",
48272      "sig": "function (_self)\n{\n\n}",
48273      "type": "function",
48274      "desc": "Fires when this panel is activated."
48275     },
48276     {
48277      "name": "deactivate",
48278      "sig": "function (_self)\n{\n\n}",
48279      "type": "function",
48280      "desc": "Fires when this panel is activated."
48281     },
48282     {
48283      "name": "render",
48284      "sig": "function (_self)\n{\n\n}",
48285      "type": "function",
48286      "desc": "Fires when this tab is created"
48287     },
48288     {
48289      "name": "resize",
48290      "sig": "function (_self, width, height)\n{\n\n}",
48291      "type": "function",
48292      "desc": "Fires when this panel is resized if fitToFrame is true."
48293     }
48294    ],
48295    "methods": [
48296     {
48297      "name": "addEvents",
48298      "sig": "(Object object)",
48299      "type": "function",
48300      "desc": "Used to define events on this Observable"
48301     },
48302     {
48303      "name": "addListener",
48304      "sig": "(String eventName, Function handler, Object scope, Object options)",
48305      "type": "function",
48306      "desc": "Appends an event handler to this component"
48307     },
48308     {
48309      "name": "capture",
48310      "sig": "(Observable o, Function fn, Object scope)",
48311      "type": "function",
48312      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
48313     },
48314     {
48315      "name": "destroy",
48316      "sig": "()",
48317      "type": "function",
48318      "desc": "Destroys this panel"
48319     },
48320     {
48321      "name": "fireEvent",
48322      "sig": "(String eventName, Object... args)",
48323      "type": "function",
48324      "desc": "Fires the specified event with the passed parameters (minus the event name)."
48325     },
48326     {
48327      "name": "getChildContainer",
48328      "sig": "(Object cfg)",
48329      "type": "function",
48330      "desc": "Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'Form',\n       items: [ .... ]\n   }\n);\n\n</code></pre>"
48331     },
48332     {
48333      "name": "getEl",
48334      "sig": "()",
48335      "type": "function",
48336      "desc": "Returns this panel's element - used by regiosn to add."
48337     },
48338     {
48339      "name": "getId",
48340      "sig": "()",
48341      "type": "function",
48342      "desc": "Returns this panel's id"
48343     },
48344     {
48345      "name": "getTitle",
48346      "sig": "()",
48347      "type": "function",
48348      "desc": "Returns this panel's title"
48349     },
48350     {
48351      "name": "getToolbar",
48352      "sig": "()",
48353      "type": "function",
48354      "desc": "Returns the toolbar for this Panel if one was configured."
48355     },
48356     {
48357      "name": "getUpdateManager",
48358      "sig": "()",
48359      "type": "function",
48360      "desc": "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates."
48361     },
48362     {
48363      "name": "hasListener",
48364      "sig": "(String eventName)",
48365      "type": "function",
48366      "desc": "Checks to see if this object has any listeners for a specified event"
48367     },
48368     {
48369      "name": "isClosable",
48370      "sig": "()",
48371      "type": "function",
48372      "desc": "Returns true is this panel was configured to be closable"
48373     },
48374     {
48375      "name": "load",
48376      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
48377      "type": "function",
48378      "desc": "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}."
48379     },
48380     {
48381      "name": "on",
48382      "sig": "(String eventName, Function handler, Object scope, Object options)",
48383      "type": "function",
48384      "desc": "Appends an event handler to this element (shorthand for addListener)"
48385     },
48386     {
48387      "name": "purgeListeners",
48388      "sig": "()",
48389      "type": "function",
48390      "desc": "Removes all listeners for this object"
48391     },
48392     {
48393      "name": "refresh",
48394      "sig": "()",
48395      "type": "function",
48396      "desc": "Force a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the {@link #setUrl} method has not been called.\n  This does not activate the panel, just updates its content."
48397     },
48398     {
48399      "name": "releaseCapture",
48400      "sig": "(Observable o)",
48401      "type": "function",
48402      "desc": "Removes <b>all</b> added captures from the Observable."
48403     },
48404     {
48405      "name": "removeListener",
48406      "sig": "(String eventName, Function handler, Object scope)",
48407      "type": "function",
48408      "desc": "Removes a listener"
48409     },
48410     {
48411      "name": "setContent",
48412      "sig": "(String content, Boolean loadScripts)",
48413      "type": "function",
48414      "desc": "Updates this panel's element"
48415     },
48416     {
48417      "name": "setTitle",
48418      "sig": "(String title)",
48419      "type": "function",
48420      "desc": "Set this panel's title"
48421     },
48422     {
48423      "name": "setUrl",
48424      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
48425      "type": "function",
48426      "desc": "Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL."
48427     },
48428     {
48429      "name": "un",
48430      "sig": "(String eventName, Function handler, Object scope)",
48431      "type": "function",
48432      "desc": "Removes a listener (shorthand for removeListener)"
48433     }
48434    ]
48435   },
48436   "Roo.bootstrap.panel.Grid": {
48437    "props": [
48438     {
48439      "name": "grid",
48440      "type": "Roo.bootstrap.Table",
48441      "desc": "The grid for this panel",
48442      "memberOf": ""
48443     },
48444     {
48445      "name": "fitToFrame",
48446      "type": "Boolean",
48447      "desc": "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
48448      "memberOf": "Roo.bootstrap.panel.Content"
48449     },
48450     {
48451      "name": "fitContainer",
48452      "type": "Boolean",
48453      "desc": "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
48454      "memberOf": "Roo.bootstrap.panel.Content"
48455     },
48456     {
48457      "name": "autoCreate",
48458      "type": "Boolean/Object",
48459      "desc": "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
48460      "memberOf": "Roo.bootstrap.panel.Content"
48461     },
48462     {
48463      "name": "closable",
48464      "type": "Boolean",
48465      "desc": "True if the panel can be closed/removed",
48466      "memberOf": "Roo.bootstrap.panel.Content"
48467     },
48468     {
48469      "name": "background",
48470      "type": "Boolean",
48471      "desc": "True if the panel should not be activated when it is added (defaults to false)",
48472      "memberOf": "Roo.bootstrap.panel.Content"
48473     },
48474     {
48475      "name": "resizeEl",
48476      "type": "String/HTMLElement/Element",
48477      "desc": "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
48478      "memberOf": "Roo.bootstrap.panel.Content"
48479     },
48480     {
48481      "name": "toolbar",
48482      "type": "Toolbar",
48483      "desc": "A toolbar for this panel",
48484      "memberOf": "Roo.bootstrap.panel.Content"
48485     },
48486     {
48487      "name": "autoScroll",
48488      "type": "Boolean",
48489      "desc": "True to scroll overflow in this panel (use with {@link #fitToFrame})",
48490      "memberOf": "Roo.bootstrap.panel.Content"
48491     },
48492     {
48493      "name": "title",
48494      "type": "String",
48495      "desc": "The title for this panel",
48496      "memberOf": "Roo.bootstrap.panel.Content"
48497     },
48498     {
48499      "name": "adjustments",
48500      "type": "Array",
48501      "desc": "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
48502      "memberOf": "Roo.bootstrap.panel.Content"
48503     },
48504     {
48505      "name": "url",
48506      "type": "String",
48507      "desc": "Calls {@link #setUrl} with this value",
48508      "memberOf": "Roo.bootstrap.panel.Content"
48509     },
48510     {
48511      "name": "region",
48512      "type": "String",
48513      "desc": "which region to put this panel on (when used with xtype constructors)",
48514      "memberOf": "Roo.bootstrap.panel.Content",
48515      "optvals": [
48516       "center",
48517       "north",
48518       "south",
48519       "east",
48520       "west"
48521      ]
48522     },
48523     {
48524      "name": "params",
48525      "type": "String/Object",
48526      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
48527      "memberOf": "Roo.bootstrap.panel.Content"
48528     },
48529     {
48530      "name": "loadOnce",
48531      "type": "Boolean",
48532      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
48533      "memberOf": "Roo.bootstrap.panel.Content"
48534     },
48535     {
48536      "name": "content",
48537      "type": "String",
48538      "desc": "Raw content to fill content panel with (uses setContent on construction.)",
48539      "memberOf": "Roo.bootstrap.panel.Content"
48540     },
48541     {
48542      "name": "badges",
48543      "type": "Boolean",
48544      "desc": "render the badges",
48545      "memberOf": "Roo.bootstrap.panel.Content"
48546     },
48547     {
48548      "name": "listeners",
48549      "type": "Object",
48550      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
48551      "memberOf": "Roo.util.Observable"
48552     }
48553    ],
48554    "events": [
48555     {
48556      "name": "activate",
48557      "sig": "function (_self)\n{\n\n}",
48558      "type": "function",
48559      "desc": "Fires when this panel is activated."
48560     },
48561     {
48562      "name": "deactivate",
48563      "sig": "function (_self)\n{\n\n}",
48564      "type": "function",
48565      "desc": "Fires when this panel is activated."
48566     },
48567     {
48568      "name": "render",
48569      "sig": "function (_self)\n{\n\n}",
48570      "type": "function",
48571      "desc": "Fires when this tab is created"
48572     },
48573     {
48574      "name": "resize",
48575      "sig": "function (_self, width, height)\n{\n\n}",
48576      "type": "function",
48577      "desc": "Fires when this panel is resized if fitToFrame is true."
48578     }
48579    ],
48580    "methods": [
48581     {
48582      "name": "addEvents",
48583      "sig": "(Object object)",
48584      "type": "function",
48585      "desc": "Used to define events on this Observable"
48586     },
48587     {
48588      "name": "addListener",
48589      "sig": "(String eventName, Function handler, Object scope, Object options)",
48590      "type": "function",
48591      "desc": "Appends an event handler to this component"
48592     },
48593     {
48594      "name": "capture",
48595      "sig": "(Observable o, Function fn, Object scope)",
48596      "type": "function",
48597      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
48598     },
48599     {
48600      "name": "destroy",
48601      "sig": "()",
48602      "type": "function",
48603      "desc": "Destroys this panel"
48604     },
48605     {
48606      "name": "fireEvent",
48607      "sig": "(String eventName, Object... args)",
48608      "type": "function",
48609      "desc": "Fires the specified event with the passed parameters (minus the event name)."
48610     },
48611     {
48612      "name": "getChildContainer",
48613      "sig": "(Object cfg)",
48614      "type": "function",
48615      "desc": "Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'Form',\n       items: [ .... ]\n   }\n);\n\n</code></pre>"
48616     },
48617     {
48618      "name": "getEl",
48619      "sig": "()",
48620      "type": "function",
48621      "desc": "Returns this panel's element - used by regiosn to add."
48622     },
48623     {
48624      "name": "getGrid",
48625      "sig": "()",
48626      "type": "function",
48627      "desc": "Returns the grid for this panel"
48628     },
48629     {
48630      "name": "getId",
48631      "sig": "()",
48632      "type": "function",
48633      "desc": "Returns this panel's id"
48634     },
48635     {
48636      "name": "getTitle",
48637      "sig": "()",
48638      "type": "function",
48639      "desc": "Returns this panel's title"
48640     },
48641     {
48642      "name": "getToolbar",
48643      "sig": "()",
48644      "type": "function",
48645      "desc": "Returns the toolbar for this Panel if one was configured."
48646     },
48647     {
48648      "name": "getUpdateManager",
48649      "sig": "()",
48650      "type": "function",
48651      "desc": "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates."
48652     },
48653     {
48654      "name": "hasListener",
48655      "sig": "(String eventName)",
48656      "type": "function",
48657      "desc": "Checks to see if this object has any listeners for a specified event"
48658     },
48659     {
48660      "name": "isClosable",
48661      "sig": "()",
48662      "type": "function",
48663      "desc": "Returns true is this panel was configured to be closable"
48664     },
48665     {
48666      "name": "load",
48667      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
48668      "type": "function",
48669      "desc": "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}."
48670     },
48671     {
48672      "name": "on",
48673      "sig": "(String eventName, Function handler, Object scope, Object options)",
48674      "type": "function",
48675      "desc": "Appends an event handler to this element (shorthand for addListener)"
48676     },
48677     {
48678      "name": "purgeListeners",
48679      "sig": "()",
48680      "type": "function",
48681      "desc": "Removes all listeners for this object"
48682     },
48683     {
48684      "name": "refresh",
48685      "sig": "()",
48686      "type": "function",
48687      "desc": "Force a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the {@link #setUrl} method has not been called.\n  This does not activate the panel, just updates its content."
48688     },
48689     {
48690      "name": "releaseCapture",
48691      "sig": "(Observable o)",
48692      "type": "function",
48693      "desc": "Removes <b>all</b> added captures from the Observable."
48694     },
48695     {
48696      "name": "removeListener",
48697      "sig": "(String eventName, Function handler, Object scope)",
48698      "type": "function",
48699      "desc": "Removes a listener"
48700     },
48701     {
48702      "name": "setContent",
48703      "sig": "(String content, Boolean loadScripts)",
48704      "type": "function",
48705      "desc": "Updates this panel's element"
48706     },
48707     {
48708      "name": "setTitle",
48709      "sig": "(String title)",
48710      "type": "function",
48711      "desc": "Set this panel's title"
48712     },
48713     {
48714      "name": "setUrl",
48715      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
48716      "type": "function",
48717      "desc": "Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL."
48718     },
48719     {
48720      "name": "un",
48721      "sig": "(String eventName, Function handler, Object scope)",
48722      "type": "function",
48723      "desc": "Removes a listener (shorthand for removeListener)"
48724     }
48725    ]
48726   },
48727   "Roo.bootstrap.panel.Nest": {
48728    "props": [
48729     {
48730      "name": "fitToFrame",
48731      "type": "Boolean",
48732      "desc": "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
48733      "memberOf": "Roo.bootstrap.panel.Content"
48734     },
48735     {
48736      "name": "fitContainer",
48737      "type": "Boolean",
48738      "desc": "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
48739      "memberOf": "Roo.bootstrap.panel.Content"
48740     },
48741     {
48742      "name": "autoCreate",
48743      "type": "Boolean/Object",
48744      "desc": "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
48745      "memberOf": "Roo.bootstrap.panel.Content"
48746     },
48747     {
48748      "name": "closable",
48749      "type": "Boolean",
48750      "desc": "True if the panel can be closed/removed",
48751      "memberOf": "Roo.bootstrap.panel.Content"
48752     },
48753     {
48754      "name": "background",
48755      "type": "Boolean",
48756      "desc": "True if the panel should not be activated when it is added (defaults to false)",
48757      "memberOf": "Roo.bootstrap.panel.Content"
48758     },
48759     {
48760      "name": "resizeEl",
48761      "type": "String/HTMLElement/Element",
48762      "desc": "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
48763      "memberOf": "Roo.bootstrap.panel.Content"
48764     },
48765     {
48766      "name": "toolbar",
48767      "type": "Toolbar",
48768      "desc": "A toolbar for this panel",
48769      "memberOf": "Roo.bootstrap.panel.Content"
48770     },
48771     {
48772      "name": "autoScroll",
48773      "type": "Boolean",
48774      "desc": "True to scroll overflow in this panel (use with {@link #fitToFrame})",
48775      "memberOf": "Roo.bootstrap.panel.Content"
48776     },
48777     {
48778      "name": "title",
48779      "type": "String",
48780      "desc": "The title for this panel",
48781      "memberOf": "Roo.bootstrap.panel.Content"
48782     },
48783     {
48784      "name": "adjustments",
48785      "type": "Array",
48786      "desc": "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
48787      "memberOf": "Roo.bootstrap.panel.Content"
48788     },
48789     {
48790      "name": "url",
48791      "type": "String",
48792      "desc": "Calls {@link #setUrl} with this value",
48793      "memberOf": "Roo.bootstrap.panel.Content"
48794     },
48795     {
48796      "name": "region",
48797      "type": "String",
48798      "desc": "which region to put this panel on (when used with xtype constructors)",
48799      "memberOf": "Roo.bootstrap.panel.Content",
48800      "optvals": [
48801       "center",
48802       "north",
48803       "south",
48804       "east",
48805       "west"
48806      ]
48807     },
48808     {
48809      "name": "params",
48810      "type": "String/Object",
48811      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
48812      "memberOf": "Roo.bootstrap.panel.Content"
48813     },
48814     {
48815      "name": "loadOnce",
48816      "type": "Boolean",
48817      "desc": "When used with {@link #url}, calls {@link #setUrl} with this value",
48818      "memberOf": "Roo.bootstrap.panel.Content"
48819     },
48820     {
48821      "name": "content",
48822      "type": "String",
48823      "desc": "Raw content to fill content panel with (uses setContent on construction.)",
48824      "memberOf": "Roo.bootstrap.panel.Content"
48825     },
48826     {
48827      "name": "badges",
48828      "type": "Boolean",
48829      "desc": "render the badges",
48830      "memberOf": "Roo.bootstrap.panel.Content"
48831     },
48832     {
48833      "name": "listeners",
48834      "type": "Object",
48835      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
48836      "memberOf": "Roo.util.Observable"
48837     }
48838    ],
48839    "events": [
48840     {
48841      "name": "activate",
48842      "sig": "function (_self)\n{\n\n}",
48843      "type": "function",
48844      "desc": "Fires when this panel is activated."
48845     },
48846     {
48847      "name": "deactivate",
48848      "sig": "function (_self)\n{\n\n}",
48849      "type": "function",
48850      "desc": "Fires when this panel is activated."
48851     },
48852     {
48853      "name": "render",
48854      "sig": "function (_self)\n{\n\n}",
48855      "type": "function",
48856      "desc": "Fires when this tab is created"
48857     },
48858     {
48859      "name": "resize",
48860      "sig": "function (_self, width, height)\n{\n\n}",
48861      "type": "function",
48862      "desc": "Fires when this panel is resized if fitToFrame is true."
48863     }
48864    ],
48865    "methods": [
48866     {
48867      "name": "addEvents",
48868      "sig": "(Object object)",
48869      "type": "function",
48870      "desc": "Used to define events on this Observable"
48871     },
48872     {
48873      "name": "addListener",
48874      "sig": "(String eventName, Function handler, Object scope, Object options)",
48875      "type": "function",
48876      "desc": "Appends an event handler to this component"
48877     },
48878     {
48879      "name": "addxtype",
48880      "sig": "(Object cfg)",
48881      "type": "function",
48882      "desc": "Adds a xtype elements to the layout of the nested panel\n<pre><code>\n\npanel.addxtype({\n       xtype : 'ContentPanel',\n       region: 'west',\n       items: [ .... ]\n   }\n);\n\npanel.addxtype({\n        xtype : 'NestedLayoutPanel',\n        region: 'west',\n        layout: {\n           center: { },\n           west: { }   \n        },\n        items : [ ... list of content panels or nested layout panels.. ]\n   }\n);\n</code></pre>"
48883     },
48884     {
48885      "name": "capture",
48886      "sig": "(Observable o, Function fn, Object scope)",
48887      "type": "function",
48888      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
48889     },
48890     {
48891      "name": "destroy",
48892      "sig": "()",
48893      "type": "function",
48894      "desc": "Destroys this panel"
48895     },
48896     {
48897      "name": "fireEvent",
48898      "sig": "(String eventName, Object... args)",
48899      "type": "function",
48900      "desc": "Fires the specified event with the passed parameters (minus the event name)."
48901     },
48902     {
48903      "name": "getChildContainer",
48904      "sig": "(Object cfg)",
48905      "type": "function",
48906      "desc": "Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.\n<pre><code>\n\nlayout.addxtype({\n       xtype : 'Form',\n       items: [ .... ]\n   }\n);\n\n</code></pre>"
48907     },
48908     {
48909      "name": "getEl",
48910      "sig": "()",
48911      "type": "function",
48912      "desc": "Returns this panel's element - used by regiosn to add."
48913     },
48914     {
48915      "name": "getId",
48916      "sig": "()",
48917      "type": "function",
48918      "desc": "Returns this panel's id"
48919     },
48920     {
48921      "name": "getLayout",
48922      "sig": "()",
48923      "type": "function",
48924      "desc": "Returns the nested BorderLayout for this panel"
48925     },
48926     {
48927      "name": "getTitle",
48928      "sig": "()",
48929      "type": "function",
48930      "desc": "Returns this panel's title"
48931     },
48932     {
48933      "name": "getToolbar",
48934      "sig": "()",
48935      "type": "function",
48936      "desc": "Returns the toolbar for this Panel if one was configured."
48937     },
48938     {
48939      "name": "getUpdateManager",
48940      "sig": "()",
48941      "type": "function",
48942      "desc": "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates."
48943     },
48944     {
48945      "name": "hasListener",
48946      "sig": "(String eventName)",
48947      "type": "function",
48948      "desc": "Checks to see if this object has any listeners for a specified event"
48949     },
48950     {
48951      "name": "isClosable",
48952      "sig": "()",
48953      "type": "function",
48954      "desc": "Returns true is this panel was configured to be closable"
48955     },
48956     {
48957      "name": "load",
48958      "sig": "(Object/String/Function url, String/Object params, Function callback, Boolean discardUrl)",
48959      "type": "function",
48960      "desc": "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}."
48961     },
48962     {
48963      "name": "on",
48964      "sig": "(String eventName, Function handler, Object scope, Object options)",
48965      "type": "function",
48966      "desc": "Appends an event handler to this element (shorthand for addListener)"
48967     },
48968     {
48969      "name": "purgeListeners",
48970      "sig": "()",
48971      "type": "function",
48972      "desc": "Removes all listeners for this object"
48973     },
48974     {
48975      "name": "refresh",
48976      "sig": "()",
48977      "type": "function",
48978      "desc": "Force a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the {@link #setUrl} method has not been called.\n  This does not activate the panel, just updates its content."
48979     },
48980     {
48981      "name": "releaseCapture",
48982      "sig": "(Observable o)",
48983      "type": "function",
48984      "desc": "Removes <b>all</b> added captures from the Observable."
48985     },
48986     {
48987      "name": "removeListener",
48988      "sig": "(String eventName, Function handler, Object scope)",
48989      "type": "function",
48990      "desc": "Removes a listener"
48991     },
48992     {
48993      "name": "setContent",
48994      "sig": "(String content, Boolean loadScripts)",
48995      "type": "function",
48996      "desc": "Updates this panel's element"
48997     },
48998     {
48999      "name": "setTitle",
49000      "sig": "(String title)",
49001      "type": "function",
49002      "desc": "Set this panel's title"
49003     },
49004     {
49005      "name": "setUrl",
49006      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
49007      "type": "function",
49008      "desc": "Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL."
49009     },
49010     {
49011      "name": "un",
49012      "sig": "(String eventName, Function handler, Object scope)",
49013      "type": "function",
49014      "desc": "Removes a listener (shorthand for removeListener)"
49015     }
49016    ]
49017   },
49018   "Roo.bootstrap.panel.TabItem": {
49019    "props": [
49020     {
49021      "name": "listeners",
49022      "type": "Object",
49023      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
49024      "memberOf": "Roo.util.Observable"
49025     }
49026    ],
49027    "events": [
49028     {
49029      "name": "activate",
49030      "sig": "function (tabPanel, _self)\n{\n\n}",
49031      "type": "function",
49032      "desc": "Fires when this tab becomes the active tab."
49033     },
49034     {
49035      "name": "beforeclose",
49036      "sig": "function (_self, e)\n{\n\n}",
49037      "type": "function",
49038      "desc": "Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true)."
49039     },
49040     {
49041      "name": "close",
49042      "sig": "function (_self)\n{\n\n}",
49043      "type": "function",
49044      "desc": "Fires when this tab is closed."
49045     },
49046     {
49047      "name": "deactivate",
49048      "sig": "function (tabPanel, _self)\n{\n\n}",
49049      "type": "function",
49050      "desc": "Fires when this tab is no longer the active tab."
49051     }
49052    ],
49053    "methods": [
49054     {
49055      "name": "activate",
49056      "sig": "()",
49057      "type": "function",
49058      "desc": "Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem."
49059     },
49060     {
49061      "name": "addEvents",
49062      "sig": "(Object object)",
49063      "type": "function",
49064      "desc": "Used to define events on this Observable"
49065     },
49066     {
49067      "name": "addListener",
49068      "sig": "(String eventName, Function handler, Object scope, Object options)",
49069      "type": "function",
49070      "desc": "Appends an event handler to this component"
49071     },
49072     {
49073      "name": "capture",
49074      "sig": "(Observable o, Function fn, Object scope)",
49075      "type": "function",
49076      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
49077     },
49078     {
49079      "name": "disable",
49080      "sig": "()",
49081      "type": "function",
49082      "desc": "Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem."
49083     },
49084     {
49085      "name": "enable",
49086      "sig": "()",
49087      "type": "function",
49088      "desc": "Enables this TabPanelItem if it was previously disabled."
49089     },
49090     {
49091      "name": "fireEvent",
49092      "sig": "(String eventName, Object... args)",
49093      "type": "function",
49094      "desc": "Fires the specified event with the passed parameters (minus the event name)."
49095     },
49096     {
49097      "name": "getText",
49098      "sig": "()",
49099      "type": "function",
49100      "desc": "Returns the text for this tab"
49101     },
49102     {
49103      "name": "getUpdateManager",
49104      "sig": "()",
49105      "type": "function",
49106      "desc": "Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates."
49107     },
49108     {
49109      "name": "hasListener",
49110      "sig": "(String eventName)",
49111      "type": "function",
49112      "desc": "Checks to see if this object has any listeners for a specified event"
49113     },
49114     {
49115      "name": "hide",
49116      "sig": "()",
49117      "type": "function",
49118      "desc": "Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd."
49119     },
49120     {
49121      "name": "isActive",
49122      "sig": "()",
49123      "type": "function",
49124      "desc": "Returns true if this tab is the active tab."
49125     },
49126     {
49127      "name": "isHidden",
49128      "sig": "()",
49129      "type": "function",
49130      "desc": "Returns true if this tab is \"hidden\""
49131     },
49132     {
49133      "name": "on",
49134      "sig": "(String eventName, Function handler, Object scope, Object options)",
49135      "type": "function",
49136      "desc": "Appends an event handler to this element (shorthand for addListener)"
49137     },
49138     {
49139      "name": "purgeListeners",
49140      "sig": "()",
49141      "type": "function",
49142      "desc": "Removes all listeners for this object"
49143     },
49144     {
49145      "name": "refresh",
49146      "sig": "()",
49147      "type": "function",
49148      "desc": "Forces a content refresh from the URL specified in the {@link #setUrl} method.\n  Will fail silently if the setUrl method has not been called.\n  This does not activate the panel, just updates its content."
49149     },
49150     {
49151      "name": "releaseCapture",
49152      "sig": "(Observable o)",
49153      "type": "function",
49154      "desc": "Removes <b>all</b> added captures from the Observable."
49155     },
49156     {
49157      "name": "removeListener",
49158      "sig": "(String eventName, Function handler, Object scope)",
49159      "type": "function",
49160      "desc": "Removes a listener"
49161     },
49162     {
49163      "name": "setContent",
49164      "sig": "(String content, Boolean loadScripts)",
49165      "type": "function",
49166      "desc": "Sets the content for this TabPanelItem."
49167     },
49168     {
49169      "name": "setHidden",
49170      "sig": "(Boolean hidden)",
49171      "type": "function",
49172      "desc": "Show or hide the tab"
49173     },
49174     {
49175      "name": "setText",
49176      "sig": "(String text)",
49177      "type": "function",
49178      "desc": "Sets the text for the tab (Note: this also sets the tooltip text)"
49179     },
49180     {
49181      "name": "setTooltip",
49182      "sig": "(String tooltip)",
49183      "type": "function",
49184      "desc": "Set the tooltip for the tab."
49185     },
49186     {
49187      "name": "setUrl",
49188      "sig": "(String/Function url, String/Object params, Boolean loadOnce)",
49189      "type": "function",
49190      "desc": "Set a URL to be used to load the content for this TabPanelItem."
49191     },
49192     {
49193      "name": "show",
49194      "sig": "()",
49195      "type": "function",
49196      "desc": "Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem."
49197     },
49198     {
49199      "name": "un",
49200      "sig": "(String eventName, Function handler, Object scope)",
49201      "type": "function",
49202      "desc": "Removes a listener (shorthand for removeListener)"
49203     }
49204    ]
49205   },
49206   "Roo.bootstrap.panel.Tabs": {
49207    "props": [
49208     {
49209      "name": "listeners",
49210      "type": "Object",
49211      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
49212      "memberOf": "Roo.util.Observable"
49213     }
49214    ],
49215    "events": [
49216     {
49217      "name": "beforetabchange",
49218      "sig": "function (_self, e, tab)\n{\n\n}",
49219      "type": "function",
49220      "desc": "Fires before the active tab changes, set cancel to true on the \"e\" parameter to cancel the change"
49221     },
49222     {
49223      "name": "tabchange",
49224      "sig": "function (_self, activePanel)\n{\n\n}",
49225      "type": "function",
49226      "desc": "Fires when the active tab changes"
49227     }
49228    ],
49229    "methods": [
49230     {
49231      "name": "activate",
49232      "sig": "(String/Number id)",
49233      "type": "function",
49234      "desc": "Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated."
49235     },
49236     {
49237      "name": "addEvents",
49238      "sig": "(Object object)",
49239      "type": "function",
49240      "desc": "Used to define events on this Observable"
49241     },
49242     {
49243      "name": "addListener",
49244      "sig": "(String eventName, Function handler, Object scope, Object options)",
49245      "type": "function",
49246      "desc": "Appends an event handler to this component"
49247     },
49248     {
49249      "name": "addTab",
49250      "sig": "(String id, String text, String content, Boolean closable)",
49251      "type": "function",
49252      "desc": "Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one."
49253     },
49254     {
49255      "name": "addTabItem",
49256      "sig": "(Roo.TabPanelItem item)",
49257      "type": "function",
49258      "desc": "Adds an existing {@link Roo.TabPanelItem}."
49259     },
49260     {
49261      "name": "autoSizeTabs",
49262      "sig": "()",
49263      "type": "function",
49264      "desc": "Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)"
49265     },
49266     {
49267      "name": "beginUpdate",
49268      "sig": "()",
49269      "type": "function",
49270      "desc": "Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)"
49271     },
49272     {
49273      "name": "capture",
49274      "sig": "(Observable o, Function fn, Object scope)",
49275      "type": "function",
49276      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
49277     },
49278     {
49279      "name": "destroy",
49280      "sig": "(Boolean removeEl)",
49281      "type": "function",
49282      "desc": "Destroys this TabPanel"
49283     },
49284     {
49285      "name": "disableTab",
49286      "sig": "(String/Number id)",
49287      "type": "function",
49288      "desc": "Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored."
49289     },
49290     {
49291      "name": "enableTab",
49292      "sig": "(String/Number id)",
49293      "type": "function",
49294      "desc": "Enables a {@link Roo.TabPanelItem} that is disabled."
49295     },
49296     {
49297      "name": "endUpdate",
49298      "sig": "()",
49299      "type": "function",
49300      "desc": "Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)"
49301     },
49302     {
49303      "name": "fireEvent",
49304      "sig": "(String eventName, Object... args)",
49305      "type": "function",
49306      "desc": "Fires the specified event with the passed parameters (minus the event name)."
49307     },
49308     {
49309      "name": "getActiveTab",
49310      "sig": "()",
49311      "type": "function",
49312      "desc": "Gets the active {@link Roo.TabPanelItem}."
49313     },
49314     {
49315      "name": "getCount",
49316      "sig": "()",
49317      "type": "function",
49318      "desc": "Returns the number of tabs in this TabPanel."
49319     },
49320     {
49321      "name": "getTab",
49322      "sig": "(String/Number id)",
49323      "type": "function",
49324      "desc": "Returns the {@link Roo.TabPanelItem} with the specified id/index"
49325     },
49326     {
49327      "name": "hasListener",
49328      "sig": "(String eventName)",
49329      "type": "function",
49330      "desc": "Checks to see if this object has any listeners for a specified event"
49331     },
49332     {
49333      "name": "hideTab",
49334      "sig": "(String/Number id)",
49335      "type": "function",
49336      "desc": "Hides the {@link Roo.TabPanelItem} with the specified id/index"
49337     },
49338     {
49339      "name": "on",
49340      "sig": "(String eventName, Function handler, Object scope, Object options)",
49341      "type": "function",
49342      "desc": "Appends an event handler to this element (shorthand for addListener)"
49343     },
49344     {
49345      "name": "purgeListeners",
49346      "sig": "()",
49347      "type": "function",
49348      "desc": "Removes all listeners for this object"
49349     },
49350     {
49351      "name": "releaseCapture",
49352      "sig": "(Observable o)",
49353      "type": "function",
49354      "desc": "Removes <b>all</b> added captures from the Observable."
49355     },
49356     {
49357      "name": "removeListener",
49358      "sig": "(String eventName, Function handler, Object scope)",
49359      "type": "function",
49360      "desc": "Removes a listener"
49361     },
49362     {
49363      "name": "removeTab",
49364      "sig": "(String/Number id)",
49365      "type": "function",
49366      "desc": "Removes a {@link Roo.TabPanelItem}."
49367     },
49368     {
49369      "name": "setTabWidth",
49370      "sig": "(Number The)",
49371      "type": "function",
49372      "desc": "Resizes all the tabs to the passed width"
49373     },
49374     {
49375      "name": "syncHeight",
49376      "sig": "(Number targetHeight)",
49377      "type": "function",
49378      "desc": "Updates the tab body element to fit the height of the container element\nfor overflow scrolling"
49379     },
49380     {
49381      "name": "un",
49382      "sig": "(String eventName, Function handler, Object scope)",
49383      "type": "function",
49384      "desc": "Removes a listener (shorthand for removeListener)"
49385     },
49386     {
49387      "name": "unhideTab",
49388      "sig": "(String/Number id)",
49389      "type": "function",
49390      "desc": "\"Unhides\" the {@link Roo.TabPanelItem} with the specified id/index."
49391     }
49392    ]
49393   },
49394   "Roo.data": {
49395    "props": [],
49396    "events": [],
49397    "methods": []
49398   },
49399   "Roo.data.ArrayReader": {
49400    "props": [
49401     {
49402      "name": "id",
49403      "type": "String",
49404      "desc": "(optional) The subscript within row Array that provides an ID for the Record",
49405      "memberOf": ""
49406     }
49407    ],
49408    "events": [],
49409    "methods": [
49410     {
49411      "name": "newRow",
49412      "sig": "(Object data)",
49413      "type": "function",
49414      "desc": "Create an empty record"
49415     },
49416     {
49417      "name": "readRecords",
49418      "sig": "(Object o)",
49419      "type": "function",
49420      "desc": "Create a data block containing Roo.data.Records from an XML document."
49421     }
49422    ]
49423   },
49424   "Roo.data.Connection": {
49425    "props": [
49426     {
49427      "name": "url",
49428      "type": "String",
49429      "desc": "(Optional) The default URL to be used for requests to the server. (defaults to undefined)",
49430      "memberOf": ""
49431     },
49432     {
49433      "name": "extraParams",
49434      "type": "Object",
49435      "desc": "(Optional) An object containing properties which are used as\nextra parameters to each request made by this object. (defaults to undefined)",
49436      "memberOf": ""
49437     },
49438     {
49439      "name": "defaultHeaders",
49440      "type": "Object",
49441      "desc": "(Optional) An object containing request headers which are added\n to each request made by this object. (defaults to undefined)",
49442      "memberOf": ""
49443     },
49444     {
49445      "name": "method",
49446      "type": "String",
49447      "desc": "(Optional) The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)",
49448      "memberOf": ""
49449     },
49450     {
49451      "name": "timeout",
49452      "type": "Number",
49453      "desc": "(Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)",
49454      "memberOf": ""
49455     },
49456     {
49457      "name": "autoAbort",
49458      "type": "Boolean",
49459      "desc": "(Optional) Whether this request should abort any pending requests. (defaults to false)",
49460      "memberOf": ""
49461     },
49462     {
49463      "name": "disableCaching",
49464      "type": "Boolean",
49465      "desc": "(Optional) True to add a unique cache-buster param to GET requests. (defaults to true)",
49466      "memberOf": ""
49467     },
49468     {
49469      "name": "listeners",
49470      "type": "Object",
49471      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
49472      "memberOf": "Roo.util.Observable"
49473     }
49474    ],
49475    "events": [
49476     {
49477      "name": "beforerequest",
49478      "sig": "function (conn, options)\n{\n\n}",
49479      "type": "function",
49480      "desc": "Fires before a network request is made to retrieve a data object."
49481     },
49482     {
49483      "name": "requestcomplete",
49484      "sig": "function (conn, response, options)\n{\n\n}",
49485      "type": "function",
49486      "desc": "Fires if the request was successfully completed."
49487     },
49488     {
49489      "name": "requestexception",
49490      "sig": "function (conn, response, options)\n{\n\n}",
49491      "type": "function",
49492      "desc": "Fires if an error HTTP status was returned from the server.\nSee {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes."
49493     }
49494    ],
49495    "methods": [
49496     {
49497      "name": "abort",
49498      "sig": "(Number transactionId)",
49499      "type": "function",
49500      "desc": "Aborts any outstanding request."
49501     },
49502     {
49503      "name": "addEvents",
49504      "sig": "(Object object)",
49505      "type": "function",
49506      "desc": "Used to define events on this Observable"
49507     },
49508     {
49509      "name": "addListener",
49510      "sig": "(String eventName, Function handler, Object scope, Object options)",
49511      "type": "function",
49512      "desc": "Appends an event handler to this component"
49513     },
49514     {
49515      "name": "capture",
49516      "sig": "(Observable o, Function fn, Object scope)",
49517      "type": "function",
49518      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
49519     },
49520     {
49521      "name": "fireEvent",
49522      "sig": "(String eventName, Object... args)",
49523      "type": "function",
49524      "desc": "Fires the specified event with the passed parameters (minus the event name)."
49525     },
49526     {
49527      "name": "hasListener",
49528      "sig": "(String eventName)",
49529      "type": "function",
49530      "desc": "Checks to see if this object has any listeners for a specified event"
49531     },
49532     {
49533      "name": "isLoading",
49534      "sig": "(Number transactionId)",
49535      "type": "function",
49536      "desc": "Determine whether this object has a request outstanding."
49537     },
49538     {
49539      "name": "on",
49540      "sig": "(String eventName, Function handler, Object scope, Object options)",
49541      "type": "function",
49542      "desc": "Appends an event handler to this element (shorthand for addListener)"
49543     },
49544     {
49545      "name": "purgeListeners",
49546      "sig": "()",
49547      "type": "function",
49548      "desc": "Removes all listeners for this object"
49549     },
49550     {
49551      "name": "releaseCapture",
49552      "sig": "(Observable o)",
49553      "type": "function",
49554      "desc": "Removes <b>all</b> added captures from the Observable."
49555     },
49556     {
49557      "name": "removeListener",
49558      "sig": "(String eventName, Function handler, Object scope)",
49559      "type": "function",
49560      "desc": "Removes a listener"
49561     },
49562     {
49563      "name": "request",
49564      "sig": "(Object options)",
49565      "type": "function",
49566      "desc": "Sends an HTTP request to a remote server."
49567     },
49568     {
49569      "name": "un",
49570      "sig": "(String eventName, Function handler, Object scope)",
49571      "type": "function",
49572      "desc": "Removes a listener (shorthand for removeListener)"
49573     }
49574    ]
49575   },
49576   "Roo.data.DataProxy": {
49577    "props": [],
49578    "events": [
49579     {
49580      "name": "beforeload",
49581      "sig": "function (This, params)\n{\n\n}",
49582      "type": "function",
49583      "desc": "Fires before a network request is made to retrieve a data object."
49584     },
49585     {
49586      "name": "load",
49587      "sig": "function (This, o, arg)\n{\n\n}",
49588      "type": "function",
49589      "desc": "Fires before the load method's callback is called."
49590     },
49591     {
49592      "name": "loadexception",
49593      "sig": "function (This, o, arg, e)\n{\n\n}",
49594      "type": "function",
49595      "desc": "Fires if an Exception occurs during data retrieval."
49596     }
49597    ],
49598    "methods": []
49599   },
49600   "Roo.data.DataReader": {
49601    "props": [],
49602    "events": [],
49603    "methods": [
49604     {
49605      "name": "newRow",
49606      "sig": "(Object data)",
49607      "type": "function",
49608      "desc": "Create an empty record"
49609     }
49610    ]
49611   },
49612   "Roo.data.HttpProxy": {
49613    "props": [
49614     {
49615      "name": "url",
49616      "type": "String",
49617      "desc": "(Optional) The default URL to be used for requests to the server. (defaults to undefined)",
49618      "memberOf": ""
49619     },
49620     {
49621      "name": "extraParams",
49622      "type": "Object",
49623      "desc": "(Optional) An object containing properties which are used as\nextra parameters to each request made by this object. (defaults to undefined)",
49624      "memberOf": ""
49625     },
49626     {
49627      "name": "defaultHeaders",
49628      "type": "Object",
49629      "desc": "(Optional) An object containing request headers which are added\n to each request made by this object. (defaults to undefined)",
49630      "memberOf": ""
49631     },
49632     {
49633      "name": "method",
49634      "type": "String",
49635      "desc": "(Optional) The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)",
49636      "memberOf": ""
49637     },
49638     {
49639      "name": "timeout",
49640      "type": "Number",
49641      "desc": "(Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)",
49642      "memberOf": ""
49643     },
49644     {
49645      "name": "autoAbort",
49646      "type": "Boolean",
49647      "desc": "(Optional) Whether this request should abort any pending requests. (defaults to false)",
49648      "memberOf": ""
49649     },
49650     {
49651      "name": "disableCaching",
49652      "type": "Boolean",
49653      "desc": "(Optional) True to add a unique cache-buster param to GET requests. (defaults to true)",
49654      "memberOf": ""
49655     }
49656    ],
49657    "events": [
49658     {
49659      "name": "beforeload",
49660      "sig": "function (This, params)\n{\n\n}",
49661      "type": "function",
49662      "desc": "Fires before a network request is made to retrieve a data object."
49663     },
49664     {
49665      "name": "load",
49666      "sig": "function (This, o, arg)\n{\n\n}",
49667      "type": "function",
49668      "desc": "Fires before the load method's callback is called."
49669     },
49670     {
49671      "name": "loadexception",
49672      "sig": "function (This, o, arg, e)\n{\n\n}",
49673      "type": "function",
49674      "desc": "Fires if an Exception occurs during data retrieval."
49675     }
49676    ],
49677    "methods": [
49678     {
49679      "name": "getConnection",
49680      "sig": "()",
49681      "type": "function",
49682      "desc": "Return the {@link Roo.data.Connection} object being used by this Proxy."
49683     },
49684     {
49685      "name": "load",
49686      "sig": "(Object params, Roo.data.DataReader reader, Function callback, Object scope, Object arg)",
49687      "type": "function",
49688      "desc": "Load data from the configured {@link Roo.data.Connection}, read the data object into\na block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and\nprocess that block using the passed callback."
49689     }
49690    ]
49691   },
49692   "Roo.data.JsonReader": {
49693    "props": [
49694     {
49695      "name": "totalProperty",
49696      "type": "String",
49697      "desc": "Name of the property from which to retrieve the total number of records\nin the dataset. This is only needed if the whole dataset is not passed in one go, but is being\npaged from the remote server.",
49698      "memberOf": ""
49699     },
49700     {
49701      "name": "successProperty",
49702      "type": "String",
49703      "desc": "Name of the property from which to retrieve the success attribute used by forms.",
49704      "memberOf": ""
49705     },
49706     {
49707      "name": "root",
49708      "type": "String",
49709      "desc": "name of the property which contains the Array of row objects.",
49710      "memberOf": ""
49711     },
49712     {
49713      "name": "id",
49714      "type": "String",
49715      "desc": "Name of the property within a row object that contains a record identifier value.",
49716      "memberOf": ""
49717     },
49718     {
49719      "name": "fields",
49720      "type": "Array",
49721      "desc": "Array of field definition objects",
49722      "memberOf": ""
49723     }
49724    ],
49725    "events": [],
49726    "methods": [
49727     {
49728      "name": "newRow",
49729      "sig": "(Object data)",
49730      "type": "function",
49731      "desc": "Create an empty record"
49732     },
49733     {
49734      "name": "read",
49735      "sig": "(Object response)",
49736      "type": "function",
49737      "desc": "This method is only used by a DataProxy which has retrieved data from a remote server."
49738     },
49739     {
49740      "name": "readRecords",
49741      "sig": "(Object o)",
49742      "type": "function",
49743      "desc": "Create a data block containing Roo.data.Records from an XML document."
49744     }
49745    ]
49746   },
49747   "Roo.data.JsonStore": {
49748    "props": [
49749     {
49750      "name": "fields",
49751      "type": "Array",
49752      "desc": "An array of field definition objects, or field name strings.",
49753      "memberOf": ""
49754     },
49755     {
49756      "name": "isLocal",
49757      "type": "boolean",
49758      "desc": "flag if data is locally available (and can be always looked up\nwithout a remote query - used by combo/forms at present.",
49759      "memberOf": "Roo.data.Store"
49760     },
49761     {
49762      "name": "proxy",
49763      "type": "Roo.data.DataProxy",
49764      "desc": "The Proxy object which provides access to a data object.",
49765      "memberOf": "Roo.data.Store"
49766     },
49767     {
49768      "name": "data",
49769      "type": "Array",
49770      "desc": "Inline data to be loaded when the store is initialized.",
49771      "memberOf": "Roo.data.Store"
49772     },
49773     {
49774      "name": "reader",
49775      "type": "Roo.data.Reader",
49776      "desc": "The Reader object which processes the data object and returns\nan Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.",
49777      "memberOf": "Roo.data.Store"
49778     },
49779     {
49780      "name": "baseParams",
49781      "type": "Object",
49782      "desc": "An object containing properties which are to be sent as parameters\non any HTTP request",
49783      "memberOf": "Roo.data.Store"
49784     },
49785     {
49786      "name": "sortInfo",
49787      "type": "Object",
49788      "desc": "A config object in the format: {field: \"fieldName\", direction: \"ASC|DESC\"}",
49789      "memberOf": "Roo.data.Store"
49790     },
49791     {
49792      "name": "multiSort",
49793      "type": "Boolean",
49794      "desc": "enable multi column sorting (sort is based on the order of columns, remote only at present)",
49795      "memberOf": "Roo.data.Store"
49796     },
49797     {
49798      "name": "remoteSort",
49799      "type": "boolean",
49800      "desc": "True if sorting is to be handled by requesting the Proxy to provide a refreshed\nversion of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).",
49801      "memberOf": "Roo.data.Store"
49802     },
49803     {
49804      "name": "pruneModifiedRecords",
49805      "type": "boolean",
49806      "desc": "True to clear all modified record information each time the store is\nloaded or when a record is removed. (defaults to false).",
49807      "memberOf": "Roo.data.Store"
49808     },
49809     {
49810      "name": "listeners",
49811      "type": "Object",
49812      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
49813      "memberOf": "Roo.util.Observable"
49814     }
49815    ],
49816    "events": [
49817     {
49818      "name": "add",
49819      "sig": "function (_self, records, index)\n{\n\n}",
49820      "type": "function",
49821      "desc": "Fires when Records have been added to the Store"
49822     },
49823     {
49824      "name": "beforeload",
49825      "sig": "function (_self, options)\n{\n\n}",
49826      "type": "function",
49827      "desc": "Fires before a request is made for a new data object.  If the beforeload handler returns false\nthe load action will be canceled."
49828     },
49829     {
49830      "name": "beforeloadadd",
49831      "sig": "function (_self, records, options)\n{\n\n}",
49832      "type": "function",
49833      "desc": "Fires after a new set of Records has been loaded."
49834     },
49835     {
49836      "name": "clear",
49837      "sig": "function (_self)\n{\n\n}",
49838      "type": "function",
49839      "desc": "Fires when the data cache has been cleared."
49840     },
49841     {
49842      "name": "datachanged",
49843      "sig": "function (_self)\n{\n\n}",
49844      "type": "function",
49845      "desc": "Fires when the data cache has changed, and a widget which is using this Store\nas a Record cache should refresh its view."
49846     },
49847     {
49848      "name": "load",
49849      "sig": "function (_self, records, options)\n{\n\n}",
49850      "type": "function",
49851      "desc": "Fires after a new set of Records has been loaded, before they are added to the store."
49852     },
49853     {
49854      "name": "loadexception",
49855      "sig": "function (, return, load, jsonData)\n{\n\n}",
49856      "type": "function",
49857      "desc": "Fires if an exception occurs in the Proxy during loading.\nCalled with the signature of the Proxy's \"loadexception\" event.\nIf you return Json { data: [] , success: false, .... } then this will be thrown with the following args"
49858     },
49859     {
49860      "name": "metachange",
49861      "sig": "function (_self, meta)\n{\n\n}",
49862      "type": "function",
49863      "desc": "Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders."
49864     },
49865     {
49866      "name": "remove",
49867      "sig": "function (_self, record, index)\n{\n\n}",
49868      "type": "function",
49869      "desc": "Fires when a Record has been removed from the Store"
49870     },
49871     {
49872      "name": "update",
49873      "sig": "function (_self, record, operation)\n{\n\n}",
49874      "type": "function",
49875      "desc": "Fires when a Record has been updated"
49876     }
49877    ],
49878    "methods": [
49879     {
49880      "name": "add",
49881      "sig": "(Roo.data.Record[] records)",
49882      "type": "function",
49883      "desc": "Add Records to the Store and fires the add event."
49884     },
49885     {
49886      "name": "addEvents",
49887      "sig": "(Object object)",
49888      "type": "function",
49889      "desc": "Used to define events on this Observable"
49890     },
49891     {
49892      "name": "addListener",
49893      "sig": "(String eventName, Function handler, Object scope, Object options)",
49894      "type": "function",
49895      "desc": "Appends an event handler to this component"
49896     },
49897     {
49898      "name": "capture",
49899      "sig": "(Observable o, Function fn, Object scope)",
49900      "type": "function",
49901      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
49902     },
49903     {
49904      "name": "clearFilter",
49905      "sig": "(Boolean suppressEvent)",
49906      "type": "function",
49907      "desc": "Revert to a view of the Record cache with no filtering applied."
49908     },
49909     {
49910      "name": "collect",
49911      "sig": "(String dataIndex, Boolean allowNull, Boolean bypassFilter)",
49912      "type": "function",
49913      "desc": "Collects unique values for a particular dataIndex from this store."
49914     },
49915     {
49916      "name": "commitChanges",
49917      "sig": "()",
49918      "type": "function",
49919      "desc": "Commit all Records with outstanding changes. To handle updates for changes, subscribe to the\nStore's \"update\" event, and perform updating when the third parameter is Roo.data.Record.COMMIT."
49920     },
49921     {
49922      "name": "each",
49923      "sig": "(Function fn, Object scope)",
49924      "type": "function",
49925      "desc": "Calls the specified function for each of the Records in the cache."
49926     },
49927     {
49928      "name": "filter",
49929      "sig": "(String field, String/RegExp value, Boolean anyMatch)",
49930      "type": "function",
49931      "desc": "Filter the records by a specified property."
49932     },
49933     {
49934      "name": "filterBy",
49935      "sig": "(Function fn, Object scope)",
49936      "type": "function",
49937      "desc": "Filter by a function. The specified function will be called with each\nrecord in this data source. If the function returns true the record is included,\notherwise it is filtered."
49938     },
49939     {
49940      "name": "fireEvent",
49941      "sig": "(String eventName, Object... args)",
49942      "type": "function",
49943      "desc": "Fires the specified event with the passed parameters (minus the event name)."
49944     },
49945     {
49946      "name": "getAt",
49947      "sig": "(Number index)",
49948      "type": "function",
49949      "desc": "Get the Record at the specified index."
49950     },
49951     {
49952      "name": "getById",
49953      "sig": "(String id)",
49954      "type": "function",
49955      "desc": "Get the Record with the specified id."
49956     },
49957     {
49958      "name": "getCount",
49959      "sig": "()",
49960      "type": "function",
49961      "desc": "Gets the number of cached records.\n<p>\n<em>If using paging, this may not be the total size of the dataset. If the data object\nused by the Reader contains the dataset size, then the getTotalCount() function returns\nthe data set size</em>"
49962     },
49963     {
49964      "name": "getModifiedRecords",
49965      "sig": "()",
49966      "type": "function",
49967      "desc": "Gets all records modified since the last commit.  Modified records are persisted across load operations\n(e.g., during paging)."
49968     },
49969     {
49970      "name": "getRange",
49971      "sig": "(Number startIndex, Number endIndex)",
49972      "type": "function",
49973      "desc": "Returns a range of Records between specified indices."
49974     },
49975     {
49976      "name": "getSortState",
49977      "sig": "()",
49978      "type": "function",
49979      "desc": "Returns the sort state of the Store as an object with two properties:\n<pre><code>\n field {String} The name of the field by which the Records are sorted\n direction {String} The sort order, \"ASC\" or \"DESC\"\n</code></pre>"
49980     },
49981     {
49982      "name": "getTotalCount",
49983      "sig": "()",
49984      "type": "function",
49985      "desc": "Gets the total number of records in the dataset as returned by the server.\n<p>\n<em>If using paging, for this to be accurate, the data object used by the Reader must contain\nthe dataset size</em>"
49986     },
49987     {
49988      "name": "hasListener",
49989      "sig": "(String eventName)",
49990      "type": "function",
49991      "desc": "Checks to see if this object has any listeners for a specified event"
49992     },
49993     {
49994      "name": "indexOf",
49995      "sig": "(Roo.data.Record record)",
49996      "type": "function",
49997      "desc": "Get the index within the cache of the passed Record."
49998     },
49999     {
50000      "name": "indexOfId",
50001      "sig": "(String id)",
50002      "type": "function",
50003      "desc": "Get the index within the cache of the Record with the passed id."
50004     },
50005     {
50006      "name": "insert",
50007      "sig": "(Number index, Roo.data.Record[] records)",
50008      "type": "function",
50009      "desc": "Inserts Records to the Store at the given index and fires the add event."
50010     },
50011     {
50012      "name": "load",
50013      "sig": "(Object options)",
50014      "type": "function",
50015      "desc": "Loads the Record cache from the configured Proxy using the configured Reader.\n<p>\nIf using remote paging, then the first load call must specify the <em>start</em>\nand <em>limit</em> properties in the options.params property to establish the initial\nposition within the dataset, and the number of Records to cache on each read from the Proxy.\n<p>\n<strong>It is important to note that for remote data sources, loading is asynchronous,\nand this call will return before the new data has been loaded. Perform any post-processing\nin a callback function, or in a \"load\" event handler.</strong>\n<p>"
50016     },
50017     {
50018      "name": "loadData",
50019      "sig": "(Object data, Boolean append)",
50020      "type": "function",
50021      "desc": "Loads data from a passed data block. A Reader which understands the format of the data\nmust have been configured in the constructor."
50022     },
50023     {
50024      "name": "on",
50025      "sig": "(String eventName, Function handler, Object scope, Object options)",
50026      "type": "function",
50027      "desc": "Appends an event handler to this element (shorthand for addListener)"
50028     },
50029     {
50030      "name": "purgeListeners",
50031      "sig": "()",
50032      "type": "function",
50033      "desc": "Removes all listeners for this object"
50034     },
50035     {
50036      "name": "query",
50037      "sig": "(String field, String/RegExp value, Boolean anyMatch)",
50038      "type": "function",
50039      "desc": "Query the records by a specified property."
50040     },
50041     {
50042      "name": "queryBy",
50043      "sig": "(Function fn, Object scope)",
50044      "type": "function",
50045      "desc": "Query by a function. The specified function will be called with each\nrecord in this data source. If the function returns true the record is included\nin the results."
50046     },
50047     {
50048      "name": "rejectChanges",
50049      "sig": "()",
50050      "type": "function",
50051      "desc": "Cancel outstanding changes on all changed records."
50052     },
50053     {
50054      "name": "releaseCapture",
50055      "sig": "(Observable o)",
50056      "type": "function",
50057      "desc": "Removes <b>all</b> added captures from the Observable."
50058     },
50059     {
50060      "name": "reload",
50061      "sig": "(Object options)",
50062      "type": "function",
50063      "desc": "Reloads the Record cache from the configured Proxy using the configured Reader and\nthe options from the last load operation performed."
50064     },
50065     {
50066      "name": "remove",
50067      "sig": "(Ext.data.Record record)",
50068      "type": "function",
50069      "desc": "Remove a Record from the Store and fires the remove event."
50070     },
50071     {
50072      "name": "removeAll",
50073      "sig": "()",
50074      "type": "function",
50075      "desc": "Remove all Records from the Store and fires the clear event."
50076     },
50077     {
50078      "name": "removeListener",
50079      "sig": "(String eventName, Function handler, Object scope)",
50080      "type": "function",
50081      "desc": "Removes a listener"
50082     },
50083     {
50084      "name": "setDefaultSort",
50085      "sig": "(String fieldName, String dir)",
50086      "type": "function",
50087      "desc": "Sets the default sort column and order to be used by the next load operation."
50088     },
50089     {
50090      "name": "sort",
50091      "sig": "(String fieldName, String dir)",
50092      "type": "function",
50093      "desc": "Sort the Records.\nIf remote sorting is used, the sort is performed on the server, and the cache is\nreloaded. If local sorting is used, the cache is sorted internally."
50094     },
50095     {
50096      "name": "sum",
50097      "sig": "(String property, Number start, Number end)",
50098      "type": "function",
50099      "desc": "Sums the value of <i>property</i> for each record between start and end and returns the result."
50100     },
50101     {
50102      "name": "un",
50103      "sig": "(String eventName, Function handler, Object scope)",
50104      "type": "function",
50105      "desc": "Removes a listener (shorthand for removeListener)"
50106     }
50107    ]
50108   },
50109   "Roo.data.MemoryProxy": {
50110    "props": [],
50111    "events": [],
50112    "methods": [
50113     {
50114      "name": "load",
50115      "sig": "(Object params, Roo.data.DataReader reader, Function callback, Object scope, Object arg)",
50116      "type": "function",
50117      "desc": "Load data from the requested source (in this case an in-memory\ndata object passed to the constructor), read the data object into\na block of Roo.data.Records using the passed Roo.data.DataReader implementation, and\nprocess that block using the passed callback."
50118     }
50119    ]
50120   },
50121   "Roo.data.Node": {
50122    "props": [
50123     {
50124      "name": "leaf",
50125      "type": "Boolean",
50126      "desc": "true if this node is a leaf and does not have children",
50127      "memberOf": ""
50128     },
50129     {
50130      "name": "id",
50131      "type": "String",
50132      "desc": "The id for this node. If one is not specified, one is generated.",
50133      "memberOf": ""
50134     },
50135     {
50136      "name": "listeners",
50137      "type": "Object",
50138      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
50139      "memberOf": "Roo.util.Observable"
50140     }
50141    ],
50142    "events": [
50143     {
50144      "name": "append",
50145      "sig": "function (tree, _self, node, index)\n{\n\n}",
50146      "type": "function",
50147      "desc": "Fires when a new child node is appended"
50148     },
50149     {
50150      "name": "beforeappend",
50151      "sig": "function (tree, _self, node)\n{\n\n}",
50152      "type": "function",
50153      "desc": "Fires before a new child is appended, return false to cancel the append."
50154     },
50155     {
50156      "name": "beforeinsert",
50157      "sig": "function (tree, _self, node, refNode)\n{\n\n}",
50158      "type": "function",
50159      "desc": "Fires before a new child is inserted, return false to cancel the insert."
50160     },
50161     {
50162      "name": "beforemove",
50163      "sig": "function (tree, _self, oldParent, newParent, index)\n{\n\n}",
50164      "type": "function",
50165      "desc": "Fires before this node is moved to a new location in the tree. Return false to cancel the move."
50166     },
50167     {
50168      "name": "beforeremove",
50169      "sig": "function (tree, _self, node)\n{\n\n}",
50170      "type": "function",
50171      "desc": "Fires before a child is removed, return false to cancel the remove."
50172     },
50173     {
50174      "name": "insert",
50175      "sig": "function (tree, _self, node, refNode)\n{\n\n}",
50176      "type": "function",
50177      "desc": "Fires when a new child node is inserted."
50178     },
50179     {
50180      "name": "move",
50181      "sig": "function (tree, _self, oldParent, newParent, index)\n{\n\n}",
50182      "type": "function",
50183      "desc": "Fires when this node is moved to a new location in the tree"
50184     },
50185     {
50186      "name": "remove",
50187      "sig": "function (tree, _self, node)\n{\n\n}",
50188      "type": "function",
50189      "desc": "Fires when a child node is removed"
50190     }
50191    ],
50192    "methods": [
50193     {
50194      "name": "addEvents",
50195      "sig": "(Object object)",
50196      "type": "function",
50197      "desc": "Used to define events on this Observable"
50198     },
50199     {
50200      "name": "addListener",
50201      "sig": "(String eventName, Function handler, Object scope, Object options)",
50202      "type": "function",
50203      "desc": "Appends an event handler to this component"
50204     },
50205     {
50206      "name": "appendChild",
50207      "sig": "(Node/Array node)",
50208      "type": "function",
50209      "desc": "Insert node(s) as the last child node of this node."
50210     },
50211     {
50212      "name": "bubble",
50213      "sig": "(Function fn, Object scope, Array args)",
50214      "type": "function",
50215      "desc": "Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe bubble is stopped."
50216     },
50217     {
50218      "name": "capture",
50219      "sig": "(Observable o, Function fn, Object scope)",
50220      "type": "function",
50221      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
50222     },
50223     {
50224      "name": "cascade",
50225      "sig": "(Function fn, Object scope, Array args)",
50226      "type": "function",
50227      "desc": "Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe cascade is stopped on that branch."
50228     },
50229     {
50230      "name": "contains",
50231      "sig": "(Node node)",
50232      "type": "function",
50233      "desc": "Returns true if this node is an ancestor (at any point) of the passed node."
50234     },
50235     {
50236      "name": "eachChild",
50237      "sig": "(Function fn, Object scope, Array args)",
50238      "type": "function",
50239      "desc": "Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe iteration stops."
50240     },
50241     {
50242      "name": "findChild",
50243      "sig": "(String attribute, Mixed value)",
50244      "type": "function",
50245      "desc": "Finds the first child that has the attribute with the specified value."
50246     },
50247     {
50248      "name": "findChildBy",
50249      "sig": "(Function fn, Object scope)",
50250      "type": "function",
50251      "desc": "Finds the first child by a custom function. The child matches if the function passed\nreturns true."
50252     },
50253     {
50254      "name": "fireEvent",
50255      "sig": "(String eventName, Object... args)",
50256      "type": "function",
50257      "desc": "Fires the specified event with the passed parameters (minus the event name)."
50258     },
50259     {
50260      "name": "getDepth",
50261      "sig": "()",
50262      "type": "function",
50263      "desc": "Returns depth of this node (the root node has a depth of 0)"
50264     },
50265     {
50266      "name": "getOwnerTree",
50267      "sig": "()",
50268      "type": "function",
50269      "desc": "Returns the tree this node is in."
50270     },
50271     {
50272      "name": "getPath",
50273      "sig": "(String attr)",
50274      "type": "function",
50275      "desc": "Returns the path for this node. The path can be used to expand or select this node programmatically."
50276     },
50277     {
50278      "name": "hasListener",
50279      "sig": "(String eventName)",
50280      "type": "function",
50281      "desc": "Checks to see if this object has any listeners for a specified event"
50282     },
50283     {
50284      "name": "indexOf",
50285      "sig": "(Node node)",
50286      "type": "function",
50287      "desc": "Returns the index of a child node"
50288     },
50289     {
50290      "name": "insertBefore",
50291      "sig": "(Node node, Node refNode)",
50292      "type": "function",
50293      "desc": "Inserts the first node before the second node in this nodes childNodes collection."
50294     },
50295     {
50296      "name": "isAncestor",
50297      "sig": "(Node node)",
50298      "type": "function",
50299      "desc": "Returns true if the passed node is an ancestor (at any point) of this node."
50300     },
50301     {
50302      "name": "isFirst",
50303      "sig": "()",
50304      "type": "function",
50305      "desc": "Returns true if this node is the first child of its parent"
50306     },
50307     {
50308      "name": "isLast",
50309      "sig": "()",
50310      "type": "function",
50311      "desc": "Returns true if this node is the last child of its parent"
50312     },
50313     {
50314      "name": "isLeaf",
50315      "sig": "()",
50316      "type": "function",
50317      "desc": "Returns true if this node is a leaf"
50318     },
50319     {
50320      "name": "item",
50321      "sig": "(Number index)",
50322      "type": "function",
50323      "desc": "Returns the child node at the specified index."
50324     },
50325     {
50326      "name": "on",
50327      "sig": "(String eventName, Function handler, Object scope, Object options)",
50328      "type": "function",
50329      "desc": "Appends an event handler to this element (shorthand for addListener)"
50330     },
50331     {
50332      "name": "purgeListeners",
50333      "sig": "()",
50334      "type": "function",
50335      "desc": "Removes all listeners for this object"
50336     },
50337     {
50338      "name": "releaseCapture",
50339      "sig": "(Observable o)",
50340      "type": "function",
50341      "desc": "Removes <b>all</b> added captures from the Observable."
50342     },
50343     {
50344      "name": "removeChild",
50345      "sig": "(Node node)",
50346      "type": "function",
50347      "desc": "Removes a child node from this node."
50348     },
50349     {
50350      "name": "removeListener",
50351      "sig": "(String eventName, Function handler, Object scope)",
50352      "type": "function",
50353      "desc": "Removes a listener"
50354     },
50355     {
50356      "name": "replaceChild",
50357      "sig": "(Node newChild, Node oldChild)",
50358      "type": "function",
50359      "desc": "Replaces one child node in this node with another."
50360     },
50361     {
50362      "name": "sort",
50363      "sig": "(Function fn, Object scope)",
50364      "type": "function",
50365      "desc": "Sorts this nodes children using the supplied sort function"
50366     },
50367     {
50368      "name": "un",
50369      "sig": "(String eventName, Function handler, Object scope)",
50370      "type": "function",
50371      "desc": "Removes a listener (shorthand for removeListener)"
50372     }
50373    ]
50374   },
50375   "Roo.data.Record": {
50376    "props": [],
50377    "events": [],
50378    "methods": [
50379     {
50380      "name": "commit",
50381      "sig": "()",
50382      "type": "function",
50383      "desc": "Usually called by the {@link Roo.data.Store} which owns the Record.\nCommits all changes made to the Record since either creation, or the last commit operation.\n<p>\nDevelopers should subscribe to the {@link Roo.data.Store#update} event to have their code notified\nof commit operations."
50384     },
50385     {
50386      "name": "copy",
50387      "sig": "(String id)",
50388      "type": "function",
50389      "desc": "Creates a copy of this record."
50390     },
50391     {
50392      "name": "create",
50393      "sig": "(Array o)",
50394      "type": "function",
50395      "desc": "Generate a constructor for a specific record layout."
50396     },
50397     {
50398      "name": "get",
50399      "sig": "(String name)",
50400      "type": "function",
50401      "desc": "Get the value of the named field."
50402     },
50403     {
50404      "name": "reject",
50405      "sig": "()",
50406      "type": "function",
50407      "desc": "Usually called by the {@link Roo.data.Store} which owns the Record.\nRejects all changes made to the Record since either creation, or the last commit operation.\nModified fields are reverted to their original values.\n<p>\nDevelopers should subscribe to the {@link Roo.data.Store#update} event to have their code notified\nof reject operations."
50408     },
50409     {
50410      "name": "set",
50411      "sig": "(String name, Object value)",
50412      "type": "function",
50413      "desc": "Set the named field to the specified value."
50414     }
50415    ]
50416   },
50417   "Roo.data.ScriptTagProxy": {
50418    "props": [
50419     {
50420      "name": "url",
50421      "type": "String",
50422      "desc": "The URL from which to request the data object.",
50423      "memberOf": ""
50424     },
50425     {
50426      "name": "timeout",
50427      "type": "Number",
50428      "desc": "(Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.",
50429      "memberOf": ""
50430     },
50431     {
50432      "name": "callbackParam",
50433      "type": "String",
50434      "desc": "(Optional) The name of the parameter to pass to the server which tells\nthe server the name of the callback function set up by the load call to process the returned data object.\nDefaults to \"callback\".<p>The server-side processing must read this parameter value, and generate\njavascript output which calls this named function passing the data object as its only parameter.",
50435      "memberOf": ""
50436     },
50437     {
50438      "name": "nocache",
50439      "type": "Boolean",
50440      "desc": "(Optional) Defaults to true. Disable cacheing by adding a unique parameter\nname to the request.",
50441      "memberOf": ""
50442     }
50443    ],
50444    "events": [],
50445    "methods": [
50446     {
50447      "name": "abort",
50448      "sig": "()",
50449      "type": "function",
50450      "desc": "Abort the current server request."
50451     },
50452     {
50453      "name": "load",
50454      "sig": "(Object params, Roo.data.DataReader reader, Function callback, Object scope, Object arg)",
50455      "type": "function",
50456      "desc": "Load data from the configured URL, read the data object into\na block of Roo.data.Records using the passed Roo.data.DataReader implementation, and\nprocess that block using the passed callback."
50457     }
50458    ]
50459   },
50460   "Roo.data.SimpleStore": {
50461    "props": [
50462     {
50463      "name": "id",
50464      "type": "Number",
50465      "desc": "The array index of the record id. Leave blank to auto generate ids.",
50466      "memberOf": ""
50467     },
50468     {
50469      "name": "fields",
50470      "type": "Array",
50471      "desc": "An array of field definition objects, or field name strings.",
50472      "memberOf": ""
50473     },
50474     {
50475      "name": "data",
50476      "type": "Array",
50477      "desc": "The multi-dimensional array of data",
50478      "memberOf": ""
50479     },
50480     {
50481      "name": "isLocal",
50482      "type": "boolean",
50483      "desc": "flag if data is locally available (and can be always looked up\nwithout a remote query - used by combo/forms at present.",
50484      "memberOf": "Roo.data.Store"
50485     },
50486     {
50487      "name": "proxy",
50488      "type": "Roo.data.DataProxy",
50489      "desc": "The Proxy object which provides access to a data object.",
50490      "memberOf": "Roo.data.Store"
50491     },
50492     {
50493      "name": "reader",
50494      "type": "Roo.data.Reader",
50495      "desc": "The Reader object which processes the data object and returns\nan Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.",
50496      "memberOf": "Roo.data.Store"
50497     },
50498     {
50499      "name": "baseParams",
50500      "type": "Object",
50501      "desc": "An object containing properties which are to be sent as parameters\non any HTTP request",
50502      "memberOf": "Roo.data.Store"
50503     },
50504     {
50505      "name": "sortInfo",
50506      "type": "Object",
50507      "desc": "A config object in the format: {field: \"fieldName\", direction: \"ASC|DESC\"}",
50508      "memberOf": "Roo.data.Store"
50509     },
50510     {
50511      "name": "multiSort",
50512      "type": "Boolean",
50513      "desc": "enable multi column sorting (sort is based on the order of columns, remote only at present)",
50514      "memberOf": "Roo.data.Store"
50515     },
50516     {
50517      "name": "remoteSort",
50518      "type": "boolean",
50519      "desc": "True if sorting is to be handled by requesting the Proxy to provide a refreshed\nversion of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).",
50520      "memberOf": "Roo.data.Store"
50521     },
50522     {
50523      "name": "pruneModifiedRecords",
50524      "type": "boolean",
50525      "desc": "True to clear all modified record information each time the store is\nloaded or when a record is removed. (defaults to false).",
50526      "memberOf": "Roo.data.Store"
50527     },
50528     {
50529      "name": "listeners",
50530      "type": "Object",
50531      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
50532      "memberOf": "Roo.util.Observable"
50533     }
50534    ],
50535    "events": [
50536     {
50537      "name": "add",
50538      "sig": "function (_self, records, index)\n{\n\n}",
50539      "type": "function",
50540      "desc": "Fires when Records have been added to the Store"
50541     },
50542     {
50543      "name": "beforeload",
50544      "sig": "function (_self, options)\n{\n\n}",
50545      "type": "function",
50546      "desc": "Fires before a request is made for a new data object.  If the beforeload handler returns false\nthe load action will be canceled."
50547     },
50548     {
50549      "name": "beforeloadadd",
50550      "sig": "function (_self, records, options)\n{\n\n}",
50551      "type": "function",
50552      "desc": "Fires after a new set of Records has been loaded."
50553     },
50554     {
50555      "name": "clear",
50556      "sig": "function (_self)\n{\n\n}",
50557      "type": "function",
50558      "desc": "Fires when the data cache has been cleared."
50559     },
50560     {
50561      "name": "datachanged",
50562      "sig": "function (_self)\n{\n\n}",
50563      "type": "function",
50564      "desc": "Fires when the data cache has changed, and a widget which is using this Store\nas a Record cache should refresh its view."
50565     },
50566     {
50567      "name": "load",
50568      "sig": "function (_self, records, options)\n{\n\n}",
50569      "type": "function",
50570      "desc": "Fires after a new set of Records has been loaded, before they are added to the store."
50571     },
50572     {
50573      "name": "loadexception",
50574      "sig": "function (, return, load, jsonData)\n{\n\n}",
50575      "type": "function",
50576      "desc": "Fires if an exception occurs in the Proxy during loading.\nCalled with the signature of the Proxy's \"loadexception\" event.\nIf you return Json { data: [] , success: false, .... } then this will be thrown with the following args"
50577     },
50578     {
50579      "name": "metachange",
50580      "sig": "function (_self, meta)\n{\n\n}",
50581      "type": "function",
50582      "desc": "Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders."
50583     },
50584     {
50585      "name": "remove",
50586      "sig": "function (_self, record, index)\n{\n\n}",
50587      "type": "function",
50588      "desc": "Fires when a Record has been removed from the Store"
50589     },
50590     {
50591      "name": "update",
50592      "sig": "function (_self, record, operation)\n{\n\n}",
50593      "type": "function",
50594      "desc": "Fires when a Record has been updated"
50595     }
50596    ],
50597    "methods": [
50598     {
50599      "name": "add",
50600      "sig": "(Roo.data.Record[] records)",
50601      "type": "function",
50602      "desc": "Add Records to the Store and fires the add event."
50603     },
50604     {
50605      "name": "addEvents",
50606      "sig": "(Object object)",
50607      "type": "function",
50608      "desc": "Used to define events on this Observable"
50609     },
50610     {
50611      "name": "addListener",
50612      "sig": "(String eventName, Function handler, Object scope, Object options)",
50613      "type": "function",
50614      "desc": "Appends an event handler to this component"
50615     },
50616     {
50617      "name": "capture",
50618      "sig": "(Observable o, Function fn, Object scope)",
50619      "type": "function",
50620      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
50621     },
50622     {
50623      "name": "clearFilter",
50624      "sig": "(Boolean suppressEvent)",
50625      "type": "function",
50626      "desc": "Revert to a view of the Record cache with no filtering applied."
50627     },
50628     {
50629      "name": "collect",
50630      "sig": "(String dataIndex, Boolean allowNull, Boolean bypassFilter)",
50631      "type": "function",
50632      "desc": "Collects unique values for a particular dataIndex from this store."
50633     },
50634     {
50635      "name": "commitChanges",
50636      "sig": "()",
50637      "type": "function",
50638      "desc": "Commit all Records with outstanding changes. To handle updates for changes, subscribe to the\nStore's \"update\" event, and perform updating when the third parameter is Roo.data.Record.COMMIT."
50639     },
50640     {
50641      "name": "each",
50642      "sig": "(Function fn, Object scope)",
50643      "type": "function",
50644      "desc": "Calls the specified function for each of the Records in the cache."
50645     },
50646     {
50647      "name": "filter",
50648      "sig": "(String field, String/RegExp value, Boolean anyMatch)",
50649      "type": "function",
50650      "desc": "Filter the records by a specified property."
50651     },
50652     {
50653      "name": "filterBy",
50654      "sig": "(Function fn, Object scope)",
50655      "type": "function",
50656      "desc": "Filter by a function. The specified function will be called with each\nrecord in this data source. If the function returns true the record is included,\notherwise it is filtered."
50657     },
50658     {
50659      "name": "fireEvent",
50660      "sig": "(String eventName, Object... args)",
50661      "type": "function",
50662      "desc": "Fires the specified event with the passed parameters (minus the event name)."
50663     },
50664     {
50665      "name": "getAt",
50666      "sig": "(Number index)",
50667      "type": "function",
50668      "desc": "Get the Record at the specified index."
50669     },
50670     {
50671      "name": "getById",
50672      "sig": "(String id)",
50673      "type": "function",
50674      "desc": "Get the Record with the specified id."
50675     },
50676     {
50677      "name": "getCount",
50678      "sig": "()",
50679      "type": "function",
50680      "desc": "Gets the number of cached records.\n<p>\n<em>If using paging, this may not be the total size of the dataset. If the data object\nused by the Reader contains the dataset size, then the getTotalCount() function returns\nthe data set size</em>"
50681     },
50682     {
50683      "name": "getModifiedRecords",
50684      "sig": "()",
50685      "type": "function",
50686      "desc": "Gets all records modified since the last commit.  Modified records are persisted across load operations\n(e.g., during paging)."
50687     },
50688     {
50689      "name": "getRange",
50690      "sig": "(Number startIndex, Number endIndex)",
50691      "type": "function",
50692      "desc": "Returns a range of Records between specified indices."
50693     },
50694     {
50695      "name": "getSortState",
50696      "sig": "()",
50697      "type": "function",
50698      "desc": "Returns the sort state of the Store as an object with two properties:\n<pre><code>\n field {String} The name of the field by which the Records are sorted\n direction {String} The sort order, \"ASC\" or \"DESC\"\n</code></pre>"
50699     },
50700     {
50701      "name": "getTotalCount",
50702      "sig": "()",
50703      "type": "function",
50704      "desc": "Gets the total number of records in the dataset as returned by the server.\n<p>\n<em>If using paging, for this to be accurate, the data object used by the Reader must contain\nthe dataset size</em>"
50705     },
50706     {
50707      "name": "hasListener",
50708      "sig": "(String eventName)",
50709      "type": "function",
50710      "desc": "Checks to see if this object has any listeners for a specified event"
50711     },
50712     {
50713      "name": "indexOf",
50714      "sig": "(Roo.data.Record record)",
50715      "type": "function",
50716      "desc": "Get the index within the cache of the passed Record."
50717     },
50718     {
50719      "name": "indexOfId",
50720      "sig": "(String id)",
50721      "type": "function",
50722      "desc": "Get the index within the cache of the Record with the passed id."
50723     },
50724     {
50725      "name": "insert",
50726      "sig": "(Number index, Roo.data.Record[] records)",
50727      "type": "function",
50728      "desc": "Inserts Records to the Store at the given index and fires the add event."
50729     },
50730     {
50731      "name": "load",
50732      "sig": "(Object options)",
50733      "type": "function",
50734      "desc": "Loads the Record cache from the configured Proxy using the configured Reader.\n<p>\nIf using remote paging, then the first load call must specify the <em>start</em>\nand <em>limit</em> properties in the options.params property to establish the initial\nposition within the dataset, and the number of Records to cache on each read from the Proxy.\n<p>\n<strong>It is important to note that for remote data sources, loading is asynchronous,\nand this call will return before the new data has been loaded. Perform any post-processing\nin a callback function, or in a \"load\" event handler.</strong>\n<p>"
50735     },
50736     {
50737      "name": "loadData",
50738      "sig": "(Object data, Boolean append)",
50739      "type": "function",
50740      "desc": "Loads data from a passed data block. A Reader which understands the format of the data\nmust have been configured in the constructor."
50741     },
50742     {
50743      "name": "on",
50744      "sig": "(String eventName, Function handler, Object scope, Object options)",
50745      "type": "function",
50746      "desc": "Appends an event handler to this element (shorthand for addListener)"
50747     },
50748     {
50749      "name": "purgeListeners",
50750      "sig": "()",
50751      "type": "function",
50752      "desc": "Removes all listeners for this object"
50753     },
50754     {
50755      "name": "query",
50756      "sig": "(String field, String/RegExp value, Boolean anyMatch)",
50757      "type": "function",
50758      "desc": "Query the records by a specified property."
50759     },
50760     {
50761      "name": "queryBy",
50762      "sig": "(Function fn, Object scope)",
50763      "type": "function",
50764      "desc": "Query by a function. The specified function will be called with each\nrecord in this data source. If the function returns true the record is included\nin the results."
50765     },
50766     {
50767      "name": "rejectChanges",
50768      "sig": "()",
50769      "type": "function",
50770      "desc": "Cancel outstanding changes on all changed records."
50771     },
50772     {
50773      "name": "releaseCapture",
50774      "sig": "(Observable o)",
50775      "type": "function",
50776      "desc": "Removes <b>all</b> added captures from the Observable."
50777     },
50778     {
50779      "name": "reload",
50780      "sig": "(Object options)",
50781      "type": "function",
50782      "desc": "Reloads the Record cache from the configured Proxy using the configured Reader and\nthe options from the last load operation performed."
50783     },
50784     {
50785      "name": "remove",
50786      "sig": "(Ext.data.Record record)",
50787      "type": "function",
50788      "desc": "Remove a Record from the Store and fires the remove event."
50789     },
50790     {
50791      "name": "removeAll",
50792      "sig": "()",
50793      "type": "function",
50794      "desc": "Remove all Records from the Store and fires the clear event."
50795     },
50796     {
50797      "name": "removeListener",
50798      "sig": "(String eventName, Function handler, Object scope)",
50799      "type": "function",
50800      "desc": "Removes a listener"
50801     },
50802     {
50803      "name": "setDefaultSort",
50804      "sig": "(String fieldName, String dir)",
50805      "type": "function",
50806      "desc": "Sets the default sort column and order to be used by the next load operation."
50807     },
50808     {
50809      "name": "sort",
50810      "sig": "(String fieldName, String dir)",
50811      "type": "function",
50812      "desc": "Sort the Records.\nIf remote sorting is used, the sort is performed on the server, and the cache is\nreloaded. If local sorting is used, the cache is sorted internally."
50813     },
50814     {
50815      "name": "sum",
50816      "sig": "(String property, Number start, Number end)",
50817      "type": "function",
50818      "desc": "Sums the value of <i>property</i> for each record between start and end and returns the result."
50819     },
50820     {
50821      "name": "un",
50822      "sig": "(String eventName, Function handler, Object scope)",
50823      "type": "function",
50824      "desc": "Removes a listener (shorthand for removeListener)"
50825     }
50826    ]
50827   },
50828   "Roo.data.SortTypes": {
50829    "props": [],
50830    "events": [],
50831    "methods": [
50832     {
50833      "name": "asDate",
50834      "sig": "(Mixed s)",
50835      "type": "function",
50836      "desc": "Date sorting"
50837     },
50838     {
50839      "name": "asFloat",
50840      "sig": "(Mixed s)",
50841      "type": "function",
50842      "desc": "Float sorting"
50843     },
50844     {
50845      "name": "asInt",
50846      "sig": "(Mixed s)",
50847      "type": "function",
50848      "desc": "Integer sorting"
50849     },
50850     {
50851      "name": "asText",
50852      "sig": "(Mixed s)",
50853      "type": "function",
50854      "desc": "Strips all HTML tags to sort on text only"
50855     },
50856     {
50857      "name": "asUCString",
50858      "sig": "(Mixed s)",
50859      "type": "function",
50860      "desc": "Case insensitive string"
50861     },
50862     {
50863      "name": "asUCText",
50864      "sig": "(Mixed s)",
50865      "type": "function",
50866      "desc": "Strips all HTML tags to sort on text only - Case insensitive"
50867     },
50868     {
50869      "name": "none",
50870      "sig": "(Mixed s)",
50871      "type": "function",
50872      "desc": "Default sort that does nothing"
50873     }
50874    ]
50875   },
50876   "Roo.data.Store": {
50877    "props": [
50878     {
50879      "name": "isLocal",
50880      "type": "boolean",
50881      "desc": "flag if data is locally available (and can be always looked up\nwithout a remote query - used by combo/forms at present.",
50882      "memberOf": ""
50883     },
50884     {
50885      "name": "proxy",
50886      "type": "Roo.data.DataProxy",
50887      "desc": "The Proxy object which provides access to a data object.",
50888      "memberOf": ""
50889     },
50890     {
50891      "name": "data",
50892      "type": "Array",
50893      "desc": "Inline data to be loaded when the store is initialized.",
50894      "memberOf": ""
50895     },
50896     {
50897      "name": "reader",
50898      "type": "Roo.data.Reader",
50899      "desc": "The Reader object which processes the data object and returns\nan Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.",
50900      "memberOf": ""
50901     },
50902     {
50903      "name": "baseParams",
50904      "type": "Object",
50905      "desc": "An object containing properties which are to be sent as parameters\non any HTTP request",
50906      "memberOf": ""
50907     },
50908     {
50909      "name": "sortInfo",
50910      "type": "Object",
50911      "desc": "A config object in the format: {field: \"fieldName\", direction: \"ASC|DESC\"}",
50912      "memberOf": ""
50913     },
50914     {
50915      "name": "multiSort",
50916      "type": "Boolean",
50917      "desc": "enable multi column sorting (sort is based on the order of columns, remote only at present)",
50918      "memberOf": ""
50919     },
50920     {
50921      "name": "remoteSort",
50922      "type": "boolean",
50923      "desc": "True if sorting is to be handled by requesting the Proxy to provide a refreshed\nversion of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).",
50924      "memberOf": ""
50925     },
50926     {
50927      "name": "pruneModifiedRecords",
50928      "type": "boolean",
50929      "desc": "True to clear all modified record information each time the store is\nloaded or when a record is removed. (defaults to false).",
50930      "memberOf": ""
50931     },
50932     {
50933      "name": "listeners",
50934      "type": "Object",
50935      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
50936      "memberOf": "Roo.util.Observable"
50937     }
50938    ],
50939    "events": [
50940     {
50941      "name": "add",
50942      "sig": "function (_self, records, index)\n{\n\n}",
50943      "type": "function",
50944      "desc": "Fires when Records have been added to the Store"
50945     },
50946     {
50947      "name": "beforeload",
50948      "sig": "function (_self, options)\n{\n\n}",
50949      "type": "function",
50950      "desc": "Fires before a request is made for a new data object.  If the beforeload handler returns false\nthe load action will be canceled."
50951     },
50952     {
50953      "name": "beforeloadadd",
50954      "sig": "function (_self, records, options)\n{\n\n}",
50955      "type": "function",
50956      "desc": "Fires after a new set of Records has been loaded."
50957     },
50958     {
50959      "name": "clear",
50960      "sig": "function (_self)\n{\n\n}",
50961      "type": "function",
50962      "desc": "Fires when the data cache has been cleared."
50963     },
50964     {
50965      "name": "datachanged",
50966      "sig": "function (_self)\n{\n\n}",
50967      "type": "function",
50968      "desc": "Fires when the data cache has changed, and a widget which is using this Store\nas a Record cache should refresh its view."
50969     },
50970     {
50971      "name": "load",
50972      "sig": "function (_self, records, options)\n{\n\n}",
50973      "type": "function",
50974      "desc": "Fires after a new set of Records has been loaded, before they are added to the store."
50975     },
50976     {
50977      "name": "loadexception",
50978      "sig": "function (, return, load, jsonData)\n{\n\n}",
50979      "type": "function",
50980      "desc": "Fires if an exception occurs in the Proxy during loading.\nCalled with the signature of the Proxy's \"loadexception\" event.\nIf you return Json { data: [] , success: false, .... } then this will be thrown with the following args"
50981     },
50982     {
50983      "name": "metachange",
50984      "sig": "function (_self, meta)\n{\n\n}",
50985      "type": "function",
50986      "desc": "Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders."
50987     },
50988     {
50989      "name": "remove",
50990      "sig": "function (_self, record, index)\n{\n\n}",
50991      "type": "function",
50992      "desc": "Fires when a Record has been removed from the Store"
50993     },
50994     {
50995      "name": "update",
50996      "sig": "function (_self, record, operation)\n{\n\n}",
50997      "type": "function",
50998      "desc": "Fires when a Record has been updated"
50999     }
51000    ],
51001    "methods": [
51002     {
51003      "name": "add",
51004      "sig": "(Roo.data.Record[] records)",
51005      "type": "function",
51006      "desc": "Add Records to the Store and fires the add event."
51007     },
51008     {
51009      "name": "addEvents",
51010      "sig": "(Object object)",
51011      "type": "function",
51012      "desc": "Used to define events on this Observable"
51013     },
51014     {
51015      "name": "addListener",
51016      "sig": "(String eventName, Function handler, Object scope, Object options)",
51017      "type": "function",
51018      "desc": "Appends an event handler to this component"
51019     },
51020     {
51021      "name": "capture",
51022      "sig": "(Observable o, Function fn, Object scope)",
51023      "type": "function",
51024      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
51025     },
51026     {
51027      "name": "clearFilter",
51028      "sig": "(Boolean suppressEvent)",
51029      "type": "function",
51030      "desc": "Revert to a view of the Record cache with no filtering applied."
51031     },
51032     {
51033      "name": "collect",
51034      "sig": "(String dataIndex, Boolean allowNull, Boolean bypassFilter)",
51035      "type": "function",
51036      "desc": "Collects unique values for a particular dataIndex from this store."
51037     },
51038     {
51039      "name": "commitChanges",
51040      "sig": "()",
51041      "type": "function",
51042      "desc": "Commit all Records with outstanding changes. To handle updates for changes, subscribe to the\nStore's \"update\" event, and perform updating when the third parameter is Roo.data.Record.COMMIT."
51043     },
51044     {
51045      "name": "each",
51046      "sig": "(Function fn, Object scope)",
51047      "type": "function",
51048      "desc": "Calls the specified function for each of the Records in the cache."
51049     },
51050     {
51051      "name": "filter",
51052      "sig": "(String field, String/RegExp value, Boolean anyMatch)",
51053      "type": "function",
51054      "desc": "Filter the records by a specified property."
51055     },
51056     {
51057      "name": "filterBy",
51058      "sig": "(Function fn, Object scope)",
51059      "type": "function",
51060      "desc": "Filter by a function. The specified function will be called with each\nrecord in this data source. If the function returns true the record is included,\notherwise it is filtered."
51061     },
51062     {
51063      "name": "fireEvent",
51064      "sig": "(String eventName, Object... args)",
51065      "type": "function",
51066      "desc": "Fires the specified event with the passed parameters (minus the event name)."
51067     },
51068     {
51069      "name": "getAt",
51070      "sig": "(Number index)",
51071      "type": "function",
51072      "desc": "Get the Record at the specified index."
51073     },
51074     {
51075      "name": "getById",
51076      "sig": "(String id)",
51077      "type": "function",
51078      "desc": "Get the Record with the specified id."
51079     },
51080     {
51081      "name": "getCount",
51082      "sig": "()",
51083      "type": "function",
51084      "desc": "Gets the number of cached records.\n<p>\n<em>If using paging, this may not be the total size of the dataset. If the data object\nused by the Reader contains the dataset size, then the getTotalCount() function returns\nthe data set size</em>"
51085     },
51086     {
51087      "name": "getModifiedRecords",
51088      "sig": "()",
51089      "type": "function",
51090      "desc": "Gets all records modified since the last commit.  Modified records are persisted across load operations\n(e.g., during paging)."
51091     },
51092     {
51093      "name": "getRange",
51094      "sig": "(Number startIndex, Number endIndex)",
51095      "type": "function",
51096      "desc": "Returns a range of Records between specified indices."
51097     },
51098     {
51099      "name": "getSortState",
51100      "sig": "()",
51101      "type": "function",
51102      "desc": "Returns the sort state of the Store as an object with two properties:\n<pre><code>\n field {String} The name of the field by which the Records are sorted\n direction {String} The sort order, \"ASC\" or \"DESC\"\n</code></pre>"
51103     },
51104     {
51105      "name": "getTotalCount",
51106      "sig": "()",
51107      "type": "function",
51108      "desc": "Gets the total number of records in the dataset as returned by the server.\n<p>\n<em>If using paging, for this to be accurate, the data object used by the Reader must contain\nthe dataset size</em>"
51109     },
51110     {
51111      "name": "hasListener",
51112      "sig": "(String eventName)",
51113      "type": "function",
51114      "desc": "Checks to see if this object has any listeners for a specified event"
51115     },
51116     {
51117      "name": "indexOf",
51118      "sig": "(Roo.data.Record record)",
51119      "type": "function",
51120      "desc": "Get the index within the cache of the passed Record."
51121     },
51122     {
51123      "name": "indexOfId",
51124      "sig": "(String id)",
51125      "type": "function",
51126      "desc": "Get the index within the cache of the Record with the passed id."
51127     },
51128     {
51129      "name": "insert",
51130      "sig": "(Number index, Roo.data.Record[] records)",
51131      "type": "function",
51132      "desc": "Inserts Records to the Store at the given index and fires the add event."
51133     },
51134     {
51135      "name": "load",
51136      "sig": "(Object options)",
51137      "type": "function",
51138      "desc": "Loads the Record cache from the configured Proxy using the configured Reader.\n<p>\nIf using remote paging, then the first load call must specify the <em>start</em>\nand <em>limit</em> properties in the options.params property to establish the initial\nposition within the dataset, and the number of Records to cache on each read from the Proxy.\n<p>\n<strong>It is important to note that for remote data sources, loading is asynchronous,\nand this call will return before the new data has been loaded. Perform any post-processing\nin a callback function, or in a \"load\" event handler.</strong>\n<p>"
51139     },
51140     {
51141      "name": "loadData",
51142      "sig": "(Object data, Boolean append)",
51143      "type": "function",
51144      "desc": "Loads data from a passed data block. A Reader which understands the format of the data\nmust have been configured in the constructor."
51145     },
51146     {
51147      "name": "on",
51148      "sig": "(String eventName, Function handler, Object scope, Object options)",
51149      "type": "function",
51150      "desc": "Appends an event handler to this element (shorthand for addListener)"
51151     },
51152     {
51153      "name": "purgeListeners",
51154      "sig": "()",
51155      "type": "function",
51156      "desc": "Removes all listeners for this object"
51157     },
51158     {
51159      "name": "query",
51160      "sig": "(String field, String/RegExp value, Boolean anyMatch)",
51161      "type": "function",
51162      "desc": "Query the records by a specified property."
51163     },
51164     {
51165      "name": "queryBy",
51166      "sig": "(Function fn, Object scope)",
51167      "type": "function",
51168      "desc": "Query by a function. The specified function will be called with each\nrecord in this data source. If the function returns true the record is included\nin the results."
51169     },
51170     {
51171      "name": "rejectChanges",
51172      "sig": "()",
51173      "type": "function",
51174      "desc": "Cancel outstanding changes on all changed records."
51175     },
51176     {
51177      "name": "releaseCapture",
51178      "sig": "(Observable o)",
51179      "type": "function",
51180      "desc": "Removes <b>all</b> added captures from the Observable."
51181     },
51182     {
51183      "name": "reload",
51184      "sig": "(Object options)",
51185      "type": "function",
51186      "desc": "Reloads the Record cache from the configured Proxy using the configured Reader and\nthe options from the last load operation performed."
51187     },
51188     {
51189      "name": "remove",
51190      "sig": "(Ext.data.Record record)",
51191      "type": "function",
51192      "desc": "Remove a Record from the Store and fires the remove event."
51193     },
51194     {
51195      "name": "removeAll",
51196      "sig": "()",
51197      "type": "function",
51198      "desc": "Remove all Records from the Store and fires the clear event."
51199     },
51200     {
51201      "name": "removeListener",
51202      "sig": "(String eventName, Function handler, Object scope)",
51203      "type": "function",
51204      "desc": "Removes a listener"
51205     },
51206     {
51207      "name": "setDefaultSort",
51208      "sig": "(String fieldName, String dir)",
51209      "type": "function",
51210      "desc": "Sets the default sort column and order to be used by the next load operation."
51211     },
51212     {
51213      "name": "sort",
51214      "sig": "(String fieldName, String dir)",
51215      "type": "function",
51216      "desc": "Sort the Records.\nIf remote sorting is used, the sort is performed on the server, and the cache is\nreloaded. If local sorting is used, the cache is sorted internally."
51217     },
51218     {
51219      "name": "sum",
51220      "sig": "(String property, Number start, Number end)",
51221      "type": "function",
51222      "desc": "Sums the value of <i>property</i> for each record between start and end and returns the result."
51223     },
51224     {
51225      "name": "un",
51226      "sig": "(String eventName, Function handler, Object scope)",
51227      "type": "function",
51228      "desc": "Removes a listener (shorthand for removeListener)"
51229     }
51230    ]
51231   },
51232   "Roo.data.Tree": {
51233    "props": [
51234     {
51235      "name": "listeners",
51236      "type": "Object",
51237      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
51238      "memberOf": "Roo.util.Observable"
51239     }
51240    ],
51241    "events": [
51242     {
51243      "name": "append",
51244      "sig": "function (tree, parent, node, index)\n{\n\n}",
51245      "type": "function",
51246      "desc": "Fires when a new child node is appended to a node in this tree."
51247     },
51248     {
51249      "name": "beforeappend",
51250      "sig": "function (tree, parent, node)\n{\n\n}",
51251      "type": "function",
51252      "desc": "Fires before a new child is appended to a node in this tree, return false to cancel the append."
51253     },
51254     {
51255      "name": "beforeinsert",
51256      "sig": "function (tree, parent, node, refNode)\n{\n\n}",
51257      "type": "function",
51258      "desc": "Fires before a new child is inserted in a node in this tree, return false to cancel the insert."
51259     },
51260     {
51261      "name": "beforemove",
51262      "sig": "function (tree, node, oldParent, newParent, index)\n{\n\n}",
51263      "type": "function",
51264      "desc": "Fires before a node is moved to a new location in the tree. Return false to cancel the move."
51265     },
51266     {
51267      "name": "beforeremove",
51268      "sig": "function (tree, parent, node)\n{\n\n}",
51269      "type": "function",
51270      "desc": "Fires before a child is removed from a node in this tree, return false to cancel the remove."
51271     },
51272     {
51273      "name": "insert",
51274      "sig": "function (tree, parent, node, refNode)\n{\n\n}",
51275      "type": "function",
51276      "desc": "Fires when a new child node is inserted in a node in this tree."
51277     },
51278     {
51279      "name": "move",
51280      "sig": "function (tree, node, oldParent, newParent, index)\n{\n\n}",
51281      "type": "function",
51282      "desc": "Fires when a node is moved to a new location in the tree"
51283     },
51284     {
51285      "name": "remove",
51286      "sig": "function (tree, parent, node)\n{\n\n}",
51287      "type": "function",
51288      "desc": "Fires when a child node is removed from a node in this tree."
51289     }
51290    ],
51291    "methods": [
51292     {
51293      "name": "addEvents",
51294      "sig": "(Object object)",
51295      "type": "function",
51296      "desc": "Used to define events on this Observable"
51297     },
51298     {
51299      "name": "addListener",
51300      "sig": "(String eventName, Function handler, Object scope, Object options)",
51301      "type": "function",
51302      "desc": "Appends an event handler to this component"
51303     },
51304     {
51305      "name": "capture",
51306      "sig": "(Observable o, Function fn, Object scope)",
51307      "type": "function",
51308      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
51309     },
51310     {
51311      "name": "fireEvent",
51312      "sig": "(String eventName, Object... args)",
51313      "type": "function",
51314      "desc": "Fires the specified event with the passed parameters (minus the event name)."
51315     },
51316     {
51317      "name": "getNodeById",
51318      "sig": "(String id)",
51319      "type": "function",
51320      "desc": "Gets a node in this tree by its id."
51321     },
51322     {
51323      "name": "getRootNode",
51324      "sig": "()",
51325      "type": "function",
51326      "desc": "Returns the root node for this tree."
51327     },
51328     {
51329      "name": "hasListener",
51330      "sig": "(String eventName)",
51331      "type": "function",
51332      "desc": "Checks to see if this object has any listeners for a specified event"
51333     },
51334     {
51335      "name": "on",
51336      "sig": "(String eventName, Function handler, Object scope, Object options)",
51337      "type": "function",
51338      "desc": "Appends an event handler to this element (shorthand for addListener)"
51339     },
51340     {
51341      "name": "purgeListeners",
51342      "sig": "()",
51343      "type": "function",
51344      "desc": "Removes all listeners for this object"
51345     },
51346     {
51347      "name": "releaseCapture",
51348      "sig": "(Observable o)",
51349      "type": "function",
51350      "desc": "Removes <b>all</b> added captures from the Observable."
51351     },
51352     {
51353      "name": "removeListener",
51354      "sig": "(String eventName, Function handler, Object scope)",
51355      "type": "function",
51356      "desc": "Removes a listener"
51357     },
51358     {
51359      "name": "setRootNode",
51360      "sig": "(Node node)",
51361      "type": "function",
51362      "desc": "Sets the root node for this tree."
51363     },
51364     {
51365      "name": "un",
51366      "sig": "(String eventName, Function handler, Object scope)",
51367      "type": "function",
51368      "desc": "Removes a listener (shorthand for removeListener)"
51369     }
51370    ]
51371   },
51372   "Roo.data.XmlReader": {
51373    "props": [
51374     {
51375      "name": "totalRecords",
51376      "type": "String",
51377      "desc": "The DomQuery path from which to retrieve the total number of records\nin the dataset. This is only needed if the whole dataset is not passed in one go, but is being\npaged from the remote server.",
51378      "memberOf": ""
51379     },
51380     {
51381      "name": "record",
51382      "type": "String",
51383      "desc": "The DomQuery path to the repeated element which contains record information.",
51384      "memberOf": ""
51385     },
51386     {
51387      "name": "success",
51388      "type": "String",
51389      "desc": "The DomQuery path to the success attribute used by forms.",
51390      "memberOf": ""
51391     },
51392     {
51393      "name": "id",
51394      "type": "String",
51395      "desc": "The DomQuery path relative from the record element to the element that contains\na record identifier value.",
51396      "memberOf": ""
51397     }
51398    ],
51399    "events": [],
51400    "methods": [
51401     {
51402      "name": "newRow",
51403      "sig": "(Object data)",
51404      "type": "function",
51405      "desc": "Create an empty record"
51406     },
51407     {
51408      "name": "read",
51409      "sig": "(Object response)",
51410      "type": "function",
51411      "desc": "This method is only used by a DataProxy which has retrieved data from a remote server."
51412     },
51413     {
51414      "name": "readRecords",
51415      "sig": "(Object doc)",
51416      "type": "function",
51417      "desc": "Create a data block containing Roo.data.Records from an XML document."
51418     }
51419    ]
51420   },
51421   "Roo.dd": {
51422    "props": [],
51423    "events": [],
51424    "methods": []
51425   },
51426   "Roo.dd.DD": {
51427    "props": [
51428     {
51429      "name": "listeners",
51430      "type": "Object",
51431      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
51432      "memberOf": "Roo.util.Observable"
51433     }
51434    ],
51435    "events": [],
51436    "methods": [
51437     {
51438      "name": "addEvents",
51439      "sig": "(Object object)",
51440      "type": "function",
51441      "desc": "Used to define events on this Observable"
51442     },
51443     {
51444      "name": "addInvalidHandleClass",
51445      "sig": "(string cssClass)",
51446      "type": "function",
51447      "desc": "Lets you specify a css class of elements that will not initiate a drag"
51448     },
51449     {
51450      "name": "addInvalidHandleId",
51451      "sig": "(string id)",
51452      "type": "function",
51453      "desc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag"
51454     },
51455     {
51456      "name": "addInvalidHandleType",
51457      "sig": "(string tagName)",
51458      "type": "function",
51459      "desc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag."
51460     },
51461     {
51462      "name": "addListener",
51463      "sig": "(String eventName, Function handler, Object scope, Object options)",
51464      "type": "function",
51465      "desc": "Appends an event handler to this component"
51466     },
51467     {
51468      "name": "addToGroup",
51469      "sig": "( sGroup)",
51470      "type": "function",
51471      "desc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed."
51472     },
51473     {
51474      "name": "alignElWithMouse",
51475      "sig": "(HTMLElement el, int iPageX, int iPageY)",
51476      "type": "function",
51477      "desc": "Sets the element to the location of the mousedown or click event,\nmaintaining the cursor location relative to the location on the element\nthat was clicked.  Override this if you want to place the element in a\nlocation other than where the cursor is."
51478     },
51479     {
51480      "name": "applyConfig",
51481      "sig": "()",
51482      "type": "function",
51483      "desc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object."
51484     },
51485     {
51486      "name": "autoOffset",
51487      "sig": "(int iPageX, int iPageY)",
51488      "type": "function",
51489      "desc": "Sets the pointer offset to the distance between the linked element's top\nleft corner and the location the element was clicked"
51490     },
51491     {
51492      "name": "cachePosition",
51493      "sig": "( iPageX,  iPageY)",
51494      "type": "function",
51495      "desc": "Saves the most recent position so that we can reset the constraints and\ntick marks on-demand.  We need to know this so that we can calculate the\nnumber of pixels the element is offset from its original position."
51496     },
51497     {
51498      "name": "capture",
51499      "sig": "(Observable o, Function fn, Object scope)",
51500      "type": "function",
51501      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
51502     },
51503     {
51504      "name": "clearConstraints",
51505      "sig": "()",
51506      "type": "function",
51507      "desc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time."
51508     },
51509     {
51510      "name": "clearTicks",
51511      "sig": "()",
51512      "type": "function",
51513      "desc": "Clears any tick interval defined for this instance"
51514     },
51515     {
51516      "name": "endDrag",
51517      "sig": "(Event e)",
51518      "type": "function",
51519      "desc": "Fired when we are done dragging the object"
51520     },
51521     {
51522      "name": "fireEvent",
51523      "sig": "(String eventName, Object... args)",
51524      "type": "function",
51525      "desc": "Fires the specified event with the passed parameters (minus the event name)."
51526     },
51527     {
51528      "name": "function toString() {\n    [native code]\n}",
51529      "sig": "()",
51530      "type": "function",
51531      "desc": "toString method"
51532     },
51533     {
51534      "name": "getDragEl",
51535      "sig": "()",
51536      "type": "function",
51537      "desc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Roo.dd.DDProxy"
51538     },
51539     {
51540      "name": "getEl",
51541      "sig": "()",
51542      "type": "function",
51543      "desc": "Returns a reference to the linked element"
51544     },
51545     {
51546      "name": "hasListener",
51547      "sig": "(String eventName)",
51548      "type": "function",
51549      "desc": "Checks to see if this object has any listeners for a specified event"
51550     },
51551     {
51552      "name": "init",
51553      "sig": "( id, String sGroup, object config)",
51554      "type": "function",
51555      "desc": "Sets up the DragDrop object.  Must be called in the constructor of any\nRoo.dd.DragDrop subclass"
51556     },
51557     {
51558      "name": "initTarget",
51559      "sig": "( id, String sGroup, object config)",
51560      "type": "function",
51561      "desc": "Initializes Targeting functionality only... the object does not\nget a mousedown handler."
51562     },
51563     {
51564      "name": "isLocked",
51565      "sig": "()",
51566      "type": "function",
51567      "desc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)"
51568     },
51569     {
51570      "name": "isTarget",
51571      "sig": "()",
51572      "type": "function",
51573      "desc": "By default, all insances can be a drop target.  This can be disabled by\nsetting isTarget to false."
51574     },
51575     {
51576      "name": "isValidHandleChild",
51577      "sig": "(HTMLElement node)",
51578      "type": "function",
51579      "desc": "Checks the tag exclusion list to see if this click should be ignored"
51580     },
51581     {
51582      "name": "lock",
51583      "sig": "()",
51584      "type": "function",
51585      "desc": "Lock this instance"
51586     },
51587     {
51588      "name": "on",
51589      "sig": "(String eventName, Function handler, Object scope, Object options)",
51590      "type": "function",
51591      "desc": "Appends an event handler to this element (shorthand for addListener)"
51592     },
51593     {
51594      "name": "onAvailable",
51595      "sig": "()",
51596      "type": "function",
51597      "desc": "Override the onAvailable method to do what is needed after the initial\nposition was determined."
51598     },
51599     {
51600      "name": "onDrag",
51601      "sig": "(Event e)",
51602      "type": "function",
51603      "desc": "Abstract method called during the onMouseMove event while dragging an\nobject."
51604     },
51605     {
51606      "name": "onDragDrop",
51607      "sig": "(Event e, String|DragDrop[] id)",
51608      "type": "function",
51609      "desc": "Abstract method called when this item is dropped on another DragDrop\nobj"
51610     },
51611     {
51612      "name": "onDragEnter",
51613      "sig": "(Event e, String|DragDrop[] id)",
51614      "type": "function",
51615      "desc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj"
51616     },
51617     {
51618      "name": "onDragOut",
51619      "sig": "(Event e, String|DragDrop[] id)",
51620      "type": "function",
51621      "desc": "Abstract method called when we are no longer hovering over an element"
51622     },
51623     {
51624      "name": "onDragOver",
51625      "sig": "(Event e, String|DragDrop[] id)",
51626      "type": "function",
51627      "desc": "Abstract method called when this element is hovering over another\nDragDrop obj"
51628     },
51629     {
51630      "name": "onInvalidDrop",
51631      "sig": "(Event e)",
51632      "type": "function",
51633      "desc": "Abstract method called when this item is dropped on an area with no\ndrop target"
51634     },
51635     {
51636      "name": "onMouseDown",
51637      "sig": "(Event e)",
51638      "type": "function",
51639      "desc": "Event handler that fires when a drag/drop obj gets a mousedown"
51640     },
51641     {
51642      "name": "onMouseUp",
51643      "sig": "(Event e)",
51644      "type": "function",
51645      "desc": "Event handler that fires when a drag/drop obj gets a mouseup"
51646     },
51647     {
51648      "name": "padding",
51649      "sig": "()",
51650      "type": "function",
51651      "desc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object."
51652     },
51653     {
51654      "name": "purgeListeners",
51655      "sig": "()",
51656      "type": "function",
51657      "desc": "Removes all listeners for this object"
51658     },
51659     {
51660      "name": "releaseCapture",
51661      "sig": "(Observable o)",
51662      "type": "function",
51663      "desc": "Removes <b>all</b> added captures from the Observable."
51664     },
51665     {
51666      "name": "removeFromGroup",
51667      "sig": "(string sGroup)",
51668      "type": "function",
51669      "desc": "Remove's this instance from the supplied interaction group"
51670     },
51671     {
51672      "name": "removeInvalidHandleClass",
51673      "sig": "(string cssClass)",
51674      "type": "function",
51675      "desc": "Unsets an invalid css class"
51676     },
51677     {
51678      "name": "removeInvalidHandleId",
51679      "sig": "(string id)",
51680      "type": "function",
51681      "desc": "Unsets an invalid handle id"
51682     },
51683     {
51684      "name": "removeInvalidHandleType",
51685      "sig": "(string tagName)",
51686      "type": "function",
51687      "desc": "Unsets an excluded tag name set by addInvalidHandleType"
51688     },
51689     {
51690      "name": "removeListener",
51691      "sig": "(String eventName, Function handler, Object scope)",
51692      "type": "function",
51693      "desc": "Removes a listener"
51694     },
51695     {
51696      "name": "resetConstraints",
51697      "sig": "(boolean maintainOffset)",
51698      "type": "function",
51699      "desc": "resetConstraints must be called if you manually reposition a dd element."
51700     },
51701     {
51702      "name": "setDelta",
51703      "sig": "(int iDeltaX, int iDeltaY)",
51704      "type": "function",
51705      "desc": "Sets the pointer offset.  You can call this directly to force the\noffset to be in a particular location (e.g., pass in 0,0 to set it\nto the center of the object)"
51706     },
51707     {
51708      "name": "setDragElId",
51709      "sig": "( id)",
51710      "type": "function",
51711      "desc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag"
51712     },
51713     {
51714      "name": "setDragElPos",
51715      "sig": "(int iPageX, int iPageY)",
51716      "type": "function",
51717      "desc": "Sets the drag element to the location of the mousedown or click event,\nmaintaining the cursor location relative to the location on the element\nthat was clicked.  Override this if you want to place the element in a\nlocation other than where the cursor is."
51718     },
51719     {
51720      "name": "setHandleElId",
51721      "sig": "( id)",
51722      "type": "function",
51723      "desc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation."
51724     },
51725     {
51726      "name": "setInitPosition",
51727      "sig": "(int diffX, int diffY)",
51728      "type": "function",
51729      "desc": "Stores the initial placement of the linked element."
51730     },
51731     {
51732      "name": "setOuterHandleElId",
51733      "sig": "( id)",
51734      "type": "function",
51735      "desc": "Allows you to set an element outside of the linked element as a drag\nhandle"
51736     },
51737     {
51738      "name": "setPadding",
51739      "sig": "(int iTop, int iRight, int iBot, int iLeft)",
51740      "type": "function",
51741      "desc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second."
51742     },
51743     {
51744      "name": "setXConstraint",
51745      "sig": "(int iLeft, int iRight, int iTickSize)",
51746      "type": "function",
51747      "desc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis."
51748     },
51749     {
51750      "name": "setYConstraint",
51751      "sig": "(int iUp, int iDown, int iTickSize)",
51752      "type": "function",
51753      "desc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis."
51754     },
51755     {
51756      "name": "startDrag",
51757      "sig": "(int X, int Y)",
51758      "type": "function",
51759      "desc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met."
51760     },
51761     {
51762      "name": "un",
51763      "sig": "(String eventName, Function handler, Object scope)",
51764      "type": "function",
51765      "desc": "Removes a listener (shorthand for removeListener)"
51766     },
51767     {
51768      "name": "unlock",
51769      "sig": "()",
51770      "type": "function",
51771      "desc": "Unlock this instace"
51772     },
51773     {
51774      "name": "unreg",
51775      "sig": "()",
51776      "type": "function",
51777      "desc": "Remove all drag and drop hooks for this element"
51778     }
51779    ]
51780   },
51781   "Roo.dd.DDProxy": {
51782    "props": [
51783     {
51784      "name": "listeners",
51785      "type": "Object",
51786      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
51787      "memberOf": "Roo.util.Observable"
51788     }
51789    ],
51790    "events": [],
51791    "methods": [
51792     {
51793      "name": "addEvents",
51794      "sig": "(Object object)",
51795      "type": "function",
51796      "desc": "Used to define events on this Observable"
51797     },
51798     {
51799      "name": "addInvalidHandleClass",
51800      "sig": "(string cssClass)",
51801      "type": "function",
51802      "desc": "Lets you specify a css class of elements that will not initiate a drag"
51803     },
51804     {
51805      "name": "addInvalidHandleId",
51806      "sig": "(string id)",
51807      "type": "function",
51808      "desc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag"
51809     },
51810     {
51811      "name": "addInvalidHandleType",
51812      "sig": "(string tagName)",
51813      "type": "function",
51814      "desc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag."
51815     },
51816     {
51817      "name": "addListener",
51818      "sig": "(String eventName, Function handler, Object scope, Object options)",
51819      "type": "function",
51820      "desc": "Appends an event handler to this component"
51821     },
51822     {
51823      "name": "addToGroup",
51824      "sig": "( sGroup)",
51825      "type": "function",
51826      "desc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed."
51827     },
51828     {
51829      "name": "alignElWithMouse",
51830      "sig": "(HTMLElement el, int iPageX, int iPageY)",
51831      "type": "function",
51832      "desc": "Sets the element to the location of the mousedown or click event,\nmaintaining the cursor location relative to the location on the element\nthat was clicked.  Override this if you want to place the element in a\nlocation other than where the cursor is."
51833     },
51834     {
51835      "name": "applyConfig",
51836      "sig": "()",
51837      "type": "function",
51838      "desc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object."
51839     },
51840     {
51841      "name": "autoOffset",
51842      "sig": "(int iPageX, int iPageY)",
51843      "type": "function",
51844      "desc": "Sets the pointer offset to the distance between the linked element's top\nleft corner and the location the element was clicked"
51845     },
51846     {
51847      "name": "cachePosition",
51848      "sig": "( iPageX,  iPageY)",
51849      "type": "function",
51850      "desc": "Saves the most recent position so that we can reset the constraints and\ntick marks on-demand.  We need to know this so that we can calculate the\nnumber of pixels the element is offset from its original position."
51851     },
51852     {
51853      "name": "capture",
51854      "sig": "(Observable o, Function fn, Object scope)",
51855      "type": "function",
51856      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
51857     },
51858     {
51859      "name": "clearConstraints",
51860      "sig": "()",
51861      "type": "function",
51862      "desc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time."
51863     },
51864     {
51865      "name": "clearTicks",
51866      "sig": "()",
51867      "type": "function",
51868      "desc": "Clears any tick interval defined for this instance"
51869     },
51870     {
51871      "name": "createFrame",
51872      "sig": "()",
51873      "type": "function",
51874      "desc": "Creates the proxy element if it does not yet exist"
51875     },
51876     {
51877      "name": "endDrag",
51878      "sig": "(Event e)",
51879      "type": "function",
51880      "desc": "Fired when we are done dragging the object"
51881     },
51882     {
51883      "name": "fireEvent",
51884      "sig": "(String eventName, Object... args)",
51885      "type": "function",
51886      "desc": "Fires the specified event with the passed parameters (minus the event name)."
51887     },
51888     {
51889      "name": "function toString() {\n    [native code]\n}",
51890      "sig": "()",
51891      "type": "function",
51892      "desc": "toString method"
51893     },
51894     {
51895      "name": "getDragEl",
51896      "sig": "()",
51897      "type": "function",
51898      "desc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Roo.dd.DDProxy"
51899     },
51900     {
51901      "name": "getEl",
51902      "sig": "()",
51903      "type": "function",
51904      "desc": "Returns a reference to the linked element"
51905     },
51906     {
51907      "name": "hasListener",
51908      "sig": "(String eventName)",
51909      "type": "function",
51910      "desc": "Checks to see if this object has any listeners for a specified event"
51911     },
51912     {
51913      "name": "init",
51914      "sig": "( id, String sGroup, object config)",
51915      "type": "function",
51916      "desc": "Sets up the DragDrop object.  Must be called in the constructor of any\nRoo.dd.DragDrop subclass"
51917     },
51918     {
51919      "name": "initFrame",
51920      "sig": "()",
51921      "type": "function",
51922      "desc": "Initialization for the drag frame element.  Must be called in the\nconstructor of all subclasses"
51923     },
51924     {
51925      "name": "initTarget",
51926      "sig": "( id, String sGroup, object config)",
51927      "type": "function",
51928      "desc": "Initializes Targeting functionality only... the object does not\nget a mousedown handler."
51929     },
51930     {
51931      "name": "isLocked",
51932      "sig": "()",
51933      "type": "function",
51934      "desc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)"
51935     },
51936     {
51937      "name": "isTarget",
51938      "sig": "()",
51939      "type": "function",
51940      "desc": "By default, all insances can be a drop target.  This can be disabled by\nsetting isTarget to false."
51941     },
51942     {
51943      "name": "isValidHandleChild",
51944      "sig": "(HTMLElement node)",
51945      "type": "function",
51946      "desc": "Checks the tag exclusion list to see if this click should be ignored"
51947     },
51948     {
51949      "name": "lock",
51950      "sig": "()",
51951      "type": "function",
51952      "desc": "Lock this instance"
51953     },
51954     {
51955      "name": "on",
51956      "sig": "(String eventName, Function handler, Object scope, Object options)",
51957      "type": "function",
51958      "desc": "Appends an event handler to this element (shorthand for addListener)"
51959     },
51960     {
51961      "name": "onAvailable",
51962      "sig": "()",
51963      "type": "function",
51964      "desc": "Override the onAvailable method to do what is needed after the initial\nposition was determined."
51965     },
51966     {
51967      "name": "onDrag",
51968      "sig": "(Event e)",
51969      "type": "function",
51970      "desc": "Abstract method called during the onMouseMove event while dragging an\nobject."
51971     },
51972     {
51973      "name": "onDragDrop",
51974      "sig": "(Event e, String|DragDrop[] id)",
51975      "type": "function",
51976      "desc": "Abstract method called when this item is dropped on another DragDrop\nobj"
51977     },
51978     {
51979      "name": "onDragEnter",
51980      "sig": "(Event e, String|DragDrop[] id)",
51981      "type": "function",
51982      "desc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj"
51983     },
51984     {
51985      "name": "onDragOut",
51986      "sig": "(Event e, String|DragDrop[] id)",
51987      "type": "function",
51988      "desc": "Abstract method called when we are no longer hovering over an element"
51989     },
51990     {
51991      "name": "onDragOver",
51992      "sig": "(Event e, String|DragDrop[] id)",
51993      "type": "function",
51994      "desc": "Abstract method called when this element is hovering over another\nDragDrop obj"
51995     },
51996     {
51997      "name": "onInvalidDrop",
51998      "sig": "(Event e)",
51999      "type": "function",
52000      "desc": "Abstract method called when this item is dropped on an area with no\ndrop target"
52001     },
52002     {
52003      "name": "onMouseDown",
52004      "sig": "(Event e)",
52005      "type": "function",
52006      "desc": "Event handler that fires when a drag/drop obj gets a mousedown"
52007     },
52008     {
52009      "name": "onMouseUp",
52010      "sig": "(Event e)",
52011      "type": "function",
52012      "desc": "Event handler that fires when a drag/drop obj gets a mouseup"
52013     },
52014     {
52015      "name": "padding",
52016      "sig": "()",
52017      "type": "function",
52018      "desc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object."
52019     },
52020     {
52021      "name": "purgeListeners",
52022      "sig": "()",
52023      "type": "function",
52024      "desc": "Removes all listeners for this object"
52025     },
52026     {
52027      "name": "releaseCapture",
52028      "sig": "(Observable o)",
52029      "type": "function",
52030      "desc": "Removes <b>all</b> added captures from the Observable."
52031     },
52032     {
52033      "name": "removeFromGroup",
52034      "sig": "(string sGroup)",
52035      "type": "function",
52036      "desc": "Remove's this instance from the supplied interaction group"
52037     },
52038     {
52039      "name": "removeInvalidHandleClass",
52040      "sig": "(string cssClass)",
52041      "type": "function",
52042      "desc": "Unsets an invalid css class"
52043     },
52044     {
52045      "name": "removeInvalidHandleId",
52046      "sig": "(string id)",
52047      "type": "function",
52048      "desc": "Unsets an invalid handle id"
52049     },
52050     {
52051      "name": "removeInvalidHandleType",
52052      "sig": "(string tagName)",
52053      "type": "function",
52054      "desc": "Unsets an excluded tag name set by addInvalidHandleType"
52055     },
52056     {
52057      "name": "removeListener",
52058      "sig": "(String eventName, Function handler, Object scope)",
52059      "type": "function",
52060      "desc": "Removes a listener"
52061     },
52062     {
52063      "name": "resetConstraints",
52064      "sig": "(boolean maintainOffset)",
52065      "type": "function",
52066      "desc": "resetConstraints must be called if you manually reposition a dd element."
52067     },
52068     {
52069      "name": "setDelta",
52070      "sig": "(int iDeltaX, int iDeltaY)",
52071      "type": "function",
52072      "desc": "Sets the pointer offset.  You can call this directly to force the\noffset to be in a particular location (e.g., pass in 0,0 to set it\nto the center of the object)"
52073     },
52074     {
52075      "name": "setDragElId",
52076      "sig": "( id)",
52077      "type": "function",
52078      "desc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag"
52079     },
52080     {
52081      "name": "setDragElPos",
52082      "sig": "(int iPageX, int iPageY)",
52083      "type": "function",
52084      "desc": "Sets the drag element to the location of the mousedown or click event,\nmaintaining the cursor location relative to the location on the element\nthat was clicked.  Override this if you want to place the element in a\nlocation other than where the cursor is."
52085     },
52086     {
52087      "name": "setHandleElId",
52088      "sig": "( id)",
52089      "type": "function",
52090      "desc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation."
52091     },
52092     {
52093      "name": "setInitPosition",
52094      "sig": "(int diffX, int diffY)",
52095      "type": "function",
52096      "desc": "Stores the initial placement of the linked element."
52097     },
52098     {
52099      "name": "setOuterHandleElId",
52100      "sig": "( id)",
52101      "type": "function",
52102      "desc": "Allows you to set an element outside of the linked element as a drag\nhandle"
52103     },
52104     {
52105      "name": "setPadding",
52106      "sig": "(int iTop, int iRight, int iBot, int iLeft)",
52107      "type": "function",
52108      "desc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second."
52109     },
52110     {
52111      "name": "setXConstraint",
52112      "sig": "(int iLeft, int iRight, int iTickSize)",
52113      "type": "function",
52114      "desc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis."
52115     },
52116     {
52117      "name": "setYConstraint",
52118      "sig": "(int iUp, int iDown, int iTickSize)",
52119      "type": "function",
52120      "desc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis."
52121     },
52122     {
52123      "name": "startDrag",
52124      "sig": "(int X, int Y)",
52125      "type": "function",
52126      "desc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met."
52127     },
52128     {
52129      "name": "un",
52130      "sig": "(String eventName, Function handler, Object scope)",
52131      "type": "function",
52132      "desc": "Removes a listener (shorthand for removeListener)"
52133     },
52134     {
52135      "name": "unlock",
52136      "sig": "()",
52137      "type": "function",
52138      "desc": "Unlock this instace"
52139     },
52140     {
52141      "name": "unreg",
52142      "sig": "()",
52143      "type": "function",
52144      "desc": "Remove all drag and drop hooks for this element"
52145     }
52146    ]
52147   },
52148   "Roo.dd.DDTarget": {
52149    "props": [
52150     {
52151      "name": "listeners",
52152      "type": "Object",
52153      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
52154      "memberOf": "Roo.util.Observable"
52155     }
52156    ],
52157    "events": [],
52158    "methods": [
52159     {
52160      "name": "addEvents",
52161      "sig": "(Object object)",
52162      "type": "function",
52163      "desc": "Used to define events on this Observable"
52164     },
52165     {
52166      "name": "addInvalidHandleClass",
52167      "sig": "(string cssClass)",
52168      "type": "function",
52169      "desc": "Lets you specify a css class of elements that will not initiate a drag"
52170     },
52171     {
52172      "name": "addInvalidHandleId",
52173      "sig": "(string id)",
52174      "type": "function",
52175      "desc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag"
52176     },
52177     {
52178      "name": "addInvalidHandleType",
52179      "sig": "(string tagName)",
52180      "type": "function",
52181      "desc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag."
52182     },
52183     {
52184      "name": "addListener",
52185      "sig": "(String eventName, Function handler, Object scope, Object options)",
52186      "type": "function",
52187      "desc": "Appends an event handler to this component"
52188     },
52189     {
52190      "name": "addToGroup",
52191      "sig": "( sGroup)",
52192      "type": "function",
52193      "desc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed."
52194     },
52195     {
52196      "name": "applyConfig",
52197      "sig": "()",
52198      "type": "function",
52199      "desc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object."
52200     },
52201     {
52202      "name": "capture",
52203      "sig": "(Observable o, Function fn, Object scope)",
52204      "type": "function",
52205      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
52206     },
52207     {
52208      "name": "clearConstraints",
52209      "sig": "()",
52210      "type": "function",
52211      "desc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time."
52212     },
52213     {
52214      "name": "clearTicks",
52215      "sig": "()",
52216      "type": "function",
52217      "desc": "Clears any tick interval defined for this instance"
52218     },
52219     {
52220      "name": "endDrag",
52221      "sig": "(Event e)",
52222      "type": "function",
52223      "desc": "Fired when we are done dragging the object"
52224     },
52225     {
52226      "name": "fireEvent",
52227      "sig": "(String eventName, Object... args)",
52228      "type": "function",
52229      "desc": "Fires the specified event with the passed parameters (minus the event name)."
52230     },
52231     {
52232      "name": "function toString() {\n    [native code]\n}",
52233      "sig": "()",
52234      "type": "function",
52235      "desc": "toString method"
52236     },
52237     {
52238      "name": "getDragEl",
52239      "sig": "()",
52240      "type": "function",
52241      "desc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Roo.dd.DDProxy"
52242     },
52243     {
52244      "name": "getEl",
52245      "sig": "()",
52246      "type": "function",
52247      "desc": "Returns a reference to the linked element"
52248     },
52249     {
52250      "name": "hasListener",
52251      "sig": "(String eventName)",
52252      "type": "function",
52253      "desc": "Checks to see if this object has any listeners for a specified event"
52254     },
52255     {
52256      "name": "init",
52257      "sig": "( id, String sGroup, object config)",
52258      "type": "function",
52259      "desc": "Sets up the DragDrop object.  Must be called in the constructor of any\nRoo.dd.DragDrop subclass"
52260     },
52261     {
52262      "name": "initTarget",
52263      "sig": "( id, String sGroup, object config)",
52264      "type": "function",
52265      "desc": "Initializes Targeting functionality only... the object does not\nget a mousedown handler."
52266     },
52267     {
52268      "name": "isLocked",
52269      "sig": "()",
52270      "type": "function",
52271      "desc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)"
52272     },
52273     {
52274      "name": "isTarget",
52275      "sig": "()",
52276      "type": "function",
52277      "desc": "By default, all insances can be a drop target.  This can be disabled by\nsetting isTarget to false."
52278     },
52279     {
52280      "name": "isValidHandleChild",
52281      "sig": "(HTMLElement node)",
52282      "type": "function",
52283      "desc": "Checks the tag exclusion list to see if this click should be ignored"
52284     },
52285     {
52286      "name": "lock",
52287      "sig": "()",
52288      "type": "function",
52289      "desc": "Lock this instance"
52290     },
52291     {
52292      "name": "on",
52293      "sig": "(String eventName, Function handler, Object scope, Object options)",
52294      "type": "function",
52295      "desc": "Appends an event handler to this element (shorthand for addListener)"
52296     },
52297     {
52298      "name": "onAvailable",
52299      "sig": "()",
52300      "type": "function",
52301      "desc": "Override the onAvailable method to do what is needed after the initial\nposition was determined."
52302     },
52303     {
52304      "name": "onDrag",
52305      "sig": "(Event e)",
52306      "type": "function",
52307      "desc": "Abstract method called during the onMouseMove event while dragging an\nobject."
52308     },
52309     {
52310      "name": "onDragDrop",
52311      "sig": "(Event e, String|DragDrop[] id)",
52312      "type": "function",
52313      "desc": "Abstract method called when this item is dropped on another DragDrop\nobj"
52314     },
52315     {
52316      "name": "onDragEnter",
52317      "sig": "(Event e, String|DragDrop[] id)",
52318      "type": "function",
52319      "desc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj"
52320     },
52321     {
52322      "name": "onDragOut",
52323      "sig": "(Event e, String|DragDrop[] id)",
52324      "type": "function",
52325      "desc": "Abstract method called when we are no longer hovering over an element"
52326     },
52327     {
52328      "name": "onDragOver",
52329      "sig": "(Event e, String|DragDrop[] id)",
52330      "type": "function",
52331      "desc": "Abstract method called when this element is hovering over another\nDragDrop obj"
52332     },
52333     {
52334      "name": "onInvalidDrop",
52335      "sig": "(Event e)",
52336      "type": "function",
52337      "desc": "Abstract method called when this item is dropped on an area with no\ndrop target"
52338     },
52339     {
52340      "name": "onMouseDown",
52341      "sig": "(Event e)",
52342      "type": "function",
52343      "desc": "Event handler that fires when a drag/drop obj gets a mousedown"
52344     },
52345     {
52346      "name": "onMouseUp",
52347      "sig": "(Event e)",
52348      "type": "function",
52349      "desc": "Event handler that fires when a drag/drop obj gets a mouseup"
52350     },
52351     {
52352      "name": "padding",
52353      "sig": "()",
52354      "type": "function",
52355      "desc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object."
52356     },
52357     {
52358      "name": "purgeListeners",
52359      "sig": "()",
52360      "type": "function",
52361      "desc": "Removes all listeners for this object"
52362     },
52363     {
52364      "name": "releaseCapture",
52365      "sig": "(Observable o)",
52366      "type": "function",
52367      "desc": "Removes <b>all</b> added captures from the Observable."
52368     },
52369     {
52370      "name": "removeFromGroup",
52371      "sig": "(string sGroup)",
52372      "type": "function",
52373      "desc": "Remove's this instance from the supplied interaction group"
52374     },
52375     {
52376      "name": "removeInvalidHandleClass",
52377      "sig": "(string cssClass)",
52378      "type": "function",
52379      "desc": "Unsets an invalid css class"
52380     },
52381     {
52382      "name": "removeInvalidHandleId",
52383      "sig": "(string id)",
52384      "type": "function",
52385      "desc": "Unsets an invalid handle id"
52386     },
52387     {
52388      "name": "removeInvalidHandleType",
52389      "sig": "(string tagName)",
52390      "type": "function",
52391      "desc": "Unsets an excluded tag name set by addInvalidHandleType"
52392     },
52393     {
52394      "name": "removeListener",
52395      "sig": "(String eventName, Function handler, Object scope)",
52396      "type": "function",
52397      "desc": "Removes a listener"
52398     },
52399     {
52400      "name": "resetConstraints",
52401      "sig": "(boolean maintainOffset)",
52402      "type": "function",
52403      "desc": "resetConstraints must be called if you manually reposition a dd element."
52404     },
52405     {
52406      "name": "setDragElId",
52407      "sig": "( id)",
52408      "type": "function",
52409      "desc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag"
52410     },
52411     {
52412      "name": "setHandleElId",
52413      "sig": "( id)",
52414      "type": "function",
52415      "desc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation."
52416     },
52417     {
52418      "name": "setInitPosition",
52419      "sig": "(int diffX, int diffY)",
52420      "type": "function",
52421      "desc": "Stores the initial placement of the linked element."
52422     },
52423     {
52424      "name": "setOuterHandleElId",
52425      "sig": "( id)",
52426      "type": "function",
52427      "desc": "Allows you to set an element outside of the linked element as a drag\nhandle"
52428     },
52429     {
52430      "name": "setPadding",
52431      "sig": "(int iTop, int iRight, int iBot, int iLeft)",
52432      "type": "function",
52433      "desc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second."
52434     },
52435     {
52436      "name": "setXConstraint",
52437      "sig": "(int iLeft, int iRight, int iTickSize)",
52438      "type": "function",
52439      "desc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis."
52440     },
52441     {
52442      "name": "setYConstraint",
52443      "sig": "(int iUp, int iDown, int iTickSize)",
52444      "type": "function",
52445      "desc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis."
52446     },
52447     {
52448      "name": "startDrag",
52449      "sig": "(int X, int Y)",
52450      "type": "function",
52451      "desc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met."
52452     },
52453     {
52454      "name": "un",
52455      "sig": "(String eventName, Function handler, Object scope)",
52456      "type": "function",
52457      "desc": "Removes a listener (shorthand for removeListener)"
52458     },
52459     {
52460      "name": "unlock",
52461      "sig": "()",
52462      "type": "function",
52463      "desc": "Unlock this instace"
52464     },
52465     {
52466      "name": "unreg",
52467      "sig": "()",
52468      "type": "function",
52469      "desc": "Remove all drag and drop hooks for this element"
52470     }
52471    ]
52472   },
52473   "Roo.dd.DragDrop": {
52474    "props": [
52475     {
52476      "name": "listeners",
52477      "type": "Object",
52478      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
52479      "memberOf": "Roo.util.Observable"
52480     }
52481    ],
52482    "events": [],
52483    "methods": [
52484     {
52485      "name": "addEvents",
52486      "sig": "(Object object)",
52487      "type": "function",
52488      "desc": "Used to define events on this Observable"
52489     },
52490     {
52491      "name": "addInvalidHandleClass",
52492      "sig": "(string cssClass)",
52493      "type": "function",
52494      "desc": "Lets you specify a css class of elements that will not initiate a drag"
52495     },
52496     {
52497      "name": "addInvalidHandleId",
52498      "sig": "(string id)",
52499      "type": "function",
52500      "desc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag"
52501     },
52502     {
52503      "name": "addInvalidHandleType",
52504      "sig": "(string tagName)",
52505      "type": "function",
52506      "desc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag."
52507     },
52508     {
52509      "name": "addListener",
52510      "sig": "(String eventName, Function handler, Object scope, Object options)",
52511      "type": "function",
52512      "desc": "Appends an event handler to this component"
52513     },
52514     {
52515      "name": "addToGroup",
52516      "sig": "( sGroup)",
52517      "type": "function",
52518      "desc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed."
52519     },
52520     {
52521      "name": "applyConfig",
52522      "sig": "()",
52523      "type": "function",
52524      "desc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object."
52525     },
52526     {
52527      "name": "capture",
52528      "sig": "(Observable o, Function fn, Object scope)",
52529      "type": "function",
52530      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
52531     },
52532     {
52533      "name": "clearConstraints",
52534      "sig": "()",
52535      "type": "function",
52536      "desc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time."
52537     },
52538     {
52539      "name": "clearTicks",
52540      "sig": "()",
52541      "type": "function",
52542      "desc": "Clears any tick interval defined for this instance"
52543     },
52544     {
52545      "name": "endDrag",
52546      "sig": "(Event e)",
52547      "type": "function",
52548      "desc": "Fired when we are done dragging the object"
52549     },
52550     {
52551      "name": "fireEvent",
52552      "sig": "(String eventName, Object... args)",
52553      "type": "function",
52554      "desc": "Fires the specified event with the passed parameters (minus the event name)."
52555     },
52556     {
52557      "name": "function toString() {\n    [native code]\n}",
52558      "sig": "()",
52559      "type": "function",
52560      "desc": "toString method"
52561     },
52562     {
52563      "name": "getDragEl",
52564      "sig": "()",
52565      "type": "function",
52566      "desc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Roo.dd.DDProxy"
52567     },
52568     {
52569      "name": "getEl",
52570      "sig": "()",
52571      "type": "function",
52572      "desc": "Returns a reference to the linked element"
52573     },
52574     {
52575      "name": "hasListener",
52576      "sig": "(String eventName)",
52577      "type": "function",
52578      "desc": "Checks to see if this object has any listeners for a specified event"
52579     },
52580     {
52581      "name": "init",
52582      "sig": "( id, String sGroup, object config)",
52583      "type": "function",
52584      "desc": "Sets up the DragDrop object.  Must be called in the constructor of any\nRoo.dd.DragDrop subclass"
52585     },
52586     {
52587      "name": "initTarget",
52588      "sig": "( id, String sGroup, object config)",
52589      "type": "function",
52590      "desc": "Initializes Targeting functionality only... the object does not\nget a mousedown handler."
52591     },
52592     {
52593      "name": "isLocked",
52594      "sig": "()",
52595      "type": "function",
52596      "desc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)"
52597     },
52598     {
52599      "name": "isTarget",
52600      "sig": "()",
52601      "type": "function",
52602      "desc": "By default, all insances can be a drop target.  This can be disabled by\nsetting isTarget to false."
52603     },
52604     {
52605      "name": "isValidHandleChild",
52606      "sig": "(HTMLElement node)",
52607      "type": "function",
52608      "desc": "Checks the tag exclusion list to see if this click should be ignored"
52609     },
52610     {
52611      "name": "lock",
52612      "sig": "()",
52613      "type": "function",
52614      "desc": "Lock this instance"
52615     },
52616     {
52617      "name": "on",
52618      "sig": "(String eventName, Function handler, Object scope, Object options)",
52619      "type": "function",
52620      "desc": "Appends an event handler to this element (shorthand for addListener)"
52621     },
52622     {
52623      "name": "onAvailable",
52624      "sig": "()",
52625      "type": "function",
52626      "desc": "Override the onAvailable method to do what is needed after the initial\nposition was determined."
52627     },
52628     {
52629      "name": "onDrag",
52630      "sig": "(Event e)",
52631      "type": "function",
52632      "desc": "Abstract method called during the onMouseMove event while dragging an\nobject."
52633     },
52634     {
52635      "name": "onDragDrop",
52636      "sig": "(Event e, String|DragDrop[] id)",
52637      "type": "function",
52638      "desc": "Abstract method called when this item is dropped on another DragDrop\nobj"
52639     },
52640     {
52641      "name": "onDragEnter",
52642      "sig": "(Event e, String|DragDrop[] id)",
52643      "type": "function",
52644      "desc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj"
52645     },
52646     {
52647      "name": "onDragOut",
52648      "sig": "(Event e, String|DragDrop[] id)",
52649      "type": "function",
52650      "desc": "Abstract method called when we are no longer hovering over an element"
52651     },
52652     {
52653      "name": "onDragOver",
52654      "sig": "(Event e, String|DragDrop[] id)",
52655      "type": "function",
52656      "desc": "Abstract method called when this element is hovering over another\nDragDrop obj"
52657     },
52658     {
52659      "name": "onInvalidDrop",
52660      "sig": "(Event e)",
52661      "type": "function",
52662      "desc": "Abstract method called when this item is dropped on an area with no\ndrop target"
52663     },
52664     {
52665      "name": "onMouseDown",
52666      "sig": "(Event e)",
52667      "type": "function",
52668      "desc": "Event handler that fires when a drag/drop obj gets a mousedown"
52669     },
52670     {
52671      "name": "onMouseUp",
52672      "sig": "(Event e)",
52673      "type": "function",
52674      "desc": "Event handler that fires when a drag/drop obj gets a mouseup"
52675     },
52676     {
52677      "name": "padding",
52678      "sig": "()",
52679      "type": "function",
52680      "desc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object."
52681     },
52682     {
52683      "name": "purgeListeners",
52684      "sig": "()",
52685      "type": "function",
52686      "desc": "Removes all listeners for this object"
52687     },
52688     {
52689      "name": "releaseCapture",
52690      "sig": "(Observable o)",
52691      "type": "function",
52692      "desc": "Removes <b>all</b> added captures from the Observable."
52693     },
52694     {
52695      "name": "removeFromGroup",
52696      "sig": "(string sGroup)",
52697      "type": "function",
52698      "desc": "Remove's this instance from the supplied interaction group"
52699     },
52700     {
52701      "name": "removeInvalidHandleClass",
52702      "sig": "(string cssClass)",
52703      "type": "function",
52704      "desc": "Unsets an invalid css class"
52705     },
52706     {
52707      "name": "removeInvalidHandleId",
52708      "sig": "(string id)",
52709      "type": "function",
52710      "desc": "Unsets an invalid handle id"
52711     },
52712     {
52713      "name": "removeInvalidHandleType",
52714      "sig": "(string tagName)",
52715      "type": "function",
52716      "desc": "Unsets an excluded tag name set by addInvalidHandleType"
52717     },
52718     {
52719      "name": "removeListener",
52720      "sig": "(String eventName, Function handler, Object scope)",
52721      "type": "function",
52722      "desc": "Removes a listener"
52723     },
52724     {
52725      "name": "resetConstraints",
52726      "sig": "(boolean maintainOffset)",
52727      "type": "function",
52728      "desc": "resetConstraints must be called if you manually reposition a dd element."
52729     },
52730     {
52731      "name": "setDragElId",
52732      "sig": "( id)",
52733      "type": "function",
52734      "desc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag"
52735     },
52736     {
52737      "name": "setHandleElId",
52738      "sig": "( id)",
52739      "type": "function",
52740      "desc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation."
52741     },
52742     {
52743      "name": "setInitPosition",
52744      "sig": "(int diffX, int diffY)",
52745      "type": "function",
52746      "desc": "Stores the initial placement of the linked element."
52747     },
52748     {
52749      "name": "setOuterHandleElId",
52750      "sig": "( id)",
52751      "type": "function",
52752      "desc": "Allows you to set an element outside of the linked element as a drag\nhandle"
52753     },
52754     {
52755      "name": "setPadding",
52756      "sig": "(int iTop, int iRight, int iBot, int iLeft)",
52757      "type": "function",
52758      "desc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second."
52759     },
52760     {
52761      "name": "setXConstraint",
52762      "sig": "(int iLeft, int iRight, int iTickSize)",
52763      "type": "function",
52764      "desc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis."
52765     },
52766     {
52767      "name": "setYConstraint",
52768      "sig": "(int iUp, int iDown, int iTickSize)",
52769      "type": "function",
52770      "desc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis."
52771     },
52772     {
52773      "name": "startDrag",
52774      "sig": "(int X, int Y)",
52775      "type": "function",
52776      "desc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met."
52777     },
52778     {
52779      "name": "un",
52780      "sig": "(String eventName, Function handler, Object scope)",
52781      "type": "function",
52782      "desc": "Removes a listener (shorthand for removeListener)"
52783     },
52784     {
52785      "name": "unlock",
52786      "sig": "()",
52787      "type": "function",
52788      "desc": "Unlock this instace"
52789     },
52790     {
52791      "name": "unreg",
52792      "sig": "()",
52793      "type": "function",
52794      "desc": "Remove all drag and drop hooks for this element"
52795     }
52796    ]
52797   },
52798   "Roo.dd.DragDropMgr": {
52799    "props": [],
52800    "events": [],
52801    "methods": [
52802     {
52803      "name": "getBestMatch",
52804      "sig": "(DragDrop[] dds)",
52805      "type": "function",
52806      "desc": "Helper function for getting the best match from the list of drag\nand drop objects returned by the drag and drop events when we are\nin INTERSECT mode.  It returns either the first object that the\ncursor is over, or the object that has the greatest overlap with\nthe dragged element."
52807     },
52808     {
52809      "name": "getCss",
52810      "sig": "(String id)",
52811      "type": "function",
52812      "desc": "Returns the style property for the DOM element (i.e.,\ndocument.getElById(id).style)"
52813     },
52814     {
52815      "name": "getDDById",
52816      "sig": "(String id)",
52817      "type": "function",
52818      "desc": "Returns the DragDrop instance for a given id"
52819     },
52820     {
52821      "name": "getElement",
52822      "sig": "(String id)",
52823      "type": "function",
52824      "desc": "Returns the actual DOM element"
52825     },
52826     {
52827      "name": "getLocation",
52828      "sig": "(DragDrop oDD)",
52829      "type": "function",
52830      "desc": "Returns a Region object containing the drag and drop element's position\nand size, including the padding configured for it"
52831     },
52832     {
52833      "name": "getPosX",
52834      "sig": "( el)",
52835      "type": "function",
52836      "desc": "Returns the X position of an html element"
52837     },
52838     {
52839      "name": "getPosY",
52840      "sig": "( el)",
52841      "type": "function",
52842      "desc": "Returns the Y position of an html element"
52843     },
52844     {
52845      "name": "getRelated",
52846      "sig": "(DragDrop p_oDD, boolean bTargetsOnly)",
52847      "type": "function",
52848      "desc": "Returns the drag and drop instances that are in all groups the\npassed in instance belongs to."
52849     },
52850     {
52851      "name": "getScrollLeft",
52852      "sig": "()",
52853      "type": "function",
52854      "desc": "Gets the scrollLeft"
52855     },
52856     {
52857      "name": "getScrollTop",
52858      "sig": "()",
52859      "type": "function",
52860      "desc": "Gets the scrollTop"
52861     },
52862     {
52863      "name": "getStyle",
52864      "sig": "(HTMLElement el, string styleProp)",
52865      "type": "function",
52866      "desc": "Returns the specified element style property"
52867     },
52868     {
52869      "name": "handleWasClicked",
52870      "sig": "( node)",
52871      "type": "function",
52872      "desc": "Recursively searches the immediate parent and all child nodes for\nthe handle element in order to determine wheter or not it was\nclicked."
52873     },
52874     {
52875      "name": "isDragDrop",
52876      "sig": "(String id)",
52877      "type": "function",
52878      "desc": "Utility function to determine if a given element has been\nregistered as a drag drop item."
52879     },
52880     {
52881      "name": "isHandle",
52882      "sig": "(String id)",
52883      "type": "function",
52884      "desc": "Utility function to determine if a given element has been\nregistered as a drag drop handle for the given Drag Drop object."
52885     },
52886     {
52887      "name": "isLegalTarget",
52888      "sig": "(DragDrop the, DragDrop the)",
52889      "type": "function",
52890      "desc": "Returns true if the specified dd target is a legal target for\nthe specifice drag obj"
52891     },
52892     {
52893      "name": "isLocked",
52894      "sig": "()",
52895      "type": "function",
52896      "desc": "Is drag and drop locked?"
52897     },
52898     {
52899      "name": "isTypeOfDD",
52900      "sig": "(Object the)",
52901      "type": "function",
52902      "desc": "My goal is to be able to transparently determine if an object is\ntypeof DragDrop, and the exact subclass of DragDrop.  typeof\nreturns \"object\", oDD.constructor.toString() always returns\n\"DragDrop\" and not the name of the subclass.  So for now it just\nevaluates a well-known variable in DragDrop."
52903     },
52904     {
52905      "name": "lock",
52906      "sig": "()",
52907      "type": "function",
52908      "desc": "Lock all drag and drop functionality"
52909     },
52910     {
52911      "name": "moveToEl",
52912      "sig": "(HTMLElement moveEl, HTMLElement targetEl)",
52913      "type": "function",
52914      "desc": "Sets the x/y position of an element to the location of the\ntarget element."
52915     },
52916     {
52917      "name": "numericSort",
52918      "sig": "()",
52919      "type": "function",
52920      "desc": "Numeric array sort function"
52921     },
52922     {
52923      "name": "refreshCache",
52924      "sig": "(Object groups)",
52925      "type": "function",
52926      "desc": "Refreshes the cache of the top-left and bottom-right points of the\ndrag and drop objects in the specified group(s).  This is in the\nformat that is stored in the drag and drop instance, so typical\nusage is:\n<code>\nRoo.dd.DragDropMgr.refreshCache(ddinstance.groups);\n</code>\nAlternatively:\n<code>\nRoo.dd.DragDropMgr.refreshCache({group1:true, group2:true});\n</code>"
52927     },
52928     {
52929      "name": "regDragDrop",
52930      "sig": "(DragDrop oDD, String sGroup)",
52931      "type": "function",
52932      "desc": "Each DragDrop instance must be registered with the DragDropMgr.\nThis is executed in DragDrop.init()"
52933     },
52934     {
52935      "name": "regHandle",
52936      "sig": "(String sDDId, String sHandleId)",
52937      "type": "function",
52938      "desc": "Each DragDrop handle element must be registered.  This is done\nautomatically when executing DragDrop.setHandleElId()"
52939     },
52940     {
52941      "name": "startDrag",
52942      "sig": "( x,  y)",
52943      "type": "function",
52944      "desc": "Fired when either the drag pixel threshol or the mousedown hold\ntime threshold has been met."
52945     },
52946     {
52947      "name": "stopEvent",
52948      "sig": "(Event e)",
52949      "type": "function",
52950      "desc": "Utility to stop event propagation and event default, if these\nfeatures are turned on."
52951     },
52952     {
52953      "name": "swapNode",
52954      "sig": "( n1,  n2)",
52955      "type": "function",
52956      "desc": "Swap two nodes.  In IE, we use the native method, for others we\nemulate the IE behavior"
52957     },
52958     {
52959      "name": "unlock",
52960      "sig": "()",
52961      "type": "function",
52962      "desc": "Unlock all drag and drop functionality"
52963     },
52964     {
52965      "name": "verifyEl",
52966      "sig": "(HTMLElement el)",
52967      "type": "function",
52968      "desc": "This checks to make sure an element exists and is in the DOM.  The\nmain purpose is to handle cases where innerHTML is used to remove\ndrag and drop objects from the DOM.  IE provides an 'unspecified\nerror' when trying to access the offsetParent of such an element"
52969     }
52970    ]
52971   },
52972   "Roo.dd.DragSource": {
52973    "props": [
52974     {
52975      "name": "dropAllowed",
52976      "type": "String",
52977      "desc": "The CSS class returned to the drag source when drop is allowed (defaults to \"x-dd-drop-ok\").",
52978      "memberOf": ""
52979     },
52980     {
52981      "name": "dropNotAllowed",
52982      "type": "String",
52983      "desc": "The CSS class returned to the drag source when drop is not allowed (defaults to \"x-dd-drop-nodrop\").",
52984      "memberOf": ""
52985     },
52986     {
52987      "name": "listeners",
52988      "type": "Object",
52989      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
52990      "memberOf": "Roo.util.Observable"
52991     }
52992    ],
52993    "events": [],
52994    "methods": [
52995     {
52996      "name": "addEvents",
52997      "sig": "(Object object)",
52998      "type": "function",
52999      "desc": "Used to define events on this Observable"
53000     },
53001     {
53002      "name": "addInvalidHandleClass",
53003      "sig": "(string cssClass)",
53004      "type": "function",
53005      "desc": "Lets you specify a css class of elements that will not initiate a drag"
53006     },
53007     {
53008      "name": "addInvalidHandleId",
53009      "sig": "(string id)",
53010      "type": "function",
53011      "desc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag"
53012     },
53013     {
53014      "name": "addInvalidHandleType",
53015      "sig": "(string tagName)",
53016      "type": "function",
53017      "desc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag."
53018     },
53019     {
53020      "name": "addListener",
53021      "sig": "(String eventName, Function handler, Object scope, Object options)",
53022      "type": "function",
53023      "desc": "Appends an event handler to this component"
53024     },
53025     {
53026      "name": "addToGroup",
53027      "sig": "( sGroup)",
53028      "type": "function",
53029      "desc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed."
53030     },
53031     {
53032      "name": "alignElWithMouse",
53033      "sig": "(HTMLElement el, int iPageX, int iPageY)",
53034      "type": "function",
53035      "desc": "Sets the element to the location of the mousedown or click event,\nmaintaining the cursor location relative to the location on the element\nthat was clicked.  Override this if you want to place the element in a\nlocation other than where the cursor is."
53036     },
53037     {
53038      "name": "applyConfig",
53039      "sig": "()",
53040      "type": "function",
53041      "desc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object."
53042     },
53043     {
53044      "name": "autoOffset",
53045      "sig": "(int iPageX, int iPageY)",
53046      "type": "function",
53047      "desc": "Sets the pointer offset to the distance between the linked element's top\nleft corner and the location the element was clicked"
53048     },
53049     {
53050      "name": "beforeDragDrop",
53051      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53052      "type": "function",
53053      "desc": "An empty function by default, but provided so that you can perform a custom action before the dragged\nitem is dropped onto the target and optionally cancel the onDragDrop."
53054     },
53055     {
53056      "name": "beforeDragEnter",
53057      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53058      "type": "function",
53059      "desc": "An empty function by default, but provided so that you can perform a custom action\nbefore the dragged item enters the drop target and optionally cancel the onDragEnter."
53060     },
53061     {
53062      "name": "beforeDragOut",
53063      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53064      "type": "function",
53065      "desc": "An empty function by default, but provided so that you can perform a custom action before the dragged\nitem is dragged out of the target without dropping, and optionally cancel the onDragOut."
53066     },
53067     {
53068      "name": "beforeDragOver",
53069      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53070      "type": "function",
53071      "desc": "An empty function by default, but provided so that you can perform a custom action\nwhile the dragged item is over the drop target and optionally cancel the onDragOver."
53072     },
53073     {
53074      "name": "beforeInvalidDrop",
53075      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53076      "type": "function",
53077      "desc": "An empty function by default, but provided so that you can perform a custom action after an invalid\ndrop has occurred."
53078     },
53079     {
53080      "name": "cachePosition",
53081      "sig": "( iPageX,  iPageY)",
53082      "type": "function",
53083      "desc": "Saves the most recent position so that we can reset the constraints and\ntick marks on-demand.  We need to know this so that we can calculate the\nnumber of pixels the element is offset from its original position."
53084     },
53085     {
53086      "name": "capture",
53087      "sig": "(Observable o, Function fn, Object scope)",
53088      "type": "function",
53089      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
53090     },
53091     {
53092      "name": "clearConstraints",
53093      "sig": "()",
53094      "type": "function",
53095      "desc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time."
53096     },
53097     {
53098      "name": "clearTicks",
53099      "sig": "()",
53100      "type": "function",
53101      "desc": "Clears any tick interval defined for this instance"
53102     },
53103     {
53104      "name": "createFrame",
53105      "sig": "()",
53106      "type": "function",
53107      "desc": "Creates the proxy element if it does not yet exist"
53108     },
53109     {
53110      "name": "endDrag",
53111      "sig": "(Event e)",
53112      "type": "function",
53113      "desc": "Fired when we are done dragging the object"
53114     },
53115     {
53116      "name": "fireEvent",
53117      "sig": "(String eventName, Object... args)",
53118      "type": "function",
53119      "desc": "Fires the specified event with the passed parameters (minus the event name)."
53120     },
53121     {
53122      "name": "function toString() {\n    [native code]\n}",
53123      "sig": "()",
53124      "type": "function",
53125      "desc": "toString method"
53126     },
53127     {
53128      "name": "getDragData",
53129      "sig": "()",
53130      "type": "function",
53131      "desc": "Returns the data object associated with this drag source"
53132     },
53133     {
53134      "name": "getDragEl",
53135      "sig": "()",
53136      "type": "function",
53137      "desc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Roo.dd.DDProxy"
53138     },
53139     {
53140      "name": "getEl",
53141      "sig": "()",
53142      "type": "function",
53143      "desc": "Returns a reference to the linked element"
53144     },
53145     {
53146      "name": "getProxy",
53147      "sig": "()",
53148      "type": "function",
53149      "desc": "Returns the drag source's underlying {@link Roo.dd.StatusProxy}"
53150     },
53151     {
53152      "name": "hasListener",
53153      "sig": "(String eventName)",
53154      "type": "function",
53155      "desc": "Checks to see if this object has any listeners for a specified event"
53156     },
53157     {
53158      "name": "hideProxy",
53159      "sig": "()",
53160      "type": "function",
53161      "desc": "Hides the drag source's {@link Roo.dd.StatusProxy}"
53162     },
53163     {
53164      "name": "init",
53165      "sig": "( id, String sGroup, object config)",
53166      "type": "function",
53167      "desc": "Sets up the DragDrop object.  Must be called in the constructor of any\nRoo.dd.DragDrop subclass"
53168     },
53169     {
53170      "name": "initFrame",
53171      "sig": "()",
53172      "type": "function",
53173      "desc": "Initialization for the drag frame element.  Must be called in the\nconstructor of all subclasses"
53174     },
53175     {
53176      "name": "initTarget",
53177      "sig": "( id, String sGroup, object config)",
53178      "type": "function",
53179      "desc": "Initializes Targeting functionality only... the object does not\nget a mousedown handler."
53180     },
53181     {
53182      "name": "isLocked",
53183      "sig": "()",
53184      "type": "function",
53185      "desc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)"
53186     },
53187     {
53188      "name": "isTarget",
53189      "sig": "()",
53190      "type": "function",
53191      "desc": "By default, all insances can be a drop target.  This can be disabled by\nsetting isTarget to false."
53192     },
53193     {
53194      "name": "isValidHandleChild",
53195      "sig": "(HTMLElement node)",
53196      "type": "function",
53197      "desc": "Checks the tag exclusion list to see if this click should be ignored"
53198     },
53199     {
53200      "name": "lock",
53201      "sig": "()",
53202      "type": "function",
53203      "desc": "Lock this instance"
53204     },
53205     {
53206      "name": "on",
53207      "sig": "(String eventName, Function handler, Object scope, Object options)",
53208      "type": "function",
53209      "desc": "Appends an event handler to this element (shorthand for addListener)"
53210     },
53211     {
53212      "name": "onAvailable",
53213      "sig": "()",
53214      "type": "function",
53215      "desc": "Override the onAvailable method to do what is needed after the initial\nposition was determined."
53216     },
53217     {
53218      "name": "onBeforeDrag",
53219      "sig": "(Object data, Event e)",
53220      "type": "function",
53221      "desc": "An empty function by default, but provided so that you can perform a custom action before the initial\ndrag event begins and optionally cancel it."
53222     },
53223     {
53224      "name": "onDrag",
53225      "sig": "(Event e)",
53226      "type": "function",
53227      "desc": "Abstract method called during the onMouseMove event while dragging an\nobject."
53228     },
53229     {
53230      "name": "onDragDrop",
53231      "sig": "(Event e, String|DragDrop[] id)",
53232      "type": "function",
53233      "desc": "Abstract method called when this item is dropped on another DragDrop\nobj"
53234     },
53235     {
53236      "name": "onDragEnter",
53237      "sig": "(Event e, String|DragDrop[] id)",
53238      "type": "function",
53239      "desc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj"
53240     },
53241     {
53242      "name": "onDragOut",
53243      "sig": "(Event e, String|DragDrop[] id)",
53244      "type": "function",
53245      "desc": "Abstract method called when we are no longer hovering over an element"
53246     },
53247     {
53248      "name": "onDragOver",
53249      "sig": "(Event e, String|DragDrop[] id)",
53250      "type": "function",
53251      "desc": "Abstract method called when this element is hovering over another\nDragDrop obj"
53252     },
53253     {
53254      "name": "onInvalidDrop",
53255      "sig": "(Event e)",
53256      "type": "function",
53257      "desc": "Abstract method called when this item is dropped on an area with no\ndrop target"
53258     },
53259     {
53260      "name": "onMouseDown",
53261      "sig": "(Event e)",
53262      "type": "function",
53263      "desc": "Event handler that fires when a drag/drop obj gets a mousedown"
53264     },
53265     {
53266      "name": "onMouseUp",
53267      "sig": "(Event e)",
53268      "type": "function",
53269      "desc": "Event handler that fires when a drag/drop obj gets a mouseup"
53270     },
53271     {
53272      "name": "onStartDrag",
53273      "sig": "(Number x, Number y)",
53274      "type": "function",
53275      "desc": "An empty function by default, but provided so that you can perform a custom action once the initial\ndrag event has begun.  The drag cannot be canceled from this function."
53276     },
53277     {
53278      "name": "padding",
53279      "sig": "()",
53280      "type": "function",
53281      "desc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object."
53282     },
53283     {
53284      "name": "purgeListeners",
53285      "sig": "()",
53286      "type": "function",
53287      "desc": "Removes all listeners for this object"
53288     },
53289     {
53290      "name": "releaseCapture",
53291      "sig": "(Observable o)",
53292      "type": "function",
53293      "desc": "Removes <b>all</b> added captures from the Observable."
53294     },
53295     {
53296      "name": "removeFromGroup",
53297      "sig": "(string sGroup)",
53298      "type": "function",
53299      "desc": "Remove's this instance from the supplied interaction group"
53300     },
53301     {
53302      "name": "removeInvalidHandleClass",
53303      "sig": "(string cssClass)",
53304      "type": "function",
53305      "desc": "Unsets an invalid css class"
53306     },
53307     {
53308      "name": "removeInvalidHandleId",
53309      "sig": "(string id)",
53310      "type": "function",
53311      "desc": "Unsets an invalid handle id"
53312     },
53313     {
53314      "name": "removeInvalidHandleType",
53315      "sig": "(string tagName)",
53316      "type": "function",
53317      "desc": "Unsets an excluded tag name set by addInvalidHandleType"
53318     },
53319     {
53320      "name": "removeListener",
53321      "sig": "(String eventName, Function handler, Object scope)",
53322      "type": "function",
53323      "desc": "Removes a listener"
53324     },
53325     {
53326      "name": "resetConstraints",
53327      "sig": "(boolean maintainOffset)",
53328      "type": "function",
53329      "desc": "resetConstraints must be called if you manually reposition a dd element."
53330     },
53331     {
53332      "name": "setDelta",
53333      "sig": "(int iDeltaX, int iDeltaY)",
53334      "type": "function",
53335      "desc": "Sets the pointer offset.  You can call this directly to force the\noffset to be in a particular location (e.g., pass in 0,0 to set it\nto the center of the object)"
53336     },
53337     {
53338      "name": "setDragElId",
53339      "sig": "( id)",
53340      "type": "function",
53341      "desc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag"
53342     },
53343     {
53344      "name": "setDragElPos",
53345      "sig": "(int iPageX, int iPageY)",
53346      "type": "function",
53347      "desc": "Sets the drag element to the location of the mousedown or click event,\nmaintaining the cursor location relative to the location on the element\nthat was clicked.  Override this if you want to place the element in a\nlocation other than where the cursor is."
53348     },
53349     {
53350      "name": "setHandleElId",
53351      "sig": "( id)",
53352      "type": "function",
53353      "desc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation."
53354     },
53355     {
53356      "name": "setInitPosition",
53357      "sig": "(int diffX, int diffY)",
53358      "type": "function",
53359      "desc": "Stores the initial placement of the linked element."
53360     },
53361     {
53362      "name": "setOuterHandleElId",
53363      "sig": "( id)",
53364      "type": "function",
53365      "desc": "Allows you to set an element outside of the linked element as a drag\nhandle"
53366     },
53367     {
53368      "name": "setPadding",
53369      "sig": "(int iTop, int iRight, int iBot, int iLeft)",
53370      "type": "function",
53371      "desc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second."
53372     },
53373     {
53374      "name": "setXConstraint",
53375      "sig": "(int iLeft, int iRight, int iTickSize)",
53376      "type": "function",
53377      "desc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis."
53378     },
53379     {
53380      "name": "setYConstraint",
53381      "sig": "(int iUp, int iDown, int iTickSize)",
53382      "type": "function",
53383      "desc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis."
53384     },
53385     {
53386      "name": "startDrag",
53387      "sig": "(int X, int Y)",
53388      "type": "function",
53389      "desc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met."
53390     },
53391     {
53392      "name": "un",
53393      "sig": "(String eventName, Function handler, Object scope)",
53394      "type": "function",
53395      "desc": "Removes a listener (shorthand for removeListener)"
53396     },
53397     {
53398      "name": "unlock",
53399      "sig": "()",
53400      "type": "function",
53401      "desc": "Unlock this instace"
53402     },
53403     {
53404      "name": "unreg",
53405      "sig": "()",
53406      "type": "function",
53407      "desc": "Remove all drag and drop hooks for this element"
53408     }
53409    ]
53410   },
53411   "Roo.dd.DragZone": {
53412    "props": [
53413     {
53414      "name": "containerScroll",
53415      "type": "Boolean",
53416      "desc": "True to register this container with the Scrollmanager\nfor auto scrolling during drag operations.",
53417      "memberOf": ""
53418     },
53419     {
53420      "name": "hlColor",
53421      "type": "String",
53422      "desc": "The color to use when visually highlighting the drag source in the afterRepair\nmethod after a failed drop (defaults to \"c3daf9\" - light blue)",
53423      "memberOf": ""
53424     },
53425     {
53426      "name": "dropAllowed",
53427      "type": "String",
53428      "desc": "The CSS class returned to the drag source when drop is allowed (defaults to \"x-dd-drop-ok\").",
53429      "memberOf": "Roo.dd.DragSource"
53430     },
53431     {
53432      "name": "dropNotAllowed",
53433      "type": "String",
53434      "desc": "The CSS class returned to the drag source when drop is not allowed (defaults to \"x-dd-drop-nodrop\").",
53435      "memberOf": "Roo.dd.DragSource"
53436     },
53437     {
53438      "name": "listeners",
53439      "type": "Object",
53440      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
53441      "memberOf": "Roo.util.Observable"
53442     }
53443    ],
53444    "events": [],
53445    "methods": [
53446     {
53447      "name": "addEvents",
53448      "sig": "(Object object)",
53449      "type": "function",
53450      "desc": "Used to define events on this Observable"
53451     },
53452     {
53453      "name": "addInvalidHandleClass",
53454      "sig": "(string cssClass)",
53455      "type": "function",
53456      "desc": "Lets you specify a css class of elements that will not initiate a drag"
53457     },
53458     {
53459      "name": "addInvalidHandleId",
53460      "sig": "(string id)",
53461      "type": "function",
53462      "desc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag"
53463     },
53464     {
53465      "name": "addInvalidHandleType",
53466      "sig": "(string tagName)",
53467      "type": "function",
53468      "desc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag."
53469     },
53470     {
53471      "name": "addListener",
53472      "sig": "(String eventName, Function handler, Object scope, Object options)",
53473      "type": "function",
53474      "desc": "Appends an event handler to this component"
53475     },
53476     {
53477      "name": "addToGroup",
53478      "sig": "( sGroup)",
53479      "type": "function",
53480      "desc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed."
53481     },
53482     {
53483      "name": "afterRepair",
53484      "sig": "()",
53485      "type": "function",
53486      "desc": "Called after a repair of an invalid drop. By default, highlights this.dragData.ddel"
53487     },
53488     {
53489      "name": "alignElWithMouse",
53490      "sig": "(HTMLElement el, int iPageX, int iPageY)",
53491      "type": "function",
53492      "desc": "Sets the element to the location of the mousedown or click event,\nmaintaining the cursor location relative to the location on the element\nthat was clicked.  Override this if you want to place the element in a\nlocation other than where the cursor is."
53493     },
53494     {
53495      "name": "applyConfig",
53496      "sig": "()",
53497      "type": "function",
53498      "desc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object."
53499     },
53500     {
53501      "name": "autoOffset",
53502      "sig": "(int iPageX, int iPageY)",
53503      "type": "function",
53504      "desc": "Sets the pointer offset to the distance between the linked element's top\nleft corner and the location the element was clicked"
53505     },
53506     {
53507      "name": "beforeDragDrop",
53508      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53509      "type": "function",
53510      "desc": "An empty function by default, but provided so that you can perform a custom action before the dragged\nitem is dropped onto the target and optionally cancel the onDragDrop."
53511     },
53512     {
53513      "name": "beforeDragEnter",
53514      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53515      "type": "function",
53516      "desc": "An empty function by default, but provided so that you can perform a custom action\nbefore the dragged item enters the drop target and optionally cancel the onDragEnter."
53517     },
53518     {
53519      "name": "beforeDragOut",
53520      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53521      "type": "function",
53522      "desc": "An empty function by default, but provided so that you can perform a custom action before the dragged\nitem is dragged out of the target without dropping, and optionally cancel the onDragOut."
53523     },
53524     {
53525      "name": "beforeDragOver",
53526      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53527      "type": "function",
53528      "desc": "An empty function by default, but provided so that you can perform a custom action\nwhile the dragged item is over the drop target and optionally cancel the onDragOver."
53529     },
53530     {
53531      "name": "beforeInvalidDrop",
53532      "sig": "(Roo.dd.DragDrop target, Event e, String id)",
53533      "type": "function",
53534      "desc": "An empty function by default, but provided so that you can perform a custom action after an invalid\ndrop has occurred."
53535     },
53536     {
53537      "name": "cachePosition",
53538      "sig": "( iPageX,  iPageY)",
53539      "type": "function",
53540      "desc": "Saves the most recent position so that we can reset the constraints and\ntick marks on-demand.  We need to know this so that we can calculate the\nnumber of pixels the element is offset from its original position."
53541     },
53542     {
53543      "name": "capture",
53544      "sig": "(Observable o, Function fn, Object scope)",
53545      "type": "function",
53546      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
53547     },
53548     {
53549      "name": "clearConstraints",
53550      "sig": "()",
53551      "type": "function",
53552      "desc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time."
53553     },
53554     {
53555      "name": "clearTicks",
53556      "sig": "()",
53557      "type": "function",
53558      "desc": "Clears any tick interval defined for this instance"
53559     },
53560     {
53561      "name": "createFrame",
53562      "sig": "()",
53563      "type": "function",
53564      "desc": "Creates the proxy element if it does not yet exist"
53565     },
53566     {
53567      "name": "endDrag",
53568      "sig": "(Event e)",
53569      "type": "function",
53570      "desc": "Fired when we are done dragging the object"
53571     },
53572     {
53573      "name": "fireEvent",
53574      "sig": "(String eventName, Object... args)",
53575      "type": "function",
53576      "desc": "Fires the specified event with the passed parameters (minus the event name)."
53577     },
53578     {
53579      "name": "function toString() {\n    [native code]\n}",
53580      "sig": "()",
53581      "type": "function",
53582      "desc": "toString method"
53583     },
53584     {
53585      "name": "getDragData",
53586      "sig": "(EventObject e)",
53587      "type": "function",
53588      "desc": "Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}\nfor a valid target to drag based on the mouse down. Override this method\nto provide your own lookup logic (e.g. finding a child by class name). Make sure your returned\nobject has a \"ddel\" attribute (with an HTML Element) for other functions to work."
53589     },
53590     {
53591      "name": "getDragEl",
53592      "sig": "()",
53593      "type": "function",
53594      "desc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Roo.dd.DDProxy"
53595     },
53596     {
53597      "name": "getEl",
53598      "sig": "()",
53599      "type": "function",
53600      "desc": "Returns a reference to the linked element"
53601     },
53602     {
53603      "name": "getProxy",
53604      "sig": "()",
53605      "type": "function",
53606      "desc": "Returns the drag source's underlying {@link Roo.dd.StatusProxy}"
53607     },
53608     {
53609      "name": "getRepairXY",
53610      "sig": "(EventObject e)",
53611      "type": "function",
53612      "desc": "Called before a repair of an invalid drop to get the XY to animate to. By default returns\nthe XY of this.dragData.ddel"
53613     },
53614     {
53615      "name": "hasListener",
53616      "sig": "(String eventName)",
53617      "type": "function",
53618      "desc": "Checks to see if this object has any listeners for a specified event"
53619     },
53620     {
53621      "name": "hideProxy",
53622      "sig": "()",
53623      "type": "function",
53624      "desc": "Hides the drag source's {@link Roo.dd.StatusProxy}"
53625     },
53626     {
53627      "name": "init",
53628      "sig": "( id, String sGroup, object config)",
53629      "type": "function",
53630      "desc": "Sets up the DragDrop object.  Must be called in the constructor of any\nRoo.dd.DragDrop subclass"
53631     },
53632     {
53633      "name": "initFrame",
53634      "sig": "()",
53635      "type": "function",
53636      "desc": "Initialization for the drag frame element.  Must be called in the\nconstructor of all subclasses"
53637     },
53638     {
53639      "name": "initTarget",
53640      "sig": "( id, String sGroup, object config)",
53641      "type": "function",
53642      "desc": "Initializes Targeting functionality only... the object does not\nget a mousedown handler."
53643     },
53644     {
53645      "name": "isLocked",
53646      "sig": "()",
53647      "type": "function",
53648      "desc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)"
53649     },
53650     {
53651      "name": "isTarget",
53652      "sig": "()",
53653      "type": "function",
53654      "desc": "By default, all insances can be a drop target.  This can be disabled by\nsetting isTarget to false."
53655     },
53656     {
53657      "name": "isValidHandleChild",
53658      "sig": "(HTMLElement node)",
53659      "type": "function",
53660      "desc": "Checks the tag exclusion list to see if this click should be ignored"
53661     },
53662     {
53663      "name": "lock",
53664      "sig": "()",
53665      "type": "function",
53666      "desc": "Lock this instance"
53667     },
53668     {
53669      "name": "on",
53670      "sig": "(String eventName, Function handler, Object scope, Object options)",
53671      "type": "function",
53672      "desc": "Appends an event handler to this element (shorthand for addListener)"
53673     },
53674     {
53675      "name": "onAvailable",
53676      "sig": "()",
53677      "type": "function",
53678      "desc": "Override the onAvailable method to do what is needed after the initial\nposition was determined."
53679     },
53680     {
53681      "name": "onBeforeDrag",
53682      "sig": "(Object data, Event e)",
53683      "type": "function",
53684      "desc": "An empty function by default, but provided so that you can perform a custom action before the initial\ndrag event begins and optionally cancel it."
53685     },
53686     {
53687      "name": "onDrag",
53688      "sig": "(Event e)",
53689      "type": "function",
53690      "desc": "Abstract method called during the onMouseMove event while dragging an\nobject."
53691     },
53692     {
53693      "name": "onDragDrop",
53694      "sig": "(Event e, String|DragDrop[] id)",
53695      "type": "function",
53696      "desc": "Abstract method called when this item is dropped on another DragDrop\nobj"
53697     },
53698     {
53699      "name": "onDragEnter",
53700      "sig": "(Event e, String|DragDrop[] id)",
53701      "type": "function",
53702      "desc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj"
53703     },
53704     {
53705      "name": "onDragOut",
53706      "sig": "(Event e, String|DragDrop[] id)",
53707      "type": "function",
53708      "desc": "Abstract method called when we are no longer hovering over an element"
53709     },
53710     {
53711      "name": "onDragOver",
53712      "sig": "(Event e, String|DragDrop[] id)",
53713      "type": "function",
53714      "desc": "Abstract method called when this element is hovering over another\nDragDrop obj"
53715     },
53716     {
53717      "name": "onInitDrag",
53718      "sig": "(Number x, Number y)",
53719      "type": "function",
53720      "desc": "Called once drag threshold has been reached to initialize the proxy element. By default, it clones the\nthis.dragData.ddel"
53721     },
53722     {
53723      "name": "onInvalidDrop",
53724      "sig": "(Event e)",
53725      "type": "function",
53726      "desc": "Abstract method called when this item is dropped on an area with no\ndrop target"
53727     },
53728     {
53729      "name": "onMouseDown",
53730      "sig": "(Event e)",
53731      "type": "function",
53732      "desc": "Event handler that fires when a drag/drop obj gets a mousedown"
53733     },
53734     {
53735      "name": "onMouseUp",
53736      "sig": "(Event e)",
53737      "type": "function",
53738      "desc": "Event handler that fires when a drag/drop obj gets a mouseup"
53739     },
53740     {
53741      "name": "onStartDrag",
53742      "sig": "(Number x, Number y)",
53743      "type": "function",
53744      "desc": "An empty function by default, but provided so that you can perform a custom action once the initial\ndrag event has begun.  The drag cannot be canceled from this function."
53745     },
53746     {
53747      "name": "padding",
53748      "sig": "()",
53749      "type": "function",
53750      "desc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object."
53751     },
53752     {
53753      "name": "purgeListeners",
53754      "sig": "()",
53755      "type": "function",
53756      "desc": "Removes all listeners for this object"
53757     },
53758     {
53759      "name": "releaseCapture",
53760      "sig": "(Observable o)",
53761      "type": "function",
53762      "desc": "Removes <b>all</b> added captures from the Observable."
53763     },
53764     {
53765      "name": "removeFromGroup",
53766      "sig": "(string sGroup)",
53767      "type": "function",
53768      "desc": "Remove's this instance from the supplied interaction group"
53769     },
53770     {
53771      "name": "removeInvalidHandleClass",
53772      "sig": "(string cssClass)",
53773      "type": "function",
53774      "desc": "Unsets an invalid css class"
53775     },
53776     {
53777      "name": "removeInvalidHandleId",
53778      "sig": "(string id)",
53779      "type": "function",
53780      "desc": "Unsets an invalid handle id"
53781     },
53782     {
53783      "name": "removeInvalidHandleType",
53784      "sig": "(string tagName)",
53785      "type": "function",
53786      "desc": "Unsets an excluded tag name set by addInvalidHandleType"
53787     },
53788     {
53789      "name": "removeListener",
53790      "sig": "(String eventName, Function handler, Object scope)",
53791      "type": "function",
53792      "desc": "Removes a listener"
53793     },
53794     {
53795      "name": "resetConstraints",
53796      "sig": "(boolean maintainOffset)",
53797      "type": "function",
53798      "desc": "resetConstraints must be called if you manually reposition a dd element."
53799     },
53800     {
53801      "name": "setDelta",
53802      "sig": "(int iDeltaX, int iDeltaY)",
53803      "type": "function",
53804      "desc": "Sets the pointer offset.  You can call this directly to force the\noffset to be in a particular location (e.g., pass in 0,0 to set it\nto the center of the object)"
53805     },
53806     {
53807      "name": "setDragElId",
53808      "sig": "( id)",
53809      "type": "function",
53810      "desc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag"
53811     },
53812     {
53813      "name": "setDragElPos",
53814      "sig": "(int iPageX, int iPageY)",
53815      "type": "function",
53816      "desc": "Sets the drag element to the location of the mousedown or click event,\nmaintaining the cursor location relative to the location on the element\nthat was clicked.  Override this if you want to place the element in a\nlocation other than where the cursor is."
53817     },
53818     {
53819      "name": "setHandleElId",
53820      "sig": "( id)",
53821      "type": "function",
53822      "desc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation."
53823     },
53824     {
53825      "name": "setInitPosition",
53826      "sig": "(int diffX, int diffY)",
53827      "type": "function",
53828      "desc": "Stores the initial placement of the linked element."
53829     },
53830     {
53831      "name": "setOuterHandleElId",
53832      "sig": "( id)",
53833      "type": "function",
53834      "desc": "Allows you to set an element outside of the linked element as a drag\nhandle"
53835     },
53836     {
53837      "name": "setPadding",
53838      "sig": "(int iTop, int iRight, int iBot, int iLeft)",
53839      "type": "function",
53840      "desc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second."
53841     },
53842     {
53843      "name": "setXConstraint",
53844      "sig": "(int iLeft, int iRight, int iTickSize)",
53845      "type": "function",
53846      "desc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis."
53847     },
53848     {
53849      "name": "setYConstraint",
53850      "sig": "(int iUp, int iDown, int iTickSize)",
53851      "type": "function",
53852      "desc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis."
53853     },
53854     {
53855      "name": "startDrag",
53856      "sig": "(int X, int Y)",
53857      "type": "function",
53858      "desc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met."
53859     },
53860     {
53861      "name": "un",
53862      "sig": "(String eventName, Function handler, Object scope)",
53863      "type": "function",
53864      "desc": "Removes a listener (shorthand for removeListener)"
53865     },
53866     {
53867      "name": "unlock",
53868      "sig": "()",
53869      "type": "function",
53870      "desc": "Unlock this instace"
53871     },
53872     {
53873      "name": "unreg",
53874      "sig": "()",
53875      "type": "function",
53876      "desc": "Remove all drag and drop hooks for this element"
53877     }
53878    ]
53879   },
53880   "Roo.dd.DropTarget": {
53881    "props": [
53882     {
53883      "name": "overClass",
53884      "type": "String",
53885      "desc": "The CSS class applied to the drop target element while the drag source is over it (defaults to \"\").",
53886      "memberOf": ""
53887     },
53888     {
53889      "name": "ddGroup",
53890      "type": "String",
53891      "desc": "The drag drop group to handle drop events for",
53892      "memberOf": ""
53893     },
53894     {
53895      "name": "dropAllowed",
53896      "type": "String",
53897      "desc": "The CSS class returned to the drag source when drop is allowed (defaults to \"x-dd-drop-ok\").",
53898      "memberOf": ""
53899     },
53900     {
53901      "name": "dropNotAllowed",
53902      "type": "String",
53903      "desc": "The CSS class returned to the drag source when drop is not allowed (defaults to \"x-dd-drop-nodrop\").",
53904      "memberOf": ""
53905     },
53906     {
53907      "name": "success",
53908      "type": "boolean",
53909      "desc": "set this after drop listener..",
53910      "memberOf": ""
53911     },
53912     {
53913      "name": "valid",
53914      "type": "boolean|String",
53915      "desc": "true/false or string (ok-add/ok-sub/ok/nodrop)\nif the drop point is valid for over/enter..",
53916      "memberOf": ""
53917     },
53918     {
53919      "name": "listeners",
53920      "type": "Object",
53921      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
53922      "memberOf": "Roo.util.Observable"
53923     }
53924    ],
53925    "events": [
53926     {
53927      "name": "drop",
53928      "sig": "function (source, e, data)\n{\n\n}",
53929      "type": "function",
53930      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has\nbeen dropped on it.  This method has no default implementation and returns false, so you must provide an\nimplementation that does something to process the drop event and returns true so that the drag source's\nrepair action does not run.\n\nIMPORTANT : it should set this.success"
53931     },
53932     {
53933      "name": "enter",
53934      "sig": "function (source, e, data)\n{\n\n}",
53935      "type": "function",
53936      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the\ntarget.  This default implementation adds the CSS class specified by overClass (if any) to the drop element\nand returns the dropAllowed config value.  This method should be overridden if drop validation is required.\n\nIMPORTANT : it should set this.overClass and this.dropAllowed"
53937     },
53938     {
53939      "name": "out",
53940      "sig": "function (source, e, data)\n{\n\n}",
53941      "type": "function",
53942      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged\nout of the target without dropping.  This default implementation simply removes the CSS class specified by\noverClass (if any) from the drop element."
53943     },
53944     {
53945      "name": "over",
53946      "sig": "function (source, e, data)\n{\n\n}",
53947      "type": "function",
53948      "desc": "The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.\nThis method will be called on every mouse movement while the drag source is over the drop target.\nThis default implementation simply returns the dropAllowed config value.\n\nIMPORTANT : it should set this.dropAllowed"
53949     }
53950    ],
53951    "methods": [
53952     {
53953      "name": "addEvents",
53954      "sig": "(Object object)",
53955      "type": "function",
53956      "desc": "Used to define events on this Observable"
53957     },
53958     {
53959      "name": "addInvalidHandleClass",
53960      "sig": "(string cssClass)",
53961      "type": "function",
53962      "desc": "Lets you specify a css class of elements that will not initiate a drag"
53963     },
53964     {
53965      "name": "addInvalidHandleId",
53966      "sig": "(string id)",
53967      "type": "function",
53968      "desc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag"
53969     },
53970     {
53971      "name": "addInvalidHandleType",
53972      "sig": "(string tagName)",
53973      "type": "function",
53974      "desc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag."
53975     },
53976     {
53977      "name": "addListener",
53978      "sig": "(String eventName, Function handler, Object scope, Object options)",
53979      "type": "function",
53980      "desc": "Appends an event handler to this component"
53981     },
53982     {
53983      "name": "addToGroup",
53984      "sig": "( sGroup)",
53985      "type": "function",
53986      "desc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed."
53987     },
53988     {
53989      "name": "applyConfig",
53990      "sig": "()",
53991      "type": "function",
53992      "desc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object."
53993     },
53994     {
53995      "name": "capture",
53996      "sig": "(Observable o, Function fn, Object scope)",
53997      "type": "function",
53998      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
53999     },
54000     {
54001      "name": "clearConstraints",
54002      "sig": "()",
54003      "type": "function",
54004      "desc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time."
54005     },
54006     {
54007      "name": "clearTicks",
54008      "sig": "()",
54009      "type": "function",
54010      "desc": "Clears any tick interval defined for this instance"
54011     },
54012     {
54013      "name": "endDrag",
54014      "sig": "(Event e)",
54015      "type": "function",
54016      "desc": "Fired when we are done dragging the object"
54017     },
54018     {
54019      "name": "fireEvent",
54020      "sig": "(String eventName, Object... args)",
54021      "type": "function",
54022      "desc": "Fires the specified event with the passed parameters (minus the event name)."
54023     },
54024     {
54025      "name": "function toString() {\n    [native code]\n}",
54026      "sig": "()",
54027      "type": "function",
54028      "desc": "toString method"
54029     },
54030     {
54031      "name": "getDragEl",
54032      "sig": "()",
54033      "type": "function",
54034      "desc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Roo.dd.DDProxy"
54035     },
54036     {
54037      "name": "getEl",
54038      "sig": "()",
54039      "type": "function",
54040      "desc": "Returns a reference to the linked element"
54041     },
54042     {
54043      "name": "hasListener",
54044      "sig": "(String eventName)",
54045      "type": "function",
54046      "desc": "Checks to see if this object has any listeners for a specified event"
54047     },
54048     {
54049      "name": "init",
54050      "sig": "( id, String sGroup, object config)",
54051      "type": "function",
54052      "desc": "Sets up the DragDrop object.  Must be called in the constructor of any\nRoo.dd.DragDrop subclass"
54053     },
54054     {
54055      "name": "initTarget",
54056      "sig": "( id, String sGroup, object config)",
54057      "type": "function",
54058      "desc": "Initializes Targeting functionality only... the object does not\nget a mousedown handler."
54059     },
54060     {
54061      "name": "isLocked",
54062      "sig": "()",
54063      "type": "function",
54064      "desc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)"
54065     },
54066     {
54067      "name": "isTarget",
54068      "sig": "()",
54069      "type": "function",
54070      "desc": "By default, all insances can be a drop target.  This can be disabled by\nsetting isTarget to false."
54071     },
54072     {
54073      "name": "isValidHandleChild",
54074      "sig": "(HTMLElement node)",
54075      "type": "function",
54076      "desc": "Checks the tag exclusion list to see if this click should be ignored"
54077     },
54078     {
54079      "name": "lock",
54080      "sig": "()",
54081      "type": "function",
54082      "desc": "Lock this instance"
54083     },
54084     {
54085      "name": "on",
54086      "sig": "(String eventName, Function handler, Object scope, Object options)",
54087      "type": "function",
54088      "desc": "Appends an event handler to this element (shorthand for addListener)"
54089     },
54090     {
54091      "name": "onAvailable",
54092      "sig": "()",
54093      "type": "function",
54094      "desc": "Override the onAvailable method to do what is needed after the initial\nposition was determined."
54095     },
54096     {
54097      "name": "onDrag",
54098      "sig": "(Event e)",
54099      "type": "function",
54100      "desc": "Abstract method called during the onMouseMove event while dragging an\nobject."
54101     },
54102     {
54103      "name": "onDragDrop",
54104      "sig": "(Event e, String|DragDrop[] id)",
54105      "type": "function",
54106      "desc": "Abstract method called when this item is dropped on another DragDrop\nobj"
54107     },
54108     {
54109      "name": "onDragEnter",
54110      "sig": "(Event e, String|DragDrop[] id)",
54111      "type": "function",
54112      "desc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj"
54113     },
54114     {
54115      "name": "onDragOut",
54116      "sig": "(Event e, String|DragDrop[] id)",
54117      "type": "function",
54118      "desc": "Abstract method called when we are no longer hovering over an element"
54119     },
54120     {
54121      "name": "onDragOver",
54122      "sig": "(Event e, String|DragDrop[] id)",
54123      "type": "function",
54124      "desc": "Abstract method called when this element is hovering over another\nDragDrop obj"
54125     },
54126     {
54127      "name": "onInvalidDrop",
54128      "sig": "(Event e)",
54129      "type": "function",
54130      "desc": "Abstract method called when this item is dropped on an area with no\ndrop target"
54131     },
54132     {
54133      "name": "onMouseDown",
54134      "sig": "(Event e)",
54135      "type": "function",
54136      "desc": "Event handler that fires when a drag/drop obj gets a mousedown"
54137     },
54138     {
54139      "name": "onMouseUp",
54140      "sig": "(Event e)",
54141      "type": "function",
54142      "desc": "Event handler that fires when a drag/drop obj gets a mouseup"
54143     },
54144     {
54145      "name": "padding",
54146      "sig": "()",
54147      "type": "function",
54148      "desc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object."
54149     },
54150     {
54151      "name": "purgeListeners",
54152      "sig": "()",
54153      "type": "function",
54154      "desc": "Removes all listeners for this object"
54155     },
54156     {
54157      "name": "releaseCapture",
54158      "sig": "(Observable o)",
54159      "type": "function",
54160      "desc": "Removes <b>all</b> added captures from the Observable."
54161     },
54162     {
54163      "name": "removeFromGroup",
54164      "sig": "(string sGroup)",
54165      "type": "function",
54166      "desc": "Remove's this instance from the supplied interaction group"
54167     },
54168     {
54169      "name": "removeInvalidHandleClass",
54170      "sig": "(string cssClass)",
54171      "type": "function",
54172      "desc": "Unsets an invalid css class"
54173     },
54174     {
54175      "name": "removeInvalidHandleId",
54176      "sig": "(string id)",
54177      "type": "function",
54178      "desc": "Unsets an invalid handle id"
54179     },
54180     {
54181      "name": "removeInvalidHandleType",
54182      "sig": "(string tagName)",
54183      "type": "function",
54184      "desc": "Unsets an excluded tag name set by addInvalidHandleType"
54185     },
54186     {
54187      "name": "removeListener",
54188      "sig": "(String eventName, Function handler, Object scope)",
54189      "type": "function",
54190      "desc": "Removes a listener"
54191     },
54192     {
54193      "name": "resetConstraints",
54194      "sig": "(boolean maintainOffset)",
54195      "type": "function",
54196      "desc": "resetConstraints must be called if you manually reposition a dd element."
54197     },
54198     {
54199      "name": "setDragElId",
54200      "sig": "( id)",
54201      "type": "function",
54202      "desc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag"
54203     },
54204     {
54205      "name": "setHandleElId",
54206      "sig": "( id)",
54207      "type": "function",
54208      "desc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation."
54209     },
54210     {
54211      "name": "setInitPosition",
54212      "sig": "(int diffX, int diffY)",
54213      "type": "function",
54214      "desc": "Stores the initial placement of the linked element."
54215     },
54216     {
54217      "name": "setOuterHandleElId",
54218      "sig": "( id)",
54219      "type": "function",
54220      "desc": "Allows you to set an element outside of the linked element as a drag\nhandle"
54221     },
54222     {
54223      "name": "setPadding",
54224      "sig": "(int iTop, int iRight, int iBot, int iLeft)",
54225      "type": "function",
54226      "desc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second."
54227     },
54228     {
54229      "name": "setXConstraint",
54230      "sig": "(int iLeft, int iRight, int iTickSize)",
54231      "type": "function",
54232      "desc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis."
54233     },
54234     {
54235      "name": "setYConstraint",
54236      "sig": "(int iUp, int iDown, int iTickSize)",
54237      "type": "function",
54238      "desc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis."
54239     },
54240     {
54241      "name": "startDrag",
54242      "sig": "(int X, int Y)",
54243      "type": "function",
54244      "desc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met."
54245     },
54246     {
54247      "name": "un",
54248      "sig": "(String eventName, Function handler, Object scope)",
54249      "type": "function",
54250      "desc": "Removes a listener (shorthand for removeListener)"
54251     },
54252     {
54253      "name": "unlock",
54254      "sig": "()",
54255      "type": "function",
54256      "desc": "Unlock this instace"
54257     },
54258     {
54259      "name": "unreg",
54260      "sig": "()",
54261      "type": "function",
54262      "desc": "Remove all drag and drop hooks for this element"
54263     }
54264    ]
54265   },
54266   "Roo.dd.DropZone": {
54267    "props": [
54268     {
54269      "name": "overClass",
54270      "type": "String",
54271      "desc": "The CSS class applied to the drop target element while the drag source is over it (defaults to \"\").",
54272      "memberOf": "Roo.dd.DropTarget"
54273     },
54274     {
54275      "name": "ddGroup",
54276      "type": "String",
54277      "desc": "The drag drop group to handle drop events for",
54278      "memberOf": "Roo.dd.DropTarget"
54279     },
54280     {
54281      "name": "dropAllowed",
54282      "type": "String",
54283      "desc": "The CSS class returned to the drag source when drop is allowed (defaults to \"x-dd-drop-ok\").",
54284      "memberOf": "Roo.dd.DropTarget"
54285     },
54286     {
54287      "name": "dropNotAllowed",
54288      "type": "String",
54289      "desc": "The CSS class returned to the drag source when drop is not allowed (defaults to \"x-dd-drop-nodrop\").",
54290      "memberOf": "Roo.dd.DropTarget"
54291     },
54292     {
54293      "name": "success",
54294      "type": "boolean",
54295      "desc": "set this after drop listener..",
54296      "memberOf": "Roo.dd.DropTarget"
54297     },
54298     {
54299      "name": "valid",
54300      "type": "boolean|String",
54301      "desc": "true/false or string (ok-add/ok-sub/ok/nodrop)\nif the drop point is valid for over/enter..",
54302      "memberOf": "Roo.dd.DropTarget"
54303     },
54304     {
54305      "name": "listeners",
54306      "type": "Object",
54307      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
54308      "memberOf": "Roo.util.Observable"
54309     }
54310    ],
54311    "events": [
54312     {
54313      "name": "drop",
54314      "sig": "function (source, e, data)\n{\n\n}",
54315      "type": "function",
54316      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has\nbeen dropped on it.  This method has no default implementation and returns false, so you must provide an\nimplementation that does something to process the drop event and returns true so that the drag source's\nrepair action does not run.\n\nIMPORTANT : it should set this.success"
54317     },
54318     {
54319      "name": "enter",
54320      "sig": "function (source, e, data)\n{\n\n}",
54321      "type": "function",
54322      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the\ntarget.  This default implementation adds the CSS class specified by overClass (if any) to the drop element\nand returns the dropAllowed config value.  This method should be overridden if drop validation is required.\n\nIMPORTANT : it should set this.overClass and this.dropAllowed"
54323     },
54324     {
54325      "name": "out",
54326      "sig": "function (source, e, data)\n{\n\n}",
54327      "type": "function",
54328      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged\nout of the target without dropping.  This default implementation simply removes the CSS class specified by\noverClass (if any) from the drop element."
54329     },
54330     {
54331      "name": "over",
54332      "sig": "function (source, e, data)\n{\n\n}",
54333      "type": "function",
54334      "desc": "The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.\nThis method will be called on every mouse movement while the drag source is over the drop target.\nThis default implementation simply returns the dropAllowed config value.\n\nIMPORTANT : it should set this.dropAllowed"
54335     }
54336    ],
54337    "methods": [
54338     {
54339      "name": "addEvents",
54340      "sig": "(Object object)",
54341      "type": "function",
54342      "desc": "Used to define events on this Observable"
54343     },
54344     {
54345      "name": "addInvalidHandleClass",
54346      "sig": "(string cssClass)",
54347      "type": "function",
54348      "desc": "Lets you specify a css class of elements that will not initiate a drag"
54349     },
54350     {
54351      "name": "addInvalidHandleId",
54352      "sig": "(string id)",
54353      "type": "function",
54354      "desc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag"
54355     },
54356     {
54357      "name": "addInvalidHandleType",
54358      "sig": "(string tagName)",
54359      "type": "function",
54360      "desc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag."
54361     },
54362     {
54363      "name": "addListener",
54364      "sig": "(String eventName, Function handler, Object scope, Object options)",
54365      "type": "function",
54366      "desc": "Appends an event handler to this component"
54367     },
54368     {
54369      "name": "addToGroup",
54370      "sig": "( sGroup)",
54371      "type": "function",
54372      "desc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed."
54373     },
54374     {
54375      "name": "applyConfig",
54376      "sig": "()",
54377      "type": "function",
54378      "desc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object."
54379     },
54380     {
54381      "name": "capture",
54382      "sig": "(Observable o, Function fn, Object scope)",
54383      "type": "function",
54384      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
54385     },
54386     {
54387      "name": "clearConstraints",
54388      "sig": "()",
54389      "type": "function",
54390      "desc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time."
54391     },
54392     {
54393      "name": "clearTicks",
54394      "sig": "()",
54395      "type": "function",
54396      "desc": "Clears any tick interval defined for this instance"
54397     },
54398     {
54399      "name": "endDrag",
54400      "sig": "(Event e)",
54401      "type": "function",
54402      "desc": "Fired when we are done dragging the object"
54403     },
54404     {
54405      "name": "fireEvent",
54406      "sig": "(String eventName, Object... args)",
54407      "type": "function",
54408      "desc": "Fires the specified event with the passed parameters (minus the event name)."
54409     },
54410     {
54411      "name": "function toString() {\n    [native code]\n}",
54412      "sig": "()",
54413      "type": "function",
54414      "desc": "toString method"
54415     },
54416     {
54417      "name": "getDragEl",
54418      "sig": "()",
54419      "type": "function",
54420      "desc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Roo.dd.DDProxy"
54421     },
54422     {
54423      "name": "getEl",
54424      "sig": "()",
54425      "type": "function",
54426      "desc": "Returns a reference to the linked element"
54427     },
54428     {
54429      "name": "getTargetFromEvent",
54430      "sig": "(Event e)",
54431      "type": "function",
54432      "desc": "Returns a custom data object associated with the DOM node that is the target of the event.  By default\nthis looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to\nprovide your own custom lookup."
54433     },
54434     {
54435      "name": "hasListener",
54436      "sig": "(String eventName)",
54437      "type": "function",
54438      "desc": "Checks to see if this object has any listeners for a specified event"
54439     },
54440     {
54441      "name": "init",
54442      "sig": "( id, String sGroup, object config)",
54443      "type": "function",
54444      "desc": "Sets up the DragDrop object.  Must be called in the constructor of any\nRoo.dd.DragDrop subclass"
54445     },
54446     {
54447      "name": "initTarget",
54448      "sig": "( id, String sGroup, object config)",
54449      "type": "function",
54450      "desc": "Initializes Targeting functionality only... the object does not\nget a mousedown handler."
54451     },
54452     {
54453      "name": "isLocked",
54454      "sig": "()",
54455      "type": "function",
54456      "desc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)"
54457     },
54458     {
54459      "name": "isTarget",
54460      "sig": "()",
54461      "type": "function",
54462      "desc": "By default, all insances can be a drop target.  This can be disabled by\nsetting isTarget to false."
54463     },
54464     {
54465      "name": "isValidHandleChild",
54466      "sig": "(HTMLElement node)",
54467      "type": "function",
54468      "desc": "Checks the tag exclusion list to see if this click should be ignored"
54469     },
54470     {
54471      "name": "lock",
54472      "sig": "()",
54473      "type": "function",
54474      "desc": "Lock this instance"
54475     },
54476     {
54477      "name": "notifyDrop",
54478      "sig": "(Roo.dd.DragSource source, Event e, Object data)",
54479      "type": "function",
54480      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has\nbeen dropped on it.  The drag zone will look up the target node based on the event passed in, and if there\nis a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,\notherwise it will call {@link #onContainerDrop}."
54481     },
54482     {
54483      "name": "notifyEnter",
54484      "sig": "(Roo.dd.DragSource source, Event e, Object data)",
54485      "type": "function",
54486      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over\nthe zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop\nnodes can process drag drop operations, so if you need the drop zone itself to be able to process drops\nyou should override this method and provide a custom implementation."
54487     },
54488     {
54489      "name": "notifyOut",
54490      "sig": "(Roo.dd.DragSource source, Event e, Object data)",
54491      "type": "function",
54492      "desc": "The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged\nout of the zone without dropping.  If the drag source is currently over a registered node, the notification\nwill be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored."
54493     },
54494     {
54495      "name": "notifyOver",
54496      "sig": "(Roo.dd.DragSource source, Event e, Object data)",
54497      "type": "function",
54498      "desc": "The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.\nThis method will be called on every mouse movement while the drag source is over the drop zone.\nIt will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically\ndelegate to the appropriate node-specific methods as necessary when the drag source enters and exits\nregistered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a\nregistered node, it will call {@link #onContainerOver}."
54499     },
54500     {
54501      "name": "on",
54502      "sig": "(String eventName, Function handler, Object scope, Object options)",
54503      "type": "function",
54504      "desc": "Appends an event handler to this element (shorthand for addListener)"
54505     },
54506     {
54507      "name": "onAvailable",
54508      "sig": "()",
54509      "type": "function",
54510      "desc": "Override the onAvailable method to do what is needed after the initial\nposition was determined."
54511     },
54512     {
54513      "name": "onContainerDrop",
54514      "sig": "(Roo.dd.DragSource source, Event e, Object data)",
54515      "type": "function",
54516      "desc": "Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,\nbut not on any of its registered drop nodes.  The default implementation returns false, so it should be\noverridden to provide the appropriate processing of the drop event if you need the drop zone itself to\nbe able to accept drops.  It should return true when valid so that the drag source's repair action does not run."
54517     },
54518     {
54519      "name": "onContainerOver",
54520      "sig": "(Roo.dd.DragSource source, Event e, Object data)",
54521      "type": "function",
54522      "desc": "Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,\nbut not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so\nit should be overridden to provide the proper feedback if necessary."
54523     },
54524     {
54525      "name": "onDrag",
54526      "sig": "(Event e)",
54527      "type": "function",
54528      "desc": "Abstract method called during the onMouseMove event while dragging an\nobject."
54529     },
54530     {
54531      "name": "onDragDrop",
54532      "sig": "(Event e, String|DragDrop[] id)",
54533      "type": "function",
54534      "desc": "Abstract method called when this item is dropped on another DragDrop\nobj"
54535     },
54536     {
54537      "name": "onDragEnter",
54538      "sig": "(Event e, String|DragDrop[] id)",
54539      "type": "function",
54540      "desc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj"
54541     },
54542     {
54543      "name": "onDragOut",
54544      "sig": "(Event e, String|DragDrop[] id)",
54545      "type": "function",
54546      "desc": "Abstract method called when we are no longer hovering over an element"
54547     },
54548     {
54549      "name": "onDragOver",
54550      "sig": "(Event e, String|DragDrop[] id)",
54551      "type": "function",
54552      "desc": "Abstract method called when this element is hovering over another\nDragDrop obj"
54553     },
54554     {
54555      "name": "onInvalidDrop",
54556      "sig": "(Event e)",
54557      "type": "function",
54558      "desc": "Abstract method called when this item is dropped on an area with no\ndrop target"
54559     },
54560     {
54561      "name": "onMouseDown",
54562      "sig": "(Event e)",
54563      "type": "function",
54564      "desc": "Event handler that fires when a drag/drop obj gets a mousedown"
54565     },
54566     {
54567      "name": "onMouseUp",
54568      "sig": "(Event e)",
54569      "type": "function",
54570      "desc": "Event handler that fires when a drag/drop obj gets a mouseup"
54571     },
54572     {
54573      "name": "onNodeDrop",
54574      "sig": "(Object nodeData, Roo.dd.DragSource source, Event e, Object data)",
54575      "type": "function",
54576      "desc": "Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto\nthe drop node.  The default implementation returns false, so it should be overridden to provide the\nappropriate processing of the drop event and return true so that the drag source's repair action does not run."
54577     },
54578     {
54579      "name": "onNodeEnter",
54580      "sig": "(Object nodeData, Roo.dd.DragSource source, Event e, Object data)",
54581      "type": "function",
54582      "desc": "Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node\nthat it has registered.  This method has no default implementation and should be overridden to provide\nnode-specific processing if necessary."
54583     },
54584     {
54585      "name": "onNodeOut",
54586      "sig": "(Object nodeData, Roo.dd.DragSource source, Event e, Object data)",
54587      "type": "function",
54588      "desc": "Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of\nthe drop node without dropping.  This method has no default implementation and should be overridden to provide\nnode-specific processing if necessary."
54589     },
54590     {
54591      "name": "onNodeOver",
54592      "sig": "(Object nodeData, Roo.dd.DragSource source, Event e, Object data)",
54593      "type": "function",
54594      "desc": "Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node\nthat it has registered.  The default implementation returns this.dropNotAllowed, so it should be\noverridden to provide the proper feedback."
54595     },
54596     {
54597      "name": "padding",
54598      "sig": "()",
54599      "type": "function",
54600      "desc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object."
54601     },
54602     {
54603      "name": "purgeListeners",
54604      "sig": "()",
54605      "type": "function",
54606      "desc": "Removes all listeners for this object"
54607     },
54608     {
54609      "name": "releaseCapture",
54610      "sig": "(Observable o)",
54611      "type": "function",
54612      "desc": "Removes <b>all</b> added captures from the Observable."
54613     },
54614     {
54615      "name": "removeFromGroup",
54616      "sig": "(string sGroup)",
54617      "type": "function",
54618      "desc": "Remove's this instance from the supplied interaction group"
54619     },
54620     {
54621      "name": "removeInvalidHandleClass",
54622      "sig": "(string cssClass)",
54623      "type": "function",
54624      "desc": "Unsets an invalid css class"
54625     },
54626     {
54627      "name": "removeInvalidHandleId",
54628      "sig": "(string id)",
54629      "type": "function",
54630      "desc": "Unsets an invalid handle id"
54631     },
54632     {
54633      "name": "removeInvalidHandleType",
54634      "sig": "(string tagName)",
54635      "type": "function",
54636      "desc": "Unsets an excluded tag name set by addInvalidHandleType"
54637     },
54638     {
54639      "name": "removeListener",
54640      "sig": "(String eventName, Function handler, Object scope)",
54641      "type": "function",
54642      "desc": "Removes a listener"
54643     },
54644     {
54645      "name": "resetConstraints",
54646      "sig": "(boolean maintainOffset)",
54647      "type": "function",
54648      "desc": "resetConstraints must be called if you manually reposition a dd element."
54649     },
54650     {
54651      "name": "setDragElId",
54652      "sig": "( id)",
54653      "type": "function",
54654      "desc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag"
54655     },
54656     {
54657      "name": "setHandleElId",
54658      "sig": "( id)",
54659      "type": "function",
54660      "desc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation."
54661     },
54662     {
54663      "name": "setInitPosition",
54664      "sig": "(int diffX, int diffY)",
54665      "type": "function",
54666      "desc": "Stores the initial placement of the linked element."
54667     },
54668     {
54669      "name": "setOuterHandleElId",
54670      "sig": "( id)",
54671      "type": "function",
54672      "desc": "Allows you to set an element outside of the linked element as a drag\nhandle"
54673     },
54674     {
54675      "name": "setPadding",
54676      "sig": "(int iTop, int iRight, int iBot, int iLeft)",
54677      "type": "function",
54678      "desc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second."
54679     },
54680     {
54681      "name": "setXConstraint",
54682      "sig": "(int iLeft, int iRight, int iTickSize)",
54683      "type": "function",
54684      "desc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis."
54685     },
54686     {
54687      "name": "setYConstraint",
54688      "sig": "(int iUp, int iDown, int iTickSize)",
54689      "type": "function",
54690      "desc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis."
54691     },
54692     {
54693      "name": "startDrag",
54694      "sig": "(int X, int Y)",
54695      "type": "function",
54696      "desc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met."
54697     },
54698     {
54699      "name": "un",
54700      "sig": "(String eventName, Function handler, Object scope)",
54701      "type": "function",
54702      "desc": "Removes a listener (shorthand for removeListener)"
54703     },
54704     {
54705      "name": "unlock",
54706      "sig": "()",
54707      "type": "function",
54708      "desc": "Unlock this instace"
54709     },
54710     {
54711      "name": "unreg",
54712      "sig": "()",
54713      "type": "function",
54714      "desc": "Remove all drag and drop hooks for this element"
54715     }
54716    ]
54717   },
54718   "Roo.dd.Registry": {
54719    "props": [],
54720    "events": [],
54721    "methods": [
54722     {
54723      "name": "getHandle",
54724      "sig": "(String|HTMLElement id)",
54725      "type": "function",
54726      "desc": "Returns the handle registered for a DOM Node by id"
54727     },
54728     {
54729      "name": "getHandleFromEvent",
54730      "sig": "(Event e)",
54731      "type": "function",
54732      "desc": "Returns the handle that is registered for the DOM node that is the target of the event"
54733     },
54734     {
54735      "name": "getTarget",
54736      "sig": "(String|HTMLElement id)",
54737      "type": "function",
54738      "desc": "Returns a custom data object that is registered for a DOM node by id"
54739     },
54740     {
54741      "name": "getTargetFromEvent",
54742      "sig": "(Event e)",
54743      "type": "function",
54744      "desc": "Returns a custom data object that is registered for the DOM node that is the target of the event"
54745     },
54746     {
54747      "name": "register",
54748      "sig": "(String|HTMLElement element, Object data)",
54749      "type": "function",
54750      "desc": "Register a drag drop element"
54751     },
54752     {
54753      "name": "unregister",
54754      "sig": "(String|HTMLElement element)",
54755      "type": "function",
54756      "desc": "Unregister a drag drop element"
54757     }
54758    ]
54759   },
54760   "Roo.dd.ScrollManager": {
54761    "props": [],
54762    "events": [],
54763    "methods": [
54764     {
54765      "name": "refreshCache",
54766      "sig": "()",
54767      "type": "function",
54768      "desc": "Manually trigger a cache refresh."
54769     },
54770     {
54771      "name": "register",
54772      "sig": "(String/HTMLElement/Element/Array el)",
54773      "type": "function",
54774      "desc": "Registers new overflow element(s) to auto scroll"
54775     },
54776     {
54777      "name": "unregister",
54778      "sig": "(String/HTMLElement/Element/Array el)",
54779      "type": "function",
54780      "desc": "Unregisters overflow element(s) so they are no longer scrolled"
54781     }
54782    ]
54783   },
54784   "Roo.dd.StatusProxy": {
54785    "props": [
54786     {
54787      "name": "dropAllowed",
54788      "type": "String",
54789      "desc": "The CSS class to apply to the status element when drop is allowed (defaults to \"x-dd-drop-ok\").",
54790      "memberOf": ""
54791     },
54792     {
54793      "name": "dropNotAllowed",
54794      "type": "String",
54795      "desc": "The CSS class to apply to the status element when drop is not allowed (defaults to \"x-dd-drop-nodrop\").",
54796      "memberOf": ""
54797     }
54798    ],
54799    "events": [],
54800    "methods": [
54801     {
54802      "name": "getEl",
54803      "sig": "()",
54804      "type": "function",
54805      "desc": "Returns the underlying proxy {@link Roo.Layer}"
54806     },
54807     {
54808      "name": "getGhost",
54809      "sig": "()",
54810      "type": "function",
54811      "desc": "Returns the ghost element"
54812     },
54813     {
54814      "name": "hide",
54815      "sig": "(Boolean clear)",
54816      "type": "function",
54817      "desc": "Hides the proxy"
54818     },
54819     {
54820      "name": "repair",
54821      "sig": "(Array xy, Function callback, Object scope)",
54822      "type": "function",
54823      "desc": "Causes the proxy to return to its position of origin via an animation.  Should be called after an\ninvalid drop operation by the item being dragged."
54824     },
54825     {
54826      "name": "reset",
54827      "sig": "(Boolean clearGhost)",
54828      "type": "function",
54829      "desc": "Resets the status indicator to the default dropNotAllowed value"
54830     },
54831     {
54832      "name": "setStatus",
54833      "sig": "(String cssClass)",
54834      "type": "function",
54835      "desc": "Updates the proxy's visual element to indicate the status of whether or not drop is allowed\nover the current target element."
54836     },
54837     {
54838      "name": "show",
54839      "sig": "()",
54840      "type": "function",
54841      "desc": "Displays this proxy"
54842     },
54843     {
54844      "name": "stop",
54845      "sig": "()",
54846      "type": "function",
54847      "desc": "Stops the repair animation if it's currently running"
54848     },
54849     {
54850      "name": "sync",
54851      "sig": "()",
54852      "type": "function",
54853      "desc": "Force the Layer to sync its shadow and shim positions to the element"
54854     },
54855     {
54856      "name": "update",
54857      "sig": "(String html)",
54858      "type": "function",
54859      "desc": "Updates the contents of the ghost element"
54860     }
54861    ]
54862   },
54863   "Roo.doc": {
54864    "props": [],
54865    "events": [],
54866    "methods": []
54867   },
54868   "Roo.doc.Book": {
54869    "props": [
54870     {
54871      "name": "title",
54872      "type": "String",
54873      "desc": "Title of the book",
54874      "memberOf": ""
54875     },
54876     {
54877      "name": "abstract",
54878      "type": "String",
54879      "desc": "Abstract (or just add para's to the book, and it will get added to the abstract)",
54880      "memberOf": ""
54881     },
54882     {
54883      "name": "cls",
54884      "type": "String",
54885      "desc": "css class",
54886      "memberOf": "Roo.bootstrap.Component"
54887     },
54888     {
54889      "name": "style",
54890      "type": "String",
54891      "desc": "any extra css",
54892      "memberOf": "Roo.bootstrap.Component"
54893     },
54894     {
54895      "name": "xattr",
54896      "type": "Object",
54897      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
54898      "memberOf": "Roo.bootstrap.Component"
54899     },
54900     {
54901      "name": "can_build_overlaid",
54902      "type": "Boolean",
54903      "desc": "True if element can be rebuild from a HTML page",
54904      "memberOf": "Roo.bootstrap.Component"
54905     },
54906     {
54907      "name": "dataId",
54908      "type": "string",
54909      "desc": "cutomer id",
54910      "memberOf": "Roo.bootstrap.Component"
54911     },
54912     {
54913      "name": "name",
54914      "type": "string",
54915      "desc": "Specifies name attribute",
54916      "memberOf": "Roo.bootstrap.Component"
54917     },
54918     {
54919      "name": "tooltip",
54920      "type": "string",
54921      "desc": "Text for the tooltip",
54922      "memberOf": "Roo.bootstrap.Component"
54923     },
54924     {
54925      "name": "container_method",
54926      "type": "string",
54927      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
54928      "memberOf": "Roo.bootstrap.Component"
54929     },
54930     {
54931      "name": "disableClass",
54932      "type": "String",
54933      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
54934      "memberOf": "Roo.Component"
54935     },
54936     {
54937      "name": "allowDomMove",
54938      "type": "Boolean",
54939      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
54940      "memberOf": "Roo.Component"
54941     },
54942     {
54943      "name": "hideMode",
54944      "type": "String",
54945      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
54946      "memberOf": "Roo.Component",
54947      "optvals": [
54948       "display",
54949       "visibility"
54950      ]
54951     },
54952     {
54953      "name": "actionMode",
54954      "type": "String",
54955      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
54956      "memberOf": "Roo.Component"
54957     },
54958     {
54959      "name": "listeners",
54960      "type": "Object",
54961      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
54962      "memberOf": "Roo.util.Observable"
54963     }
54964    ],
54965    "events": [
54966     {
54967      "name": "beforedestroy",
54968      "sig": "function (_self)\n{\n\n}",
54969      "type": "function",
54970      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
54971     },
54972     {
54973      "name": "beforehide",
54974      "sig": "function (_self)\n{\n\n}",
54975      "type": "function",
54976      "desc": "Fires before the component is hidden. Return false to stop the hide."
54977     },
54978     {
54979      "name": "beforerender",
54980      "sig": "function (_self)\n{\n\n}",
54981      "type": "function",
54982      "desc": "Fires before the component is rendered. Return false to stop the render."
54983     },
54984     {
54985      "name": "beforeshow",
54986      "sig": "function (_self)\n{\n\n}",
54987      "type": "function",
54988      "desc": "Fires before the component is shown.  Return false to stop the show."
54989     },
54990     {
54991      "name": "childrenrendered",
54992      "sig": "function (_self)\n{\n\n}",
54993      "type": "function",
54994      "desc": "Fires when the children have been rendered.."
54995     },
54996     {
54997      "name": "destroy",
54998      "sig": "function (_self)\n{\n\n}",
54999      "type": "function",
55000      "desc": "Fires after the component is destroyed."
55001     },
55002     {
55003      "name": "disable",
55004      "sig": "function (_self)\n{\n\n}",
55005      "type": "function",
55006      "desc": "Fires after the component is disabled."
55007     },
55008     {
55009      "name": "enable",
55010      "sig": "function (_self)\n{\n\n}",
55011      "type": "function",
55012      "desc": "Fires after the component is enabled."
55013     },
55014     {
55015      "name": "hide",
55016      "sig": "function (_self)\n{\n\n}",
55017      "type": "function",
55018      "desc": "Fires after the component is hidden."
55019     },
55020     {
55021      "name": "render",
55022      "sig": "function (_self)\n{\n\n}",
55023      "type": "function",
55024      "desc": "Fires after the component is rendered."
55025     },
55026     {
55027      "name": "show",
55028      "sig": "function (_self)\n{\n\n}",
55029      "type": "function",
55030      "desc": "Fires after the component is shown."
55031     }
55032    ],
55033    "methods": [
55034     {
55035      "name": "addEvents",
55036      "sig": "(Object object)",
55037      "type": "function",
55038      "desc": "Used to define events on this Observable"
55039     },
55040     {
55041      "name": "addListener",
55042      "sig": "(String eventName, Function handler, Object scope, Object options)",
55043      "type": "function",
55044      "desc": "Appends an event handler to this component"
55045     },
55046     {
55047      "name": "capture",
55048      "sig": "(Observable o, Function fn, Object scope)",
55049      "type": "function",
55050      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
55051     },
55052     {
55053      "name": "destroy",
55054      "sig": "()",
55055      "type": "function",
55056      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
55057     },
55058     {
55059      "name": "disable",
55060      "sig": "()",
55061      "type": "function",
55062      "desc": "Disable this component."
55063     },
55064     {
55065      "name": "enable",
55066      "sig": "()",
55067      "type": "function",
55068      "desc": "Enable this component."
55069     },
55070     {
55071      "name": "fireEvent",
55072      "sig": "(String eventName, Object... args)",
55073      "type": "function",
55074      "desc": "Fires the specified event with the passed parameters (minus the event name)."
55075     },
55076     {
55077      "name": "focus",
55078      "sig": "(Boolean selectText)",
55079      "type": "function",
55080      "desc": "Try to focus this component."
55081     },
55082     {
55083      "name": "getChildContainer",
55084      "sig": "()",
55085      "type": "function",
55086      "desc": "Fetch the element to add children to"
55087     },
55088     {
55089      "name": "getEl",
55090      "sig": "()",
55091      "type": "function",
55092      "desc": "Returns the underlying {@link Roo.Element}."
55093     },
55094     {
55095      "name": "getId",
55096      "sig": "()",
55097      "type": "function",
55098      "desc": "Returns the id of this component."
55099     },
55100     {
55101      "name": "hasListener",
55102      "sig": "(String eventName)",
55103      "type": "function",
55104      "desc": "Checks to see if this object has any listeners for a specified event"
55105     },
55106     {
55107      "name": "hide",
55108      "sig": "()",
55109      "type": "function",
55110      "desc": "Hide a component - adds 'hidden' class"
55111     },
55112     {
55113      "name": "initEvents",
55114      "sig": "()",
55115      "type": "function",
55116      "desc": "Initialize Events for the element"
55117     },
55118     {
55119      "name": "isVisible",
55120      "sig": "()",
55121      "type": "function",
55122      "desc": "Returns true if this component is visible."
55123     },
55124     {
55125      "name": "on",
55126      "sig": "(String eventName, Function handler, Object scope, Object options)",
55127      "type": "function",
55128      "desc": "Appends an event handler to this element (shorthand for addListener)"
55129     },
55130     {
55131      "name": "purgeListeners",
55132      "sig": "()",
55133      "type": "function",
55134      "desc": "Removes all listeners for this object"
55135     },
55136     {
55137      "name": "releaseCapture",
55138      "sig": "(Observable o)",
55139      "type": "function",
55140      "desc": "Removes <b>all</b> added captures from the Observable."
55141     },
55142     {
55143      "name": "removeListener",
55144      "sig": "(String eventName, Function handler, Object scope)",
55145      "type": "function",
55146      "desc": "Removes a listener"
55147     },
55148     {
55149      "name": "render",
55150      "sig": "(String/HTMLElement/Element container)",
55151      "type": "function",
55152      "desc": "If this is a lazy rendering component, render it to its container element."
55153     },
55154     {
55155      "name": "setDisabled",
55156      "sig": "(Boolean disabled)",
55157      "type": "function",
55158      "desc": "Convenience function for setting disabled/enabled by boolean."
55159     },
55160     {
55161      "name": "setVisible",
55162      "sig": "(Boolean visible)",
55163      "type": "function",
55164      "desc": "Convenience function to hide or show this component by boolean."
55165     },
55166     {
55167      "name": "show",
55168      "sig": "()",
55169      "type": "function",
55170      "desc": "Show a component - removes 'hidden' class"
55171     },
55172     {
55173      "name": "tooltipEl",
55174      "sig": "()",
55175      "type": "function",
55176      "desc": "Fetch the element to display the tooltip on."
55177     },
55178     {
55179      "name": "un",
55180      "sig": "(String eventName, Function handler, Object scope)",
55181      "type": "function",
55182      "desc": "Removes a listener (shorthand for removeListener)"
55183     }
55184    ]
55185   },
55186   "Roo.doc.Entry": {
55187    "props": [
55188     {
55189      "name": "name",
55190      "type": "",
55191      "desc": "{String} name of method",
55192      "memberOf": ""
55193     },
55194     {
55195      "name": "purpose",
55196      "type": "",
55197      "desc": "{String} short description of method.",
55198      "memberOf": ""
55199     },
55200     {
55201      "name": "cls",
55202      "type": "String",
55203      "desc": "css class",
55204      "memberOf": "Roo.bootstrap.Component"
55205     },
55206     {
55207      "name": "style",
55208      "type": "String",
55209      "desc": "any extra css",
55210      "memberOf": "Roo.bootstrap.Component"
55211     },
55212     {
55213      "name": "xattr",
55214      "type": "Object",
55215      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
55216      "memberOf": "Roo.bootstrap.Component"
55217     },
55218     {
55219      "name": "can_build_overlaid",
55220      "type": "Boolean",
55221      "desc": "True if element can be rebuild from a HTML page",
55222      "memberOf": "Roo.bootstrap.Component"
55223     },
55224     {
55225      "name": "dataId",
55226      "type": "string",
55227      "desc": "cutomer id",
55228      "memberOf": "Roo.bootstrap.Component"
55229     },
55230     {
55231      "name": "tooltip",
55232      "type": "string",
55233      "desc": "Text for the tooltip",
55234      "memberOf": "Roo.bootstrap.Component"
55235     },
55236     {
55237      "name": "container_method",
55238      "type": "string",
55239      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
55240      "memberOf": "Roo.bootstrap.Component"
55241     },
55242     {
55243      "name": "disableClass",
55244      "type": "String",
55245      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
55246      "memberOf": "Roo.Component"
55247     },
55248     {
55249      "name": "allowDomMove",
55250      "type": "Boolean",
55251      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
55252      "memberOf": "Roo.Component"
55253     },
55254     {
55255      "name": "hideMode",
55256      "type": "String",
55257      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
55258      "memberOf": "Roo.Component",
55259      "optvals": [
55260       "display",
55261       "visibility"
55262      ]
55263     },
55264     {
55265      "name": "actionMode",
55266      "type": "String",
55267      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
55268      "memberOf": "Roo.Component"
55269     },
55270     {
55271      "name": "listeners",
55272      "type": "Object",
55273      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
55274      "memberOf": "Roo.util.Observable"
55275     }
55276    ],
55277    "events": [
55278     {
55279      "name": "beforedestroy",
55280      "sig": "function (_self)\n{\n\n}",
55281      "type": "function",
55282      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
55283     },
55284     {
55285      "name": "beforehide",
55286      "sig": "function (_self)\n{\n\n}",
55287      "type": "function",
55288      "desc": "Fires before the component is hidden. Return false to stop the hide."
55289     },
55290     {
55291      "name": "beforerender",
55292      "sig": "function (_self)\n{\n\n}",
55293      "type": "function",
55294      "desc": "Fires before the component is rendered. Return false to stop the render."
55295     },
55296     {
55297      "name": "beforeshow",
55298      "sig": "function (_self)\n{\n\n}",
55299      "type": "function",
55300      "desc": "Fires before the component is shown.  Return false to stop the show."
55301     },
55302     {
55303      "name": "childrenrendered",
55304      "sig": "function (_self)\n{\n\n}",
55305      "type": "function",
55306      "desc": "Fires when the children have been rendered.."
55307     },
55308     {
55309      "name": "destroy",
55310      "sig": "function (_self)\n{\n\n}",
55311      "type": "function",
55312      "desc": "Fires after the component is destroyed."
55313     },
55314     {
55315      "name": "disable",
55316      "sig": "function (_self)\n{\n\n}",
55317      "type": "function",
55318      "desc": "Fires after the component is disabled."
55319     },
55320     {
55321      "name": "enable",
55322      "sig": "function (_self)\n{\n\n}",
55323      "type": "function",
55324      "desc": "Fires after the component is enabled."
55325     },
55326     {
55327      "name": "hide",
55328      "sig": "function (_self)\n{\n\n}",
55329      "type": "function",
55330      "desc": "Fires after the component is hidden."
55331     },
55332     {
55333      "name": "render",
55334      "sig": "function (_self)\n{\n\n}",
55335      "type": "function",
55336      "desc": "Fires after the component is rendered."
55337     },
55338     {
55339      "name": "show",
55340      "sig": "function (_self)\n{\n\n}",
55341      "type": "function",
55342      "desc": "Fires after the component is shown."
55343     }
55344    ],
55345    "methods": [
55346     {
55347      "name": "addEvents",
55348      "sig": "(Object object)",
55349      "type": "function",
55350      "desc": "Used to define events on this Observable"
55351     },
55352     {
55353      "name": "addListener",
55354      "sig": "(String eventName, Function handler, Object scope, Object options)",
55355      "type": "function",
55356      "desc": "Appends an event handler to this component"
55357     },
55358     {
55359      "name": "capture",
55360      "sig": "(Observable o, Function fn, Object scope)",
55361      "type": "function",
55362      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
55363     },
55364     {
55365      "name": "destroy",
55366      "sig": "()",
55367      "type": "function",
55368      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
55369     },
55370     {
55371      "name": "disable",
55372      "sig": "()",
55373      "type": "function",
55374      "desc": "Disable this component."
55375     },
55376     {
55377      "name": "enable",
55378      "sig": "()",
55379      "type": "function",
55380      "desc": "Enable this component."
55381     },
55382     {
55383      "name": "fireEvent",
55384      "sig": "(String eventName, Object... args)",
55385      "type": "function",
55386      "desc": "Fires the specified event with the passed parameters (minus the event name)."
55387     },
55388     {
55389      "name": "focus",
55390      "sig": "(Boolean selectText)",
55391      "type": "function",
55392      "desc": "Try to focus this component."
55393     },
55394     {
55395      "name": "getChildContainer",
55396      "sig": "()",
55397      "type": "function",
55398      "desc": "Fetch the element to add children to"
55399     },
55400     {
55401      "name": "getEl",
55402      "sig": "()",
55403      "type": "function",
55404      "desc": "Returns the underlying {@link Roo.Element}."
55405     },
55406     {
55407      "name": "getId",
55408      "sig": "()",
55409      "type": "function",
55410      "desc": "Returns the id of this component."
55411     },
55412     {
55413      "name": "hasListener",
55414      "sig": "(String eventName)",
55415      "type": "function",
55416      "desc": "Checks to see if this object has any listeners for a specified event"
55417     },
55418     {
55419      "name": "hide",
55420      "sig": "()",
55421      "type": "function",
55422      "desc": "Hide a component - adds 'hidden' class"
55423     },
55424     {
55425      "name": "initEvents",
55426      "sig": "()",
55427      "type": "function",
55428      "desc": "Initialize Events for the element"
55429     },
55430     {
55431      "name": "isVisible",
55432      "sig": "()",
55433      "type": "function",
55434      "desc": "Returns true if this component is visible."
55435     },
55436     {
55437      "name": "on",
55438      "sig": "(String eventName, Function handler, Object scope, Object options)",
55439      "type": "function",
55440      "desc": "Appends an event handler to this element (shorthand for addListener)"
55441     },
55442     {
55443      "name": "purgeListeners",
55444      "sig": "()",
55445      "type": "function",
55446      "desc": "Removes all listeners for this object"
55447     },
55448     {
55449      "name": "releaseCapture",
55450      "sig": "(Observable o)",
55451      "type": "function",
55452      "desc": "Removes <b>all</b> added captures from the Observable."
55453     },
55454     {
55455      "name": "removeListener",
55456      "sig": "(String eventName, Function handler, Object scope)",
55457      "type": "function",
55458      "desc": "Removes a listener"
55459     },
55460     {
55461      "name": "render",
55462      "sig": "(String/HTMLElement/Element container)",
55463      "type": "function",
55464      "desc": "If this is a lazy rendering component, render it to its container element."
55465     },
55466     {
55467      "name": "setDisabled",
55468      "sig": "(Boolean disabled)",
55469      "type": "function",
55470      "desc": "Convenience function for setting disabled/enabled by boolean."
55471     },
55472     {
55473      "name": "setVisible",
55474      "sig": "(Boolean visible)",
55475      "type": "function",
55476      "desc": "Convenience function to hide or show this component by boolean."
55477     },
55478     {
55479      "name": "show",
55480      "sig": "()",
55481      "type": "function",
55482      "desc": "Show a component - removes 'hidden' class"
55483     },
55484     {
55485      "name": "tooltipEl",
55486      "sig": "()",
55487      "type": "function",
55488      "desc": "Fetch the element to display the tooltip on."
55489     },
55490     {
55491      "name": "un",
55492      "sig": "(String eventName, Function handler, Object scope)",
55493      "type": "function",
55494      "desc": "Removes a listener (shorthand for removeListener)"
55495     }
55496    ]
55497   },
55498   "Roo.doc.Example": {
55499    "props": [
55500     {
55501      "name": "title",
55502      "type": "String",
55503      "desc": "short title describing example",
55504      "memberOf": ""
55505     },
55506     {
55507      "name": "lang",
55508      "type": "String",
55509      "desc": "code language.",
55510      "memberOf": "",
55511      "optvals": [
55512       "php",
55513       "txt",
55514       "sql"
55515      ]
55516     },
55517     {
55518      "name": "code",
55519      "type": "String",
55520      "desc": "example code",
55521      "memberOf": ""
55522     },
55523     {
55524      "name": "output",
55525      "type": "String",
55526      "desc": "The expected output from the code",
55527      "memberOf": ""
55528     },
55529     {
55530      "name": "outputlang",
55531      "type": "String",
55532      "desc": "php|txt|sql) output language",
55533      "memberOf": ""
55534     },
55535     {
55536      "name": "cls",
55537      "type": "String",
55538      "desc": "css class",
55539      "memberOf": "Roo.bootstrap.Component"
55540     },
55541     {
55542      "name": "style",
55543      "type": "String",
55544      "desc": "any extra css",
55545      "memberOf": "Roo.bootstrap.Component"
55546     },
55547     {
55548      "name": "xattr",
55549      "type": "Object",
55550      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
55551      "memberOf": "Roo.bootstrap.Component"
55552     },
55553     {
55554      "name": "can_build_overlaid",
55555      "type": "Boolean",
55556      "desc": "True if element can be rebuild from a HTML page",
55557      "memberOf": "Roo.bootstrap.Component"
55558     },
55559     {
55560      "name": "dataId",
55561      "type": "string",
55562      "desc": "cutomer id",
55563      "memberOf": "Roo.bootstrap.Component"
55564     },
55565     {
55566      "name": "name",
55567      "type": "string",
55568      "desc": "Specifies name attribute",
55569      "memberOf": "Roo.bootstrap.Component"
55570     },
55571     {
55572      "name": "tooltip",
55573      "type": "string",
55574      "desc": "Text for the tooltip",
55575      "memberOf": "Roo.bootstrap.Component"
55576     },
55577     {
55578      "name": "container_method",
55579      "type": "string",
55580      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
55581      "memberOf": "Roo.bootstrap.Component"
55582     },
55583     {
55584      "name": "disableClass",
55585      "type": "String",
55586      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
55587      "memberOf": "Roo.Component"
55588     },
55589     {
55590      "name": "allowDomMove",
55591      "type": "Boolean",
55592      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
55593      "memberOf": "Roo.Component"
55594     },
55595     {
55596      "name": "hideMode",
55597      "type": "String",
55598      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
55599      "memberOf": "Roo.Component",
55600      "optvals": [
55601       "display",
55602       "visibility"
55603      ]
55604     },
55605     {
55606      "name": "actionMode",
55607      "type": "String",
55608      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
55609      "memberOf": "Roo.Component"
55610     },
55611     {
55612      "name": "listeners",
55613      "type": "Object",
55614      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
55615      "memberOf": "Roo.util.Observable"
55616     }
55617    ],
55618    "events": [
55619     {
55620      "name": "beforedestroy",
55621      "sig": "function (_self)\n{\n\n}",
55622      "type": "function",
55623      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
55624     },
55625     {
55626      "name": "beforehide",
55627      "sig": "function (_self)\n{\n\n}",
55628      "type": "function",
55629      "desc": "Fires before the component is hidden. Return false to stop the hide."
55630     },
55631     {
55632      "name": "beforerender",
55633      "sig": "function (_self)\n{\n\n}",
55634      "type": "function",
55635      "desc": "Fires before the component is rendered. Return false to stop the render."
55636     },
55637     {
55638      "name": "beforeshow",
55639      "sig": "function (_self)\n{\n\n}",
55640      "type": "function",
55641      "desc": "Fires before the component is shown.  Return false to stop the show."
55642     },
55643     {
55644      "name": "childrenrendered",
55645      "sig": "function (_self)\n{\n\n}",
55646      "type": "function",
55647      "desc": "Fires when the children have been rendered.."
55648     },
55649     {
55650      "name": "destroy",
55651      "sig": "function (_self)\n{\n\n}",
55652      "type": "function",
55653      "desc": "Fires after the component is destroyed."
55654     },
55655     {
55656      "name": "disable",
55657      "sig": "function (_self)\n{\n\n}",
55658      "type": "function",
55659      "desc": "Fires after the component is disabled."
55660     },
55661     {
55662      "name": "enable",
55663      "sig": "function (_self)\n{\n\n}",
55664      "type": "function",
55665      "desc": "Fires after the component is enabled."
55666     },
55667     {
55668      "name": "hide",
55669      "sig": "function (_self)\n{\n\n}",
55670      "type": "function",
55671      "desc": "Fires after the component is hidden."
55672     },
55673     {
55674      "name": "render",
55675      "sig": "function (_self)\n{\n\n}",
55676      "type": "function",
55677      "desc": "Fires after the component is rendered."
55678     },
55679     {
55680      "name": "show",
55681      "sig": "function (_self)\n{\n\n}",
55682      "type": "function",
55683      "desc": "Fires after the component is shown."
55684     }
55685    ],
55686    "methods": [
55687     {
55688      "name": "addEvents",
55689      "sig": "(Object object)",
55690      "type": "function",
55691      "desc": "Used to define events on this Observable"
55692     },
55693     {
55694      "name": "addListener",
55695      "sig": "(String eventName, Function handler, Object scope, Object options)",
55696      "type": "function",
55697      "desc": "Appends an event handler to this component"
55698     },
55699     {
55700      "name": "capture",
55701      "sig": "(Observable o, Function fn, Object scope)",
55702      "type": "function",
55703      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
55704     },
55705     {
55706      "name": "destroy",
55707      "sig": "()",
55708      "type": "function",
55709      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
55710     },
55711     {
55712      "name": "disable",
55713      "sig": "()",
55714      "type": "function",
55715      "desc": "Disable this component."
55716     },
55717     {
55718      "name": "enable",
55719      "sig": "()",
55720      "type": "function",
55721      "desc": "Enable this component."
55722     },
55723     {
55724      "name": "fireEvent",
55725      "sig": "(String eventName, Object... args)",
55726      "type": "function",
55727      "desc": "Fires the specified event with the passed parameters (minus the event name)."
55728     },
55729     {
55730      "name": "focus",
55731      "sig": "(Boolean selectText)",
55732      "type": "function",
55733      "desc": "Try to focus this component."
55734     },
55735     {
55736      "name": "getChildContainer",
55737      "sig": "()",
55738      "type": "function",
55739      "desc": "Fetch the element to add children to"
55740     },
55741     {
55742      "name": "getEl",
55743      "sig": "()",
55744      "type": "function",
55745      "desc": "Returns the underlying {@link Roo.Element}."
55746     },
55747     {
55748      "name": "getId",
55749      "sig": "()",
55750      "type": "function",
55751      "desc": "Returns the id of this component."
55752     },
55753     {
55754      "name": "hasListener",
55755      "sig": "(String eventName)",
55756      "type": "function",
55757      "desc": "Checks to see if this object has any listeners for a specified event"
55758     },
55759     {
55760      "name": "hide",
55761      "sig": "()",
55762      "type": "function",
55763      "desc": "Hide a component - adds 'hidden' class"
55764     },
55765     {
55766      "name": "initEvents",
55767      "sig": "()",
55768      "type": "function",
55769      "desc": "Initialize Events for the element"
55770     },
55771     {
55772      "name": "isVisible",
55773      "sig": "()",
55774      "type": "function",
55775      "desc": "Returns true if this component is visible."
55776     },
55777     {
55778      "name": "on",
55779      "sig": "(String eventName, Function handler, Object scope, Object options)",
55780      "type": "function",
55781      "desc": "Appends an event handler to this element (shorthand for addListener)"
55782     },
55783     {
55784      "name": "purgeListeners",
55785      "sig": "()",
55786      "type": "function",
55787      "desc": "Removes all listeners for this object"
55788     },
55789     {
55790      "name": "releaseCapture",
55791      "sig": "(Observable o)",
55792      "type": "function",
55793      "desc": "Removes <b>all</b> added captures from the Observable."
55794     },
55795     {
55796      "name": "removeListener",
55797      "sig": "(String eventName, Function handler, Object scope)",
55798      "type": "function",
55799      "desc": "Removes a listener"
55800     },
55801     {
55802      "name": "render",
55803      "sig": "(String/HTMLElement/Element container)",
55804      "type": "function",
55805      "desc": "If this is a lazy rendering component, render it to its container element."
55806     },
55807     {
55808      "name": "setDisabled",
55809      "sig": "(Boolean disabled)",
55810      "type": "function",
55811      "desc": "Convenience function for setting disabled/enabled by boolean."
55812     },
55813     {
55814      "name": "setVisible",
55815      "sig": "(Boolean visible)",
55816      "type": "function",
55817      "desc": "Convenience function to hide or show this component by boolean."
55818     },
55819     {
55820      "name": "show",
55821      "sig": "()",
55822      "type": "function",
55823      "desc": "Show a component - removes 'hidden' class"
55824     },
55825     {
55826      "name": "tooltipEl",
55827      "sig": "()",
55828      "type": "function",
55829      "desc": "Fetch the element to display the tooltip on."
55830     },
55831     {
55832      "name": "un",
55833      "sig": "(String eventName, Function handler, Object scope)",
55834      "type": "function",
55835      "desc": "Removes a listener (shorthand for removeListener)"
55836     }
55837    ]
55838   },
55839   "Roo.doc.NavCategory": {
55840    "props": [
55841     {
55842      "name": "title",
55843      "type": "string",
55844      "desc": "",
55845      "memberOf": ""
55846     },
55847     {
55848      "name": "name",
55849      "type": "string",
55850      "desc": "Represent's an category on the left menu.\n- phpdoc @category elements map the pages to the categories\n  this should be on the left side of the menu, when the\n  contents are loaded, then it can expand this out, and add links\n  for each of the methods.",
55851      "memberOf": ""
55852     },
55853     {
55854      "name": "cls",
55855      "type": "String",
55856      "desc": "css class",
55857      "memberOf": "Roo.bootstrap.Component"
55858     },
55859     {
55860      "name": "style",
55861      "type": "String",
55862      "desc": "any extra css",
55863      "memberOf": "Roo.bootstrap.Component"
55864     },
55865     {
55866      "name": "xattr",
55867      "type": "Object",
55868      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
55869      "memberOf": "Roo.bootstrap.Component"
55870     },
55871     {
55872      "name": "can_build_overlaid",
55873      "type": "Boolean",
55874      "desc": "True if element can be rebuild from a HTML page",
55875      "memberOf": "Roo.bootstrap.Component"
55876     },
55877     {
55878      "name": "dataId",
55879      "type": "string",
55880      "desc": "cutomer id",
55881      "memberOf": "Roo.bootstrap.Component"
55882     },
55883     {
55884      "name": "tooltip",
55885      "type": "string",
55886      "desc": "Text for the tooltip",
55887      "memberOf": "Roo.bootstrap.Component"
55888     },
55889     {
55890      "name": "container_method",
55891      "type": "string",
55892      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
55893      "memberOf": "Roo.bootstrap.Component"
55894     },
55895     {
55896      "name": "disableClass",
55897      "type": "String",
55898      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
55899      "memberOf": "Roo.Component"
55900     },
55901     {
55902      "name": "allowDomMove",
55903      "type": "Boolean",
55904      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
55905      "memberOf": "Roo.Component"
55906     },
55907     {
55908      "name": "hideMode",
55909      "type": "String",
55910      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
55911      "memberOf": "Roo.Component",
55912      "optvals": [
55913       "display",
55914       "visibility"
55915      ]
55916     },
55917     {
55918      "name": "actionMode",
55919      "type": "String",
55920      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
55921      "memberOf": "Roo.Component"
55922     },
55923     {
55924      "name": "listeners",
55925      "type": "Object",
55926      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
55927      "memberOf": "Roo.util.Observable"
55928     }
55929    ],
55930    "events": [
55931     {
55932      "name": "beforedestroy",
55933      "sig": "function (_self)\n{\n\n}",
55934      "type": "function",
55935      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
55936     },
55937     {
55938      "name": "beforehide",
55939      "sig": "function (_self)\n{\n\n}",
55940      "type": "function",
55941      "desc": "Fires before the component is hidden. Return false to stop the hide."
55942     },
55943     {
55944      "name": "beforerender",
55945      "sig": "function (_self)\n{\n\n}",
55946      "type": "function",
55947      "desc": "Fires before the component is rendered. Return false to stop the render."
55948     },
55949     {
55950      "name": "beforeshow",
55951      "sig": "function (_self)\n{\n\n}",
55952      "type": "function",
55953      "desc": "Fires before the component is shown.  Return false to stop the show."
55954     },
55955     {
55956      "name": "childrenrendered",
55957      "sig": "function (_self)\n{\n\n}",
55958      "type": "function",
55959      "desc": "Fires when the children have been rendered.."
55960     },
55961     {
55962      "name": "destroy",
55963      "sig": "function (_self)\n{\n\n}",
55964      "type": "function",
55965      "desc": "Fires after the component is destroyed."
55966     },
55967     {
55968      "name": "disable",
55969      "sig": "function (_self)\n{\n\n}",
55970      "type": "function",
55971      "desc": "Fires after the component is disabled."
55972     },
55973     {
55974      "name": "enable",
55975      "sig": "function (_self)\n{\n\n}",
55976      "type": "function",
55977      "desc": "Fires after the component is enabled."
55978     },
55979     {
55980      "name": "hide",
55981      "sig": "function (_self)\n{\n\n}",
55982      "type": "function",
55983      "desc": "Fires after the component is hidden."
55984     },
55985     {
55986      "name": "render",
55987      "sig": "function (_self)\n{\n\n}",
55988      "type": "function",
55989      "desc": "Fires after the component is rendered."
55990     },
55991     {
55992      "name": "show",
55993      "sig": "function (_self)\n{\n\n}",
55994      "type": "function",
55995      "desc": "Fires after the component is shown."
55996     }
55997    ],
55998    "methods": [
55999     {
56000      "name": "addEvents",
56001      "sig": "(Object object)",
56002      "type": "function",
56003      "desc": "Used to define events on this Observable"
56004     },
56005     {
56006      "name": "addListener",
56007      "sig": "(String eventName, Function handler, Object scope, Object options)",
56008      "type": "function",
56009      "desc": "Appends an event handler to this component"
56010     },
56011     {
56012      "name": "capture",
56013      "sig": "(Observable o, Function fn, Object scope)",
56014      "type": "function",
56015      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
56016     },
56017     {
56018      "name": "destroy",
56019      "sig": "()",
56020      "type": "function",
56021      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
56022     },
56023     {
56024      "name": "disable",
56025      "sig": "()",
56026      "type": "function",
56027      "desc": "Disable this component."
56028     },
56029     {
56030      "name": "enable",
56031      "sig": "()",
56032      "type": "function",
56033      "desc": "Enable this component."
56034     },
56035     {
56036      "name": "fireEvent",
56037      "sig": "(String eventName, Object... args)",
56038      "type": "function",
56039      "desc": "Fires the specified event with the passed parameters (minus the event name)."
56040     },
56041     {
56042      "name": "focus",
56043      "sig": "(Boolean selectText)",
56044      "type": "function",
56045      "desc": "Try to focus this component."
56046     },
56047     {
56048      "name": "getChildContainer",
56049      "sig": "()",
56050      "type": "function",
56051      "desc": "Fetch the element to add children to"
56052     },
56053     {
56054      "name": "getEl",
56055      "sig": "()",
56056      "type": "function",
56057      "desc": "Returns the underlying {@link Roo.Element}."
56058     },
56059     {
56060      "name": "getId",
56061      "sig": "()",
56062      "type": "function",
56063      "desc": "Returns the id of this component."
56064     },
56065     {
56066      "name": "hasListener",
56067      "sig": "(String eventName)",
56068      "type": "function",
56069      "desc": "Checks to see if this object has any listeners for a specified event"
56070     },
56071     {
56072      "name": "hide",
56073      "sig": "()",
56074      "type": "function",
56075      "desc": "Hide a component - adds 'hidden' class"
56076     },
56077     {
56078      "name": "initEvents",
56079      "sig": "()",
56080      "type": "function",
56081      "desc": "Initialize Events for the element"
56082     },
56083     {
56084      "name": "isVisible",
56085      "sig": "()",
56086      "type": "function",
56087      "desc": "Returns true if this component is visible."
56088     },
56089     {
56090      "name": "on",
56091      "sig": "(String eventName, Function handler, Object scope, Object options)",
56092      "type": "function",
56093      "desc": "Appends an event handler to this element (shorthand for addListener)"
56094     },
56095     {
56096      "name": "purgeListeners",
56097      "sig": "()",
56098      "type": "function",
56099      "desc": "Removes all listeners for this object"
56100     },
56101     {
56102      "name": "releaseCapture",
56103      "sig": "(Observable o)",
56104      "type": "function",
56105      "desc": "Removes <b>all</b> added captures from the Observable."
56106     },
56107     {
56108      "name": "removeListener",
56109      "sig": "(String eventName, Function handler, Object scope)",
56110      "type": "function",
56111      "desc": "Removes a listener"
56112     },
56113     {
56114      "name": "render",
56115      "sig": "(String/HTMLElement/Element container)",
56116      "type": "function",
56117      "desc": "If this is a lazy rendering component, render it to its container element."
56118     },
56119     {
56120      "name": "setDisabled",
56121      "sig": "(Boolean disabled)",
56122      "type": "function",
56123      "desc": "Convenience function for setting disabled/enabled by boolean."
56124     },
56125     {
56126      "name": "setVisible",
56127      "sig": "(Boolean visible)",
56128      "type": "function",
56129      "desc": "Convenience function to hide or show this component by boolean."
56130     },
56131     {
56132      "name": "show",
56133      "sig": "()",
56134      "type": "function",
56135      "desc": "Show a component - removes 'hidden' class"
56136     },
56137     {
56138      "name": "tooltipEl",
56139      "sig": "()",
56140      "type": "function",
56141      "desc": "Fetch the element to display the tooltip on."
56142     },
56143     {
56144      "name": "un",
56145      "sig": "(String eventName, Function handler, Object scope)",
56146      "type": "function",
56147      "desc": "Removes a listener (shorthand for removeListener)"
56148     }
56149    ]
56150   },
56151   "Roo.doc.Para": {
56152    "props": [
56153     {
56154      "name": "html",
56155      "type": "String",
56156      "desc": "",
56157      "memberOf": ""
56158     },
56159     {
56160      "name": "cls",
56161      "type": "String",
56162      "desc": "css class",
56163      "memberOf": "Roo.bootstrap.Component"
56164     },
56165     {
56166      "name": "style",
56167      "type": "String",
56168      "desc": "any extra css",
56169      "memberOf": "Roo.bootstrap.Component"
56170     },
56171     {
56172      "name": "xattr",
56173      "type": "Object",
56174      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
56175      "memberOf": "Roo.bootstrap.Component"
56176     },
56177     {
56178      "name": "can_build_overlaid",
56179      "type": "Boolean",
56180      "desc": "True if element can be rebuild from a HTML page",
56181      "memberOf": "Roo.bootstrap.Component"
56182     },
56183     {
56184      "name": "dataId",
56185      "type": "string",
56186      "desc": "cutomer id",
56187      "memberOf": "Roo.bootstrap.Component"
56188     },
56189     {
56190      "name": "name",
56191      "type": "string",
56192      "desc": "Specifies name attribute",
56193      "memberOf": "Roo.bootstrap.Component"
56194     },
56195     {
56196      "name": "tooltip",
56197      "type": "string",
56198      "desc": "Text for the tooltip",
56199      "memberOf": "Roo.bootstrap.Component"
56200     },
56201     {
56202      "name": "container_method",
56203      "type": "string",
56204      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
56205      "memberOf": "Roo.bootstrap.Component"
56206     },
56207     {
56208      "name": "disableClass",
56209      "type": "String",
56210      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
56211      "memberOf": "Roo.Component"
56212     },
56213     {
56214      "name": "allowDomMove",
56215      "type": "Boolean",
56216      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
56217      "memberOf": "Roo.Component"
56218     },
56219     {
56220      "name": "hideMode",
56221      "type": "String",
56222      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
56223      "memberOf": "Roo.Component",
56224      "optvals": [
56225       "display",
56226       "visibility"
56227      ]
56228     },
56229     {
56230      "name": "actionMode",
56231      "type": "String",
56232      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
56233      "memberOf": "Roo.Component"
56234     },
56235     {
56236      "name": "listeners",
56237      "type": "Object",
56238      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
56239      "memberOf": "Roo.util.Observable"
56240     }
56241    ],
56242    "events": [
56243     {
56244      "name": "beforedestroy",
56245      "sig": "function (_self)\n{\n\n}",
56246      "type": "function",
56247      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
56248     },
56249     {
56250      "name": "beforehide",
56251      "sig": "function (_self)\n{\n\n}",
56252      "type": "function",
56253      "desc": "Fires before the component is hidden. Return false to stop the hide."
56254     },
56255     {
56256      "name": "beforerender",
56257      "sig": "function (_self)\n{\n\n}",
56258      "type": "function",
56259      "desc": "Fires before the component is rendered. Return false to stop the render."
56260     },
56261     {
56262      "name": "beforeshow",
56263      "sig": "function (_self)\n{\n\n}",
56264      "type": "function",
56265      "desc": "Fires before the component is shown.  Return false to stop the show."
56266     },
56267     {
56268      "name": "childrenrendered",
56269      "sig": "function (_self)\n{\n\n}",
56270      "type": "function",
56271      "desc": "Fires when the children have been rendered.."
56272     },
56273     {
56274      "name": "destroy",
56275      "sig": "function (_self)\n{\n\n}",
56276      "type": "function",
56277      "desc": "Fires after the component is destroyed."
56278     },
56279     {
56280      "name": "disable",
56281      "sig": "function (_self)\n{\n\n}",
56282      "type": "function",
56283      "desc": "Fires after the component is disabled."
56284     },
56285     {
56286      "name": "enable",
56287      "sig": "function (_self)\n{\n\n}",
56288      "type": "function",
56289      "desc": "Fires after the component is enabled."
56290     },
56291     {
56292      "name": "hide",
56293      "sig": "function (_self)\n{\n\n}",
56294      "type": "function",
56295      "desc": "Fires after the component is hidden."
56296     },
56297     {
56298      "name": "render",
56299      "sig": "function (_self)\n{\n\n}",
56300      "type": "function",
56301      "desc": "Fires after the component is rendered."
56302     },
56303     {
56304      "name": "show",
56305      "sig": "function (_self)\n{\n\n}",
56306      "type": "function",
56307      "desc": "Fires after the component is shown."
56308     }
56309    ],
56310    "methods": [
56311     {
56312      "name": "addEvents",
56313      "sig": "(Object object)",
56314      "type": "function",
56315      "desc": "Used to define events on this Observable"
56316     },
56317     {
56318      "name": "addListener",
56319      "sig": "(String eventName, Function handler, Object scope, Object options)",
56320      "type": "function",
56321      "desc": "Appends an event handler to this component"
56322     },
56323     {
56324      "name": "capture",
56325      "sig": "(Observable o, Function fn, Object scope)",
56326      "type": "function",
56327      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
56328     },
56329     {
56330      "name": "destroy",
56331      "sig": "()",
56332      "type": "function",
56333      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
56334     },
56335     {
56336      "name": "disable",
56337      "sig": "()",
56338      "type": "function",
56339      "desc": "Disable this component."
56340     },
56341     {
56342      "name": "enable",
56343      "sig": "()",
56344      "type": "function",
56345      "desc": "Enable this component."
56346     },
56347     {
56348      "name": "fireEvent",
56349      "sig": "(String eventName, Object... args)",
56350      "type": "function",
56351      "desc": "Fires the specified event with the passed parameters (minus the event name)."
56352     },
56353     {
56354      "name": "focus",
56355      "sig": "(Boolean selectText)",
56356      "type": "function",
56357      "desc": "Try to focus this component."
56358     },
56359     {
56360      "name": "getChildContainer",
56361      "sig": "()",
56362      "type": "function",
56363      "desc": "Fetch the element to add children to"
56364     },
56365     {
56366      "name": "getEl",
56367      "sig": "()",
56368      "type": "function",
56369      "desc": "Returns the underlying {@link Roo.Element}."
56370     },
56371     {
56372      "name": "getId",
56373      "sig": "()",
56374      "type": "function",
56375      "desc": "Returns the id of this component."
56376     },
56377     {
56378      "name": "hasListener",
56379      "sig": "(String eventName)",
56380      "type": "function",
56381      "desc": "Checks to see if this object has any listeners for a specified event"
56382     },
56383     {
56384      "name": "hide",
56385      "sig": "()",
56386      "type": "function",
56387      "desc": "Hide a component - adds 'hidden' class"
56388     },
56389     {
56390      "name": "initEvents",
56391      "sig": "()",
56392      "type": "function",
56393      "desc": "Initialize Events for the element"
56394     },
56395     {
56396      "name": "isVisible",
56397      "sig": "()",
56398      "type": "function",
56399      "desc": "Returns true if this component is visible."
56400     },
56401     {
56402      "name": "on",
56403      "sig": "(String eventName, Function handler, Object scope, Object options)",
56404      "type": "function",
56405      "desc": "Appends an event handler to this element (shorthand for addListener)"
56406     },
56407     {
56408      "name": "purgeListeners",
56409      "sig": "()",
56410      "type": "function",
56411      "desc": "Removes all listeners for this object"
56412     },
56413     {
56414      "name": "releaseCapture",
56415      "sig": "(Observable o)",
56416      "type": "function",
56417      "desc": "Removes <b>all</b> added captures from the Observable."
56418     },
56419     {
56420      "name": "removeListener",
56421      "sig": "(String eventName, Function handler, Object scope)",
56422      "type": "function",
56423      "desc": "Removes a listener"
56424     },
56425     {
56426      "name": "render",
56427      "sig": "(String/HTMLElement/Element container)",
56428      "type": "function",
56429      "desc": "If this is a lazy rendering component, render it to its container element."
56430     },
56431     {
56432      "name": "setDisabled",
56433      "sig": "(Boolean disabled)",
56434      "type": "function",
56435      "desc": "Convenience function for setting disabled/enabled by boolean."
56436     },
56437     {
56438      "name": "setVisible",
56439      "sig": "(Boolean visible)",
56440      "type": "function",
56441      "desc": "Convenience function to hide or show this component by boolean."
56442     },
56443     {
56444      "name": "show",
56445      "sig": "()",
56446      "type": "function",
56447      "desc": "Show a component - removes 'hidden' class"
56448     },
56449     {
56450      "name": "tooltipEl",
56451      "sig": "()",
56452      "type": "function",
56453      "desc": "Fetch the element to display the tooltip on."
56454     },
56455     {
56456      "name": "un",
56457      "sig": "(String eventName, Function handler, Object scope)",
56458      "type": "function",
56459      "desc": "Removes a listener (shorthand for removeListener)"
56460     }
56461    ]
56462   },
56463   "Roo.doc.Param": {
56464    "props": [
56465     {
56466      "name": "is_optional",
56467      "type": "bool",
56468      "desc": "is the argument optional",
56469      "memberOf": ""
56470     },
56471     {
56472      "name": "type",
56473      "type": "String",
56474      "desc": "argument type",
56475      "memberOf": ""
56476     },
56477     {
56478      "name": "name",
56479      "type": "String",
56480      "desc": "name of the parameter",
56481      "memberOf": ""
56482     },
56483     {
56484      "name": "desc",
56485      "type": "String",
56486      "desc": "short description",
56487      "memberOf": ""
56488     },
56489     {
56490      "name": "defaultvalue",
56491      "type": "String",
56492      "desc": "default value",
56493      "memberOf": ""
56494     },
56495     {
56496      "name": "cls",
56497      "type": "String",
56498      "desc": "css class",
56499      "memberOf": "Roo.bootstrap.Component"
56500     },
56501     {
56502      "name": "style",
56503      "type": "String",
56504      "desc": "any extra css",
56505      "memberOf": "Roo.bootstrap.Component"
56506     },
56507     {
56508      "name": "xattr",
56509      "type": "Object",
56510      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
56511      "memberOf": "Roo.bootstrap.Component"
56512     },
56513     {
56514      "name": "can_build_overlaid",
56515      "type": "Boolean",
56516      "desc": "True if element can be rebuild from a HTML page",
56517      "memberOf": "Roo.bootstrap.Component"
56518     },
56519     {
56520      "name": "dataId",
56521      "type": "string",
56522      "desc": "cutomer id",
56523      "memberOf": "Roo.bootstrap.Component"
56524     },
56525     {
56526      "name": "tooltip",
56527      "type": "string",
56528      "desc": "Text for the tooltip",
56529      "memberOf": "Roo.bootstrap.Component"
56530     },
56531     {
56532      "name": "container_method",
56533      "type": "string",
56534      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
56535      "memberOf": "Roo.bootstrap.Component"
56536     },
56537     {
56538      "name": "disableClass",
56539      "type": "String",
56540      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
56541      "memberOf": "Roo.Component"
56542     },
56543     {
56544      "name": "allowDomMove",
56545      "type": "Boolean",
56546      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
56547      "memberOf": "Roo.Component"
56548     },
56549     {
56550      "name": "hideMode",
56551      "type": "String",
56552      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
56553      "memberOf": "Roo.Component",
56554      "optvals": [
56555       "display",
56556       "visibility"
56557      ]
56558     },
56559     {
56560      "name": "actionMode",
56561      "type": "String",
56562      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
56563      "memberOf": "Roo.Component"
56564     },
56565     {
56566      "name": "listeners",
56567      "type": "Object",
56568      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
56569      "memberOf": "Roo.util.Observable"
56570     }
56571    ],
56572    "events": [
56573     {
56574      "name": "beforedestroy",
56575      "sig": "function (_self)\n{\n\n}",
56576      "type": "function",
56577      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
56578     },
56579     {
56580      "name": "beforehide",
56581      "sig": "function (_self)\n{\n\n}",
56582      "type": "function",
56583      "desc": "Fires before the component is hidden. Return false to stop the hide."
56584     },
56585     {
56586      "name": "beforerender",
56587      "sig": "function (_self)\n{\n\n}",
56588      "type": "function",
56589      "desc": "Fires before the component is rendered. Return false to stop the render."
56590     },
56591     {
56592      "name": "beforeshow",
56593      "sig": "function (_self)\n{\n\n}",
56594      "type": "function",
56595      "desc": "Fires before the component is shown.  Return false to stop the show."
56596     },
56597     {
56598      "name": "childrenrendered",
56599      "sig": "function (_self)\n{\n\n}",
56600      "type": "function",
56601      "desc": "Fires when the children have been rendered.."
56602     },
56603     {
56604      "name": "destroy",
56605      "sig": "function (_self)\n{\n\n}",
56606      "type": "function",
56607      "desc": "Fires after the component is destroyed."
56608     },
56609     {
56610      "name": "disable",
56611      "sig": "function (_self)\n{\n\n}",
56612      "type": "function",
56613      "desc": "Fires after the component is disabled."
56614     },
56615     {
56616      "name": "enable",
56617      "sig": "function (_self)\n{\n\n}",
56618      "type": "function",
56619      "desc": "Fires after the component is enabled."
56620     },
56621     {
56622      "name": "hide",
56623      "sig": "function (_self)\n{\n\n}",
56624      "type": "function",
56625      "desc": "Fires after the component is hidden."
56626     },
56627     {
56628      "name": "render",
56629      "sig": "function (_self)\n{\n\n}",
56630      "type": "function",
56631      "desc": "Fires after the component is rendered."
56632     },
56633     {
56634      "name": "show",
56635      "sig": "function (_self)\n{\n\n}",
56636      "type": "function",
56637      "desc": "Fires after the component is shown."
56638     }
56639    ],
56640    "methods": [
56641     {
56642      "name": "addEvents",
56643      "sig": "(Object object)",
56644      "type": "function",
56645      "desc": "Used to define events on this Observable"
56646     },
56647     {
56648      "name": "addListener",
56649      "sig": "(String eventName, Function handler, Object scope, Object options)",
56650      "type": "function",
56651      "desc": "Appends an event handler to this component"
56652     },
56653     {
56654      "name": "capture",
56655      "sig": "(Observable o, Function fn, Object scope)",
56656      "type": "function",
56657      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
56658     },
56659     {
56660      "name": "destroy",
56661      "sig": "()",
56662      "type": "function",
56663      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
56664     },
56665     {
56666      "name": "disable",
56667      "sig": "()",
56668      "type": "function",
56669      "desc": "Disable this component."
56670     },
56671     {
56672      "name": "enable",
56673      "sig": "()",
56674      "type": "function",
56675      "desc": "Enable this component."
56676     },
56677     {
56678      "name": "fireEvent",
56679      "sig": "(String eventName, Object... args)",
56680      "type": "function",
56681      "desc": "Fires the specified event with the passed parameters (minus the event name)."
56682     },
56683     {
56684      "name": "focus",
56685      "sig": "(Boolean selectText)",
56686      "type": "function",
56687      "desc": "Try to focus this component."
56688     },
56689     {
56690      "name": "getChildContainer",
56691      "sig": "()",
56692      "type": "function",
56693      "desc": "Fetch the element to add children to"
56694     },
56695     {
56696      "name": "getEl",
56697      "sig": "()",
56698      "type": "function",
56699      "desc": "Returns the underlying {@link Roo.Element}."
56700     },
56701     {
56702      "name": "getId",
56703      "sig": "()",
56704      "type": "function",
56705      "desc": "Returns the id of this component."
56706     },
56707     {
56708      "name": "hasListener",
56709      "sig": "(String eventName)",
56710      "type": "function",
56711      "desc": "Checks to see if this object has any listeners for a specified event"
56712     },
56713     {
56714      "name": "hide",
56715      "sig": "()",
56716      "type": "function",
56717      "desc": "Hide a component - adds 'hidden' class"
56718     },
56719     {
56720      "name": "initEvents",
56721      "sig": "()",
56722      "type": "function",
56723      "desc": "Initialize Events for the element"
56724     },
56725     {
56726      "name": "isVisible",
56727      "sig": "()",
56728      "type": "function",
56729      "desc": "Returns true if this component is visible."
56730     },
56731     {
56732      "name": "on",
56733      "sig": "(String eventName, Function handler, Object scope, Object options)",
56734      "type": "function",
56735      "desc": "Appends an event handler to this element (shorthand for addListener)"
56736     },
56737     {
56738      "name": "purgeListeners",
56739      "sig": "()",
56740      "type": "function",
56741      "desc": "Removes all listeners for this object"
56742     },
56743     {
56744      "name": "releaseCapture",
56745      "sig": "(Observable o)",
56746      "type": "function",
56747      "desc": "Removes <b>all</b> added captures from the Observable."
56748     },
56749     {
56750      "name": "removeListener",
56751      "sig": "(String eventName, Function handler, Object scope)",
56752      "type": "function",
56753      "desc": "Removes a listener"
56754     },
56755     {
56756      "name": "render",
56757      "sig": "(String/HTMLElement/Element container)",
56758      "type": "function",
56759      "desc": "If this is a lazy rendering component, render it to its container element."
56760     },
56761     {
56762      "name": "setDisabled",
56763      "sig": "(Boolean disabled)",
56764      "type": "function",
56765      "desc": "Convenience function for setting disabled/enabled by boolean."
56766     },
56767     {
56768      "name": "setVisible",
56769      "sig": "(Boolean visible)",
56770      "type": "function",
56771      "desc": "Convenience function to hide or show this component by boolean."
56772     },
56773     {
56774      "name": "show",
56775      "sig": "()",
56776      "type": "function",
56777      "desc": "Show a component - removes 'hidden' class"
56778     },
56779     {
56780      "name": "tooltipEl",
56781      "sig": "()",
56782      "type": "function",
56783      "desc": "Fetch the element to display the tooltip on."
56784     },
56785     {
56786      "name": "un",
56787      "sig": "(String eventName, Function handler, Object scope)",
56788      "type": "function",
56789      "desc": "Removes a listener (shorthand for removeListener)"
56790     }
56791    ]
56792   },
56793   "Roo.doc.Section": {
56794    "props": [
56795     {
56796      "name": "stype",
56797      "type": "String",
56798      "desc": "section type.",
56799      "memberOf": "",
56800      "optvals": [
56801       "desc",
56802       "parameter",
56803       "return",
56804       "note",
56805       "example"
56806      ]
56807     },
56808     {
56809      "name": "cls",
56810      "type": "String",
56811      "desc": "css class",
56812      "memberOf": "Roo.bootstrap.Component"
56813     },
56814     {
56815      "name": "style",
56816      "type": "String",
56817      "desc": "any extra css",
56818      "memberOf": "Roo.bootstrap.Component"
56819     },
56820     {
56821      "name": "xattr",
56822      "type": "Object",
56823      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
56824      "memberOf": "Roo.bootstrap.Component"
56825     },
56826     {
56827      "name": "can_build_overlaid",
56828      "type": "Boolean",
56829      "desc": "True if element can be rebuild from a HTML page",
56830      "memberOf": "Roo.bootstrap.Component"
56831     },
56832     {
56833      "name": "dataId",
56834      "type": "string",
56835      "desc": "cutomer id",
56836      "memberOf": "Roo.bootstrap.Component"
56837     },
56838     {
56839      "name": "name",
56840      "type": "string",
56841      "desc": "Specifies name attribute",
56842      "memberOf": "Roo.bootstrap.Component"
56843     },
56844     {
56845      "name": "tooltip",
56846      "type": "string",
56847      "desc": "Text for the tooltip",
56848      "memberOf": "Roo.bootstrap.Component"
56849     },
56850     {
56851      "name": "container_method",
56852      "type": "string",
56853      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
56854      "memberOf": "Roo.bootstrap.Component"
56855     },
56856     {
56857      "name": "disableClass",
56858      "type": "String",
56859      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
56860      "memberOf": "Roo.Component"
56861     },
56862     {
56863      "name": "allowDomMove",
56864      "type": "Boolean",
56865      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
56866      "memberOf": "Roo.Component"
56867     },
56868     {
56869      "name": "hideMode",
56870      "type": "String",
56871      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
56872      "memberOf": "Roo.Component",
56873      "optvals": [
56874       "display",
56875       "visibility"
56876      ]
56877     },
56878     {
56879      "name": "actionMode",
56880      "type": "String",
56881      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
56882      "memberOf": "Roo.Component"
56883     },
56884     {
56885      "name": "listeners",
56886      "type": "Object",
56887      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
56888      "memberOf": "Roo.util.Observable"
56889     }
56890    ],
56891    "events": [
56892     {
56893      "name": "beforedestroy",
56894      "sig": "function (_self)\n{\n\n}",
56895      "type": "function",
56896      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
56897     },
56898     {
56899      "name": "beforehide",
56900      "sig": "function (_self)\n{\n\n}",
56901      "type": "function",
56902      "desc": "Fires before the component is hidden. Return false to stop the hide."
56903     },
56904     {
56905      "name": "beforerender",
56906      "sig": "function (_self)\n{\n\n}",
56907      "type": "function",
56908      "desc": "Fires before the component is rendered. Return false to stop the render."
56909     },
56910     {
56911      "name": "beforeshow",
56912      "sig": "function (_self)\n{\n\n}",
56913      "type": "function",
56914      "desc": "Fires before the component is shown.  Return false to stop the show."
56915     },
56916     {
56917      "name": "childrenrendered",
56918      "sig": "function (_self)\n{\n\n}",
56919      "type": "function",
56920      "desc": "Fires when the children have been rendered.."
56921     },
56922     {
56923      "name": "destroy",
56924      "sig": "function (_self)\n{\n\n}",
56925      "type": "function",
56926      "desc": "Fires after the component is destroyed."
56927     },
56928     {
56929      "name": "disable",
56930      "sig": "function (_self)\n{\n\n}",
56931      "type": "function",
56932      "desc": "Fires after the component is disabled."
56933     },
56934     {
56935      "name": "enable",
56936      "sig": "function (_self)\n{\n\n}",
56937      "type": "function",
56938      "desc": "Fires after the component is enabled."
56939     },
56940     {
56941      "name": "hide",
56942      "sig": "function (_self)\n{\n\n}",
56943      "type": "function",
56944      "desc": "Fires after the component is hidden."
56945     },
56946     {
56947      "name": "render",
56948      "sig": "function (_self)\n{\n\n}",
56949      "type": "function",
56950      "desc": "Fires after the component is rendered."
56951     },
56952     {
56953      "name": "show",
56954      "sig": "function (_self)\n{\n\n}",
56955      "type": "function",
56956      "desc": "Fires after the component is shown."
56957     }
56958    ],
56959    "methods": [
56960     {
56961      "name": "addEvents",
56962      "sig": "(Object object)",
56963      "type": "function",
56964      "desc": "Used to define events on this Observable"
56965     },
56966     {
56967      "name": "addListener",
56968      "sig": "(String eventName, Function handler, Object scope, Object options)",
56969      "type": "function",
56970      "desc": "Appends an event handler to this component"
56971     },
56972     {
56973      "name": "capture",
56974      "sig": "(Observable o, Function fn, Object scope)",
56975      "type": "function",
56976      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
56977     },
56978     {
56979      "name": "destroy",
56980      "sig": "()",
56981      "type": "function",
56982      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
56983     },
56984     {
56985      "name": "disable",
56986      "sig": "()",
56987      "type": "function",
56988      "desc": "Disable this component."
56989     },
56990     {
56991      "name": "enable",
56992      "sig": "()",
56993      "type": "function",
56994      "desc": "Enable this component."
56995     },
56996     {
56997      "name": "fireEvent",
56998      "sig": "(String eventName, Object... args)",
56999      "type": "function",
57000      "desc": "Fires the specified event with the passed parameters (minus the event name)."
57001     },
57002     {
57003      "name": "focus",
57004      "sig": "(Boolean selectText)",
57005      "type": "function",
57006      "desc": "Try to focus this component."
57007     },
57008     {
57009      "name": "getChildContainer",
57010      "sig": "()",
57011      "type": "function",
57012      "desc": "Fetch the element to add children to"
57013     },
57014     {
57015      "name": "getEl",
57016      "sig": "()",
57017      "type": "function",
57018      "desc": "Returns the underlying {@link Roo.Element}."
57019     },
57020     {
57021      "name": "getId",
57022      "sig": "()",
57023      "type": "function",
57024      "desc": "Returns the id of this component."
57025     },
57026     {
57027      "name": "hasListener",
57028      "sig": "(String eventName)",
57029      "type": "function",
57030      "desc": "Checks to see if this object has any listeners for a specified event"
57031     },
57032     {
57033      "name": "hide",
57034      "sig": "()",
57035      "type": "function",
57036      "desc": "Hide a component - adds 'hidden' class"
57037     },
57038     {
57039      "name": "initEvents",
57040      "sig": "()",
57041      "type": "function",
57042      "desc": "Initialize Events for the element"
57043     },
57044     {
57045      "name": "isVisible",
57046      "sig": "()",
57047      "type": "function",
57048      "desc": "Returns true if this component is visible."
57049     },
57050     {
57051      "name": "on",
57052      "sig": "(String eventName, Function handler, Object scope, Object options)",
57053      "type": "function",
57054      "desc": "Appends an event handler to this element (shorthand for addListener)"
57055     },
57056     {
57057      "name": "purgeListeners",
57058      "sig": "()",
57059      "type": "function",
57060      "desc": "Removes all listeners for this object"
57061     },
57062     {
57063      "name": "releaseCapture",
57064      "sig": "(Observable o)",
57065      "type": "function",
57066      "desc": "Removes <b>all</b> added captures from the Observable."
57067     },
57068     {
57069      "name": "removeListener",
57070      "sig": "(String eventName, Function handler, Object scope)",
57071      "type": "function",
57072      "desc": "Removes a listener"
57073     },
57074     {
57075      "name": "render",
57076      "sig": "(String/HTMLElement/Element container)",
57077      "type": "function",
57078      "desc": "If this is a lazy rendering component, render it to its container element."
57079     },
57080     {
57081      "name": "setDisabled",
57082      "sig": "(Boolean disabled)",
57083      "type": "function",
57084      "desc": "Convenience function for setting disabled/enabled by boolean."
57085     },
57086     {
57087      "name": "setVisible",
57088      "sig": "(Boolean visible)",
57089      "type": "function",
57090      "desc": "Convenience function to hide or show this component by boolean."
57091     },
57092     {
57093      "name": "show",
57094      "sig": "()",
57095      "type": "function",
57096      "desc": "Show a component - removes 'hidden' class"
57097     },
57098     {
57099      "name": "tooltipEl",
57100      "sig": "()",
57101      "type": "function",
57102      "desc": "Fetch the element to display the tooltip on."
57103     },
57104     {
57105      "name": "un",
57106      "sig": "(String eventName, Function handler, Object scope)",
57107      "type": "function",
57108      "desc": "Removes a listener (shorthand for removeListener)"
57109     }
57110    ]
57111   },
57112   "Roo.doc.Synopsis": {
57113    "props": [
57114     {
57115      "name": "returntype",
57116      "type": "String",
57117      "desc": "return value",
57118      "memberOf": ""
57119     },
57120     {
57121      "name": "returndesc",
57122      "type": "String",
57123      "desc": "description of return value. (used in the return section if set..)",
57124      "memberOf": ""
57125     },
57126     {
57127      "name": "name",
57128      "type": "String",
57129      "desc": "title really..",
57130      "memberOf": ""
57131     },
57132     {
57133      "name": "stype",
57134      "type": "String",
57135      "desc": "",
57136      "memberOf": "",
57137      "optvals": [
57138       "function",
57139       "constant"
57140      ]
57141     },
57142     {
57143      "name": "memberof",
57144      "type": "String",
57145      "desc": "class name",
57146      "memberOf": ""
57147     },
57148     {
57149      "name": "is_static",
57150      "type": "bool",
57151      "desc": "is a static member",
57152      "memberOf": ""
57153     },
57154     {
57155      "name": "is_constructor",
57156      "type": "bool",
57157      "desc": "is a static member",
57158      "memberOf": ""
57159     },
57160     {
57161      "name": "cls",
57162      "type": "String",
57163      "desc": "css class",
57164      "memberOf": "Roo.bootstrap.Component"
57165     },
57166     {
57167      "name": "style",
57168      "type": "String",
57169      "desc": "any extra css",
57170      "memberOf": "Roo.bootstrap.Component"
57171     },
57172     {
57173      "name": "xattr",
57174      "type": "Object",
57175      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
57176      "memberOf": "Roo.bootstrap.Component"
57177     },
57178     {
57179      "name": "can_build_overlaid",
57180      "type": "Boolean",
57181      "desc": "True if element can be rebuild from a HTML page",
57182      "memberOf": "Roo.bootstrap.Component"
57183     },
57184     {
57185      "name": "dataId",
57186      "type": "string",
57187      "desc": "cutomer id",
57188      "memberOf": "Roo.bootstrap.Component"
57189     },
57190     {
57191      "name": "tooltip",
57192      "type": "string",
57193      "desc": "Text for the tooltip",
57194      "memberOf": "Roo.bootstrap.Component"
57195     },
57196     {
57197      "name": "container_method",
57198      "type": "string",
57199      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
57200      "memberOf": "Roo.bootstrap.Component"
57201     },
57202     {
57203      "name": "disableClass",
57204      "type": "String",
57205      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
57206      "memberOf": "Roo.Component"
57207     },
57208     {
57209      "name": "allowDomMove",
57210      "type": "Boolean",
57211      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
57212      "memberOf": "Roo.Component"
57213     },
57214     {
57215      "name": "hideMode",
57216      "type": "String",
57217      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
57218      "memberOf": "Roo.Component",
57219      "optvals": [
57220       "display",
57221       "visibility"
57222      ]
57223     },
57224     {
57225      "name": "actionMode",
57226      "type": "String",
57227      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
57228      "memberOf": "Roo.Component"
57229     },
57230     {
57231      "name": "listeners",
57232      "type": "Object",
57233      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
57234      "memberOf": "Roo.util.Observable"
57235     }
57236    ],
57237    "events": [
57238     {
57239      "name": "beforedestroy",
57240      "sig": "function (_self)\n{\n\n}",
57241      "type": "function",
57242      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
57243     },
57244     {
57245      "name": "beforehide",
57246      "sig": "function (_self)\n{\n\n}",
57247      "type": "function",
57248      "desc": "Fires before the component is hidden. Return false to stop the hide."
57249     },
57250     {
57251      "name": "beforerender",
57252      "sig": "function (_self)\n{\n\n}",
57253      "type": "function",
57254      "desc": "Fires before the component is rendered. Return false to stop the render."
57255     },
57256     {
57257      "name": "beforeshow",
57258      "sig": "function (_self)\n{\n\n}",
57259      "type": "function",
57260      "desc": "Fires before the component is shown.  Return false to stop the show."
57261     },
57262     {
57263      "name": "childrenrendered",
57264      "sig": "function (_self)\n{\n\n}",
57265      "type": "function",
57266      "desc": "Fires when the children have been rendered.."
57267     },
57268     {
57269      "name": "destroy",
57270      "sig": "function (_self)\n{\n\n}",
57271      "type": "function",
57272      "desc": "Fires after the component is destroyed."
57273     },
57274     {
57275      "name": "disable",
57276      "sig": "function (_self)\n{\n\n}",
57277      "type": "function",
57278      "desc": "Fires after the component is disabled."
57279     },
57280     {
57281      "name": "enable",
57282      "sig": "function (_self)\n{\n\n}",
57283      "type": "function",
57284      "desc": "Fires after the component is enabled."
57285     },
57286     {
57287      "name": "hide",
57288      "sig": "function (_self)\n{\n\n}",
57289      "type": "function",
57290      "desc": "Fires after the component is hidden."
57291     },
57292     {
57293      "name": "render",
57294      "sig": "function (_self)\n{\n\n}",
57295      "type": "function",
57296      "desc": "Fires after the component is rendered."
57297     },
57298     {
57299      "name": "show",
57300      "sig": "function (_self)\n{\n\n}",
57301      "type": "function",
57302      "desc": "Fires after the component is shown."
57303     }
57304    ],
57305    "methods": [
57306     {
57307      "name": "addEvents",
57308      "sig": "(Object object)",
57309      "type": "function",
57310      "desc": "Used to define events on this Observable"
57311     },
57312     {
57313      "name": "addListener",
57314      "sig": "(String eventName, Function handler, Object scope, Object options)",
57315      "type": "function",
57316      "desc": "Appends an event handler to this component"
57317     },
57318     {
57319      "name": "capture",
57320      "sig": "(Observable o, Function fn, Object scope)",
57321      "type": "function",
57322      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
57323     },
57324     {
57325      "name": "destroy",
57326      "sig": "()",
57327      "type": "function",
57328      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
57329     },
57330     {
57331      "name": "disable",
57332      "sig": "()",
57333      "type": "function",
57334      "desc": "Disable this component."
57335     },
57336     {
57337      "name": "enable",
57338      "sig": "()",
57339      "type": "function",
57340      "desc": "Enable this component."
57341     },
57342     {
57343      "name": "fireEvent",
57344      "sig": "(String eventName, Object... args)",
57345      "type": "function",
57346      "desc": "Fires the specified event with the passed parameters (minus the event name)."
57347     },
57348     {
57349      "name": "focus",
57350      "sig": "(Boolean selectText)",
57351      "type": "function",
57352      "desc": "Try to focus this component."
57353     },
57354     {
57355      "name": "getChildContainer",
57356      "sig": "()",
57357      "type": "function",
57358      "desc": "Fetch the element to add children to"
57359     },
57360     {
57361      "name": "getEl",
57362      "sig": "()",
57363      "type": "function",
57364      "desc": "Returns the underlying {@link Roo.Element}."
57365     },
57366     {
57367      "name": "getId",
57368      "sig": "()",
57369      "type": "function",
57370      "desc": "Returns the id of this component."
57371     },
57372     {
57373      "name": "hasListener",
57374      "sig": "(String eventName)",
57375      "type": "function",
57376      "desc": "Checks to see if this object has any listeners for a specified event"
57377     },
57378     {
57379      "name": "hide",
57380      "sig": "()",
57381      "type": "function",
57382      "desc": "Hide a component - adds 'hidden' class"
57383     },
57384     {
57385      "name": "initEvents",
57386      "sig": "()",
57387      "type": "function",
57388      "desc": "Initialize Events for the element"
57389     },
57390     {
57391      "name": "isVisible",
57392      "sig": "()",
57393      "type": "function",
57394      "desc": "Returns true if this component is visible."
57395     },
57396     {
57397      "name": "on",
57398      "sig": "(String eventName, Function handler, Object scope, Object options)",
57399      "type": "function",
57400      "desc": "Appends an event handler to this element (shorthand for addListener)"
57401     },
57402     {
57403      "name": "purgeListeners",
57404      "sig": "()",
57405      "type": "function",
57406      "desc": "Removes all listeners for this object"
57407     },
57408     {
57409      "name": "releaseCapture",
57410      "sig": "(Observable o)",
57411      "type": "function",
57412      "desc": "Removes <b>all</b> added captures from the Observable."
57413     },
57414     {
57415      "name": "removeListener",
57416      "sig": "(String eventName, Function handler, Object scope)",
57417      "type": "function",
57418      "desc": "Removes a listener"
57419     },
57420     {
57421      "name": "render",
57422      "sig": "(String/HTMLElement/Element container)",
57423      "type": "function",
57424      "desc": "If this is a lazy rendering component, render it to its container element."
57425     },
57426     {
57427      "name": "setDisabled",
57428      "sig": "(Boolean disabled)",
57429      "type": "function",
57430      "desc": "Convenience function for setting disabled/enabled by boolean."
57431     },
57432     {
57433      "name": "setVisible",
57434      "sig": "(Boolean visible)",
57435      "type": "function",
57436      "desc": "Convenience function to hide or show this component by boolean."
57437     },
57438     {
57439      "name": "show",
57440      "sig": "()",
57441      "type": "function",
57442      "desc": "Show a component - removes 'hidden' class"
57443     },
57444     {
57445      "name": "tooltipEl",
57446      "sig": "()",
57447      "type": "function",
57448      "desc": "Fetch the element to display the tooltip on."
57449     },
57450     {
57451      "name": "un",
57452      "sig": "(String eventName, Function handler, Object scope)",
57453      "type": "function",
57454      "desc": "Removes a listener (shorthand for removeListener)"
57455     }
57456    ]
57457   },
57458   "Roo.form": {
57459    "props": [],
57460    "events": [],
57461    "methods": []
57462   },
57463   "Roo.form.Action": {
57464    "props": [],
57465    "events": [],
57466    "methods": []
57467   },
57468   "Roo.form.BasicForm": {
57469    "props": [
57470     {
57471      "name": "method",
57472      "type": "String",
57473      "desc": "The request method to use (GET or POST) for form actions if one isn't supplied in the action options.",
57474      "memberOf": ""
57475     },
57476     {
57477      "name": "reader",
57478      "type": "DataReader",
57479      "desc": "An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing \"load\" actions.\nThis is optional as there is built-in support for processing JSON.",
57480      "memberOf": ""
57481     },
57482     {
57483      "name": "errorReader",
57484      "type": "DataReader",
57485      "desc": "An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on \"submit\" actions.\nThis is completely optional as there is built-in support for processing JSON.",
57486      "memberOf": ""
57487     },
57488     {
57489      "name": "url",
57490      "type": "String",
57491      "desc": "The URL to use for form actions if one isn't supplied in the action options.",
57492      "memberOf": ""
57493     },
57494     {
57495      "name": "fileUpload",
57496      "type": "Boolean",
57497      "desc": "Set to true if this form is a file upload.",
57498      "memberOf": ""
57499     },
57500     {
57501      "name": "baseParams",
57502      "type": "Object",
57503      "desc": "Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.",
57504      "memberOf": ""
57505     },
57506     {
57507      "name": "timeout",
57508      "type": "Number",
57509      "desc": "Timeout for form actions in seconds (default is 30 seconds).",
57510      "memberOf": ""
57511     },
57512     {
57513      "name": "trackResetOnLoad",
57514      "type": "Boolean",
57515      "desc": "If set to true, form.reset() resets to the last loaded\nor setValues() data instead of when the form was first created.",
57516      "memberOf": ""
57517     },
57518     {
57519      "name": "listeners",
57520      "type": "Object",
57521      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
57522      "memberOf": "Roo.util.Observable"
57523     }
57524    ],
57525    "events": [
57526     {
57527      "name": "actioncomplete",
57528      "sig": "function (_self, action)\n{\n\n}",
57529      "type": "function",
57530      "desc": "Fires when an action is completed."
57531     },
57532     {
57533      "name": "actionfailed",
57534      "sig": "function (_self, action)\n{\n\n}",
57535      "type": "function",
57536      "desc": "Fires when an action fails."
57537     },
57538     {
57539      "name": "beforeaction",
57540      "sig": "function (_self, action)\n{\n\n}",
57541      "type": "function",
57542      "desc": "Fires before any action is performed. Return false to cancel the action."
57543     }
57544    ],
57545    "methods": [
57546     {
57547      "name": "add",
57548      "sig": "(Field field1, Field field2, Field etc)",
57549      "type": "function",
57550      "desc": "Add Roo.form components to this form."
57551     },
57552     {
57553      "name": "addEvents",
57554      "sig": "(Object object)",
57555      "type": "function",
57556      "desc": "Used to define events on this Observable"
57557     },
57558     {
57559      "name": "addForm",
57560      "sig": "(Roo.form.Form form)",
57561      "type": "function",
57562      "desc": "Add a secondary form to this one, \nUsed to provide tabbed forms. One form is primary, with hidden values \nwhich mirror the elements from the other forms."
57563     },
57564     {
57565      "name": "addListener",
57566      "sig": "(String eventName, Function handler, Object scope, Object options)",
57567      "type": "function",
57568      "desc": "Appends an event handler to this component"
57569     },
57570     {
57571      "name": "applyIfToFields",
57572      "sig": "(Object values)",
57573      "type": "function",
57574      "desc": "Calls {@link Ext#applyIf} for all field in this form with the passed object."
57575     },
57576     {
57577      "name": "applyToFields",
57578      "sig": "(Object values)",
57579      "type": "function",
57580      "desc": "Calls {@link Ext#apply} for all fields in this form with the passed object."
57581     },
57582     {
57583      "name": "capture",
57584      "sig": "(Observable o, Function fn, Object scope)",
57585      "type": "function",
57586      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
57587     },
57588     {
57589      "name": "clearInvalid",
57590      "sig": "()",
57591      "type": "function",
57592      "desc": "Clears all invalid messages in this form."
57593     },
57594     {
57595      "name": "doAction",
57596      "sig": "(String actionName, Object options)",
57597      "type": "function",
57598      "desc": "Performs a predefined action (submit or load) or custom actions you define on this form."
57599     },
57600     {
57601      "name": "findField",
57602      "sig": "(String id)",
57603      "type": "function",
57604      "desc": "Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName"
57605     },
57606     {
57607      "name": "fireEvent",
57608      "sig": "(String eventName, Object... args)",
57609      "type": "function",
57610      "desc": "Fires the specified event with the passed parameters (minus the event name)."
57611     },
57612     {
57613      "name": "getFieldValues",
57614      "sig": "()",
57615      "type": "function",
57616      "desc": "Returns the fields in this form as an object with key/value pairs. \nThis differs from getValues as it calls getValue on each child item, rather than using dom data."
57617     },
57618     {
57619      "name": "getValues",
57620      "sig": "(Boolean asString)",
57621      "type": "function",
57622      "desc": "Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name\nthey are returned as an array."
57623     },
57624     {
57625      "name": "hasChanged",
57626      "sig": "()",
57627      "type": "function",
57628      "desc": "Returns true if any fields in this form have changed since their original load. (New version)"
57629     },
57630     {
57631      "name": "hasListener",
57632      "sig": "(String eventName)",
57633      "type": "function",
57634      "desc": "Checks to see if this object has any listeners for a specified event"
57635     },
57636     {
57637      "name": "isDirty",
57638      "sig": "()",
57639      "type": "function",
57640      "desc": "DEPRICATED Returns true if any fields in this form have changed since their original load."
57641     },
57642     {
57643      "name": "isValid",
57644      "sig": "()",
57645      "type": "function",
57646      "desc": "Returns true if client-side validation on the form is successful."
57647     },
57648     {
57649      "name": "load",
57650      "sig": "(Object options)",
57651      "type": "function",
57652      "desc": "Shortcut to do a load action."
57653     },
57654     {
57655      "name": "loadRecord",
57656      "sig": "(Record record)",
57657      "type": "function",
57658      "desc": "Loads an Roo.data.Record into this form."
57659     },
57660     {
57661      "name": "markInvalid",
57662      "sig": "(Array/Object errors)",
57663      "type": "function",
57664      "desc": "Mark fields in this form invalid in bulk."
57665     },
57666     {
57667      "name": "on",
57668      "sig": "(String eventName, Function handler, Object scope, Object options)",
57669      "type": "function",
57670      "desc": "Appends an event handler to this element (shorthand for addListener)"
57671     },
57672     {
57673      "name": "purgeListeners",
57674      "sig": "()",
57675      "type": "function",
57676      "desc": "Removes all listeners for this object"
57677     },
57678     {
57679      "name": "releaseCapture",
57680      "sig": "(Observable o)",
57681      "type": "function",
57682      "desc": "Removes <b>all</b> added captures from the Observable."
57683     },
57684     {
57685      "name": "remove",
57686      "sig": "(Field field)",
57687      "type": "function",
57688      "desc": "Removes a field from the items collection (does NOT remove its markup)."
57689     },
57690     {
57691      "name": "removeListener",
57692      "sig": "(String eventName, Function handler, Object scope)",
57693      "type": "function",
57694      "desc": "Removes a listener"
57695     },
57696     {
57697      "name": "render",
57698      "sig": "()",
57699      "type": "function",
57700      "desc": "Looks at the fields in this form, checks them for an id attribute,\nand calls applyTo on the existing dom element with that id."
57701     },
57702     {
57703      "name": "reset",
57704      "sig": "()",
57705      "type": "function",
57706      "desc": "Resets this form."
57707     },
57708     {
57709      "name": "resetHasChanged",
57710      "sig": "()",
57711      "type": "function",
57712      "desc": "Resets all hasChanged to 'false' -\nThe old 'isDirty' used 'original value..' however this breaks reset() and a few other things.\nSo hasChanged storage is only to be used for this purpose"
57713     },
57714     {
57715      "name": "setValues",
57716      "sig": "(Array/Object values)",
57717      "type": "function",
57718      "desc": "Set values for fields in this form in bulk."
57719     },
57720     {
57721      "name": "submit",
57722      "sig": "(Object options)",
57723      "type": "function",
57724      "desc": "Shortcut to do a submit action."
57725     },
57726     {
57727      "name": "un",
57728      "sig": "(String eventName, Function handler, Object scope)",
57729      "type": "function",
57730      "desc": "Removes a listener (shorthand for removeListener)"
57731     },
57732     {
57733      "name": "updateRecord",
57734      "sig": "(Record record)",
57735      "type": "function",
57736      "desc": "Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block."
57737     }
57738    ]
57739   },
57740   "Roo.form.Checkbox": {
57741    "props": [
57742     {
57743      "name": "focusClass",
57744      "type": "String",
57745      "desc": "The CSS class to use when the checkbox receives focus (defaults to undefined)",
57746      "memberOf": ""
57747     },
57748     {
57749      "name": "fieldClass",
57750      "type": "String",
57751      "desc": "The default CSS class for the checkbox (defaults to \"x-form-field\")",
57752      "memberOf": ""
57753     },
57754     {
57755      "name": "checked",
57756      "type": "Boolean",
57757      "desc": "True if the the checkbox should render already checked (defaults to false)",
57758      "memberOf": ""
57759     },
57760     {
57761      "name": "autoCreate",
57762      "type": "String/Object",
57763      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"checkbox\", autocomplete: \"off\"})",
57764      "memberOf": ""
57765     },
57766     {
57767      "name": "boxLabel",
57768      "type": "String",
57769      "desc": "The text that appears beside the checkbox",
57770      "memberOf": ""
57771     },
57772     {
57773      "name": "inputValue",
57774      "type": "String",
57775      "desc": "The value that should go into the generated input element's value attribute",
57776      "memberOf": ""
57777     },
57778     {
57779      "name": "valueOff",
57780      "type": "String",
57781      "desc": "The value that should go into the generated input element's value when unchecked.",
57782      "memberOf": ""
57783     },
57784     {
57785      "name": "fieldLabel",
57786      "type": "String",
57787      "desc": "Label to use when rendering a form.",
57788      "memberOf": "Roo.form.Field"
57789     },
57790     {
57791      "name": "qtip",
57792      "type": "String",
57793      "desc": "Mouse over tip",
57794      "memberOf": "Roo.form.Field"
57795     },
57796     {
57797      "name": "name",
57798      "type": "String",
57799      "desc": "The field's HTML name attribute.",
57800      "memberOf": "Roo.form.Field"
57801     },
57802     {
57803      "name": "invalidClass",
57804      "type": "String",
57805      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
57806      "memberOf": "Roo.form.Field"
57807     },
57808     {
57809      "name": "invalidText",
57810      "type": "String",
57811      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
57812      "memberOf": "Roo.form.Field"
57813     },
57814     {
57815      "name": "validationEvent",
57816      "type": "String/Boolean",
57817      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
57818      "memberOf": "Roo.form.Field"
57819     },
57820     {
57821      "name": "validateOnBlur",
57822      "type": "Boolean",
57823      "desc": "Whether the field should validate when it loses focus (defaults to true).",
57824      "memberOf": "Roo.form.Field"
57825     },
57826     {
57827      "name": "validationDelay",
57828      "type": "Number",
57829      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
57830      "memberOf": "Roo.form.Field"
57831     },
57832     {
57833      "name": "msgTarget",
57834      "type": "String",
57835      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
57836      "memberOf": "Roo.form.Field"
57837     },
57838     {
57839      "name": "msgFx",
57840      "type": "String",
57841      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
57842      "memberOf": "Roo.form.Field"
57843     },
57844     {
57845      "name": "readOnly",
57846      "type": "Boolean",
57847      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
57848      "memberOf": "Roo.form.Field"
57849     },
57850     {
57851      "name": "disabled",
57852      "type": "Boolean",
57853      "desc": "True to disable the field (defaults to false).",
57854      "memberOf": "Roo.form.Field"
57855     },
57856     {
57857      "name": "inputType",
57858      "type": "String",
57859      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
57860      "memberOf": "Roo.form.Field"
57861     },
57862     {
57863      "name": "tabIndex",
57864      "type": "Number",
57865      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
57866      "memberOf": "Roo.form.Field"
57867     },
57868     {
57869      "name": "value",
57870      "type": "Mixed",
57871      "desc": "A value to initialize this field with.",
57872      "memberOf": "Roo.form.Field"
57873     },
57874     {
57875      "name": "cls",
57876      "type": "String",
57877      "desc": "A CSS class to apply to the field's underlying element.",
57878      "memberOf": "Roo.form.Field"
57879     },
57880     {
57881      "name": "width",
57882      "type": "Number",
57883      "desc": "width (optional) size of component",
57884      "memberOf": "Roo.BoxComponent"
57885     },
57886     {
57887      "name": "height",
57888      "type": "Number",
57889      "desc": "height (optional) size of component",
57890      "memberOf": "Roo.BoxComponent"
57891     },
57892     {
57893      "name": "disableClass",
57894      "type": "String",
57895      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
57896      "memberOf": "Roo.Component"
57897     },
57898     {
57899      "name": "allowDomMove",
57900      "type": "Boolean",
57901      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
57902      "memberOf": "Roo.Component"
57903     },
57904     {
57905      "name": "hideMode",
57906      "type": "String",
57907      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
57908      "memberOf": "Roo.Component",
57909      "optvals": [
57910       "display",
57911       "visibility"
57912      ]
57913     },
57914     {
57915      "name": "actionMode",
57916      "type": "String",
57917      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
57918      "memberOf": "Roo.Component"
57919     },
57920     {
57921      "name": "listeners",
57922      "type": "Object",
57923      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
57924      "memberOf": "Roo.util.Observable"
57925     }
57926    ],
57927    "events": [
57928     {
57929      "name": "beforedestroy",
57930      "sig": "function (_self)\n{\n\n}",
57931      "type": "function",
57932      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
57933     },
57934     {
57935      "name": "beforehide",
57936      "sig": "function (_self)\n{\n\n}",
57937      "type": "function",
57938      "desc": "Fires before the component is hidden. Return false to stop the hide."
57939     },
57940     {
57941      "name": "beforerender",
57942      "sig": "function (_self)\n{\n\n}",
57943      "type": "function",
57944      "desc": "Fires before the component is rendered. Return false to stop the render."
57945     },
57946     {
57947      "name": "beforeshow",
57948      "sig": "function (_self)\n{\n\n}",
57949      "type": "function",
57950      "desc": "Fires before the component is shown.  Return false to stop the show."
57951     },
57952     {
57953      "name": "blur",
57954      "sig": "function (_self)\n{\n\n}",
57955      "type": "function",
57956      "desc": "Fires when this field loses input focus."
57957     },
57958     {
57959      "name": "change",
57960      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
57961      "type": "function",
57962      "desc": "Fires just before the field blurs if the field value has changed."
57963     },
57964     {
57965      "name": "check",
57966      "sig": "function (_self, checked)\n{\n\n}",
57967      "type": "function",
57968      "desc": "Fires when the checkbox is checked or unchecked."
57969     },
57970     {
57971      "name": "destroy",
57972      "sig": "function (_self)\n{\n\n}",
57973      "type": "function",
57974      "desc": "Fires after the component is destroyed."
57975     },
57976     {
57977      "name": "disable",
57978      "sig": "function (_self)\n{\n\n}",
57979      "type": "function",
57980      "desc": "Fires after the component is disabled."
57981     },
57982     {
57983      "name": "enable",
57984      "sig": "function (_self)\n{\n\n}",
57985      "type": "function",
57986      "desc": "Fires after the component is enabled."
57987     },
57988     {
57989      "name": "focus",
57990      "sig": "function (_self)\n{\n\n}",
57991      "type": "function",
57992      "desc": "Fires when this field receives input focus."
57993     },
57994     {
57995      "name": "hide",
57996      "sig": "function (_self)\n{\n\n}",
57997      "type": "function",
57998      "desc": "Fires after the component is hidden."
57999     },
58000     {
58001      "name": "invalid",
58002      "sig": "function (_self, msg)\n{\n\n}",
58003      "type": "function",
58004      "desc": "Fires after the field has been marked as invalid."
58005     },
58006     {
58007      "name": "keyup",
58008      "sig": "function (_self, e)\n{\n\n}",
58009      "type": "function",
58010      "desc": "Fires after the key up"
58011     },
58012     {
58013      "name": "move",
58014      "sig": "function (_self, x, y)\n{\n\n}",
58015      "type": "function",
58016      "desc": "Fires after the component is moved."
58017     },
58018     {
58019      "name": "render",
58020      "sig": "function (_self)\n{\n\n}",
58021      "type": "function",
58022      "desc": "Fires after the component is rendered."
58023     },
58024     {
58025      "name": "resize",
58026      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
58027      "type": "function",
58028      "desc": "Fires after the component is resized."
58029     },
58030     {
58031      "name": "show",
58032      "sig": "function (_self)\n{\n\n}",
58033      "type": "function",
58034      "desc": "Fires after the component is shown."
58035     },
58036     {
58037      "name": "specialkey",
58038      "sig": "function (_self, e)\n{\n\n}",
58039      "type": "function",
58040      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
58041     },
58042     {
58043      "name": "valid",
58044      "sig": "function (_self)\n{\n\n}",
58045      "type": "function",
58046      "desc": "Fires after the field has been validated with no errors."
58047     }
58048    ],
58049    "methods": [
58050     {
58051      "name": "addEvents",
58052      "sig": "(Object object)",
58053      "type": "function",
58054      "desc": "Used to define events on this Observable"
58055     },
58056     {
58057      "name": "addListener",
58058      "sig": "(String eventName, Function handler, Object scope, Object options)",
58059      "type": "function",
58060      "desc": "Appends an event handler to this component"
58061     },
58062     {
58063      "name": "applyTo",
58064      "sig": "(String/HTMLElement/Element el)",
58065      "type": "function",
58066      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
58067     },
58068     {
58069      "name": "capture",
58070      "sig": "(Observable o, Function fn, Object scope)",
58071      "type": "function",
58072      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
58073     },
58074     {
58075      "name": "clearInvalid",
58076      "sig": "()",
58077      "type": "function",
58078      "desc": "Clear any invalid styles/messages for this field"
58079     },
58080     {
58081      "name": "destroy",
58082      "sig": "()",
58083      "type": "function",
58084      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
58085     },
58086     {
58087      "name": "disable",
58088      "sig": "()",
58089      "type": "function",
58090      "desc": "Disable this component."
58091     },
58092     {
58093      "name": "enable",
58094      "sig": "()",
58095      "type": "function",
58096      "desc": "Enable this component."
58097     },
58098     {
58099      "name": "fireEvent",
58100      "sig": "(String eventName, Object... args)",
58101      "type": "function",
58102      "desc": "Fires the specified event with the passed parameters (minus the event name)."
58103     },
58104     {
58105      "name": "focus",
58106      "sig": "(Boolean selectText)",
58107      "type": "function",
58108      "desc": "Try to focus this component."
58109     },
58110     {
58111      "name": "getBox",
58112      "sig": "(Boolean local)",
58113      "type": "function",
58114      "desc": "Gets the current box measurements of the component's underlying element."
58115     },
58116     {
58117      "name": "getEl",
58118      "sig": "()",
58119      "type": "function",
58120      "desc": "Returns the underlying {@link Roo.Element}."
58121     },
58122     {
58123      "name": "getId",
58124      "sig": "()",
58125      "type": "function",
58126      "desc": "Returns the id of this component."
58127     },
58128     {
58129      "name": "getName",
58130      "sig": "()",
58131      "type": "function",
58132      "desc": "Returns the name attribute of the field if available"
58133     },
58134     {
58135      "name": "getPosition",
58136      "sig": "(Boolean local)",
58137      "type": "function",
58138      "desc": "Gets the current XY position of the component's underlying element."
58139     },
58140     {
58141      "name": "getRawValue",
58142      "sig": "()",
58143      "type": "function",
58144      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
58145     },
58146     {
58147      "name": "getSize",
58148      "sig": "()",
58149      "type": "function",
58150      "desc": "Gets the current size of the component's underlying element."
58151     },
58152     {
58153      "name": "getValue",
58154      "sig": "()",
58155      "type": "function",
58156      "desc": "Returns the checked state of the checkbox."
58157     },
58158     {
58159      "name": "hasChanged",
58160      "sig": "()",
58161      "type": "function",
58162      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
58163     },
58164     {
58165      "name": "hasListener",
58166      "sig": "(String eventName)",
58167      "type": "function",
58168      "desc": "Checks to see if this object has any listeners for a specified event"
58169     },
58170     {
58171      "name": "hide",
58172      "sig": "()",
58173      "type": "function",
58174      "desc": "Hide this component."
58175     },
58176     {
58177      "name": "isDirty",
58178      "sig": "()",
58179      "type": "function",
58180      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
58181     },
58182     {
58183      "name": "isValid",
58184      "sig": "(Boolean preventMark)",
58185      "type": "function",
58186      "desc": "Returns whether or not the field value is currently valid"
58187     },
58188     {
58189      "name": "isVisible",
58190      "sig": "()",
58191      "type": "function",
58192      "desc": "Returns true if this component is visible."
58193     },
58194     {
58195      "name": "markInvalid",
58196      "sig": "(String msg)",
58197      "type": "function",
58198      "desc": "Mark this field as invalid"
58199     },
58200     {
58201      "name": "on",
58202      "sig": "(String eventName, Function handler, Object scope, Object options)",
58203      "type": "function",
58204      "desc": "Appends an event handler to this element (shorthand for addListener)"
58205     },
58206     {
58207      "name": "onPosition",
58208      "sig": "(Number x, Number y)",
58209      "type": "function",
58210      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
58211     },
58212     {
58213      "name": "onResize",
58214      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
58215      "type": "function",
58216      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
58217     },
58218     {
58219      "name": "purgeListeners",
58220      "sig": "()",
58221      "type": "function",
58222      "desc": "Removes all listeners for this object"
58223     },
58224     {
58225      "name": "releaseCapture",
58226      "sig": "(Observable o)",
58227      "type": "function",
58228      "desc": "Removes <b>all</b> added captures from the Observable."
58229     },
58230     {
58231      "name": "removeListener",
58232      "sig": "(String eventName, Function handler, Object scope)",
58233      "type": "function",
58234      "desc": "Removes a listener"
58235     },
58236     {
58237      "name": "render",
58238      "sig": "(String/HTMLElement/Element container)",
58239      "type": "function",
58240      "desc": "If this is a lazy rendering component, render it to its container element."
58241     },
58242     {
58243      "name": "reset",
58244      "sig": "()",
58245      "type": "function",
58246      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
58247     },
58248     {
58249      "name": "resetHasChanged",
58250      "sig": "()",
58251      "type": "function",
58252      "desc": "stores the current value in loadedValue"
58253     },
58254     {
58255      "name": "setDisabled",
58256      "sig": "(Boolean disabled)",
58257      "type": "function",
58258      "desc": "Convenience function for setting disabled/enabled by boolean."
58259     },
58260     {
58261      "name": "setPagePosition",
58262      "sig": "(Number x, Number y)",
58263      "type": "function",
58264      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
58265     },
58266     {
58267      "name": "setPosition",
58268      "sig": "(Number left, Number top)",
58269      "type": "function",
58270      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
58271     },
58272     {
58273      "name": "setRawValue",
58274      "sig": "(Mixed value)",
58275      "type": "function",
58276      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
58277     },
58278     {
58279      "name": "setSize",
58280      "sig": "(Number/Object width, Number height)",
58281      "type": "function",
58282      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
58283     },
58284     {
58285      "name": "setValue",
58286      "sig": "(Boolean/String value, Boolean/String suppressEvent)",
58287      "type": "function",
58288      "desc": "Sets the checked state of the checkbox.\nOn is always based on a string comparison between inputValue and the param."
58289     },
58290     {
58291      "name": "setVisible",
58292      "sig": "(Boolean visible)",
58293      "type": "function",
58294      "desc": "Convenience function to hide or show this component by boolean."
58295     },
58296     {
58297      "name": "show",
58298      "sig": "()",
58299      "type": "function",
58300      "desc": "Show this component."
58301     },
58302     {
58303      "name": "syncSize",
58304      "sig": "()",
58305      "type": "function",
58306      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
58307     },
58308     {
58309      "name": "un",
58310      "sig": "(String eventName, Function handler, Object scope)",
58311      "type": "function",
58312      "desc": "Removes a listener (shorthand for removeListener)"
58313     },
58314     {
58315      "name": "updateBox",
58316      "sig": "(Object box)",
58317      "type": "function",
58318      "desc": "Sets the current box measurements of the component's underlying element."
58319     },
58320     {
58321      "name": "validate",
58322      "sig": "()",
58323      "type": "function",
58324      "desc": "Validates the field value"
58325     }
58326    ]
58327   },
58328   "Roo.form.Column": {
58329    "props": [
58330     {
58331      "name": "width",
58332      "type": "Number/String",
58333      "desc": "The fixed width of the column in pixels or CSS value (defaults to \"auto\")",
58334      "memberOf": ""
58335     },
58336     {
58337      "name": "autoCreate",
58338      "type": "String/Object",
58339      "desc": "A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})",
58340      "memberOf": ""
58341     },
58342     {
58343      "name": "style",
58344      "type": "String/Object/Function",
58345      "desc": "A style specification string, e.g. \"width:100px\", or object in the form {width:\"100px\"}, or\na function which returns such a specification.",
58346      "memberOf": "Roo.form.Layout"
58347     },
58348     {
58349      "name": "labelAlign",
58350      "type": "String",
58351      "desc": "Valid values are \"left,\" \"top\" and \"right\" (defaults to \"left\")",
58352      "memberOf": "Roo.form.Layout"
58353     },
58354     {
58355      "name": "labelWidth",
58356      "type": "Number",
58357      "desc": "Fixed width in pixels of all field labels (defaults to undefined)",
58358      "memberOf": "Roo.form.Layout"
58359     },
58360     {
58361      "name": "clear",
58362      "type": "Boolean",
58363      "desc": "True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)",
58364      "memberOf": "Roo.form.Layout"
58365     },
58366     {
58367      "name": "labelSeparator",
58368      "type": "String",
58369      "desc": "The separator to use after field labels (defaults to ':')",
58370      "memberOf": "Roo.form.Layout"
58371     },
58372     {
58373      "name": "hideLabels",
58374      "type": "Boolean",
58375      "desc": "True to suppress the display of field labels in this layout (defaults to false)",
58376      "memberOf": "Roo.form.Layout"
58377     },
58378     {
58379      "name": "disableClass",
58380      "type": "String",
58381      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
58382      "memberOf": "Roo.Component"
58383     },
58384     {
58385      "name": "allowDomMove",
58386      "type": "Boolean",
58387      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
58388      "memberOf": "Roo.Component"
58389     },
58390     {
58391      "name": "hideMode",
58392      "type": "String",
58393      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
58394      "memberOf": "Roo.Component",
58395      "optvals": [
58396       "display",
58397       "visibility"
58398      ]
58399     },
58400     {
58401      "name": "actionMode",
58402      "type": "String",
58403      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
58404      "memberOf": "Roo.Component"
58405     },
58406     {
58407      "name": "listeners",
58408      "type": "Object",
58409      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
58410      "memberOf": "Roo.util.Observable"
58411     }
58412    ],
58413    "events": [
58414     {
58415      "name": "beforedestroy",
58416      "sig": "function (_self)\n{\n\n}",
58417      "type": "function",
58418      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
58419     },
58420     {
58421      "name": "beforehide",
58422      "sig": "function (_self)\n{\n\n}",
58423      "type": "function",
58424      "desc": "Fires before the component is hidden. Return false to stop the hide."
58425     },
58426     {
58427      "name": "beforerender",
58428      "sig": "function (_self)\n{\n\n}",
58429      "type": "function",
58430      "desc": "Fires before the component is rendered. Return false to stop the render."
58431     },
58432     {
58433      "name": "beforeshow",
58434      "sig": "function (_self)\n{\n\n}",
58435      "type": "function",
58436      "desc": "Fires before the component is shown.  Return false to stop the show."
58437     },
58438     {
58439      "name": "destroy",
58440      "sig": "function (_self)\n{\n\n}",
58441      "type": "function",
58442      "desc": "Fires after the component is destroyed."
58443     },
58444     {
58445      "name": "disable",
58446      "sig": "function (_self)\n{\n\n}",
58447      "type": "function",
58448      "desc": "Fires after the component is disabled."
58449     },
58450     {
58451      "name": "enable",
58452      "sig": "function (_self)\n{\n\n}",
58453      "type": "function",
58454      "desc": "Fires after the component is enabled."
58455     },
58456     {
58457      "name": "hide",
58458      "sig": "function (_self)\n{\n\n}",
58459      "type": "function",
58460      "desc": "Fires after the component is hidden."
58461     },
58462     {
58463      "name": "render",
58464      "sig": "function (_self)\n{\n\n}",
58465      "type": "function",
58466      "desc": "Fires after the component is rendered."
58467     },
58468     {
58469      "name": "show",
58470      "sig": "function (_self)\n{\n\n}",
58471      "type": "function",
58472      "desc": "Fires after the component is shown."
58473     }
58474    ],
58475    "methods": [
58476     {
58477      "name": "addEvents",
58478      "sig": "(Object object)",
58479      "type": "function",
58480      "desc": "Used to define events on this Observable"
58481     },
58482     {
58483      "name": "addListener",
58484      "sig": "(String eventName, Function handler, Object scope, Object options)",
58485      "type": "function",
58486      "desc": "Appends an event handler to this component"
58487     },
58488     {
58489      "name": "addxtype",
58490      "sig": "(Object config)",
58491      "type": "function",
58492      "desc": "Adds a object form elements (using the xtype property as the factory method.)\nValid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column"
58493     },
58494     {
58495      "name": "capture",
58496      "sig": "(Observable o, Function fn, Object scope)",
58497      "type": "function",
58498      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
58499     },
58500     {
58501      "name": "destroy",
58502      "sig": "()",
58503      "type": "function",
58504      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
58505     },
58506     {
58507      "name": "disable",
58508      "sig": "()",
58509      "type": "function",
58510      "desc": "Disable this component."
58511     },
58512     {
58513      "name": "enable",
58514      "sig": "()",
58515      "type": "function",
58516      "desc": "Enable this component."
58517     },
58518     {
58519      "name": "fireEvent",
58520      "sig": "(String eventName, Object... args)",
58521      "type": "function",
58522      "desc": "Fires the specified event with the passed parameters (minus the event name)."
58523     },
58524     {
58525      "name": "focus",
58526      "sig": "(Boolean selectText)",
58527      "type": "function",
58528      "desc": "Try to focus this component."
58529     },
58530     {
58531      "name": "getEl",
58532      "sig": "()",
58533      "type": "function",
58534      "desc": "Returns the underlying {@link Roo.Element}."
58535     },
58536     {
58537      "name": "getId",
58538      "sig": "()",
58539      "type": "function",
58540      "desc": "Returns the id of this component."
58541     },
58542     {
58543      "name": "hasListener",
58544      "sig": "(String eventName)",
58545      "type": "function",
58546      "desc": "Checks to see if this object has any listeners for a specified event"
58547     },
58548     {
58549      "name": "hide",
58550      "sig": "()",
58551      "type": "function",
58552      "desc": "Hide this component."
58553     },
58554     {
58555      "name": "isVisible",
58556      "sig": "()",
58557      "type": "function",
58558      "desc": "Returns true if this component is visible."
58559     },
58560     {
58561      "name": "on",
58562      "sig": "(String eventName, Function handler, Object scope, Object options)",
58563      "type": "function",
58564      "desc": "Appends an event handler to this element (shorthand for addListener)"
58565     },
58566     {
58567      "name": "purgeListeners",
58568      "sig": "()",
58569      "type": "function",
58570      "desc": "Removes all listeners for this object"
58571     },
58572     {
58573      "name": "releaseCapture",
58574      "sig": "(Observable o)",
58575      "type": "function",
58576      "desc": "Removes <b>all</b> added captures from the Observable."
58577     },
58578     {
58579      "name": "removeListener",
58580      "sig": "(String eventName, Function handler, Object scope)",
58581      "type": "function",
58582      "desc": "Removes a listener"
58583     },
58584     {
58585      "name": "render",
58586      "sig": "(String/HTMLElement/Element container)",
58587      "type": "function",
58588      "desc": "If this is a lazy rendering component, render it to its container element."
58589     },
58590     {
58591      "name": "setDisabled",
58592      "sig": "(Boolean disabled)",
58593      "type": "function",
58594      "desc": "Convenience function for setting disabled/enabled by boolean."
58595     },
58596     {
58597      "name": "setVisible",
58598      "sig": "(Boolean visible)",
58599      "type": "function",
58600      "desc": "Convenience function to hide or show this component by boolean."
58601     },
58602     {
58603      "name": "show",
58604      "sig": "()",
58605      "type": "function",
58606      "desc": "Show this component."
58607     },
58608     {
58609      "name": "un",
58610      "sig": "(String eventName, Function handler, Object scope)",
58611      "type": "function",
58612      "desc": "Removes a listener (shorthand for removeListener)"
58613     }
58614    ]
58615   },
58616   "Roo.form.ComboBox": {
58617    "props": [
58618     {
58619      "name": "transform",
58620      "type": "String/HTMLElement/Element",
58621      "desc": "The id, DOM node or element of an existing select to convert to a ComboBox",
58622      "memberOf": ""
58623     },
58624     {
58625      "name": "lazyRender",
58626      "type": "Boolean",
58627      "desc": "True to prevent the ComboBox from rendering until requested (should always be used when\nrendering into an Roo.Editor, defaults to false)",
58628      "memberOf": ""
58629     },
58630     {
58631      "name": "autoCreate",
58632      "type": "Boolean/Object",
58633      "desc": "A DomHelper element spec, or true for a default element spec (defaults to:\n{tag: \"input\", type: \"text\", size: \"24\", autocomplete: \"off\"})",
58634      "memberOf": ""
58635     },
58636     {
58637      "name": "store",
58638      "type": "Roo.data.Store",
58639      "desc": "The data store to which this combo is bound (defaults to undefined)",
58640      "memberOf": ""
58641     },
58642     {
58643      "name": "title",
58644      "type": "String",
58645      "desc": "If supplied, a header element is created containing this text and added into the top of\nthe dropdown list (defaults to undefined, with no header element)",
58646      "memberOf": ""
58647     },
58648     {
58649      "name": "grow",
58650      "type": "Boolean",
58651      "desc": "",
58652      "memberOf": ""
58653     },
58654     {
58655      "name": "growMin",
58656      "type": "Number",
58657      "desc": "",
58658      "memberOf": ""
58659     },
58660     {
58661      "name": "growMax",
58662      "type": "Number",
58663      "desc": "",
58664      "memberOf": ""
58665     },
58666     {
58667      "name": "tpl",
58668      "type": "String/Roo.Template",
58669      "desc": "The template to use to render the output",
58670      "memberOf": ""
58671     },
58672     {
58673      "name": "listWidth",
58674      "type": "Number",
58675      "desc": "The width in pixels of the dropdown list (defaults to the width of the ComboBox field)",
58676      "memberOf": ""
58677     },
58678     {
58679      "name": "displayField",
58680      "type": "String",
58681      "desc": "The underlying data field name to bind to this CombBox (defaults to undefined if\nmode = 'remote' or 'text' if mode = 'local')",
58682      "memberOf": ""
58683     },
58684     {
58685      "name": "valueField",
58686      "type": "String",
58687      "desc": "The underlying data value name to bind to this CombBox (defaults to undefined if\nmode = 'remote' or 'value' if mode = 'local'). \nNote: use of a valueField requires the user make a selection\nin order for a value to be mapped.",
58688      "memberOf": ""
58689     },
58690     {
58691      "name": "hiddenName",
58692      "type": "String",
58693      "desc": "If specified, a hidden form field with this name is dynamically generated to store the\nfield's data value (defaults to the underlying DOM element's name)",
58694      "memberOf": ""
58695     },
58696     {
58697      "name": "listClass",
58698      "type": "String",
58699      "desc": "CSS class to apply to the dropdown list element (defaults to '')",
58700      "memberOf": ""
58701     },
58702     {
58703      "name": "selectedClass",
58704      "type": "String",
58705      "desc": "CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')",
58706      "memberOf": ""
58707     },
58708     {
58709      "name": "triggerClass",
58710      "type": "String",
58711      "desc": "An additional CSS class used to style the trigger button.  The trigger will always get the\nclass 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'\nwhich displays a downward arrow icon).",
58712      "memberOf": ""
58713     },
58714     {
58715      "name": "shadow",
58716      "type": "Boolean/String",
58717      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\" for bottom-right",
58718      "memberOf": ""
58719     },
58720     {
58721      "name": "listAlign",
58722      "type": "String",
58723      "desc": "A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported\nanchor positions (defaults to 'tl-bl')",
58724      "memberOf": ""
58725     },
58726     {
58727      "name": "maxHeight",
58728      "type": "Number",
58729      "desc": "The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)",
58730      "memberOf": ""
58731     },
58732     {
58733      "name": "triggerAction",
58734      "type": "String",
58735      "desc": "The action to execute when the trigger field is activated.  Use 'all' to run the\nquery specified by the allQuery config option (defaults to 'query')",
58736      "memberOf": ""
58737     },
58738     {
58739      "name": "minChars",
58740      "type": "Number",
58741      "desc": "The minimum number of characters the user must type before autocomplete and typeahead activate\n(defaults to 4, does not apply if editable = false)",
58742      "memberOf": ""
58743     },
58744     {
58745      "name": "typeAhead",
58746      "type": "Boolean",
58747      "desc": "True to populate and autoselect the remainder of the text being typed after a configurable\ndelay (typeAheadDelay) if it matches a known value (defaults to false)",
58748      "memberOf": ""
58749     },
58750     {
58751      "name": "queryDelay",
58752      "type": "Number",
58753      "desc": "The length of time in milliseconds to delay between the start of typing and sending the\nquery to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')",
58754      "memberOf": ""
58755     },
58756     {
58757      "name": "pageSize",
58758      "type": "Number",
58759      "desc": "If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the\nfilter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)",
58760      "memberOf": ""
58761     },
58762     {
58763      "name": "selectOnFocus",
58764      "type": "Boolean",
58765      "desc": "True to select any existing text in the field immediately on focus.  Only applies\nwhen editable = true (defaults to false)",
58766      "memberOf": ""
58767     },
58768     {
58769      "name": "queryParam",
58770      "type": "String",
58771      "desc": "Name of the query as it will be passed on the querystring (defaults to 'query')",
58772      "memberOf": ""
58773     },
58774     {
58775      "name": "loadingText",
58776      "type": "String",
58777      "desc": "The text to display in the dropdown list while data is loading.  Only applies\nwhen mode = 'remote' (defaults to 'Loading...')",
58778      "memberOf": ""
58779     },
58780     {
58781      "name": "resizable",
58782      "type": "Boolean",
58783      "desc": "True to add a resize handle to the bottom of the dropdown list (defaults to false)",
58784      "memberOf": ""
58785     },
58786     {
58787      "name": "handleHeight",
58788      "type": "Number",
58789      "desc": "The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)",
58790      "memberOf": ""
58791     },
58792     {
58793      "name": "editable",
58794      "type": "Boolean",
58795      "desc": "False to prevent the user from typing text directly into the field, just like a\ntraditional select (defaults to true)",
58796      "memberOf": ""
58797     },
58798     {
58799      "name": "allQuery",
58800      "type": "String",
58801      "desc": "The text query to send to the server to return all records for the list with no filtering (defaults to '')",
58802      "memberOf": ""
58803     },
58804     {
58805      "name": "mode",
58806      "type": "String",
58807      "desc": "Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)",
58808      "memberOf": ""
58809     },
58810     {
58811      "name": "minListWidth",
58812      "type": "Number",
58813      "desc": "The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if\nlistWidth has a higher value)",
58814      "memberOf": ""
58815     },
58816     {
58817      "name": "forceSelection",
58818      "type": "Boolean",
58819      "desc": "True to restrict the selected value to one of the values in the list, false to\nallow the user to set arbitrary text into the field (defaults to false)",
58820      "memberOf": ""
58821     },
58822     {
58823      "name": "typeAheadDelay",
58824      "type": "Number",
58825      "desc": "The length of time in milliseconds to wait until the typeahead text is displayed\nif typeAhead = true (defaults to 250)",
58826      "memberOf": ""
58827     },
58828     {
58829      "name": "valueNotFoundText",
58830      "type": "String",
58831      "desc": "When using a name/value combo, if the value passed to setValue is not found in\nthe store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)",
58832      "memberOf": ""
58833     },
58834     {
58835      "name": "blockFocus",
58836      "type": "Boolean",
58837      "desc": "Prevents all focus calls, so it can work with things like HTML edtor bar",
58838      "memberOf": ""
58839     },
58840     {
58841      "name": "disableClear",
58842      "type": "Boolean",
58843      "desc": "Disable showing of clear button.",
58844      "memberOf": ""
58845     },
58846     {
58847      "name": "alwaysQuery",
58848      "type": "Boolean",
58849      "desc": "Disable caching of results, and always send query",
58850      "memberOf": ""
58851     },
58852     {
58853      "name": "hideTrigger",
58854      "type": "Boolean",
58855      "desc": "True to hide the trigger element and display only the base text field (defaults to false)",
58856      "memberOf": "Roo.form.TriggerField"
58857     },
58858     {
58859      "name": "vtype",
58860      "type": "String",
58861      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
58862      "memberOf": "Roo.form.TextField"
58863     },
58864     {
58865      "name": "maskRe",
58866      "type": "String",
58867      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
58868      "memberOf": "Roo.form.TextField"
58869     },
58870     {
58871      "name": "disableKeyFilter",
58872      "type": "Boolean",
58873      "desc": "True to disable input keystroke filtering (defaults to false)",
58874      "memberOf": "Roo.form.TextField"
58875     },
58876     {
58877      "name": "allowBlank",
58878      "type": "Boolean",
58879      "desc": "False to validate that the value length > 0 (defaults to true)",
58880      "memberOf": "Roo.form.TextField"
58881     },
58882     {
58883      "name": "minLength",
58884      "type": "Number",
58885      "desc": "Minimum input field length required (defaults to 0)",
58886      "memberOf": "Roo.form.TextField"
58887     },
58888     {
58889      "name": "maxLength",
58890      "type": "Number",
58891      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
58892      "memberOf": "Roo.form.TextField"
58893     },
58894     {
58895      "name": "minLengthText",
58896      "type": "String",
58897      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
58898      "memberOf": "Roo.form.TextField"
58899     },
58900     {
58901      "name": "maxLengthText",
58902      "type": "String",
58903      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
58904      "memberOf": "Roo.form.TextField"
58905     },
58906     {
58907      "name": "blankText",
58908      "type": "String",
58909      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
58910      "memberOf": "Roo.form.TextField"
58911     },
58912     {
58913      "name": "validator",
58914      "type": "Function",
58915      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
58916      "memberOf": "Roo.form.TextField"
58917     },
58918     {
58919      "name": "regex",
58920      "type": "RegExp",
58921      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
58922      "memberOf": "Roo.form.TextField"
58923     },
58924     {
58925      "name": "regexText",
58926      "type": "String",
58927      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
58928      "memberOf": "Roo.form.TextField"
58929     },
58930     {
58931      "name": "emptyText",
58932      "type": "String",
58933      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
58934      "memberOf": "Roo.form.TextField"
58935     },
58936     {
58937      "name": "fieldLabel",
58938      "type": "String",
58939      "desc": "Label to use when rendering a form.",
58940      "memberOf": "Roo.form.Field"
58941     },
58942     {
58943      "name": "qtip",
58944      "type": "String",
58945      "desc": "Mouse over tip",
58946      "memberOf": "Roo.form.Field"
58947     },
58948     {
58949      "name": "name",
58950      "type": "String",
58951      "desc": "The field's HTML name attribute.",
58952      "memberOf": "Roo.form.Field"
58953     },
58954     {
58955      "name": "invalidClass",
58956      "type": "String",
58957      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
58958      "memberOf": "Roo.form.Field"
58959     },
58960     {
58961      "name": "invalidText",
58962      "type": "String",
58963      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
58964      "memberOf": "Roo.form.Field"
58965     },
58966     {
58967      "name": "focusClass",
58968      "type": "String",
58969      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
58970      "memberOf": "Roo.form.Field"
58971     },
58972     {
58973      "name": "validationEvent",
58974      "type": "String/Boolean",
58975      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
58976      "memberOf": "Roo.form.Field"
58977     },
58978     {
58979      "name": "validateOnBlur",
58980      "type": "Boolean",
58981      "desc": "Whether the field should validate when it loses focus (defaults to true).",
58982      "memberOf": "Roo.form.Field"
58983     },
58984     {
58985      "name": "validationDelay",
58986      "type": "Number",
58987      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
58988      "memberOf": "Roo.form.Field"
58989     },
58990     {
58991      "name": "fieldClass",
58992      "type": "String",
58993      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
58994      "memberOf": "Roo.form.Field"
58995     },
58996     {
58997      "name": "msgTarget",
58998      "type": "String",
58999      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
59000      "memberOf": "Roo.form.Field"
59001     },
59002     {
59003      "name": "msgFx",
59004      "type": "String",
59005      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
59006      "memberOf": "Roo.form.Field"
59007     },
59008     {
59009      "name": "readOnly",
59010      "type": "Boolean",
59011      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
59012      "memberOf": "Roo.form.Field"
59013     },
59014     {
59015      "name": "disabled",
59016      "type": "Boolean",
59017      "desc": "True to disable the field (defaults to false).",
59018      "memberOf": "Roo.form.Field"
59019     },
59020     {
59021      "name": "inputType",
59022      "type": "String",
59023      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
59024      "memberOf": "Roo.form.Field"
59025     },
59026     {
59027      "name": "tabIndex",
59028      "type": "Number",
59029      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
59030      "memberOf": "Roo.form.Field"
59031     },
59032     {
59033      "name": "value",
59034      "type": "Mixed",
59035      "desc": "A value to initialize this field with.",
59036      "memberOf": "Roo.form.Field"
59037     },
59038     {
59039      "name": "cls",
59040      "type": "String",
59041      "desc": "A CSS class to apply to the field's underlying element.",
59042      "memberOf": "Roo.form.Field"
59043     },
59044     {
59045      "name": "width",
59046      "type": "Number",
59047      "desc": "width (optional) size of component",
59048      "memberOf": "Roo.BoxComponent"
59049     },
59050     {
59051      "name": "height",
59052      "type": "Number",
59053      "desc": "height (optional) size of component",
59054      "memberOf": "Roo.BoxComponent"
59055     },
59056     {
59057      "name": "disableClass",
59058      "type": "String",
59059      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
59060      "memberOf": "Roo.Component"
59061     },
59062     {
59063      "name": "allowDomMove",
59064      "type": "Boolean",
59065      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
59066      "memberOf": "Roo.Component"
59067     },
59068     {
59069      "name": "hideMode",
59070      "type": "String",
59071      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
59072      "memberOf": "Roo.Component",
59073      "optvals": [
59074       "display",
59075       "visibility"
59076      ]
59077     },
59078     {
59079      "name": "actionMode",
59080      "type": "String",
59081      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
59082      "memberOf": "Roo.Component"
59083     },
59084     {
59085      "name": "listeners",
59086      "type": "Object",
59087      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
59088      "memberOf": "Roo.util.Observable"
59089     }
59090    ],
59091    "events": [
59092     {
59093      "name": "add",
59094      "sig": "function (combo)\n{\n\n}",
59095      "type": "function",
59096      "desc": "Fires when the 'add' icon is pressed (add a listener to enable add button)"
59097     },
59098     {
59099      "name": "autosize",
59100      "sig": "function (_self, width)\n{\n\n}",
59101      "type": "function",
59102      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
59103     },
59104     {
59105      "name": "beforedestroy",
59106      "sig": "function (_self)\n{\n\n}",
59107      "type": "function",
59108      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
59109     },
59110     {
59111      "name": "beforehide",
59112      "sig": "function (_self)\n{\n\n}",
59113      "type": "function",
59114      "desc": "Fires before the component is hidden. Return false to stop the hide."
59115     },
59116     {
59117      "name": "beforequery",
59118      "sig": "function (combo, query, forceAll, cancel, e)\n{\n\n}",
59119      "type": "function",
59120      "desc": "Fires before all queries are processed. Return false to cancel the query or set cancel to true.\nThe event object passed has these properties:"
59121     },
59122     {
59123      "name": "beforerender",
59124      "sig": "function (_self)\n{\n\n}",
59125      "type": "function",
59126      "desc": "Fires before the component is rendered. Return false to stop the render."
59127     },
59128     {
59129      "name": "beforeselect",
59130      "sig": "function (combo, record, index)\n{\n\n}",
59131      "type": "function",
59132      "desc": "Fires before a list item is selected. Return false to cancel the selection."
59133     },
59134     {
59135      "name": "beforeshow",
59136      "sig": "function (_self)\n{\n\n}",
59137      "type": "function",
59138      "desc": "Fires before the component is shown.  Return false to stop the show."
59139     },
59140     {
59141      "name": "blur",
59142      "sig": "function (_self)\n{\n\n}",
59143      "type": "function",
59144      "desc": "Fires when this field loses input focus."
59145     },
59146     {
59147      "name": "change",
59148      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
59149      "type": "function",
59150      "desc": "Fires just before the field blurs if the field value has changed."
59151     },
59152     {
59153      "name": "collapse",
59154      "sig": "function (combo)\n{\n\n}",
59155      "type": "function",
59156      "desc": "Fires when the dropdown list is collapsed"
59157     },
59158     {
59159      "name": "destroy",
59160      "sig": "function (_self)\n{\n\n}",
59161      "type": "function",
59162      "desc": "Fires after the component is destroyed."
59163     },
59164     {
59165      "name": "disable",
59166      "sig": "function (_self)\n{\n\n}",
59167      "type": "function",
59168      "desc": "Fires after the component is disabled."
59169     },
59170     {
59171      "name": "edit",
59172      "sig": "function (combo, record)\n{\n\n}",
59173      "type": "function",
59174      "desc": "Fires when the 'edit' icon is pressed (add a listener to enable add button)"
59175     },
59176     {
59177      "name": "enable",
59178      "sig": "function (_self)\n{\n\n}",
59179      "type": "function",
59180      "desc": "Fires after the component is enabled."
59181     },
59182     {
59183      "name": "expand",
59184      "sig": "function (combo)\n{\n\n}",
59185      "type": "function",
59186      "desc": "Fires when the dropdown list is expanded"
59187     },
59188     {
59189      "name": "focus",
59190      "sig": "function (_self)\n{\n\n}",
59191      "type": "function",
59192      "desc": "Fires when this field receives input focus."
59193     },
59194     {
59195      "name": "hide",
59196      "sig": "function (_self)\n{\n\n}",
59197      "type": "function",
59198      "desc": "Fires after the component is hidden."
59199     },
59200     {
59201      "name": "invalid",
59202      "sig": "function (_self, msg)\n{\n\n}",
59203      "type": "function",
59204      "desc": "Fires after the field has been marked as invalid."
59205     },
59206     {
59207      "name": "keyup",
59208      "sig": "function (_self, e)\n{\n\n}",
59209      "type": "function",
59210      "desc": "Fires after the key up"
59211     },
59212     {
59213      "name": "move",
59214      "sig": "function (_self, x, y)\n{\n\n}",
59215      "type": "function",
59216      "desc": "Fires after the component is moved."
59217     },
59218     {
59219      "name": "render",
59220      "sig": "function (_self)\n{\n\n}",
59221      "type": "function",
59222      "desc": "Fires after the component is rendered."
59223     },
59224     {
59225      "name": "resize",
59226      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
59227      "type": "function",
59228      "desc": "Fires after the component is resized."
59229     },
59230     {
59231      "name": "select",
59232      "sig": "function (combo, record, index)\n{\n\n}",
59233      "type": "function",
59234      "desc": "Fires when a list item is selected"
59235     },
59236     {
59237      "name": "show",
59238      "sig": "function (_self)\n{\n\n}",
59239      "type": "function",
59240      "desc": "Fires after the component is shown."
59241     },
59242     {
59243      "name": "specialkey",
59244      "sig": "function (_self, e)\n{\n\n}",
59245      "type": "function",
59246      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
59247     },
59248     {
59249      "name": "valid",
59250      "sig": "function (_self)\n{\n\n}",
59251      "type": "function",
59252      "desc": "Fires after the field has been validated with no errors."
59253     }
59254    ],
59255    "methods": [
59256     {
59257      "name": "addEvents",
59258      "sig": "(Object object)",
59259      "type": "function",
59260      "desc": "Used to define events on this Observable"
59261     },
59262     {
59263      "name": "addListener",
59264      "sig": "(String eventName, Function handler, Object scope, Object options)",
59265      "type": "function",
59266      "desc": "Appends an event handler to this component"
59267     },
59268     {
59269      "name": "applyTo",
59270      "sig": "(String/HTMLElement/Element el)",
59271      "type": "function",
59272      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
59273     },
59274     {
59275      "name": "capture",
59276      "sig": "(Observable o, Function fn, Object scope)",
59277      "type": "function",
59278      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
59279     },
59280     {
59281      "name": "clearInvalid",
59282      "sig": "()",
59283      "type": "function",
59284      "desc": "Clear any invalid styles/messages for this field"
59285     },
59286     {
59287      "name": "clearValue",
59288      "sig": "()",
59289      "type": "function",
59290      "desc": "Clears any text/value currently set in the field"
59291     },
59292     {
59293      "name": "collapse",
59294      "sig": "()",
59295      "type": "function",
59296      "desc": "Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion."
59297     },
59298     {
59299      "name": "destroy",
59300      "sig": "()",
59301      "type": "function",
59302      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
59303     },
59304     {
59305      "name": "disable",
59306      "sig": "()",
59307      "type": "function",
59308      "desc": "Disable this component."
59309     },
59310     {
59311      "name": "doQuery",
59312      "sig": "(String query, Boolean forceAll)",
59313      "type": "function",
59314      "desc": "Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the\nquery allowing the query action to be canceled if needed."
59315     },
59316     {
59317      "name": "enable",
59318      "sig": "()",
59319      "type": "function",
59320      "desc": "Enable this component."
59321     },
59322     {
59323      "name": "expand",
59324      "sig": "()",
59325      "type": "function",
59326      "desc": "Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion."
59327     },
59328     {
59329      "name": "fireEvent",
59330      "sig": "(String eventName, Object... args)",
59331      "type": "function",
59332      "desc": "Fires the specified event with the passed parameters (minus the event name)."
59333     },
59334     {
59335      "name": "focus",
59336      "sig": "(Boolean selectText)",
59337      "type": "function",
59338      "desc": "Try to focus this component."
59339     },
59340     {
59341      "name": "getBox",
59342      "sig": "(Boolean local)",
59343      "type": "function",
59344      "desc": "Gets the current box measurements of the component's underlying element."
59345     },
59346     {
59347      "name": "getEl",
59348      "sig": "()",
59349      "type": "function",
59350      "desc": "Returns the underlying {@link Roo.Element}."
59351     },
59352     {
59353      "name": "getId",
59354      "sig": "()",
59355      "type": "function",
59356      "desc": "Returns the id of this component."
59357     },
59358     {
59359      "name": "getName",
59360      "sig": "()",
59361      "type": "function",
59362      "desc": "Returns the name attribute of the field if available"
59363     },
59364     {
59365      "name": "getPosition",
59366      "sig": "(Boolean local)",
59367      "type": "function",
59368      "desc": "Gets the current XY position of the component's underlying element."
59369     },
59370     {
59371      "name": "getRawValue",
59372      "sig": "()",
59373      "type": "function",
59374      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
59375     },
59376     {
59377      "name": "getSize",
59378      "sig": "()",
59379      "type": "function",
59380      "desc": "Gets the current size of the component's underlying element."
59381     },
59382     {
59383      "name": "getValue",
59384      "sig": "()",
59385      "type": "function",
59386      "desc": "Returns the currently selected field value or empty string if no value is set."
59387     },
59388     {
59389      "name": "hasChanged",
59390      "sig": "()",
59391      "type": "function",
59392      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
59393     },
59394     {
59395      "name": "hasListener",
59396      "sig": "(String eventName)",
59397      "type": "function",
59398      "desc": "Checks to see if this object has any listeners for a specified event"
59399     },
59400     {
59401      "name": "hide",
59402      "sig": "()",
59403      "type": "function",
59404      "desc": "Hide this component."
59405     },
59406     {
59407      "name": "isDirty",
59408      "sig": "()",
59409      "type": "function",
59410      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
59411     },
59412     {
59413      "name": "isExpanded",
59414      "sig": "()",
59415      "type": "function",
59416      "desc": "Returns true if the dropdown list is expanded, else false."
59417     },
59418     {
59419      "name": "isValid",
59420      "sig": "(Boolean preventMark)",
59421      "type": "function",
59422      "desc": "Returns whether or not the field value is currently valid"
59423     },
59424     {
59425      "name": "isVisible",
59426      "sig": "()",
59427      "type": "function",
59428      "desc": "Returns true if this component is visible."
59429     },
59430     {
59431      "name": "markInvalid",
59432      "sig": "(String msg)",
59433      "type": "function",
59434      "desc": "Mark this field as invalid"
59435     },
59436     {
59437      "name": "on",
59438      "sig": "(String eventName, Function handler, Object scope, Object options)",
59439      "type": "function",
59440      "desc": "Appends an event handler to this element (shorthand for addListener)"
59441     },
59442     {
59443      "name": "onPosition",
59444      "sig": "(Number x, Number y)",
59445      "type": "function",
59446      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
59447     },
59448     {
59449      "name": "onResize",
59450      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
59451      "type": "function",
59452      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
59453     },
59454     {
59455      "name": "onTriggerClick",
59456      "sig": "(EventObject e)",
59457      "type": "function",
59458      "desc": "The function that should handle the trigger's click event.  This method does nothing by default until overridden\nby an implementing function."
59459     },
59460     {
59461      "name": "purgeListeners",
59462      "sig": "()",
59463      "type": "function",
59464      "desc": "Removes all listeners for this object"
59465     },
59466     {
59467      "name": "releaseCapture",
59468      "sig": "(Observable o)",
59469      "type": "function",
59470      "desc": "Removes <b>all</b> added captures from the Observable."
59471     },
59472     {
59473      "name": "removeListener",
59474      "sig": "(String eventName, Function handler, Object scope)",
59475      "type": "function",
59476      "desc": "Removes a listener"
59477     },
59478     {
59479      "name": "render",
59480      "sig": "(String/HTMLElement/Element container)",
59481      "type": "function",
59482      "desc": "If this is a lazy rendering component, render it to its container element."
59483     },
59484     {
59485      "name": "reset",
59486      "sig": "()",
59487      "type": "function",
59488      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
59489     },
59490     {
59491      "name": "resetHasChanged",
59492      "sig": "()",
59493      "type": "function",
59494      "desc": "stores the current value in loadedValue"
59495     },
59496     {
59497      "name": "select",
59498      "sig": "(Number index, Boolean scrollIntoView)",
59499      "type": "function",
59500      "desc": "Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.\nThe store must be loaded and the list expanded for this function to work, otherwise use setValue."
59501     },
59502     {
59503      "name": "selectByValue",
59504      "sig": "(String value, Boolean scrollIntoView)",
59505      "type": "function",
59506      "desc": "Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.\nThe store must be loaded and the list expanded for this function to work, otherwise use setValue."
59507     },
59508     {
59509      "name": "selectText",
59510      "sig": "(Number start, Number end)",
59511      "type": "function",
59512      "desc": "Selects text in this field"
59513     },
59514     {
59515      "name": "setDisabled",
59516      "sig": "(Boolean disabled)",
59517      "type": "function",
59518      "desc": "Convenience function for setting disabled/enabled by boolean."
59519     },
59520     {
59521      "name": "setEditable",
59522      "sig": "(Boolean value)",
59523      "type": "function",
59524      "desc": "Allow or prevent the user from directly editing the field text.  If false is passed,\nthe user will only be able to select from the items defined in the dropdown list.  This method\nis the runtime equivalent of setting the 'editable' config option at config time."
59525     },
59526     {
59527      "name": "setFromData",
59528      "sig": "(Object value)",
59529      "type": "function",
59530      "desc": "Sets the value of the field based on a object which is related to the record format for the store."
59531     },
59532     {
59533      "name": "setPagePosition",
59534      "sig": "(Number x, Number y)",
59535      "type": "function",
59536      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
59537     },
59538     {
59539      "name": "setPosition",
59540      "sig": "(Number left, Number top)",
59541      "type": "function",
59542      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
59543     },
59544     {
59545      "name": "setRawValue",
59546      "sig": "(Mixed value)",
59547      "type": "function",
59548      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
59549     },
59550     {
59551      "name": "setSize",
59552      "sig": "(Number/Object width, Number height)",
59553      "type": "function",
59554      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
59555     },
59556     {
59557      "name": "setValue",
59558      "sig": "(String value)",
59559      "type": "function",
59560      "desc": "Sets the specified value into the field.  If the value finds a match, the corresponding record text\nwill be displayed in the field.  If the value does not match the data value of an existing item,\nand the valueNotFoundText config option is defined, it will be displayed as the default field text.\nOtherwise the field will be blank (although the value will still be set)."
59561     },
59562     {
59563      "name": "setVisible",
59564      "sig": "(Boolean visible)",
59565      "type": "function",
59566      "desc": "Convenience function to hide or show this component by boolean."
59567     },
59568     {
59569      "name": "show",
59570      "sig": "()",
59571      "type": "function",
59572      "desc": "Show this component."
59573     },
59574     {
59575      "name": "syncSize",
59576      "sig": "()",
59577      "type": "function",
59578      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
59579     },
59580     {
59581      "name": "un",
59582      "sig": "(String eventName, Function handler, Object scope)",
59583      "type": "function",
59584      "desc": "Removes a listener (shorthand for removeListener)"
59585     },
59586     {
59587      "name": "updateBox",
59588      "sig": "(Object box)",
59589      "type": "function",
59590      "desc": "Sets the current box measurements of the component's underlying element."
59591     },
59592     {
59593      "name": "validate",
59594      "sig": "()",
59595      "type": "function",
59596      "desc": "Validates the field value"
59597     },
59598     {
59599      "name": "validateValue",
59600      "sig": "(Mixed value)",
59601      "type": "function",
59602      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
59603     }
59604    ]
59605   },
59606   "Roo.form.ComboBoxArray": {
59607    "props": [
59608     {
59609      "name": "combo",
59610      "type": "Roo.form.Combo",
59611      "desc": "The combo box that is wrapped",
59612      "memberOf": ""
59613     },
59614     {
59615      "name": "width",
59616      "type": "Number",
59617      "desc": "The width of the box that displays the selected element",
59618      "memberOf": ""
59619     },
59620     {
59621      "name": "name",
59622      "type": "String",
59623      "desc": "The name of the visable items on this form (eg. titles not ids)",
59624      "memberOf": ""
59625     },
59626     {
59627      "name": "hiddenName",
59628      "type": "String",
59629      "desc": "The hidden name of the field, often contains an comma seperated list of names",
59630      "memberOf": ""
59631     },
59632     {
59633      "name": "grow",
59634      "type": "Boolean",
59635      "desc": "True if this field should automatically grow and shrink to its content",
59636      "memberOf": "Roo.form.TextField"
59637     },
59638     {
59639      "name": "growMin",
59640      "type": "Number",
59641      "desc": "The minimum width to allow when grow = true (defaults to 30)",
59642      "memberOf": "Roo.form.TextField"
59643     },
59644     {
59645      "name": "growMax",
59646      "type": "Number",
59647      "desc": "The maximum width to allow when grow = true (defaults to 800)",
59648      "memberOf": "Roo.form.TextField"
59649     },
59650     {
59651      "name": "vtype",
59652      "type": "String",
59653      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
59654      "memberOf": "Roo.form.TextField"
59655     },
59656     {
59657      "name": "maskRe",
59658      "type": "String",
59659      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
59660      "memberOf": "Roo.form.TextField"
59661     },
59662     {
59663      "name": "disableKeyFilter",
59664      "type": "Boolean",
59665      "desc": "True to disable input keystroke filtering (defaults to false)",
59666      "memberOf": "Roo.form.TextField"
59667     },
59668     {
59669      "name": "allowBlank",
59670      "type": "Boolean",
59671      "desc": "False to validate that the value length > 0 (defaults to true)",
59672      "memberOf": "Roo.form.TextField"
59673     },
59674     {
59675      "name": "minLength",
59676      "type": "Number",
59677      "desc": "Minimum input field length required (defaults to 0)",
59678      "memberOf": "Roo.form.TextField"
59679     },
59680     {
59681      "name": "maxLength",
59682      "type": "Number",
59683      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
59684      "memberOf": "Roo.form.TextField"
59685     },
59686     {
59687      "name": "minLengthText",
59688      "type": "String",
59689      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
59690      "memberOf": "Roo.form.TextField"
59691     },
59692     {
59693      "name": "maxLengthText",
59694      "type": "String",
59695      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
59696      "memberOf": "Roo.form.TextField"
59697     },
59698     {
59699      "name": "selectOnFocus",
59700      "type": "Boolean",
59701      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
59702      "memberOf": "Roo.form.TextField"
59703     },
59704     {
59705      "name": "blankText",
59706      "type": "String",
59707      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
59708      "memberOf": "Roo.form.TextField"
59709     },
59710     {
59711      "name": "validator",
59712      "type": "Function",
59713      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
59714      "memberOf": "Roo.form.TextField"
59715     },
59716     {
59717      "name": "regex",
59718      "type": "RegExp",
59719      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
59720      "memberOf": "Roo.form.TextField"
59721     },
59722     {
59723      "name": "regexText",
59724      "type": "String",
59725      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
59726      "memberOf": "Roo.form.TextField"
59727     },
59728     {
59729      "name": "emptyText",
59730      "type": "String",
59731      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
59732      "memberOf": "Roo.form.TextField"
59733     },
59734     {
59735      "name": "fieldLabel",
59736      "type": "String",
59737      "desc": "Label to use when rendering a form.",
59738      "memberOf": "Roo.form.Field"
59739     },
59740     {
59741      "name": "qtip",
59742      "type": "String",
59743      "desc": "Mouse over tip",
59744      "memberOf": "Roo.form.Field"
59745     },
59746     {
59747      "name": "invalidClass",
59748      "type": "String",
59749      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
59750      "memberOf": "Roo.form.Field"
59751     },
59752     {
59753      "name": "invalidText",
59754      "type": "String",
59755      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
59756      "memberOf": "Roo.form.Field"
59757     },
59758     {
59759      "name": "focusClass",
59760      "type": "String",
59761      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
59762      "memberOf": "Roo.form.Field"
59763     },
59764     {
59765      "name": "validationEvent",
59766      "type": "String/Boolean",
59767      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
59768      "memberOf": "Roo.form.Field"
59769     },
59770     {
59771      "name": "validateOnBlur",
59772      "type": "Boolean",
59773      "desc": "Whether the field should validate when it loses focus (defaults to true).",
59774      "memberOf": "Roo.form.Field"
59775     },
59776     {
59777      "name": "validationDelay",
59778      "type": "Number",
59779      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
59780      "memberOf": "Roo.form.Field"
59781     },
59782     {
59783      "name": "autoCreate",
59784      "type": "String/Object",
59785      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"20\", autocomplete: \"off\"})",
59786      "memberOf": "Roo.form.Field"
59787     },
59788     {
59789      "name": "fieldClass",
59790      "type": "String",
59791      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
59792      "memberOf": "Roo.form.Field"
59793     },
59794     {
59795      "name": "msgTarget",
59796      "type": "String",
59797      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
59798      "memberOf": "Roo.form.Field"
59799     },
59800     {
59801      "name": "msgFx",
59802      "type": "String",
59803      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
59804      "memberOf": "Roo.form.Field"
59805     },
59806     {
59807      "name": "readOnly",
59808      "type": "Boolean",
59809      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
59810      "memberOf": "Roo.form.Field"
59811     },
59812     {
59813      "name": "disabled",
59814      "type": "Boolean",
59815      "desc": "True to disable the field (defaults to false).",
59816      "memberOf": "Roo.form.Field"
59817     },
59818     {
59819      "name": "inputType",
59820      "type": "String",
59821      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
59822      "memberOf": "Roo.form.Field"
59823     },
59824     {
59825      "name": "tabIndex",
59826      "type": "Number",
59827      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
59828      "memberOf": "Roo.form.Field"
59829     },
59830     {
59831      "name": "value",
59832      "type": "Mixed",
59833      "desc": "A value to initialize this field with.",
59834      "memberOf": "Roo.form.Field"
59835     },
59836     {
59837      "name": "cls",
59838      "type": "String",
59839      "desc": "A CSS class to apply to the field's underlying element.",
59840      "memberOf": "Roo.form.Field"
59841     },
59842     {
59843      "name": "height",
59844      "type": "Number",
59845      "desc": "height (optional) size of component",
59846      "memberOf": "Roo.BoxComponent"
59847     },
59848     {
59849      "name": "disableClass",
59850      "type": "String",
59851      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
59852      "memberOf": "Roo.Component"
59853     },
59854     {
59855      "name": "allowDomMove",
59856      "type": "Boolean",
59857      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
59858      "memberOf": "Roo.Component"
59859     },
59860     {
59861      "name": "hideMode",
59862      "type": "String",
59863      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
59864      "memberOf": "Roo.Component",
59865      "optvals": [
59866       "display",
59867       "visibility"
59868      ]
59869     },
59870     {
59871      "name": "actionMode",
59872      "type": "String",
59873      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
59874      "memberOf": "Roo.Component"
59875     },
59876     {
59877      "name": "listeners",
59878      "type": "Object",
59879      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
59880      "memberOf": "Roo.util.Observable"
59881     }
59882    ],
59883    "events": [
59884     {
59885      "name": "autosize",
59886      "sig": "function (_self, width)\n{\n\n}",
59887      "type": "function",
59888      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
59889     },
59890     {
59891      "name": "beforedestroy",
59892      "sig": "function (_self)\n{\n\n}",
59893      "type": "function",
59894      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
59895     },
59896     {
59897      "name": "beforehide",
59898      "sig": "function (_self)\n{\n\n}",
59899      "type": "function",
59900      "desc": "Fires before the component is hidden. Return false to stop the hide."
59901     },
59902     {
59903      "name": "beforeremove",
59904      "sig": "function (_self, item)\n{\n\n}",
59905      "type": "function",
59906      "desc": "Fires before remove the value from the list"
59907     },
59908     {
59909      "name": "beforerender",
59910      "sig": "function (_self)\n{\n\n}",
59911      "type": "function",
59912      "desc": "Fires before the component is rendered. Return false to stop the render."
59913     },
59914     {
59915      "name": "beforeshow",
59916      "sig": "function (_self)\n{\n\n}",
59917      "type": "function",
59918      "desc": "Fires before the component is shown.  Return false to stop the show."
59919     },
59920     {
59921      "name": "blur",
59922      "sig": "function (_self)\n{\n\n}",
59923      "type": "function",
59924      "desc": "Fires when this field loses input focus."
59925     },
59926     {
59927      "name": "change",
59928      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
59929      "type": "function",
59930      "desc": "Fires just before the field blurs if the field value has changed."
59931     },
59932     {
59933      "name": "destroy",
59934      "sig": "function (_self)\n{\n\n}",
59935      "type": "function",
59936      "desc": "Fires after the component is destroyed."
59937     },
59938     {
59939      "name": "disable",
59940      "sig": "function (_self)\n{\n\n}",
59941      "type": "function",
59942      "desc": "Fires after the component is disabled."
59943     },
59944     {
59945      "name": "enable",
59946      "sig": "function (_self)\n{\n\n}",
59947      "type": "function",
59948      "desc": "Fires after the component is enabled."
59949     },
59950     {
59951      "name": "focus",
59952      "sig": "function (_self)\n{\n\n}",
59953      "type": "function",
59954      "desc": "Fires when this field receives input focus."
59955     },
59956     {
59957      "name": "hide",
59958      "sig": "function (_self)\n{\n\n}",
59959      "type": "function",
59960      "desc": "Fires after the component is hidden."
59961     },
59962     {
59963      "name": "invalid",
59964      "sig": "function (_self, msg)\n{\n\n}",
59965      "type": "function",
59966      "desc": "Fires after the field has been marked as invalid."
59967     },
59968     {
59969      "name": "keyup",
59970      "sig": "function (_self, e)\n{\n\n}",
59971      "type": "function",
59972      "desc": "Fires after the key up"
59973     },
59974     {
59975      "name": "move",
59976      "sig": "function (_self, x, y)\n{\n\n}",
59977      "type": "function",
59978      "desc": "Fires after the component is moved."
59979     },
59980     {
59981      "name": "remove",
59982      "sig": "function (_self, item)\n{\n\n}",
59983      "type": "function",
59984      "desc": "Fires when remove the value from the list"
59985     },
59986     {
59987      "name": "render",
59988      "sig": "function (_self)\n{\n\n}",
59989      "type": "function",
59990      "desc": "Fires after the component is rendered."
59991     },
59992     {
59993      "name": "resize",
59994      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
59995      "type": "function",
59996      "desc": "Fires after the component is resized."
59997     },
59998     {
59999      "name": "show",
60000      "sig": "function (_self)\n{\n\n}",
60001      "type": "function",
60002      "desc": "Fires after the component is shown."
60003     },
60004     {
60005      "name": "specialkey",
60006      "sig": "function (_self, e)\n{\n\n}",
60007      "type": "function",
60008      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
60009     },
60010     {
60011      "name": "valid",
60012      "sig": "function (_self)\n{\n\n}",
60013      "type": "function",
60014      "desc": "Fires after the field has been validated with no errors."
60015     }
60016    ],
60017    "methods": [
60018     {
60019      "name": "addEvents",
60020      "sig": "(Object object)",
60021      "type": "function",
60022      "desc": "Used to define events on this Observable"
60023     },
60024     {
60025      "name": "addListener",
60026      "sig": "(String eventName, Function handler, Object scope, Object options)",
60027      "type": "function",
60028      "desc": "Appends an event handler to this component"
60029     },
60030     {
60031      "name": "applyTo",
60032      "sig": "(String/HTMLElement/Element el)",
60033      "type": "function",
60034      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
60035     },
60036     {
60037      "name": "autoSize",
60038      "sig": "()",
60039      "type": "function",
60040      "desc": "Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.\nThis only takes effect if grow = true, and fires the autosize event."
60041     },
60042     {
60043      "name": "capture",
60044      "sig": "(Observable o, Function fn, Object scope)",
60045      "type": "function",
60046      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
60047     },
60048     {
60049      "name": "clearInvalid",
60050      "sig": "()",
60051      "type": "function",
60052      "desc": "Clear any invalid styles/messages for this field"
60053     },
60054     {
60055      "name": "destroy",
60056      "sig": "()",
60057      "type": "function",
60058      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
60059     },
60060     {
60061      "name": "disable",
60062      "sig": "()",
60063      "type": "function",
60064      "desc": "Disable this component."
60065     },
60066     {
60067      "name": "enable",
60068      "sig": "()",
60069      "type": "function",
60070      "desc": "Enable this component."
60071     },
60072     {
60073      "name": "fireEvent",
60074      "sig": "(String eventName, Object... args)",
60075      "type": "function",
60076      "desc": "Fires the specified event with the passed parameters (minus the event name)."
60077     },
60078     {
60079      "name": "focus",
60080      "sig": "(Boolean selectText)",
60081      "type": "function",
60082      "desc": "Try to focus this component."
60083     },
60084     {
60085      "name": "getBox",
60086      "sig": "(Boolean local)",
60087      "type": "function",
60088      "desc": "Gets the current box measurements of the component's underlying element."
60089     },
60090     {
60091      "name": "getEl",
60092      "sig": "()",
60093      "type": "function",
60094      "desc": "Returns the underlying {@link Roo.Element}."
60095     },
60096     {
60097      "name": "getId",
60098      "sig": "()",
60099      "type": "function",
60100      "desc": "Returns the id of this component."
60101     },
60102     {
60103      "name": "getName",
60104      "sig": "()",
60105      "type": "function",
60106      "desc": "Returns the name attribute of the field if available"
60107     },
60108     {
60109      "name": "getPosition",
60110      "sig": "(Boolean local)",
60111      "type": "function",
60112      "desc": "Gets the current XY position of the component's underlying element."
60113     },
60114     {
60115      "name": "getRawValue",
60116      "sig": "()",
60117      "type": "function",
60118      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
60119     },
60120     {
60121      "name": "getSize",
60122      "sig": "()",
60123      "type": "function",
60124      "desc": "Gets the current size of the component's underlying element."
60125     },
60126     {
60127      "name": "getValue",
60128      "sig": "()",
60129      "type": "function",
60130      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
60131     },
60132     {
60133      "name": "hasChanged",
60134      "sig": "()",
60135      "type": "function",
60136      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
60137     },
60138     {
60139      "name": "hasListener",
60140      "sig": "(String eventName)",
60141      "type": "function",
60142      "desc": "Checks to see if this object has any listeners for a specified event"
60143     },
60144     {
60145      "name": "hide",
60146      "sig": "()",
60147      "type": "function",
60148      "desc": "Hide this component."
60149     },
60150     {
60151      "name": "isDirty",
60152      "sig": "()",
60153      "type": "function",
60154      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
60155     },
60156     {
60157      "name": "isValid",
60158      "sig": "(Boolean preventMark)",
60159      "type": "function",
60160      "desc": "Returns whether or not the field value is currently valid"
60161     },
60162     {
60163      "name": "isVisible",
60164      "sig": "()",
60165      "type": "function",
60166      "desc": "Returns true if this component is visible."
60167     },
60168     {
60169      "name": "markInvalid",
60170      "sig": "(String msg)",
60171      "type": "function",
60172      "desc": "Mark this field as invalid"
60173     },
60174     {
60175      "name": "on",
60176      "sig": "(String eventName, Function handler, Object scope, Object options)",
60177      "type": "function",
60178      "desc": "Appends an event handler to this element (shorthand for addListener)"
60179     },
60180     {
60181      "name": "onPosition",
60182      "sig": "(Number x, Number y)",
60183      "type": "function",
60184      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
60185     },
60186     {
60187      "name": "onResize",
60188      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
60189      "type": "function",
60190      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
60191     },
60192     {
60193      "name": "purgeListeners",
60194      "sig": "()",
60195      "type": "function",
60196      "desc": "Removes all listeners for this object"
60197     },
60198     {
60199      "name": "releaseCapture",
60200      "sig": "(Observable o)",
60201      "type": "function",
60202      "desc": "Removes <b>all</b> added captures from the Observable."
60203     },
60204     {
60205      "name": "removeListener",
60206      "sig": "(String eventName, Function handler, Object scope)",
60207      "type": "function",
60208      "desc": "Removes a listener"
60209     },
60210     {
60211      "name": "render",
60212      "sig": "(String/HTMLElement/Element container)",
60213      "type": "function",
60214      "desc": "If this is a lazy rendering component, render it to its container element."
60215     },
60216     {
60217      "name": "reset",
60218      "sig": "()",
60219      "type": "function",
60220      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
60221     },
60222     {
60223      "name": "resetHasChanged",
60224      "sig": "()",
60225      "type": "function",
60226      "desc": "stores the current value in loadedValue"
60227     },
60228     {
60229      "name": "selectText",
60230      "sig": "(Number start, Number end)",
60231      "type": "function",
60232      "desc": "Selects text in this field"
60233     },
60234     {
60235      "name": "setDisabled",
60236      "sig": "(Boolean disabled)",
60237      "type": "function",
60238      "desc": "Convenience function for setting disabled/enabled by boolean."
60239     },
60240     {
60241      "name": "setPagePosition",
60242      "sig": "(Number x, Number y)",
60243      "type": "function",
60244      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
60245     },
60246     {
60247      "name": "setPosition",
60248      "sig": "(Number left, Number top)",
60249      "type": "function",
60250      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
60251     },
60252     {
60253      "name": "setRawValue",
60254      "sig": "(Mixed value)",
60255      "type": "function",
60256      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
60257     },
60258     {
60259      "name": "setSize",
60260      "sig": "(Number/Object width, Number height)",
60261      "type": "function",
60262      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
60263     },
60264     {
60265      "name": "setValue",
60266      "sig": "(Mixed value)",
60267      "type": "function",
60268      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
60269     },
60270     {
60271      "name": "setVisible",
60272      "sig": "(Boolean visible)",
60273      "type": "function",
60274      "desc": "Convenience function to hide or show this component by boolean."
60275     },
60276     {
60277      "name": "show",
60278      "sig": "()",
60279      "type": "function",
60280      "desc": "Show this component."
60281     },
60282     {
60283      "name": "syncSize",
60284      "sig": "()",
60285      "type": "function",
60286      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
60287     },
60288     {
60289      "name": "un",
60290      "sig": "(String eventName, Function handler, Object scope)",
60291      "type": "function",
60292      "desc": "Removes a listener (shorthand for removeListener)"
60293     },
60294     {
60295      "name": "updateBox",
60296      "sig": "(Object box)",
60297      "type": "function",
60298      "desc": "Sets the current box measurements of the component's underlying element."
60299     },
60300     {
60301      "name": "validate",
60302      "sig": "()",
60303      "type": "function",
60304      "desc": "Validates the combox array value"
60305     },
60306     {
60307      "name": "validateValue",
60308      "sig": "(Mixed value)",
60309      "type": "function",
60310      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
60311     }
60312    ]
60313   },
60314   "Roo.form.ComboBoxArray.Item": {
60315    "props": [
60316     {
60317      "name": "width",
60318      "type": "Number",
60319      "desc": "width (optional) size of component",
60320      "memberOf": "Roo.BoxComponent"
60321     },
60322     {
60323      "name": "height",
60324      "type": "Number",
60325      "desc": "height (optional) size of component",
60326      "memberOf": "Roo.BoxComponent"
60327     },
60328     {
60329      "name": "disableClass",
60330      "type": "String",
60331      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
60332      "memberOf": "Roo.Component"
60333     },
60334     {
60335      "name": "allowDomMove",
60336      "type": "Boolean",
60337      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
60338      "memberOf": "Roo.Component"
60339     },
60340     {
60341      "name": "hideMode",
60342      "type": "String",
60343      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
60344      "memberOf": "Roo.Component",
60345      "optvals": [
60346       "display",
60347       "visibility"
60348      ]
60349     },
60350     {
60351      "name": "actionMode",
60352      "type": "String",
60353      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
60354      "memberOf": "Roo.Component"
60355     },
60356     {
60357      "name": "listeners",
60358      "type": "Object",
60359      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
60360      "memberOf": "Roo.util.Observable"
60361     }
60362    ],
60363    "events": [
60364     {
60365      "name": "beforedestroy",
60366      "sig": "function (_self)\n{\n\n}",
60367      "type": "function",
60368      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
60369     },
60370     {
60371      "name": "beforehide",
60372      "sig": "function (_self)\n{\n\n}",
60373      "type": "function",
60374      "desc": "Fires before the component is hidden. Return false to stop the hide."
60375     },
60376     {
60377      "name": "beforerender",
60378      "sig": "function (_self)\n{\n\n}",
60379      "type": "function",
60380      "desc": "Fires before the component is rendered. Return false to stop the render."
60381     },
60382     {
60383      "name": "beforeshow",
60384      "sig": "function (_self)\n{\n\n}",
60385      "type": "function",
60386      "desc": "Fires before the component is shown.  Return false to stop the show."
60387     },
60388     {
60389      "name": "destroy",
60390      "sig": "function (_self)\n{\n\n}",
60391      "type": "function",
60392      "desc": "Fires after the component is destroyed."
60393     },
60394     {
60395      "name": "disable",
60396      "sig": "function (_self)\n{\n\n}",
60397      "type": "function",
60398      "desc": "Fires after the component is disabled."
60399     },
60400     {
60401      "name": "enable",
60402      "sig": "function (_self)\n{\n\n}",
60403      "type": "function",
60404      "desc": "Fires after the component is enabled."
60405     },
60406     {
60407      "name": "hide",
60408      "sig": "function (_self)\n{\n\n}",
60409      "type": "function",
60410      "desc": "Fires after the component is hidden."
60411     },
60412     {
60413      "name": "move",
60414      "sig": "function (_self, x, y)\n{\n\n}",
60415      "type": "function",
60416      "desc": "Fires after the component is moved."
60417     },
60418     {
60419      "name": "render",
60420      "sig": "function (_self)\n{\n\n}",
60421      "type": "function",
60422      "desc": "Fires after the component is rendered."
60423     },
60424     {
60425      "name": "resize",
60426      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
60427      "type": "function",
60428      "desc": "Fires after the component is resized."
60429     },
60430     {
60431      "name": "show",
60432      "sig": "function (_self)\n{\n\n}",
60433      "type": "function",
60434      "desc": "Fires after the component is shown."
60435     }
60436    ],
60437    "methods": [
60438     {
60439      "name": "addEvents",
60440      "sig": "(Object object)",
60441      "type": "function",
60442      "desc": "Used to define events on this Observable"
60443     },
60444     {
60445      "name": "addListener",
60446      "sig": "(String eventName, Function handler, Object scope, Object options)",
60447      "type": "function",
60448      "desc": "Appends an event handler to this component"
60449     },
60450     {
60451      "name": "capture",
60452      "sig": "(Observable o, Function fn, Object scope)",
60453      "type": "function",
60454      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
60455     },
60456     {
60457      "name": "destroy",
60458      "sig": "()",
60459      "type": "function",
60460      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
60461     },
60462     {
60463      "name": "disable",
60464      "sig": "()",
60465      "type": "function",
60466      "desc": "Disable this component."
60467     },
60468     {
60469      "name": "enable",
60470      "sig": "()",
60471      "type": "function",
60472      "desc": "Enable this component."
60473     },
60474     {
60475      "name": "fireEvent",
60476      "sig": "(String eventName, Object... args)",
60477      "type": "function",
60478      "desc": "Fires the specified event with the passed parameters (minus the event name)."
60479     },
60480     {
60481      "name": "focus",
60482      "sig": "(Boolean selectText)",
60483      "type": "function",
60484      "desc": "Try to focus this component."
60485     },
60486     {
60487      "name": "getBox",
60488      "sig": "(Boolean local)",
60489      "type": "function",
60490      "desc": "Gets the current box measurements of the component's underlying element."
60491     },
60492     {
60493      "name": "getEl",
60494      "sig": "()",
60495      "type": "function",
60496      "desc": "Returns the underlying {@link Roo.Element}."
60497     },
60498     {
60499      "name": "getId",
60500      "sig": "()",
60501      "type": "function",
60502      "desc": "Returns the id of this component."
60503     },
60504     {
60505      "name": "getPosition",
60506      "sig": "(Boolean local)",
60507      "type": "function",
60508      "desc": "Gets the current XY position of the component's underlying element."
60509     },
60510     {
60511      "name": "getSize",
60512      "sig": "()",
60513      "type": "function",
60514      "desc": "Gets the current size of the component's underlying element."
60515     },
60516     {
60517      "name": "hasListener",
60518      "sig": "(String eventName)",
60519      "type": "function",
60520      "desc": "Checks to see if this object has any listeners for a specified event"
60521     },
60522     {
60523      "name": "hide",
60524      "sig": "()",
60525      "type": "function",
60526      "desc": "Hide this component."
60527     },
60528     {
60529      "name": "isVisible",
60530      "sig": "()",
60531      "type": "function",
60532      "desc": "Returns true if this component is visible."
60533     },
60534     {
60535      "name": "on",
60536      "sig": "(String eventName, Function handler, Object scope, Object options)",
60537      "type": "function",
60538      "desc": "Appends an event handler to this element (shorthand for addListener)"
60539     },
60540     {
60541      "name": "onPosition",
60542      "sig": "(Number x, Number y)",
60543      "type": "function",
60544      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
60545     },
60546     {
60547      "name": "onResize",
60548      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
60549      "type": "function",
60550      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
60551     },
60552     {
60553      "name": "purgeListeners",
60554      "sig": "()",
60555      "type": "function",
60556      "desc": "Removes all listeners for this object"
60557     },
60558     {
60559      "name": "releaseCapture",
60560      "sig": "(Observable o)",
60561      "type": "function",
60562      "desc": "Removes <b>all</b> added captures from the Observable."
60563     },
60564     {
60565      "name": "removeListener",
60566      "sig": "(String eventName, Function handler, Object scope)",
60567      "type": "function",
60568      "desc": "Removes a listener"
60569     },
60570     {
60571      "name": "render",
60572      "sig": "(String/HTMLElement/Element container)",
60573      "type": "function",
60574      "desc": "If this is a lazy rendering component, render it to its container element."
60575     },
60576     {
60577      "name": "setDisabled",
60578      "sig": "(Boolean disabled)",
60579      "type": "function",
60580      "desc": "Convenience function for setting disabled/enabled by boolean."
60581     },
60582     {
60583      "name": "setPagePosition",
60584      "sig": "(Number x, Number y)",
60585      "type": "function",
60586      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
60587     },
60588     {
60589      "name": "setPosition",
60590      "sig": "(Number left, Number top)",
60591      "type": "function",
60592      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
60593     },
60594     {
60595      "name": "setSize",
60596      "sig": "(Number/Object width, Number height)",
60597      "type": "function",
60598      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
60599     },
60600     {
60601      "name": "setVisible",
60602      "sig": "(Boolean visible)",
60603      "type": "function",
60604      "desc": "Convenience function to hide or show this component by boolean."
60605     },
60606     {
60607      "name": "show",
60608      "sig": "()",
60609      "type": "function",
60610      "desc": "Show this component."
60611     },
60612     {
60613      "name": "syncSize",
60614      "sig": "()",
60615      "type": "function",
60616      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
60617     },
60618     {
60619      "name": "un",
60620      "sig": "(String eventName, Function handler, Object scope)",
60621      "type": "function",
60622      "desc": "Removes a listener (shorthand for removeListener)"
60623     },
60624     {
60625      "name": "updateBox",
60626      "sig": "(Object box)",
60627      "type": "function",
60628      "desc": "Sets the current box measurements of the component's underlying element."
60629     }
60630    ]
60631   },
60632   "Roo.form.ComboCheck": {
60633    "props": [
60634     {
60635      "name": "transform",
60636      "type": "String/HTMLElement/Element",
60637      "desc": "The id, DOM node or element of an existing select to convert to a ComboBox",
60638      "memberOf": "Roo.form.ComboBox"
60639     },
60640     {
60641      "name": "lazyRender",
60642      "type": "Boolean",
60643      "desc": "True to prevent the ComboBox from rendering until requested (should always be used when\nrendering into an Roo.Editor, defaults to false)",
60644      "memberOf": "Roo.form.ComboBox"
60645     },
60646     {
60647      "name": "autoCreate",
60648      "type": "Boolean/Object",
60649      "desc": "A DomHelper element spec, or true for a default element spec (defaults to:\n{tag: \"input\", type: \"text\", size: \"24\", autocomplete: \"off\"})",
60650      "memberOf": "Roo.form.ComboBox"
60651     },
60652     {
60653      "name": "store",
60654      "type": "Roo.data.Store",
60655      "desc": "The data store to which this combo is bound (defaults to undefined)",
60656      "memberOf": "Roo.form.ComboBox"
60657     },
60658     {
60659      "name": "title",
60660      "type": "String",
60661      "desc": "If supplied, a header element is created containing this text and added into the top of\nthe dropdown list (defaults to undefined, with no header element)",
60662      "memberOf": "Roo.form.ComboBox"
60663     },
60664     {
60665      "name": "grow",
60666      "type": "Boolean",
60667      "desc": "",
60668      "memberOf": "Roo.form.ComboBox"
60669     },
60670     {
60671      "name": "growMin",
60672      "type": "Number",
60673      "desc": "",
60674      "memberOf": "Roo.form.ComboBox"
60675     },
60676     {
60677      "name": "growMax",
60678      "type": "Number",
60679      "desc": "",
60680      "memberOf": "Roo.form.ComboBox"
60681     },
60682     {
60683      "name": "tpl",
60684      "type": "String/Roo.Template",
60685      "desc": "The template to use to render the output",
60686      "memberOf": "Roo.form.ComboBox"
60687     },
60688     {
60689      "name": "listWidth",
60690      "type": "Number",
60691      "desc": "The width in pixels of the dropdown list (defaults to the width of the ComboBox field)",
60692      "memberOf": "Roo.form.ComboBox"
60693     },
60694     {
60695      "name": "displayField",
60696      "type": "String",
60697      "desc": "The underlying data field name to bind to this CombBox (defaults to undefined if\nmode = 'remote' or 'text' if mode = 'local')",
60698      "memberOf": "Roo.form.ComboBox"
60699     },
60700     {
60701      "name": "valueField",
60702      "type": "String",
60703      "desc": "The underlying data value name to bind to this CombBox (defaults to undefined if\nmode = 'remote' or 'value' if mode = 'local'). \nNote: use of a valueField requires the user make a selection\nin order for a value to be mapped.",
60704      "memberOf": "Roo.form.ComboBox"
60705     },
60706     {
60707      "name": "hiddenName",
60708      "type": "String",
60709      "desc": "If specified, a hidden form field with this name is dynamically generated to store the\nfield's data value (defaults to the underlying DOM element's name)",
60710      "memberOf": "Roo.form.ComboBox"
60711     },
60712     {
60713      "name": "listClass",
60714      "type": "String",
60715      "desc": "CSS class to apply to the dropdown list element (defaults to '')",
60716      "memberOf": "Roo.form.ComboBox"
60717     },
60718     {
60719      "name": "selectedClass",
60720      "type": "String",
60721      "desc": "CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')",
60722      "memberOf": "Roo.form.ComboBox"
60723     },
60724     {
60725      "name": "triggerClass",
60726      "type": "String",
60727      "desc": "An additional CSS class used to style the trigger button.  The trigger will always get the\nclass 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'\nwhich displays a downward arrow icon).",
60728      "memberOf": "Roo.form.ComboBox"
60729     },
60730     {
60731      "name": "shadow",
60732      "type": "Boolean/String",
60733      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\" for bottom-right",
60734      "memberOf": "Roo.form.ComboBox"
60735     },
60736     {
60737      "name": "listAlign",
60738      "type": "String",
60739      "desc": "A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported\nanchor positions (defaults to 'tl-bl')",
60740      "memberOf": "Roo.form.ComboBox"
60741     },
60742     {
60743      "name": "maxHeight",
60744      "type": "Number",
60745      "desc": "The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)",
60746      "memberOf": "Roo.form.ComboBox"
60747     },
60748     {
60749      "name": "triggerAction",
60750      "type": "String",
60751      "desc": "The action to execute when the trigger field is activated.  Use 'all' to run the\nquery specified by the allQuery config option (defaults to 'query')",
60752      "memberOf": "Roo.form.ComboBox"
60753     },
60754     {
60755      "name": "minChars",
60756      "type": "Number",
60757      "desc": "The minimum number of characters the user must type before autocomplete and typeahead activate\n(defaults to 4, does not apply if editable = false)",
60758      "memberOf": "Roo.form.ComboBox"
60759     },
60760     {
60761      "name": "typeAhead",
60762      "type": "Boolean",
60763      "desc": "True to populate and autoselect the remainder of the text being typed after a configurable\ndelay (typeAheadDelay) if it matches a known value (defaults to false)",
60764      "memberOf": "Roo.form.ComboBox"
60765     },
60766     {
60767      "name": "queryDelay",
60768      "type": "Number",
60769      "desc": "The length of time in milliseconds to delay between the start of typing and sending the\nquery to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')",
60770      "memberOf": "Roo.form.ComboBox"
60771     },
60772     {
60773      "name": "pageSize",
60774      "type": "Number",
60775      "desc": "If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the\nfilter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)",
60776      "memberOf": "Roo.form.ComboBox"
60777     },
60778     {
60779      "name": "selectOnFocus",
60780      "type": "Boolean",
60781      "desc": "True to select any existing text in the field immediately on focus.  Only applies\nwhen editable = true (defaults to false)",
60782      "memberOf": "Roo.form.ComboBox"
60783     },
60784     {
60785      "name": "queryParam",
60786      "type": "String",
60787      "desc": "Name of the query as it will be passed on the querystring (defaults to 'query')",
60788      "memberOf": "Roo.form.ComboBox"
60789     },
60790     {
60791      "name": "loadingText",
60792      "type": "String",
60793      "desc": "The text to display in the dropdown list while data is loading.  Only applies\nwhen mode = 'remote' (defaults to 'Loading...')",
60794      "memberOf": "Roo.form.ComboBox"
60795     },
60796     {
60797      "name": "resizable",
60798      "type": "Boolean",
60799      "desc": "True to add a resize handle to the bottom of the dropdown list (defaults to false)",
60800      "memberOf": "Roo.form.ComboBox"
60801     },
60802     {
60803      "name": "handleHeight",
60804      "type": "Number",
60805      "desc": "The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)",
60806      "memberOf": "Roo.form.ComboBox"
60807     },
60808     {
60809      "name": "editable",
60810      "type": "Boolean",
60811      "desc": "False to prevent the user from typing text directly into the field, just like a\ntraditional select (defaults to true)",
60812      "memberOf": "Roo.form.ComboBox"
60813     },
60814     {
60815      "name": "allQuery",
60816      "type": "String",
60817      "desc": "The text query to send to the server to return all records for the list with no filtering (defaults to '')",
60818      "memberOf": "Roo.form.ComboBox"
60819     },
60820     {
60821      "name": "mode",
60822      "type": "String",
60823      "desc": "Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)",
60824      "memberOf": "Roo.form.ComboBox"
60825     },
60826     {
60827      "name": "minListWidth",
60828      "type": "Number",
60829      "desc": "The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if\nlistWidth has a higher value)",
60830      "memberOf": "Roo.form.ComboBox"
60831     },
60832     {
60833      "name": "forceSelection",
60834      "type": "Boolean",
60835      "desc": "True to restrict the selected value to one of the values in the list, false to\nallow the user to set arbitrary text into the field (defaults to false)",
60836      "memberOf": "Roo.form.ComboBox"
60837     },
60838     {
60839      "name": "typeAheadDelay",
60840      "type": "Number",
60841      "desc": "The length of time in milliseconds to wait until the typeahead text is displayed\nif typeAhead = true (defaults to 250)",
60842      "memberOf": "Roo.form.ComboBox"
60843     },
60844     {
60845      "name": "valueNotFoundText",
60846      "type": "String",
60847      "desc": "When using a name/value combo, if the value passed to setValue is not found in\nthe store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)",
60848      "memberOf": "Roo.form.ComboBox"
60849     },
60850     {
60851      "name": "blockFocus",
60852      "type": "Boolean",
60853      "desc": "Prevents all focus calls, so it can work with things like HTML edtor bar",
60854      "memberOf": "Roo.form.ComboBox"
60855     },
60856     {
60857      "name": "disableClear",
60858      "type": "Boolean",
60859      "desc": "Disable showing of clear button.",
60860      "memberOf": "Roo.form.ComboBox"
60861     },
60862     {
60863      "name": "alwaysQuery",
60864      "type": "Boolean",
60865      "desc": "Disable caching of results, and always send query",
60866      "memberOf": "Roo.form.ComboBox"
60867     },
60868     {
60869      "name": "hideTrigger",
60870      "type": "Boolean",
60871      "desc": "True to hide the trigger element and display only the base text field (defaults to false)",
60872      "memberOf": "Roo.form.TriggerField"
60873     },
60874     {
60875      "name": "vtype",
60876      "type": "String",
60877      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
60878      "memberOf": "Roo.form.TextField"
60879     },
60880     {
60881      "name": "maskRe",
60882      "type": "String",
60883      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
60884      "memberOf": "Roo.form.TextField"
60885     },
60886     {
60887      "name": "disableKeyFilter",
60888      "type": "Boolean",
60889      "desc": "True to disable input keystroke filtering (defaults to false)",
60890      "memberOf": "Roo.form.TextField"
60891     },
60892     {
60893      "name": "allowBlank",
60894      "type": "Boolean",
60895      "desc": "False to validate that the value length > 0 (defaults to true)",
60896      "memberOf": "Roo.form.TextField"
60897     },
60898     {
60899      "name": "minLength",
60900      "type": "Number",
60901      "desc": "Minimum input field length required (defaults to 0)",
60902      "memberOf": "Roo.form.TextField"
60903     },
60904     {
60905      "name": "maxLength",
60906      "type": "Number",
60907      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
60908      "memberOf": "Roo.form.TextField"
60909     },
60910     {
60911      "name": "minLengthText",
60912      "type": "String",
60913      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
60914      "memberOf": "Roo.form.TextField"
60915     },
60916     {
60917      "name": "maxLengthText",
60918      "type": "String",
60919      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
60920      "memberOf": "Roo.form.TextField"
60921     },
60922     {
60923      "name": "blankText",
60924      "type": "String",
60925      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
60926      "memberOf": "Roo.form.TextField"
60927     },
60928     {
60929      "name": "validator",
60930      "type": "Function",
60931      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
60932      "memberOf": "Roo.form.TextField"
60933     },
60934     {
60935      "name": "regex",
60936      "type": "RegExp",
60937      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
60938      "memberOf": "Roo.form.TextField"
60939     },
60940     {
60941      "name": "regexText",
60942      "type": "String",
60943      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
60944      "memberOf": "Roo.form.TextField"
60945     },
60946     {
60947      "name": "emptyText",
60948      "type": "String",
60949      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
60950      "memberOf": "Roo.form.TextField"
60951     },
60952     {
60953      "name": "fieldLabel",
60954      "type": "String",
60955      "desc": "Label to use when rendering a form.",
60956      "memberOf": "Roo.form.Field"
60957     },
60958     {
60959      "name": "qtip",
60960      "type": "String",
60961      "desc": "Mouse over tip",
60962      "memberOf": "Roo.form.Field"
60963     },
60964     {
60965      "name": "name",
60966      "type": "String",
60967      "desc": "The field's HTML name attribute.",
60968      "memberOf": "Roo.form.Field"
60969     },
60970     {
60971      "name": "invalidClass",
60972      "type": "String",
60973      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
60974      "memberOf": "Roo.form.Field"
60975     },
60976     {
60977      "name": "invalidText",
60978      "type": "String",
60979      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
60980      "memberOf": "Roo.form.Field"
60981     },
60982     {
60983      "name": "focusClass",
60984      "type": "String",
60985      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
60986      "memberOf": "Roo.form.Field"
60987     },
60988     {
60989      "name": "validationEvent",
60990      "type": "String/Boolean",
60991      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
60992      "memberOf": "Roo.form.Field"
60993     },
60994     {
60995      "name": "validateOnBlur",
60996      "type": "Boolean",
60997      "desc": "Whether the field should validate when it loses focus (defaults to true).",
60998      "memberOf": "Roo.form.Field"
60999     },
61000     {
61001      "name": "validationDelay",
61002      "type": "Number",
61003      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
61004      "memberOf": "Roo.form.Field"
61005     },
61006     {
61007      "name": "fieldClass",
61008      "type": "String",
61009      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
61010      "memberOf": "Roo.form.Field"
61011     },
61012     {
61013      "name": "msgTarget",
61014      "type": "String",
61015      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
61016      "memberOf": "Roo.form.Field"
61017     },
61018     {
61019      "name": "msgFx",
61020      "type": "String",
61021      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
61022      "memberOf": "Roo.form.Field"
61023     },
61024     {
61025      "name": "readOnly",
61026      "type": "Boolean",
61027      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
61028      "memberOf": "Roo.form.Field"
61029     },
61030     {
61031      "name": "disabled",
61032      "type": "Boolean",
61033      "desc": "True to disable the field (defaults to false).",
61034      "memberOf": "Roo.form.Field"
61035     },
61036     {
61037      "name": "inputType",
61038      "type": "String",
61039      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
61040      "memberOf": "Roo.form.Field"
61041     },
61042     {
61043      "name": "tabIndex",
61044      "type": "Number",
61045      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
61046      "memberOf": "Roo.form.Field"
61047     },
61048     {
61049      "name": "value",
61050      "type": "Mixed",
61051      "desc": "A value to initialize this field with.",
61052      "memberOf": "Roo.form.Field"
61053     },
61054     {
61055      "name": "cls",
61056      "type": "String",
61057      "desc": "A CSS class to apply to the field's underlying element.",
61058      "memberOf": "Roo.form.Field"
61059     },
61060     {
61061      "name": "width",
61062      "type": "Number",
61063      "desc": "width (optional) size of component",
61064      "memberOf": "Roo.BoxComponent"
61065     },
61066     {
61067      "name": "height",
61068      "type": "Number",
61069      "desc": "height (optional) size of component",
61070      "memberOf": "Roo.BoxComponent"
61071     },
61072     {
61073      "name": "disableClass",
61074      "type": "String",
61075      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
61076      "memberOf": "Roo.Component"
61077     },
61078     {
61079      "name": "allowDomMove",
61080      "type": "Boolean",
61081      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
61082      "memberOf": "Roo.Component"
61083     },
61084     {
61085      "name": "hideMode",
61086      "type": "String",
61087      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
61088      "memberOf": "Roo.Component",
61089      "optvals": [
61090       "display",
61091       "visibility"
61092      ]
61093     },
61094     {
61095      "name": "actionMode",
61096      "type": "String",
61097      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
61098      "memberOf": "Roo.Component"
61099     },
61100     {
61101      "name": "listeners",
61102      "type": "Object",
61103      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
61104      "memberOf": "Roo.util.Observable"
61105     }
61106    ],
61107    "events": [
61108     {
61109      "name": "add",
61110      "sig": "function (combo)\n{\n\n}",
61111      "type": "function",
61112      "desc": "Fires when the 'add' icon is pressed (add a listener to enable add button)"
61113     },
61114     {
61115      "name": "autosize",
61116      "sig": "function (_self, width)\n{\n\n}",
61117      "type": "function",
61118      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
61119     },
61120     {
61121      "name": "beforedestroy",
61122      "sig": "function (_self)\n{\n\n}",
61123      "type": "function",
61124      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
61125     },
61126     {
61127      "name": "beforehide",
61128      "sig": "function (_self)\n{\n\n}",
61129      "type": "function",
61130      "desc": "Fires before the component is hidden. Return false to stop the hide."
61131     },
61132     {
61133      "name": "beforequery",
61134      "sig": "function (combo, query, forceAll, cancel, e)\n{\n\n}",
61135      "type": "function",
61136      "desc": "Fires before all queries are processed. Return false to cancel the query or set cancel to true.\nThe event object passed has these properties:"
61137     },
61138     {
61139      "name": "beforerender",
61140      "sig": "function (_self)\n{\n\n}",
61141      "type": "function",
61142      "desc": "Fires before the component is rendered. Return false to stop the render."
61143     },
61144     {
61145      "name": "beforeselect",
61146      "sig": "function (combo, record, index)\n{\n\n}",
61147      "type": "function",
61148      "desc": "Fires before a list item is selected. Return false to cancel the selection."
61149     },
61150     {
61151      "name": "beforeshow",
61152      "sig": "function (_self)\n{\n\n}",
61153      "type": "function",
61154      "desc": "Fires before the component is shown.  Return false to stop the show."
61155     },
61156     {
61157      "name": "blur",
61158      "sig": "function (_self)\n{\n\n}",
61159      "type": "function",
61160      "desc": "Fires when this field loses input focus."
61161     },
61162     {
61163      "name": "change",
61164      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
61165      "type": "function",
61166      "desc": "Fires just before the field blurs if the field value has changed."
61167     },
61168     {
61169      "name": "collapse",
61170      "sig": "function (combo)\n{\n\n}",
61171      "type": "function",
61172      "desc": "Fires when the dropdown list is collapsed"
61173     },
61174     {
61175      "name": "destroy",
61176      "sig": "function (_self)\n{\n\n}",
61177      "type": "function",
61178      "desc": "Fires after the component is destroyed."
61179     },
61180     {
61181      "name": "disable",
61182      "sig": "function (_self)\n{\n\n}",
61183      "type": "function",
61184      "desc": "Fires after the component is disabled."
61185     },
61186     {
61187      "name": "edit",
61188      "sig": "function (combo, record)\n{\n\n}",
61189      "type": "function",
61190      "desc": "Fires when the 'edit' icon is pressed (add a listener to enable add button)"
61191     },
61192     {
61193      "name": "enable",
61194      "sig": "function (_self)\n{\n\n}",
61195      "type": "function",
61196      "desc": "Fires after the component is enabled."
61197     },
61198     {
61199      "name": "expand",
61200      "sig": "function (combo)\n{\n\n}",
61201      "type": "function",
61202      "desc": "Fires when the dropdown list is expanded"
61203     },
61204     {
61205      "name": "focus",
61206      "sig": "function (_self)\n{\n\n}",
61207      "type": "function",
61208      "desc": "Fires when this field receives input focus."
61209     },
61210     {
61211      "name": "hide",
61212      "sig": "function (_self)\n{\n\n}",
61213      "type": "function",
61214      "desc": "Fires after the component is hidden."
61215     },
61216     {
61217      "name": "invalid",
61218      "sig": "function (_self, msg)\n{\n\n}",
61219      "type": "function",
61220      "desc": "Fires after the field has been marked as invalid."
61221     },
61222     {
61223      "name": "keyup",
61224      "sig": "function (_self, e)\n{\n\n}",
61225      "type": "function",
61226      "desc": "Fires after the key up"
61227     },
61228     {
61229      "name": "move",
61230      "sig": "function (_self, x, y)\n{\n\n}",
61231      "type": "function",
61232      "desc": "Fires after the component is moved."
61233     },
61234     {
61235      "name": "render",
61236      "sig": "function (_self)\n{\n\n}",
61237      "type": "function",
61238      "desc": "Fires after the component is rendered."
61239     },
61240     {
61241      "name": "resize",
61242      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
61243      "type": "function",
61244      "desc": "Fires after the component is resized."
61245     },
61246     {
61247      "name": "select",
61248      "sig": "function (combo, record, index)\n{\n\n}",
61249      "type": "function",
61250      "desc": "Fires when a list item is selected"
61251     },
61252     {
61253      "name": "show",
61254      "sig": "function (_self)\n{\n\n}",
61255      "type": "function",
61256      "desc": "Fires after the component is shown."
61257     },
61258     {
61259      "name": "specialkey",
61260      "sig": "function (_self, e)\n{\n\n}",
61261      "type": "function",
61262      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
61263     },
61264     {
61265      "name": "valid",
61266      "sig": "function (_self)\n{\n\n}",
61267      "type": "function",
61268      "desc": "Fires after the field has been validated with no errors."
61269     }
61270    ],
61271    "methods": [
61272     {
61273      "name": "addEvents",
61274      "sig": "(Object object)",
61275      "type": "function",
61276      "desc": "Used to define events on this Observable"
61277     },
61278     {
61279      "name": "addListener",
61280      "sig": "(String eventName, Function handler, Object scope, Object options)",
61281      "type": "function",
61282      "desc": "Appends an event handler to this component"
61283     },
61284     {
61285      "name": "applyTo",
61286      "sig": "(String/HTMLElement/Element el)",
61287      "type": "function",
61288      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
61289     },
61290     {
61291      "name": "capture",
61292      "sig": "(Observable o, Function fn, Object scope)",
61293      "type": "function",
61294      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
61295     },
61296     {
61297      "name": "clearInvalid",
61298      "sig": "()",
61299      "type": "function",
61300      "desc": "Clear any invalid styles/messages for this field"
61301     },
61302     {
61303      "name": "clearValue",
61304      "sig": "()",
61305      "type": "function",
61306      "desc": "Clears any text/value currently set in the field"
61307     },
61308     {
61309      "name": "collapse",
61310      "sig": "()",
61311      "type": "function",
61312      "desc": "Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion."
61313     },
61314     {
61315      "name": "destroy",
61316      "sig": "()",
61317      "type": "function",
61318      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
61319     },
61320     {
61321      "name": "disable",
61322      "sig": "()",
61323      "type": "function",
61324      "desc": "Disable this component."
61325     },
61326     {
61327      "name": "doQuery",
61328      "sig": "(String query, Boolean forceAll)",
61329      "type": "function",
61330      "desc": "Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the\nquery allowing the query action to be canceled if needed."
61331     },
61332     {
61333      "name": "enable",
61334      "sig": "()",
61335      "type": "function",
61336      "desc": "Enable this component."
61337     },
61338     {
61339      "name": "expand",
61340      "sig": "()",
61341      "type": "function",
61342      "desc": "Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion."
61343     },
61344     {
61345      "name": "fireEvent",
61346      "sig": "(String eventName, Object... args)",
61347      "type": "function",
61348      "desc": "Fires the specified event with the passed parameters (minus the event name)."
61349     },
61350     {
61351      "name": "focus",
61352      "sig": "(Boolean selectText)",
61353      "type": "function",
61354      "desc": "Try to focus this component."
61355     },
61356     {
61357      "name": "getBox",
61358      "sig": "(Boolean local)",
61359      "type": "function",
61360      "desc": "Gets the current box measurements of the component's underlying element."
61361     },
61362     {
61363      "name": "getEl",
61364      "sig": "()",
61365      "type": "function",
61366      "desc": "Returns the underlying {@link Roo.Element}."
61367     },
61368     {
61369      "name": "getId",
61370      "sig": "()",
61371      "type": "function",
61372      "desc": "Returns the id of this component."
61373     },
61374     {
61375      "name": "getName",
61376      "sig": "()",
61377      "type": "function",
61378      "desc": "Returns the name attribute of the field if available"
61379     },
61380     {
61381      "name": "getPosition",
61382      "sig": "(Boolean local)",
61383      "type": "function",
61384      "desc": "Gets the current XY position of the component's underlying element."
61385     },
61386     {
61387      "name": "getRawValue",
61388      "sig": "()",
61389      "type": "function",
61390      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
61391     },
61392     {
61393      "name": "getSize",
61394      "sig": "()",
61395      "type": "function",
61396      "desc": "Gets the current size of the component's underlying element."
61397     },
61398     {
61399      "name": "getValue",
61400      "sig": "()",
61401      "type": "function",
61402      "desc": "Returns the currently selected field value or empty string if no value is set."
61403     },
61404     {
61405      "name": "hasChanged",
61406      "sig": "()",
61407      "type": "function",
61408      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
61409     },
61410     {
61411      "name": "hasListener",
61412      "sig": "(String eventName)",
61413      "type": "function",
61414      "desc": "Checks to see if this object has any listeners for a specified event"
61415     },
61416     {
61417      "name": "hide",
61418      "sig": "()",
61419      "type": "function",
61420      "desc": "Hide this component."
61421     },
61422     {
61423      "name": "isDirty",
61424      "sig": "()",
61425      "type": "function",
61426      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
61427     },
61428     {
61429      "name": "isExpanded",
61430      "sig": "()",
61431      "type": "function",
61432      "desc": "Returns true if the dropdown list is expanded, else false."
61433     },
61434     {
61435      "name": "isValid",
61436      "sig": "(Boolean preventMark)",
61437      "type": "function",
61438      "desc": "Returns whether or not the field value is currently valid"
61439     },
61440     {
61441      "name": "isVisible",
61442      "sig": "()",
61443      "type": "function",
61444      "desc": "Returns true if this component is visible."
61445     },
61446     {
61447      "name": "markInvalid",
61448      "sig": "(String msg)",
61449      "type": "function",
61450      "desc": "Mark this field as invalid"
61451     },
61452     {
61453      "name": "on",
61454      "sig": "(String eventName, Function handler, Object scope, Object options)",
61455      "type": "function",
61456      "desc": "Appends an event handler to this element (shorthand for addListener)"
61457     },
61458     {
61459      "name": "onPosition",
61460      "sig": "(Number x, Number y)",
61461      "type": "function",
61462      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
61463     },
61464     {
61465      "name": "onResize",
61466      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
61467      "type": "function",
61468      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
61469     },
61470     {
61471      "name": "onTriggerClick",
61472      "sig": "(EventObject e)",
61473      "type": "function",
61474      "desc": "The function that should handle the trigger's click event.  This method does nothing by default until overridden\nby an implementing function."
61475     },
61476     {
61477      "name": "purgeListeners",
61478      "sig": "()",
61479      "type": "function",
61480      "desc": "Removes all listeners for this object"
61481     },
61482     {
61483      "name": "releaseCapture",
61484      "sig": "(Observable o)",
61485      "type": "function",
61486      "desc": "Removes <b>all</b> added captures from the Observable."
61487     },
61488     {
61489      "name": "removeListener",
61490      "sig": "(String eventName, Function handler, Object scope)",
61491      "type": "function",
61492      "desc": "Removes a listener"
61493     },
61494     {
61495      "name": "render",
61496      "sig": "(String/HTMLElement/Element container)",
61497      "type": "function",
61498      "desc": "If this is a lazy rendering component, render it to its container element."
61499     },
61500     {
61501      "name": "reset",
61502      "sig": "()",
61503      "type": "function",
61504      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
61505     },
61506     {
61507      "name": "resetHasChanged",
61508      "sig": "()",
61509      "type": "function",
61510      "desc": "stores the current value in loadedValue"
61511     },
61512     {
61513      "name": "select",
61514      "sig": "(Number index, Boolean scrollIntoView)",
61515      "type": "function",
61516      "desc": "Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.\nThe store must be loaded and the list expanded for this function to work, otherwise use setValue."
61517     },
61518     {
61519      "name": "selectByValue",
61520      "sig": "(String value, Boolean scrollIntoView)",
61521      "type": "function",
61522      "desc": "Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.\nThe store must be loaded and the list expanded for this function to work, otherwise use setValue."
61523     },
61524     {
61525      "name": "selectText",
61526      "sig": "(Number start, Number end)",
61527      "type": "function",
61528      "desc": "Selects text in this field"
61529     },
61530     {
61531      "name": "setDisabled",
61532      "sig": "(Boolean disabled)",
61533      "type": "function",
61534      "desc": "Convenience function for setting disabled/enabled by boolean."
61535     },
61536     {
61537      "name": "setEditable",
61538      "sig": "(Boolean value)",
61539      "type": "function",
61540      "desc": "Allow or prevent the user from directly editing the field text.  If false is passed,\nthe user will only be able to select from the items defined in the dropdown list.  This method\nis the runtime equivalent of setting the 'editable' config option at config time."
61541     },
61542     {
61543      "name": "setFromData",
61544      "sig": "(Object value)",
61545      "type": "function",
61546      "desc": "Sets the value of the field based on a object which is related to the record format for the store."
61547     },
61548     {
61549      "name": "setPagePosition",
61550      "sig": "(Number x, Number y)",
61551      "type": "function",
61552      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
61553     },
61554     {
61555      "name": "setPosition",
61556      "sig": "(Number left, Number top)",
61557      "type": "function",
61558      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
61559     },
61560     {
61561      "name": "setRawValue",
61562      "sig": "(Mixed value)",
61563      "type": "function",
61564      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
61565     },
61566     {
61567      "name": "setSize",
61568      "sig": "(Number/Object width, Number height)",
61569      "type": "function",
61570      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
61571     },
61572     {
61573      "name": "setValue",
61574      "sig": "(String value)",
61575      "type": "function",
61576      "desc": "Sets the specified value into the field.  If the value finds a match, the corresponding record text\nwill be displayed in the field.  If the value does not match the data value of an existing item,\nand the valueNotFoundText config option is defined, it will be displayed as the default field text.\nOtherwise the field will be blank (although the value will still be set)."
61577     },
61578     {
61579      "name": "setVisible",
61580      "sig": "(Boolean visible)",
61581      "type": "function",
61582      "desc": "Convenience function to hide or show this component by boolean."
61583     },
61584     {
61585      "name": "show",
61586      "sig": "()",
61587      "type": "function",
61588      "desc": "Show this component."
61589     },
61590     {
61591      "name": "syncSize",
61592      "sig": "()",
61593      "type": "function",
61594      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
61595     },
61596     {
61597      "name": "un",
61598      "sig": "(String eventName, Function handler, Object scope)",
61599      "type": "function",
61600      "desc": "Removes a listener (shorthand for removeListener)"
61601     },
61602     {
61603      "name": "updateBox",
61604      "sig": "(Object box)",
61605      "type": "function",
61606      "desc": "Sets the current box measurements of the component's underlying element."
61607     },
61608     {
61609      "name": "validate",
61610      "sig": "()",
61611      "type": "function",
61612      "desc": "Validates the field value"
61613     },
61614     {
61615      "name": "validateValue",
61616      "sig": "(Mixed value)",
61617      "type": "function",
61618      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
61619     }
61620    ]
61621   },
61622   "Roo.form.DateField": {
61623    "props": [
61624     {
61625      "name": "format",
61626      "type": "String",
61627      "desc": "The default date format string which can be overriden for localization support.  The format must be\nvalid according to {@link Date#parseDate} (defaults to 'm/d/y').",
61628      "memberOf": ""
61629     },
61630     {
61631      "name": "altFormats",
61632      "type": "String",
61633      "desc": "Multiple date formats separated by \"|\" to try when parsing a user input value and it doesn't match the defined\nformat (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').",
61634      "memberOf": ""
61635     },
61636     {
61637      "name": "disabledDays",
61638      "type": "Array",
61639      "desc": "An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).",
61640      "memberOf": ""
61641     },
61642     {
61643      "name": "disabledDaysText",
61644      "type": "String",
61645      "desc": "The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')",
61646      "memberOf": ""
61647     },
61648     {
61649      "name": "disabledDates",
61650      "type": "Array",
61651      "desc": "An array of \"dates\" to disable, as strings. These strings will be used to build a dynamic regular\nexpression so they are very powerful. Some examples:\n<ul>\n<li>[\"03/08/2003\", \"09/16/2003\"] would disable those exact dates</li>\n<li>[\"03/08\", \"09/16\"] would disable those days for every year</li>\n<li>[\"^03/08\"] would only match the beginning (useful if you are using short years)</li>\n<li>[\"03/../2006\"] would disable every day in March 2006</li>\n<li>[\"^03\"] would disable every day in every March</li>\n</ul>\nIn order to support regular expressions, if you are using a date format that has \".\" in it, you will have to\nescape the dot when restricting dates. For example: [\"03\\\\.08\\\\.03\"].",
61652      "memberOf": ""
61653     },
61654     {
61655      "name": "disabledDatesText",
61656      "type": "String",
61657      "desc": "The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')",
61658      "memberOf": ""
61659     },
61660     {
61661      "name": "minValue",
61662      "type": "Date/String",
61663      "desc": "The minimum allowed date. Can be either a Javascript date object or a string date in a\nvalid format (defaults to null).",
61664      "memberOf": ""
61665     },
61666     {
61667      "name": "maxValue",
61668      "type": "Date/String",
61669      "desc": "The maximum allowed date. Can be either a Javascript date object or a string date in a\nvalid format (defaults to null).",
61670      "memberOf": ""
61671     },
61672     {
61673      "name": "minText",
61674      "type": "String",
61675      "desc": "The error text to display when the date in the cell is before minValue (defaults to\n'The date in this field must be after {minValue}').",
61676      "memberOf": ""
61677     },
61678     {
61679      "name": "maxText",
61680      "type": "String",
61681      "desc": "The error text to display when the date in the cell is after maxValue (defaults to\n'The date in this field must be before {maxValue}').",
61682      "memberOf": ""
61683     },
61684     {
61685      "name": "invalidText",
61686      "type": "String",
61687      "desc": "The error text to display when the date in the field is invalid (defaults to\n'{value} is not a valid date - it must be in the format {format}').",
61688      "memberOf": ""
61689     },
61690     {
61691      "name": "triggerClass",
61692      "type": "String",
61693      "desc": "An additional CSS class used to style the trigger button.  The trigger will always get the\nclass 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'\nwhich displays a calendar icon).",
61694      "memberOf": ""
61695     },
61696     {
61697      "name": "useIso",
61698      "type": "Boolean",
61699      "desc": "if enabled, then the date field will use a hidden field to store the \nreal value as iso formated date. default (false)",
61700      "memberOf": ""
61701     },
61702     {
61703      "name": "autoCreate",
61704      "type": "String/Object",
61705      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"10\", autocomplete: \"off\"})",
61706      "memberOf": ""
61707     },
61708     {
61709      "name": "hideTrigger",
61710      "type": "Boolean",
61711      "desc": "True to hide the trigger element and display only the base text field (defaults to false)",
61712      "memberOf": "Roo.form.TriggerField"
61713     },
61714     {
61715      "name": "vtype",
61716      "type": "String",
61717      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
61718      "memberOf": "Roo.form.TextField"
61719     },
61720     {
61721      "name": "maskRe",
61722      "type": "String",
61723      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
61724      "memberOf": "Roo.form.TextField"
61725     },
61726     {
61727      "name": "disableKeyFilter",
61728      "type": "Boolean",
61729      "desc": "True to disable input keystroke filtering (defaults to false)",
61730      "memberOf": "Roo.form.TextField"
61731     },
61732     {
61733      "name": "allowBlank",
61734      "type": "Boolean",
61735      "desc": "False to validate that the value length > 0 (defaults to true)",
61736      "memberOf": "Roo.form.TextField"
61737     },
61738     {
61739      "name": "minLength",
61740      "type": "Number",
61741      "desc": "Minimum input field length required (defaults to 0)",
61742      "memberOf": "Roo.form.TextField"
61743     },
61744     {
61745      "name": "maxLength",
61746      "type": "Number",
61747      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
61748      "memberOf": "Roo.form.TextField"
61749     },
61750     {
61751      "name": "minLengthText",
61752      "type": "String",
61753      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
61754      "memberOf": "Roo.form.TextField"
61755     },
61756     {
61757      "name": "maxLengthText",
61758      "type": "String",
61759      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
61760      "memberOf": "Roo.form.TextField"
61761     },
61762     {
61763      "name": "selectOnFocus",
61764      "type": "Boolean",
61765      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
61766      "memberOf": "Roo.form.TextField"
61767     },
61768     {
61769      "name": "blankText",
61770      "type": "String",
61771      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
61772      "memberOf": "Roo.form.TextField"
61773     },
61774     {
61775      "name": "validator",
61776      "type": "Function",
61777      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
61778      "memberOf": "Roo.form.TextField"
61779     },
61780     {
61781      "name": "regex",
61782      "type": "RegExp",
61783      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
61784      "memberOf": "Roo.form.TextField"
61785     },
61786     {
61787      "name": "regexText",
61788      "type": "String",
61789      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
61790      "memberOf": "Roo.form.TextField"
61791     },
61792     {
61793      "name": "emptyText",
61794      "type": "String",
61795      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
61796      "memberOf": "Roo.form.TextField"
61797     },
61798     {
61799      "name": "fieldLabel",
61800      "type": "String",
61801      "desc": "Label to use when rendering a form.",
61802      "memberOf": "Roo.form.Field"
61803     },
61804     {
61805      "name": "qtip",
61806      "type": "String",
61807      "desc": "Mouse over tip",
61808      "memberOf": "Roo.form.Field"
61809     },
61810     {
61811      "name": "name",
61812      "type": "String",
61813      "desc": "The field's HTML name attribute.",
61814      "memberOf": "Roo.form.Field"
61815     },
61816     {
61817      "name": "invalidClass",
61818      "type": "String",
61819      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
61820      "memberOf": "Roo.form.Field"
61821     },
61822     {
61823      "name": "focusClass",
61824      "type": "String",
61825      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
61826      "memberOf": "Roo.form.Field"
61827     },
61828     {
61829      "name": "validationEvent",
61830      "type": "String/Boolean",
61831      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
61832      "memberOf": "Roo.form.Field"
61833     },
61834     {
61835      "name": "validateOnBlur",
61836      "type": "Boolean",
61837      "desc": "Whether the field should validate when it loses focus (defaults to true).",
61838      "memberOf": "Roo.form.Field"
61839     },
61840     {
61841      "name": "validationDelay",
61842      "type": "Number",
61843      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
61844      "memberOf": "Roo.form.Field"
61845     },
61846     {
61847      "name": "fieldClass",
61848      "type": "String",
61849      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
61850      "memberOf": "Roo.form.Field"
61851     },
61852     {
61853      "name": "msgTarget",
61854      "type": "String",
61855      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
61856      "memberOf": "Roo.form.Field"
61857     },
61858     {
61859      "name": "msgFx",
61860      "type": "String",
61861      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
61862      "memberOf": "Roo.form.Field"
61863     },
61864     {
61865      "name": "readOnly",
61866      "type": "Boolean",
61867      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
61868      "memberOf": "Roo.form.Field"
61869     },
61870     {
61871      "name": "disabled",
61872      "type": "Boolean",
61873      "desc": "True to disable the field (defaults to false).",
61874      "memberOf": "Roo.form.Field"
61875     },
61876     {
61877      "name": "inputType",
61878      "type": "String",
61879      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
61880      "memberOf": "Roo.form.Field"
61881     },
61882     {
61883      "name": "tabIndex",
61884      "type": "Number",
61885      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
61886      "memberOf": "Roo.form.Field"
61887     },
61888     {
61889      "name": "value",
61890      "type": "Mixed",
61891      "desc": "A value to initialize this field with.",
61892      "memberOf": "Roo.form.Field"
61893     },
61894     {
61895      "name": "cls",
61896      "type": "String",
61897      "desc": "A CSS class to apply to the field's underlying element.",
61898      "memberOf": "Roo.form.Field"
61899     },
61900     {
61901      "name": "width",
61902      "type": "Number",
61903      "desc": "width (optional) size of component",
61904      "memberOf": "Roo.BoxComponent"
61905     },
61906     {
61907      "name": "height",
61908      "type": "Number",
61909      "desc": "height (optional) size of component",
61910      "memberOf": "Roo.BoxComponent"
61911     },
61912     {
61913      "name": "disableClass",
61914      "type": "String",
61915      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
61916      "memberOf": "Roo.Component"
61917     },
61918     {
61919      "name": "allowDomMove",
61920      "type": "Boolean",
61921      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
61922      "memberOf": "Roo.Component"
61923     },
61924     {
61925      "name": "hideMode",
61926      "type": "String",
61927      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
61928      "memberOf": "Roo.Component",
61929      "optvals": [
61930       "display",
61931       "visibility"
61932      ]
61933     },
61934     {
61935      "name": "actionMode",
61936      "type": "String",
61937      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
61938      "memberOf": "Roo.Component"
61939     },
61940     {
61941      "name": "listeners",
61942      "type": "Object",
61943      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
61944      "memberOf": "Roo.util.Observable"
61945     }
61946    ],
61947    "events": [
61948     {
61949      "name": "autosize",
61950      "sig": "function (_self, width)\n{\n\n}",
61951      "type": "function",
61952      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
61953     },
61954     {
61955      "name": "beforedestroy",
61956      "sig": "function (_self)\n{\n\n}",
61957      "type": "function",
61958      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
61959     },
61960     {
61961      "name": "beforehide",
61962      "sig": "function (_self)\n{\n\n}",
61963      "type": "function",
61964      "desc": "Fires before the component is hidden. Return false to stop the hide."
61965     },
61966     {
61967      "name": "beforerender",
61968      "sig": "function (_self)\n{\n\n}",
61969      "type": "function",
61970      "desc": "Fires before the component is rendered. Return false to stop the render."
61971     },
61972     {
61973      "name": "beforeshow",
61974      "sig": "function (_self)\n{\n\n}",
61975      "type": "function",
61976      "desc": "Fires before the component is shown.  Return false to stop the show."
61977     },
61978     {
61979      "name": "blur",
61980      "sig": "function (_self)\n{\n\n}",
61981      "type": "function",
61982      "desc": "Fires when this field loses input focus."
61983     },
61984     {
61985      "name": "change",
61986      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
61987      "type": "function",
61988      "desc": "Fires just before the field blurs if the field value has changed."
61989     },
61990     {
61991      "name": "destroy",
61992      "sig": "function (_self)\n{\n\n}",
61993      "type": "function",
61994      "desc": "Fires after the component is destroyed."
61995     },
61996     {
61997      "name": "disable",
61998      "sig": "function (_self)\n{\n\n}",
61999      "type": "function",
62000      "desc": "Fires after the component is disabled."
62001     },
62002     {
62003      "name": "enable",
62004      "sig": "function (_self)\n{\n\n}",
62005      "type": "function",
62006      "desc": "Fires after the component is enabled."
62007     },
62008     {
62009      "name": "focus",
62010      "sig": "function (_self)\n{\n\n}",
62011      "type": "function",
62012      "desc": "Fires when this field receives input focus."
62013     },
62014     {
62015      "name": "hide",
62016      "sig": "function (_self)\n{\n\n}",
62017      "type": "function",
62018      "desc": "Fires after the component is hidden."
62019     },
62020     {
62021      "name": "invalid",
62022      "sig": "function (_self, msg)\n{\n\n}",
62023      "type": "function",
62024      "desc": "Fires after the field has been marked as invalid."
62025     },
62026     {
62027      "name": "keyup",
62028      "sig": "function (_self, e)\n{\n\n}",
62029      "type": "function",
62030      "desc": "Fires after the key up"
62031     },
62032     {
62033      "name": "move",
62034      "sig": "function (_self, x, y)\n{\n\n}",
62035      "type": "function",
62036      "desc": "Fires after the component is moved."
62037     },
62038     {
62039      "name": "render",
62040      "sig": "function (_self)\n{\n\n}",
62041      "type": "function",
62042      "desc": "Fires after the component is rendered."
62043     },
62044     {
62045      "name": "resize",
62046      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
62047      "type": "function",
62048      "desc": "Fires after the component is resized."
62049     },
62050     {
62051      "name": "select",
62052      "sig": "function (combo, date)\n{\n\n}",
62053      "type": "function",
62054      "desc": "Fires when a date is selected"
62055     },
62056     {
62057      "name": "show",
62058      "sig": "function (_self)\n{\n\n}",
62059      "type": "function",
62060      "desc": "Fires after the component is shown."
62061     },
62062     {
62063      "name": "specialkey",
62064      "sig": "function (_self, e)\n{\n\n}",
62065      "type": "function",
62066      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
62067     },
62068     {
62069      "name": "valid",
62070      "sig": "function (_self)\n{\n\n}",
62071      "type": "function",
62072      "desc": "Fires after the field has been validated with no errors."
62073     }
62074    ],
62075    "methods": [
62076     {
62077      "name": "addEvents",
62078      "sig": "(Object object)",
62079      "type": "function",
62080      "desc": "Used to define events on this Observable"
62081     },
62082     {
62083      "name": "addListener",
62084      "sig": "(String eventName, Function handler, Object scope, Object options)",
62085      "type": "function",
62086      "desc": "Appends an event handler to this component"
62087     },
62088     {
62089      "name": "applyTo",
62090      "sig": "(String/HTMLElement/Element el)",
62091      "type": "function",
62092      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
62093     },
62094     {
62095      "name": "capture",
62096      "sig": "(Observable o, Function fn, Object scope)",
62097      "type": "function",
62098      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
62099     },
62100     {
62101      "name": "clearInvalid",
62102      "sig": "()",
62103      "type": "function",
62104      "desc": "Clear any invalid styles/messages for this field"
62105     },
62106     {
62107      "name": "destroy",
62108      "sig": "()",
62109      "type": "function",
62110      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
62111     },
62112     {
62113      "name": "disable",
62114      "sig": "()",
62115      "type": "function",
62116      "desc": "Disable this component."
62117     },
62118     {
62119      "name": "enable",
62120      "sig": "()",
62121      "type": "function",
62122      "desc": "Enable this component."
62123     },
62124     {
62125      "name": "fireEvent",
62126      "sig": "(String eventName, Object... args)",
62127      "type": "function",
62128      "desc": "Fires the specified event with the passed parameters (minus the event name)."
62129     },
62130     {
62131      "name": "focus",
62132      "sig": "(Boolean selectText)",
62133      "type": "function",
62134      "desc": "Try to focus this component."
62135     },
62136     {
62137      "name": "getBox",
62138      "sig": "(Boolean local)",
62139      "type": "function",
62140      "desc": "Gets the current box measurements of the component's underlying element."
62141     },
62142     {
62143      "name": "getEl",
62144      "sig": "()",
62145      "type": "function",
62146      "desc": "Returns the underlying {@link Roo.Element}."
62147     },
62148     {
62149      "name": "getId",
62150      "sig": "()",
62151      "type": "function",
62152      "desc": "Returns the id of this component."
62153     },
62154     {
62155      "name": "getName",
62156      "sig": "()",
62157      "type": "function",
62158      "desc": "Returns the name attribute of the field if available"
62159     },
62160     {
62161      "name": "getPosition",
62162      "sig": "(Boolean local)",
62163      "type": "function",
62164      "desc": "Gets the current XY position of the component's underlying element."
62165     },
62166     {
62167      "name": "getRawValue",
62168      "sig": "()",
62169      "type": "function",
62170      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
62171     },
62172     {
62173      "name": "getSize",
62174      "sig": "()",
62175      "type": "function",
62176      "desc": "Gets the current size of the component's underlying element."
62177     },
62178     {
62179      "name": "getValue",
62180      "sig": "()",
62181      "type": "function",
62182      "desc": "Returns the current date value of the date field."
62183     },
62184     {
62185      "name": "hasChanged",
62186      "sig": "()",
62187      "type": "function",
62188      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
62189     },
62190     {
62191      "name": "hasListener",
62192      "sig": "(String eventName)",
62193      "type": "function",
62194      "desc": "Checks to see if this object has any listeners for a specified event"
62195     },
62196     {
62197      "name": "hide",
62198      "sig": "()",
62199      "type": "function",
62200      "desc": "Hide this component."
62201     },
62202     {
62203      "name": "isDirty",
62204      "sig": "()",
62205      "type": "function",
62206      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
62207     },
62208     {
62209      "name": "isValid",
62210      "sig": "(Boolean preventMark)",
62211      "type": "function",
62212      "desc": "Returns whether or not the field value is currently valid"
62213     },
62214     {
62215      "name": "isVisible",
62216      "sig": "()",
62217      "type": "function",
62218      "desc": "Returns true if this component is visible."
62219     },
62220     {
62221      "name": "markInvalid",
62222      "sig": "(String msg)",
62223      "type": "function",
62224      "desc": "Mark this field as invalid"
62225     },
62226     {
62227      "name": "on",
62228      "sig": "(String eventName, Function handler, Object scope, Object options)",
62229      "type": "function",
62230      "desc": "Appends an event handler to this element (shorthand for addListener)"
62231     },
62232     {
62233      "name": "onPosition",
62234      "sig": "(Number x, Number y)",
62235      "type": "function",
62236      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
62237     },
62238     {
62239      "name": "onResize",
62240      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
62241      "type": "function",
62242      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
62243     },
62244     {
62245      "name": "onTriggerClick",
62246      "sig": "(EventObject e)",
62247      "type": "function",
62248      "desc": "The function that should handle the trigger's click event.  This method does nothing by default until overridden\nby an implementing function."
62249     },
62250     {
62251      "name": "purgeListeners",
62252      "sig": "()",
62253      "type": "function",
62254      "desc": "Removes all listeners for this object"
62255     },
62256     {
62257      "name": "releaseCapture",
62258      "sig": "(Observable o)",
62259      "type": "function",
62260      "desc": "Removes <b>all</b> added captures from the Observable."
62261     },
62262     {
62263      "name": "removeListener",
62264      "sig": "(String eventName, Function handler, Object scope)",
62265      "type": "function",
62266      "desc": "Removes a listener"
62267     },
62268     {
62269      "name": "render",
62270      "sig": "(String/HTMLElement/Element container)",
62271      "type": "function",
62272      "desc": "If this is a lazy rendering component, render it to its container element."
62273     },
62274     {
62275      "name": "reset",
62276      "sig": "()",
62277      "type": "function",
62278      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
62279     },
62280     {
62281      "name": "resetHasChanged",
62282      "sig": "()",
62283      "type": "function",
62284      "desc": "stores the current value in loadedValue"
62285     },
62286     {
62287      "name": "selectText",
62288      "sig": "(Number start, Number end)",
62289      "type": "function",
62290      "desc": "Selects text in this field"
62291     },
62292     {
62293      "name": "setDisabled",
62294      "sig": "(Boolean disabled)",
62295      "type": "function",
62296      "desc": "Convenience function for setting disabled/enabled by boolean."
62297     },
62298     {
62299      "name": "setPagePosition",
62300      "sig": "(Number x, Number y)",
62301      "type": "function",
62302      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
62303     },
62304     {
62305      "name": "setPosition",
62306      "sig": "(Number left, Number top)",
62307      "type": "function",
62308      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
62309     },
62310     {
62311      "name": "setRawValue",
62312      "sig": "(Mixed value)",
62313      "type": "function",
62314      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
62315     },
62316     {
62317      "name": "setSize",
62318      "sig": "(Number/Object width, Number height)",
62319      "type": "function",
62320      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
62321     },
62322     {
62323      "name": "setValue",
62324      "sig": "(String/Date date)",
62325      "type": "function",
62326      "desc": "Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid\ndate, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}\n(the default format used is \"m/d/y\").\n<br />Usage:\n<pre><code>\n//All of these calls set the same date value (May 4, 2006)\n\n//Pass a date object:\nvar dt = new Date('5/4/06');\ndateField.setValue(dt);\n\n//Pass a date string (default format):\ndateField.setValue('5/4/06');\n\n//Pass a date string (custom format):\ndateField.format = 'Y-m-d';\ndateField.setValue('2006-5-4');\n</code></pre>"
62327     },
62328     {
62329      "name": "setVisible",
62330      "sig": "(Boolean visible)",
62331      "type": "function",
62332      "desc": "Convenience function to hide or show this component by boolean."
62333     },
62334     {
62335      "name": "show",
62336      "sig": "()",
62337      "type": "function",
62338      "desc": "Show this component."
62339     },
62340     {
62341      "name": "syncSize",
62342      "sig": "()",
62343      "type": "function",
62344      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
62345     },
62346     {
62347      "name": "un",
62348      "sig": "(String eventName, Function handler, Object scope)",
62349      "type": "function",
62350      "desc": "Removes a listener (shorthand for removeListener)"
62351     },
62352     {
62353      "name": "updateBox",
62354      "sig": "(Object box)",
62355      "type": "function",
62356      "desc": "Sets the current box measurements of the component's underlying element."
62357     },
62358     {
62359      "name": "validate",
62360      "sig": "()",
62361      "type": "function",
62362      "desc": "Validates the field value"
62363     },
62364     {
62365      "name": "validateValue",
62366      "sig": "(Mixed value)",
62367      "type": "function",
62368      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
62369     }
62370    ]
62371   },
62372   "Roo.form.DayPicker": {
62373    "props": [
62374     {
62375      "name": "focusClass",
62376      "type": "String",
62377      "desc": "The CSS class to use when the checkbox receives focus (defaults to undefined)",
62378      "memberOf": ""
62379     },
62380     {
62381      "name": "fieldClass",
62382      "type": "String",
62383      "desc": "The default CSS class for the checkbox (defaults to \"x-form-field\")",
62384      "memberOf": ""
62385     },
62386     {
62387      "name": "autoCreate",
62388      "type": "String/Object",
62389      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"checkbox\", autocomplete: \"off\"})",
62390      "memberOf": ""
62391     },
62392     {
62393      "name": "fieldLabel",
62394      "type": "String",
62395      "desc": "Label to use when rendering a form.",
62396      "memberOf": "Roo.form.Field"
62397     },
62398     {
62399      "name": "qtip",
62400      "type": "String",
62401      "desc": "Mouse over tip",
62402      "memberOf": "Roo.form.Field"
62403     },
62404     {
62405      "name": "name",
62406      "type": "String",
62407      "desc": "The field's HTML name attribute.",
62408      "memberOf": "Roo.form.Field"
62409     },
62410     {
62411      "name": "invalidClass",
62412      "type": "String",
62413      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
62414      "memberOf": "Roo.form.Field"
62415     },
62416     {
62417      "name": "invalidText",
62418      "type": "String",
62419      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
62420      "memberOf": "Roo.form.Field"
62421     },
62422     {
62423      "name": "validationEvent",
62424      "type": "String/Boolean",
62425      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
62426      "memberOf": "Roo.form.Field"
62427     },
62428     {
62429      "name": "validateOnBlur",
62430      "type": "Boolean",
62431      "desc": "Whether the field should validate when it loses focus (defaults to true).",
62432      "memberOf": "Roo.form.Field"
62433     },
62434     {
62435      "name": "validationDelay",
62436      "type": "Number",
62437      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
62438      "memberOf": "Roo.form.Field"
62439     },
62440     {
62441      "name": "msgTarget",
62442      "type": "String",
62443      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
62444      "memberOf": "Roo.form.Field"
62445     },
62446     {
62447      "name": "msgFx",
62448      "type": "String",
62449      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
62450      "memberOf": "Roo.form.Field"
62451     },
62452     {
62453      "name": "readOnly",
62454      "type": "Boolean",
62455      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
62456      "memberOf": "Roo.form.Field"
62457     },
62458     {
62459      "name": "disabled",
62460      "type": "Boolean",
62461      "desc": "True to disable the field (defaults to false).",
62462      "memberOf": "Roo.form.Field"
62463     },
62464     {
62465      "name": "inputType",
62466      "type": "String",
62467      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
62468      "memberOf": "Roo.form.Field"
62469     },
62470     {
62471      "name": "tabIndex",
62472      "type": "Number",
62473      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
62474      "memberOf": "Roo.form.Field"
62475     },
62476     {
62477      "name": "value",
62478      "type": "Mixed",
62479      "desc": "A value to initialize this field with.",
62480      "memberOf": "Roo.form.Field"
62481     },
62482     {
62483      "name": "cls",
62484      "type": "String",
62485      "desc": "A CSS class to apply to the field's underlying element.",
62486      "memberOf": "Roo.form.Field"
62487     },
62488     {
62489      "name": "width",
62490      "type": "Number",
62491      "desc": "width (optional) size of component",
62492      "memberOf": "Roo.BoxComponent"
62493     },
62494     {
62495      "name": "height",
62496      "type": "Number",
62497      "desc": "height (optional) size of component",
62498      "memberOf": "Roo.BoxComponent"
62499     },
62500     {
62501      "name": "disableClass",
62502      "type": "String",
62503      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
62504      "memberOf": "Roo.Component"
62505     },
62506     {
62507      "name": "allowDomMove",
62508      "type": "Boolean",
62509      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
62510      "memberOf": "Roo.Component"
62511     },
62512     {
62513      "name": "hideMode",
62514      "type": "String",
62515      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
62516      "memberOf": "Roo.Component",
62517      "optvals": [
62518       "display",
62519       "visibility"
62520      ]
62521     },
62522     {
62523      "name": "actionMode",
62524      "type": "String",
62525      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
62526      "memberOf": "Roo.Component"
62527     },
62528     {
62529      "name": "listeners",
62530      "type": "Object",
62531      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
62532      "memberOf": "Roo.util.Observable"
62533     }
62534    ],
62535    "events": [
62536     {
62537      "name": "beforedestroy",
62538      "sig": "function (_self)\n{\n\n}",
62539      "type": "function",
62540      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
62541     },
62542     {
62543      "name": "beforehide",
62544      "sig": "function (_self)\n{\n\n}",
62545      "type": "function",
62546      "desc": "Fires before the component is hidden. Return false to stop the hide."
62547     },
62548     {
62549      "name": "beforerender",
62550      "sig": "function (_self)\n{\n\n}",
62551      "type": "function",
62552      "desc": "Fires before the component is rendered. Return false to stop the render."
62553     },
62554     {
62555      "name": "beforeshow",
62556      "sig": "function (_self)\n{\n\n}",
62557      "type": "function",
62558      "desc": "Fires before the component is shown.  Return false to stop the show."
62559     },
62560     {
62561      "name": "blur",
62562      "sig": "function (_self)\n{\n\n}",
62563      "type": "function",
62564      "desc": "Fires when this field loses input focus."
62565     },
62566     {
62567      "name": "change",
62568      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
62569      "type": "function",
62570      "desc": "Fires just before the field blurs if the field value has changed."
62571     },
62572     {
62573      "name": "destroy",
62574      "sig": "function (_self)\n{\n\n}",
62575      "type": "function",
62576      "desc": "Fires after the component is destroyed."
62577     },
62578     {
62579      "name": "disable",
62580      "sig": "function (_self)\n{\n\n}",
62581      "type": "function",
62582      "desc": "Fires after the component is disabled."
62583     },
62584     {
62585      "name": "enable",
62586      "sig": "function (_self)\n{\n\n}",
62587      "type": "function",
62588      "desc": "Fires after the component is enabled."
62589     },
62590     {
62591      "name": "focus",
62592      "sig": "function (_self)\n{\n\n}",
62593      "type": "function",
62594      "desc": "Fires when this field receives input focus."
62595     },
62596     {
62597      "name": "hide",
62598      "sig": "function (_self)\n{\n\n}",
62599      "type": "function",
62600      "desc": "Fires after the component is hidden."
62601     },
62602     {
62603      "name": "invalid",
62604      "sig": "function (_self, msg)\n{\n\n}",
62605      "type": "function",
62606      "desc": "Fires after the field has been marked as invalid."
62607     },
62608     {
62609      "name": "keyup",
62610      "sig": "function (_self, e)\n{\n\n}",
62611      "type": "function",
62612      "desc": "Fires after the key up"
62613     },
62614     {
62615      "name": "move",
62616      "sig": "function (_self, x, y)\n{\n\n}",
62617      "type": "function",
62618      "desc": "Fires after the component is moved."
62619     },
62620     {
62621      "name": "render",
62622      "sig": "function (_self)\n{\n\n}",
62623      "type": "function",
62624      "desc": "Fires after the component is rendered."
62625     },
62626     {
62627      "name": "resize",
62628      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
62629      "type": "function",
62630      "desc": "Fires after the component is resized."
62631     },
62632     {
62633      "name": "show",
62634      "sig": "function (_self)\n{\n\n}",
62635      "type": "function",
62636      "desc": "Fires after the component is shown."
62637     },
62638     {
62639      "name": "specialkey",
62640      "sig": "function (_self, e)\n{\n\n}",
62641      "type": "function",
62642      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
62643     },
62644     {
62645      "name": "valid",
62646      "sig": "function (_self)\n{\n\n}",
62647      "type": "function",
62648      "desc": "Fires after the field has been validated with no errors."
62649     }
62650    ],
62651    "methods": [
62652     {
62653      "name": "addEvents",
62654      "sig": "(Object object)",
62655      "type": "function",
62656      "desc": "Used to define events on this Observable"
62657     },
62658     {
62659      "name": "addListener",
62660      "sig": "(String eventName, Function handler, Object scope, Object options)",
62661      "type": "function",
62662      "desc": "Appends an event handler to this component"
62663     },
62664     {
62665      "name": "applyTo",
62666      "sig": "(String/HTMLElement/Element el)",
62667      "type": "function",
62668      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
62669     },
62670     {
62671      "name": "capture",
62672      "sig": "(Observable o, Function fn, Object scope)",
62673      "type": "function",
62674      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
62675     },
62676     {
62677      "name": "clearInvalid",
62678      "sig": "()",
62679      "type": "function",
62680      "desc": "Clear any invalid styles/messages for this field"
62681     },
62682     {
62683      "name": "destroy",
62684      "sig": "()",
62685      "type": "function",
62686      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
62687     },
62688     {
62689      "name": "disable",
62690      "sig": "()",
62691      "type": "function",
62692      "desc": "Disable this component."
62693     },
62694     {
62695      "name": "enable",
62696      "sig": "()",
62697      "type": "function",
62698      "desc": "Enable this component."
62699     },
62700     {
62701      "name": "fireEvent",
62702      "sig": "(String eventName, Object... args)",
62703      "type": "function",
62704      "desc": "Fires the specified event with the passed parameters (minus the event name)."
62705     },
62706     {
62707      "name": "focus",
62708      "sig": "(Boolean selectText)",
62709      "type": "function",
62710      "desc": "Try to focus this component."
62711     },
62712     {
62713      "name": "getBox",
62714      "sig": "(Boolean local)",
62715      "type": "function",
62716      "desc": "Gets the current box measurements of the component's underlying element."
62717     },
62718     {
62719      "name": "getEl",
62720      "sig": "()",
62721      "type": "function",
62722      "desc": "Returns the underlying {@link Roo.Element}."
62723     },
62724     {
62725      "name": "getId",
62726      "sig": "()",
62727      "type": "function",
62728      "desc": "Returns the id of this component."
62729     },
62730     {
62731      "name": "getName",
62732      "sig": "()",
62733      "type": "function",
62734      "desc": "Returns the name attribute of the field if available"
62735     },
62736     {
62737      "name": "getPosition",
62738      "sig": "(Boolean local)",
62739      "type": "function",
62740      "desc": "Gets the current XY position of the component's underlying element."
62741     },
62742     {
62743      "name": "getRawValue",
62744      "sig": "()",
62745      "type": "function",
62746      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
62747     },
62748     {
62749      "name": "getSize",
62750      "sig": "()",
62751      "type": "function",
62752      "desc": "Gets the current size of the component's underlying element."
62753     },
62754     {
62755      "name": "getValue",
62756      "sig": "()",
62757      "type": "function",
62758      "desc": "Returns the checked state of the checkbox."
62759     },
62760     {
62761      "name": "hasChanged",
62762      "sig": "()",
62763      "type": "function",
62764      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
62765     },
62766     {
62767      "name": "hasListener",
62768      "sig": "(String eventName)",
62769      "type": "function",
62770      "desc": "Checks to see if this object has any listeners for a specified event"
62771     },
62772     {
62773      "name": "hide",
62774      "sig": "()",
62775      "type": "function",
62776      "desc": "Hide this component."
62777     },
62778     {
62779      "name": "isDirty",
62780      "sig": "()",
62781      "type": "function",
62782      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
62783     },
62784     {
62785      "name": "isValid",
62786      "sig": "(Boolean preventMark)",
62787      "type": "function",
62788      "desc": "Returns whether or not the field value is currently valid"
62789     },
62790     {
62791      "name": "isVisible",
62792      "sig": "()",
62793      "type": "function",
62794      "desc": "Returns true if this component is visible."
62795     },
62796     {
62797      "name": "markInvalid",
62798      "sig": "(String msg)",
62799      "type": "function",
62800      "desc": "Mark this field as invalid"
62801     },
62802     {
62803      "name": "on",
62804      "sig": "(String eventName, Function handler, Object scope, Object options)",
62805      "type": "function",
62806      "desc": "Appends an event handler to this element (shorthand for addListener)"
62807     },
62808     {
62809      "name": "onPosition",
62810      "sig": "(Number x, Number y)",
62811      "type": "function",
62812      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
62813     },
62814     {
62815      "name": "onResize",
62816      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
62817      "type": "function",
62818      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
62819     },
62820     {
62821      "name": "purgeListeners",
62822      "sig": "()",
62823      "type": "function",
62824      "desc": "Removes all listeners for this object"
62825     },
62826     {
62827      "name": "releaseCapture",
62828      "sig": "(Observable o)",
62829      "type": "function",
62830      "desc": "Removes <b>all</b> added captures from the Observable."
62831     },
62832     {
62833      "name": "removeListener",
62834      "sig": "(String eventName, Function handler, Object scope)",
62835      "type": "function",
62836      "desc": "Removes a listener"
62837     },
62838     {
62839      "name": "render",
62840      "sig": "(String/HTMLElement/Element container)",
62841      "type": "function",
62842      "desc": "If this is a lazy rendering component, render it to its container element."
62843     },
62844     {
62845      "name": "reset",
62846      "sig": "()",
62847      "type": "function",
62848      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
62849     },
62850     {
62851      "name": "resetHasChanged",
62852      "sig": "()",
62853      "type": "function",
62854      "desc": "stores the current value in loadedValue"
62855     },
62856     {
62857      "name": "setDisabled",
62858      "sig": "(Boolean disabled)",
62859      "type": "function",
62860      "desc": "Convenience function for setting disabled/enabled by boolean."
62861     },
62862     {
62863      "name": "setPagePosition",
62864      "sig": "(Number x, Number y)",
62865      "type": "function",
62866      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
62867     },
62868     {
62869      "name": "setPosition",
62870      "sig": "(Number left, Number top)",
62871      "type": "function",
62872      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
62873     },
62874     {
62875      "name": "setRawValue",
62876      "sig": "(Mixed value)",
62877      "type": "function",
62878      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
62879     },
62880     {
62881      "name": "setSize",
62882      "sig": "(Number/Object width, Number height)",
62883      "type": "function",
62884      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
62885     },
62886     {
62887      "name": "setValue",
62888      "sig": "(Boolean/String value, Boolean/String suppressEvent)",
62889      "type": "function",
62890      "desc": "Sets the checked state of the checkbox.\nOn is always based on a string comparison between inputValue and the param."
62891     },
62892     {
62893      "name": "setVisible",
62894      "sig": "(Boolean visible)",
62895      "type": "function",
62896      "desc": "Convenience function to hide or show this component by boolean."
62897     },
62898     {
62899      "name": "show",
62900      "sig": "()",
62901      "type": "function",
62902      "desc": "Show this component."
62903     },
62904     {
62905      "name": "syncSize",
62906      "sig": "()",
62907      "type": "function",
62908      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
62909     },
62910     {
62911      "name": "un",
62912      "sig": "(String eventName, Function handler, Object scope)",
62913      "type": "function",
62914      "desc": "Removes a listener (shorthand for removeListener)"
62915     },
62916     {
62917      "name": "updateBox",
62918      "sig": "(Object box)",
62919      "type": "function",
62920      "desc": "Sets the current box measurements of the component's underlying element."
62921     },
62922     {
62923      "name": "validate",
62924      "sig": "()",
62925      "type": "function",
62926      "desc": "Validates the field value"
62927     }
62928    ]
62929   },
62930   "Roo.form.DisplayField": {
62931    "props": [
62932     {
62933      "name": "closable",
62934      "type": "Boolean",
62935      "desc": "default false",
62936      "memberOf": "",
62937      "optvals": [
62938       "true",
62939       "false"
62940      ]
62941     },
62942     {
62943      "name": "focusClass",
62944      "type": "String",
62945      "desc": "The CSS class to use when the checkbox receives focus (defaults to undefined)",
62946      "memberOf": ""
62947     },
62948     {
62949      "name": "fieldClass",
62950      "type": "String",
62951      "desc": "The default CSS class for the checkbox (defaults to \"x-form-field\")",
62952      "memberOf": ""
62953     },
62954     {
62955      "name": "valueRenderer",
62956      "type": "Function",
62957      "desc": "The renderer for the field (so you can reformat output). should return raw HTML",
62958      "memberOf": ""
62959     },
62960     {
62961      "name": "autoCreate",
62962      "type": "String/Object",
62963      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"checkbox\", autocomplete: \"off\"})",
62964      "memberOf": ""
62965     },
62966     {
62967      "name": "fieldLabel",
62968      "type": "String",
62969      "desc": "Label to use when rendering a form.",
62970      "memberOf": "Roo.form.Field"
62971     },
62972     {
62973      "name": "qtip",
62974      "type": "String",
62975      "desc": "Mouse over tip",
62976      "memberOf": "Roo.form.Field"
62977     },
62978     {
62979      "name": "name",
62980      "type": "String",
62981      "desc": "The field's HTML name attribute.",
62982      "memberOf": "Roo.form.Field"
62983     },
62984     {
62985      "name": "invalidClass",
62986      "type": "String",
62987      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
62988      "memberOf": "Roo.form.Field"
62989     },
62990     {
62991      "name": "invalidText",
62992      "type": "String",
62993      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
62994      "memberOf": "Roo.form.Field"
62995     },
62996     {
62997      "name": "validationEvent",
62998      "type": "String/Boolean",
62999      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
63000      "memberOf": "Roo.form.Field"
63001     },
63002     {
63003      "name": "validateOnBlur",
63004      "type": "Boolean",
63005      "desc": "Whether the field should validate when it loses focus (defaults to true).",
63006      "memberOf": "Roo.form.Field"
63007     },
63008     {
63009      "name": "validationDelay",
63010      "type": "Number",
63011      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
63012      "memberOf": "Roo.form.Field"
63013     },
63014     {
63015      "name": "msgTarget",
63016      "type": "String",
63017      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
63018      "memberOf": "Roo.form.Field"
63019     },
63020     {
63021      "name": "msgFx",
63022      "type": "String",
63023      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
63024      "memberOf": "Roo.form.Field"
63025     },
63026     {
63027      "name": "readOnly",
63028      "type": "Boolean",
63029      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
63030      "memberOf": "Roo.form.Field"
63031     },
63032     {
63033      "name": "disabled",
63034      "type": "Boolean",
63035      "desc": "True to disable the field (defaults to false).",
63036      "memberOf": "Roo.form.Field"
63037     },
63038     {
63039      "name": "inputType",
63040      "type": "String",
63041      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
63042      "memberOf": "Roo.form.Field"
63043     },
63044     {
63045      "name": "tabIndex",
63046      "type": "Number",
63047      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
63048      "memberOf": "Roo.form.Field"
63049     },
63050     {
63051      "name": "value",
63052      "type": "Mixed",
63053      "desc": "A value to initialize this field with.",
63054      "memberOf": "Roo.form.Field"
63055     },
63056     {
63057      "name": "cls",
63058      "type": "String",
63059      "desc": "A CSS class to apply to the field's underlying element.",
63060      "memberOf": "Roo.form.Field"
63061     },
63062     {
63063      "name": "width",
63064      "type": "Number",
63065      "desc": "width (optional) size of component",
63066      "memberOf": "Roo.BoxComponent"
63067     },
63068     {
63069      "name": "height",
63070      "type": "Number",
63071      "desc": "height (optional) size of component",
63072      "memberOf": "Roo.BoxComponent"
63073     },
63074     {
63075      "name": "disableClass",
63076      "type": "String",
63077      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
63078      "memberOf": "Roo.Component"
63079     },
63080     {
63081      "name": "allowDomMove",
63082      "type": "Boolean",
63083      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
63084      "memberOf": "Roo.Component"
63085     },
63086     {
63087      "name": "hideMode",
63088      "type": "String",
63089      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
63090      "memberOf": "Roo.Component",
63091      "optvals": [
63092       "display",
63093       "visibility"
63094      ]
63095     },
63096     {
63097      "name": "actionMode",
63098      "type": "String",
63099      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
63100      "memberOf": "Roo.Component"
63101     },
63102     {
63103      "name": "listeners",
63104      "type": "Object",
63105      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
63106      "memberOf": "Roo.util.Observable"
63107     }
63108    ],
63109    "events": [
63110     {
63111      "name": "beforedestroy",
63112      "sig": "function (_self)\n{\n\n}",
63113      "type": "function",
63114      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
63115     },
63116     {
63117      "name": "beforehide",
63118      "sig": "function (_self)\n{\n\n}",
63119      "type": "function",
63120      "desc": "Fires before the component is hidden. Return false to stop the hide."
63121     },
63122     {
63123      "name": "beforerender",
63124      "sig": "function (_self)\n{\n\n}",
63125      "type": "function",
63126      "desc": "Fires before the component is rendered. Return false to stop the render."
63127     },
63128     {
63129      "name": "beforeshow",
63130      "sig": "function (_self)\n{\n\n}",
63131      "type": "function",
63132      "desc": "Fires before the component is shown.  Return false to stop the show."
63133     },
63134     {
63135      "name": "blur",
63136      "sig": "function (_self)\n{\n\n}",
63137      "type": "function",
63138      "desc": "Fires when this field loses input focus."
63139     },
63140     {
63141      "name": "change",
63142      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
63143      "type": "function",
63144      "desc": "Fires just before the field blurs if the field value has changed."
63145     },
63146     {
63147      "name": "close",
63148      "sig": "function (_self)\n{\n\n}",
63149      "type": "function",
63150      "desc": "Fires after the click the close btn"
63151     },
63152     {
63153      "name": "destroy",
63154      "sig": "function (_self)\n{\n\n}",
63155      "type": "function",
63156      "desc": "Fires after the component is destroyed."
63157     },
63158     {
63159      "name": "disable",
63160      "sig": "function (_self)\n{\n\n}",
63161      "type": "function",
63162      "desc": "Fires after the component is disabled."
63163     },
63164     {
63165      "name": "enable",
63166      "sig": "function (_self)\n{\n\n}",
63167      "type": "function",
63168      "desc": "Fires after the component is enabled."
63169     },
63170     {
63171      "name": "focus",
63172      "sig": "function (_self)\n{\n\n}",
63173      "type": "function",
63174      "desc": "Fires when this field receives input focus."
63175     },
63176     {
63177      "name": "hide",
63178      "sig": "function (_self)\n{\n\n}",
63179      "type": "function",
63180      "desc": "Fires after the component is hidden."
63181     },
63182     {
63183      "name": "invalid",
63184      "sig": "function (_self, msg)\n{\n\n}",
63185      "type": "function",
63186      "desc": "Fires after the field has been marked as invalid."
63187     },
63188     {
63189      "name": "keyup",
63190      "sig": "function (_self, e)\n{\n\n}",
63191      "type": "function",
63192      "desc": "Fires after the key up"
63193     },
63194     {
63195      "name": "move",
63196      "sig": "function (_self, x, y)\n{\n\n}",
63197      "type": "function",
63198      "desc": "Fires after the component is moved."
63199     },
63200     {
63201      "name": "render",
63202      "sig": "function (_self)\n{\n\n}",
63203      "type": "function",
63204      "desc": "Fires after the component is rendered."
63205     },
63206     {
63207      "name": "resize",
63208      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
63209      "type": "function",
63210      "desc": "Fires after the component is resized."
63211     },
63212     {
63213      "name": "show",
63214      "sig": "function (_self)\n{\n\n}",
63215      "type": "function",
63216      "desc": "Fires after the component is shown."
63217     },
63218     {
63219      "name": "specialkey",
63220      "sig": "function (_self, e)\n{\n\n}",
63221      "type": "function",
63222      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
63223     },
63224     {
63225      "name": "valid",
63226      "sig": "function (_self)\n{\n\n}",
63227      "type": "function",
63228      "desc": "Fires after the field has been validated with no errors."
63229     }
63230    ],
63231    "methods": [
63232     {
63233      "name": "addEvents",
63234      "sig": "(Object object)",
63235      "type": "function",
63236      "desc": "Used to define events on this Observable"
63237     },
63238     {
63239      "name": "addListener",
63240      "sig": "(String eventName, Function handler, Object scope, Object options)",
63241      "type": "function",
63242      "desc": "Appends an event handler to this component"
63243     },
63244     {
63245      "name": "applyTo",
63246      "sig": "(String/HTMLElement/Element el)",
63247      "type": "function",
63248      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
63249     },
63250     {
63251      "name": "capture",
63252      "sig": "(Observable o, Function fn, Object scope)",
63253      "type": "function",
63254      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
63255     },
63256     {
63257      "name": "clearInvalid",
63258      "sig": "()",
63259      "type": "function",
63260      "desc": "Clear any invalid styles/messages for this field"
63261     },
63262     {
63263      "name": "destroy",
63264      "sig": "()",
63265      "type": "function",
63266      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
63267     },
63268     {
63269      "name": "disable",
63270      "sig": "()",
63271      "type": "function",
63272      "desc": "Disable this component."
63273     },
63274     {
63275      "name": "enable",
63276      "sig": "()",
63277      "type": "function",
63278      "desc": "Enable this component."
63279     },
63280     {
63281      "name": "fireEvent",
63282      "sig": "(String eventName, Object... args)",
63283      "type": "function",
63284      "desc": "Fires the specified event with the passed parameters (minus the event name)."
63285     },
63286     {
63287      "name": "focus",
63288      "sig": "(Boolean selectText)",
63289      "type": "function",
63290      "desc": "Try to focus this component."
63291     },
63292     {
63293      "name": "getBox",
63294      "sig": "(Boolean local)",
63295      "type": "function",
63296      "desc": "Gets the current box measurements of the component's underlying element."
63297     },
63298     {
63299      "name": "getEl",
63300      "sig": "()",
63301      "type": "function",
63302      "desc": "Returns the underlying {@link Roo.Element}."
63303     },
63304     {
63305      "name": "getId",
63306      "sig": "()",
63307      "type": "function",
63308      "desc": "Returns the id of this component."
63309     },
63310     {
63311      "name": "getName",
63312      "sig": "()",
63313      "type": "function",
63314      "desc": "Returns the name attribute of the field if available"
63315     },
63316     {
63317      "name": "getPosition",
63318      "sig": "(Boolean local)",
63319      "type": "function",
63320      "desc": "Gets the current XY position of the component's underlying element."
63321     },
63322     {
63323      "name": "getRawValue",
63324      "sig": "()",
63325      "type": "function",
63326      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
63327     },
63328     {
63329      "name": "getSize",
63330      "sig": "()",
63331      "type": "function",
63332      "desc": "Gets the current size of the component's underlying element."
63333     },
63334     {
63335      "name": "getValue",
63336      "sig": "()",
63337      "type": "function",
63338      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
63339     },
63340     {
63341      "name": "hasChanged",
63342      "sig": "()",
63343      "type": "function",
63344      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
63345     },
63346     {
63347      "name": "hasListener",
63348      "sig": "(String eventName)",
63349      "type": "function",
63350      "desc": "Checks to see if this object has any listeners for a specified event"
63351     },
63352     {
63353      "name": "hide",
63354      "sig": "()",
63355      "type": "function",
63356      "desc": "Hide this component."
63357     },
63358     {
63359      "name": "isDirty",
63360      "sig": "()",
63361      "type": "function",
63362      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
63363     },
63364     {
63365      "name": "isValid",
63366      "sig": "(Boolean preventMark)",
63367      "type": "function",
63368      "desc": "Returns whether or not the field value is currently valid"
63369     },
63370     {
63371      "name": "isVisible",
63372      "sig": "()",
63373      "type": "function",
63374      "desc": "Returns true if this component is visible."
63375     },
63376     {
63377      "name": "markInvalid",
63378      "sig": "(String msg)",
63379      "type": "function",
63380      "desc": "Mark this field as invalid"
63381     },
63382     {
63383      "name": "on",
63384      "sig": "(String eventName, Function handler, Object scope, Object options)",
63385      "type": "function",
63386      "desc": "Appends an event handler to this element (shorthand for addListener)"
63387     },
63388     {
63389      "name": "onPosition",
63390      "sig": "(Number x, Number y)",
63391      "type": "function",
63392      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
63393     },
63394     {
63395      "name": "onResize",
63396      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
63397      "type": "function",
63398      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
63399     },
63400     {
63401      "name": "purgeListeners",
63402      "sig": "()",
63403      "type": "function",
63404      "desc": "Removes all listeners for this object"
63405     },
63406     {
63407      "name": "releaseCapture",
63408      "sig": "(Observable o)",
63409      "type": "function",
63410      "desc": "Removes <b>all</b> added captures from the Observable."
63411     },
63412     {
63413      "name": "removeListener",
63414      "sig": "(String eventName, Function handler, Object scope)",
63415      "type": "function",
63416      "desc": "Removes a listener"
63417     },
63418     {
63419      "name": "render",
63420      "sig": "(String/HTMLElement/Element container)",
63421      "type": "function",
63422      "desc": "If this is a lazy rendering component, render it to its container element."
63423     },
63424     {
63425      "name": "reset",
63426      "sig": "()",
63427      "type": "function",
63428      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
63429     },
63430     {
63431      "name": "resetHasChanged",
63432      "sig": "()",
63433      "type": "function",
63434      "desc": "stores the current value in loadedValue"
63435     },
63436     {
63437      "name": "setDisabled",
63438      "sig": "(Boolean disabled)",
63439      "type": "function",
63440      "desc": "Convenience function for setting disabled/enabled by boolean."
63441     },
63442     {
63443      "name": "setPagePosition",
63444      "sig": "(Number x, Number y)",
63445      "type": "function",
63446      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
63447     },
63448     {
63449      "name": "setPosition",
63450      "sig": "(Number left, Number top)",
63451      "type": "function",
63452      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
63453     },
63454     {
63455      "name": "setRawValue",
63456      "sig": "(Mixed value)",
63457      "type": "function",
63458      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
63459     },
63460     {
63461      "name": "setSize",
63462      "sig": "(Number/Object width, Number height)",
63463      "type": "function",
63464      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
63465     },
63466     {
63467      "name": "setValue",
63468      "sig": "(Boolean/String checked)",
63469      "type": "function",
63470      "desc": "Sets the checked state of the checkbox."
63471     },
63472     {
63473      "name": "setVisible",
63474      "sig": "(Boolean visible)",
63475      "type": "function",
63476      "desc": "Convenience function to hide or show this component by boolean."
63477     },
63478     {
63479      "name": "show",
63480      "sig": "()",
63481      "type": "function",
63482      "desc": "Show this component."
63483     },
63484     {
63485      "name": "syncSize",
63486      "sig": "()",
63487      "type": "function",
63488      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
63489     },
63490     {
63491      "name": "un",
63492      "sig": "(String eventName, Function handler, Object scope)",
63493      "type": "function",
63494      "desc": "Removes a listener (shorthand for removeListener)"
63495     },
63496     {
63497      "name": "updateBox",
63498      "sig": "(Object box)",
63499      "type": "function",
63500      "desc": "Sets the current box measurements of the component's underlying element."
63501     },
63502     {
63503      "name": "validate",
63504      "sig": "()",
63505      "type": "function",
63506      "desc": "Validates the field value"
63507     }
63508    ]
63509   },
63510   "Roo.form.FCKeditor": {
63511    "props": [
63512     {
63513      "name": "fck",
63514      "type": "Object",
63515      "desc": "options - see fck manual for details.",
63516      "memberOf": ""
63517     },
63518     {
63519      "name": "growMin",
63520      "type": "Number",
63521      "desc": "The minimum height to allow when grow = true (defaults to 60)",
63522      "memberOf": "Roo.form.TextArea"
63523     },
63524     {
63525      "name": "growMax",
63526      "type": "Number",
63527      "desc": "The maximum height to allow when grow = true (defaults to 1000)",
63528      "memberOf": "Roo.form.TextArea"
63529     },
63530     {
63531      "name": "preventScrollbars",
63532      "type": "Boolean",
63533      "desc": "True to prevent scrollbars from appearing regardless of how much text is\nin the field (equivalent to setting overflow: hidden, defaults to false)",
63534      "memberOf": "Roo.form.TextArea"
63535     },
63536     {
63537      "name": "autoCreate",
63538      "type": "String/Object",
63539      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"textarea\", style: \"width:300px;height:60px;\", autocomplete: \"off\"})",
63540      "memberOf": "Roo.form.TextArea"
63541     },
63542     {
63543      "name": "grow",
63544      "type": "Boolean",
63545      "desc": "True if this field should automatically grow and shrink to its content",
63546      "memberOf": "Roo.form.TextField"
63547     },
63548     {
63549      "name": "vtype",
63550      "type": "String",
63551      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
63552      "memberOf": "Roo.form.TextField"
63553     },
63554     {
63555      "name": "maskRe",
63556      "type": "String",
63557      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
63558      "memberOf": "Roo.form.TextField"
63559     },
63560     {
63561      "name": "disableKeyFilter",
63562      "type": "Boolean",
63563      "desc": "True to disable input keystroke filtering (defaults to false)",
63564      "memberOf": "Roo.form.TextField"
63565     },
63566     {
63567      "name": "allowBlank",
63568      "type": "Boolean",
63569      "desc": "False to validate that the value length > 0 (defaults to true)",
63570      "memberOf": "Roo.form.TextField"
63571     },
63572     {
63573      "name": "minLength",
63574      "type": "Number",
63575      "desc": "Minimum input field length required (defaults to 0)",
63576      "memberOf": "Roo.form.TextField"
63577     },
63578     {
63579      "name": "maxLength",
63580      "type": "Number",
63581      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
63582      "memberOf": "Roo.form.TextField"
63583     },
63584     {
63585      "name": "minLengthText",
63586      "type": "String",
63587      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
63588      "memberOf": "Roo.form.TextField"
63589     },
63590     {
63591      "name": "maxLengthText",
63592      "type": "String",
63593      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
63594      "memberOf": "Roo.form.TextField"
63595     },
63596     {
63597      "name": "selectOnFocus",
63598      "type": "Boolean",
63599      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
63600      "memberOf": "Roo.form.TextField"
63601     },
63602     {
63603      "name": "blankText",
63604      "type": "String",
63605      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
63606      "memberOf": "Roo.form.TextField"
63607     },
63608     {
63609      "name": "validator",
63610      "type": "Function",
63611      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
63612      "memberOf": "Roo.form.TextField"
63613     },
63614     {
63615      "name": "regex",
63616      "type": "RegExp",
63617      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
63618      "memberOf": "Roo.form.TextField"
63619     },
63620     {
63621      "name": "regexText",
63622      "type": "String",
63623      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
63624      "memberOf": "Roo.form.TextField"
63625     },
63626     {
63627      "name": "emptyText",
63628      "type": "String",
63629      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
63630      "memberOf": "Roo.form.TextField"
63631     },
63632     {
63633      "name": "fieldLabel",
63634      "type": "String",
63635      "desc": "Label to use when rendering a form.",
63636      "memberOf": "Roo.form.Field"
63637     },
63638     {
63639      "name": "qtip",
63640      "type": "String",
63641      "desc": "Mouse over tip",
63642      "memberOf": "Roo.form.Field"
63643     },
63644     {
63645      "name": "name",
63646      "type": "String",
63647      "desc": "The field's HTML name attribute.",
63648      "memberOf": "Roo.form.Field"
63649     },
63650     {
63651      "name": "invalidClass",
63652      "type": "String",
63653      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
63654      "memberOf": "Roo.form.Field"
63655     },
63656     {
63657      "name": "invalidText",
63658      "type": "String",
63659      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
63660      "memberOf": "Roo.form.Field"
63661     },
63662     {
63663      "name": "focusClass",
63664      "type": "String",
63665      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
63666      "memberOf": "Roo.form.Field"
63667     },
63668     {
63669      "name": "validationEvent",
63670      "type": "String/Boolean",
63671      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
63672      "memberOf": "Roo.form.Field"
63673     },
63674     {
63675      "name": "validateOnBlur",
63676      "type": "Boolean",
63677      "desc": "Whether the field should validate when it loses focus (defaults to true).",
63678      "memberOf": "Roo.form.Field"
63679     },
63680     {
63681      "name": "validationDelay",
63682      "type": "Number",
63683      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
63684      "memberOf": "Roo.form.Field"
63685     },
63686     {
63687      "name": "fieldClass",
63688      "type": "String",
63689      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
63690      "memberOf": "Roo.form.Field"
63691     },
63692     {
63693      "name": "msgTarget",
63694      "type": "String",
63695      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
63696      "memberOf": "Roo.form.Field"
63697     },
63698     {
63699      "name": "msgFx",
63700      "type": "String",
63701      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
63702      "memberOf": "Roo.form.Field"
63703     },
63704     {
63705      "name": "readOnly",
63706      "type": "Boolean",
63707      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
63708      "memberOf": "Roo.form.Field"
63709     },
63710     {
63711      "name": "disabled",
63712      "type": "Boolean",
63713      "desc": "True to disable the field (defaults to false).",
63714      "memberOf": "Roo.form.Field"
63715     },
63716     {
63717      "name": "inputType",
63718      "type": "String",
63719      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
63720      "memberOf": "Roo.form.Field"
63721     },
63722     {
63723      "name": "tabIndex",
63724      "type": "Number",
63725      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
63726      "memberOf": "Roo.form.Field"
63727     },
63728     {
63729      "name": "value",
63730      "type": "Mixed",
63731      "desc": "A value to initialize this field with.",
63732      "memberOf": "Roo.form.Field"
63733     },
63734     {
63735      "name": "cls",
63736      "type": "String",
63737      "desc": "A CSS class to apply to the field's underlying element.",
63738      "memberOf": "Roo.form.Field"
63739     },
63740     {
63741      "name": "width",
63742      "type": "Number",
63743      "desc": "width (optional) size of component",
63744      "memberOf": "Roo.BoxComponent"
63745     },
63746     {
63747      "name": "height",
63748      "type": "Number",
63749      "desc": "height (optional) size of component",
63750      "memberOf": "Roo.BoxComponent"
63751     },
63752     {
63753      "name": "disableClass",
63754      "type": "String",
63755      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
63756      "memberOf": "Roo.Component"
63757     },
63758     {
63759      "name": "allowDomMove",
63760      "type": "Boolean",
63761      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
63762      "memberOf": "Roo.Component"
63763     },
63764     {
63765      "name": "hideMode",
63766      "type": "String",
63767      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
63768      "memberOf": "Roo.Component",
63769      "optvals": [
63770       "display",
63771       "visibility"
63772      ]
63773     },
63774     {
63775      "name": "actionMode",
63776      "type": "String",
63777      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
63778      "memberOf": "Roo.Component"
63779     },
63780     {
63781      "name": "listeners",
63782      "type": "Object",
63783      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
63784      "memberOf": "Roo.util.Observable"
63785     }
63786    ],
63787    "events": [
63788     {
63789      "name": "autosize",
63790      "sig": "function (_self, width)\n{\n\n}",
63791      "type": "function",
63792      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
63793     },
63794     {
63795      "name": "beforedestroy",
63796      "sig": "function (_self)\n{\n\n}",
63797      "type": "function",
63798      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
63799     },
63800     {
63801      "name": "beforehide",
63802      "sig": "function (_self)\n{\n\n}",
63803      "type": "function",
63804      "desc": "Fires before the component is hidden. Return false to stop the hide."
63805     },
63806     {
63807      "name": "beforerender",
63808      "sig": "function (_self)\n{\n\n}",
63809      "type": "function",
63810      "desc": "Fires before the component is rendered. Return false to stop the render."
63811     },
63812     {
63813      "name": "beforeshow",
63814      "sig": "function (_self)\n{\n\n}",
63815      "type": "function",
63816      "desc": "Fires before the component is shown.  Return false to stop the show."
63817     },
63818     {
63819      "name": "blur",
63820      "sig": "function (_self)\n{\n\n}",
63821      "type": "function",
63822      "desc": "Fires when this field loses input focus."
63823     },
63824     {
63825      "name": "change",
63826      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
63827      "type": "function",
63828      "desc": "Fires just before the field blurs if the field value has changed."
63829     },
63830     {
63831      "name": "destroy",
63832      "sig": "function (_self)\n{\n\n}",
63833      "type": "function",
63834      "desc": "Fires after the component is destroyed."
63835     },
63836     {
63837      "name": "disable",
63838      "sig": "function (_self)\n{\n\n}",
63839      "type": "function",
63840      "desc": "Fires after the component is disabled."
63841     },
63842     {
63843      "name": "editorinit",
63844      "sig": "function (_self, the)\n{\n\n}",
63845      "type": "function",
63846      "desc": "Fired when the editor is initialized - you can add extra handlers here.."
63847     },
63848     {
63849      "name": "enable",
63850      "sig": "function (_self)\n{\n\n}",
63851      "type": "function",
63852      "desc": "Fires after the component is enabled."
63853     },
63854     {
63855      "name": "focus",
63856      "sig": "function (_self)\n{\n\n}",
63857      "type": "function",
63858      "desc": "Fires when this field receives input focus."
63859     },
63860     {
63861      "name": "hide",
63862      "sig": "function (_self)\n{\n\n}",
63863      "type": "function",
63864      "desc": "Fires after the component is hidden."
63865     },
63866     {
63867      "name": "invalid",
63868      "sig": "function (_self, msg)\n{\n\n}",
63869      "type": "function",
63870      "desc": "Fires after the field has been marked as invalid."
63871     },
63872     {
63873      "name": "keyup",
63874      "sig": "function (_self, e)\n{\n\n}",
63875      "type": "function",
63876      "desc": "Fires after the key up"
63877     },
63878     {
63879      "name": "move",
63880      "sig": "function (_self, x, y)\n{\n\n}",
63881      "type": "function",
63882      "desc": "Fires after the component is moved."
63883     },
63884     {
63885      "name": "render",
63886      "sig": "function (_self)\n{\n\n}",
63887      "type": "function",
63888      "desc": "Fires after the component is rendered."
63889     },
63890     {
63891      "name": "resize",
63892      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
63893      "type": "function",
63894      "desc": "Fires after the component is resized."
63895     },
63896     {
63897      "name": "show",
63898      "sig": "function (_self)\n{\n\n}",
63899      "type": "function",
63900      "desc": "Fires after the component is shown."
63901     },
63902     {
63903      "name": "specialkey",
63904      "sig": "function (_self, e)\n{\n\n}",
63905      "type": "function",
63906      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
63907     },
63908     {
63909      "name": "valid",
63910      "sig": "function (_self)\n{\n\n}",
63911      "type": "function",
63912      "desc": "Fires after the field has been validated with no errors."
63913     }
63914    ],
63915    "methods": [
63916     {
63917      "name": "addEvents",
63918      "sig": "(Object object)",
63919      "type": "function",
63920      "desc": "Used to define events on this Observable"
63921     },
63922     {
63923      "name": "addListener",
63924      "sig": "(String eventName, Function handler, Object scope, Object options)",
63925      "type": "function",
63926      "desc": "Appends an event handler to this component"
63927     },
63928     {
63929      "name": "applyTo",
63930      "sig": "(String/HTMLElement/Element el)",
63931      "type": "function",
63932      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
63933     },
63934     {
63935      "name": "autoSize",
63936      "sig": "()",
63937      "type": "function",
63938      "desc": "Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.\nThis only takes effect if grow = true, and fires the autosize event if the height changes."
63939     },
63940     {
63941      "name": "capture",
63942      "sig": "(Observable o, Function fn, Object scope)",
63943      "type": "function",
63944      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
63945     },
63946     {
63947      "name": "clearInvalid",
63948      "sig": "()",
63949      "type": "function",
63950      "desc": "Clear any invalid styles/messages for this field"
63951     },
63952     {
63953      "name": "destroy",
63954      "sig": "()",
63955      "type": "function",
63956      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
63957     },
63958     {
63959      "name": "disable",
63960      "sig": "()",
63961      "type": "function",
63962      "desc": "Disable this component."
63963     },
63964     {
63965      "name": "enable",
63966      "sig": "()",
63967      "type": "function",
63968      "desc": "Enable this component."
63969     },
63970     {
63971      "name": "fireEvent",
63972      "sig": "(String eventName, Object... args)",
63973      "type": "function",
63974      "desc": "Fires the specified event with the passed parameters (minus the event name)."
63975     },
63976     {
63977      "name": "focus",
63978      "sig": "(Boolean selectText)",
63979      "type": "function",
63980      "desc": "Try to focus this component."
63981     },
63982     {
63983      "name": "getBox",
63984      "sig": "(Boolean local)",
63985      "type": "function",
63986      "desc": "Gets the current box measurements of the component's underlying element."
63987     },
63988     {
63989      "name": "getEl",
63990      "sig": "()",
63991      "type": "function",
63992      "desc": "Returns the underlying {@link Roo.Element}."
63993     },
63994     {
63995      "name": "getId",
63996      "sig": "()",
63997      "type": "function",
63998      "desc": "Returns the id of this component."
63999     },
64000     {
64001      "name": "getName",
64002      "sig": "()",
64003      "type": "function",
64004      "desc": "Returns the name attribute of the field if available"
64005     },
64006     {
64007      "name": "getPosition",
64008      "sig": "(Boolean local)",
64009      "type": "function",
64010      "desc": "Gets the current XY position of the component's underlying element."
64011     },
64012     {
64013      "name": "getRawValue",
64014      "sig": "()",
64015      "type": "function",
64016      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
64017     },
64018     {
64019      "name": "getSize",
64020      "sig": "()",
64021      "type": "function",
64022      "desc": "Gets the current size of the component's underlying element."
64023     },
64024     {
64025      "name": "getValue",
64026      "sig": "()",
64027      "type": "function",
64028      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
64029     },
64030     {
64031      "name": "hasChanged",
64032      "sig": "()",
64033      "type": "function",
64034      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
64035     },
64036     {
64037      "name": "hasListener",
64038      "sig": "(String eventName)",
64039      "type": "function",
64040      "desc": "Checks to see if this object has any listeners for a specified event"
64041     },
64042     {
64043      "name": "hide",
64044      "sig": "()",
64045      "type": "function",
64046      "desc": "Hide this component."
64047     },
64048     {
64049      "name": "isDirty",
64050      "sig": "()",
64051      "type": "function",
64052      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
64053     },
64054     {
64055      "name": "isValid",
64056      "sig": "(Boolean preventMark)",
64057      "type": "function",
64058      "desc": "Returns whether or not the field value is currently valid"
64059     },
64060     {
64061      "name": "isVisible",
64062      "sig": "()",
64063      "type": "function",
64064      "desc": "Returns true if this component is visible."
64065     },
64066     {
64067      "name": "markInvalid",
64068      "sig": "(String msg)",
64069      "type": "function",
64070      "desc": "Mark this field as invalid"
64071     },
64072     {
64073      "name": "on",
64074      "sig": "(String eventName, Function handler, Object scope, Object options)",
64075      "type": "function",
64076      "desc": "Appends an event handler to this element (shorthand for addListener)"
64077     },
64078     {
64079      "name": "onPosition",
64080      "sig": "(Number x, Number y)",
64081      "type": "function",
64082      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
64083     },
64084     {
64085      "name": "onResize",
64086      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
64087      "type": "function",
64088      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
64089     },
64090     {
64091      "name": "purgeListeners",
64092      "sig": "()",
64093      "type": "function",
64094      "desc": "Removes all listeners for this object"
64095     },
64096     {
64097      "name": "releaseCapture",
64098      "sig": "(Observable o)",
64099      "type": "function",
64100      "desc": "Removes <b>all</b> added captures from the Observable."
64101     },
64102     {
64103      "name": "removeListener",
64104      "sig": "(String eventName, Function handler, Object scope)",
64105      "type": "function",
64106      "desc": "Removes a listener"
64107     },
64108     {
64109      "name": "render",
64110      "sig": "(String/HTMLElement/Element container)",
64111      "type": "function",
64112      "desc": "If this is a lazy rendering component, render it to its container element."
64113     },
64114     {
64115      "name": "reset",
64116      "sig": "()",
64117      "type": "function",
64118      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
64119     },
64120     {
64121      "name": "resetHasChanged",
64122      "sig": "()",
64123      "type": "function",
64124      "desc": "stores the current value in loadedValue"
64125     },
64126     {
64127      "name": "selectText",
64128      "sig": "(Number start, Number end)",
64129      "type": "function",
64130      "desc": "Selects text in this field"
64131     },
64132     {
64133      "name": "setDisabled",
64134      "sig": "(Boolean disabled)",
64135      "type": "function",
64136      "desc": "Convenience function for setting disabled/enabled by boolean."
64137     },
64138     {
64139      "name": "setPagePosition",
64140      "sig": "(Number x, Number y)",
64141      "type": "function",
64142      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
64143     },
64144     {
64145      "name": "setPosition",
64146      "sig": "(Number left, Number top)",
64147      "type": "function",
64148      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
64149     },
64150     {
64151      "name": "setRawValue",
64152      "sig": "(Mixed value)",
64153      "type": "function",
64154      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
64155     },
64156     {
64157      "name": "setSize",
64158      "sig": "(Number/Object width, Number height)",
64159      "type": "function",
64160      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
64161     },
64162     {
64163      "name": "setValue",
64164      "sig": "(Mixed value)",
64165      "type": "function",
64166      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
64167     },
64168     {
64169      "name": "setVisible",
64170      "sig": "(Boolean visible)",
64171      "type": "function",
64172      "desc": "Convenience function to hide or show this component by boolean."
64173     },
64174     {
64175      "name": "show",
64176      "sig": "()",
64177      "type": "function",
64178      "desc": "Show this component."
64179     },
64180     {
64181      "name": "syncSize",
64182      "sig": "()",
64183      "type": "function",
64184      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
64185     },
64186     {
64187      "name": "un",
64188      "sig": "(String eventName, Function handler, Object scope)",
64189      "type": "function",
64190      "desc": "Removes a listener (shorthand for removeListener)"
64191     },
64192     {
64193      "name": "updateBox",
64194      "sig": "(Object box)",
64195      "type": "function",
64196      "desc": "Sets the current box measurements of the component's underlying element."
64197     },
64198     {
64199      "name": "validate",
64200      "sig": "()",
64201      "type": "function",
64202      "desc": "Validates the field value"
64203     },
64204     {
64205      "name": "validateValue",
64206      "sig": "(Mixed value)",
64207      "type": "function",
64208      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
64209     }
64210    ]
64211   },
64212   "Roo.form.Field": {
64213    "props": [
64214     {
64215      "name": "fieldLabel",
64216      "type": "String",
64217      "desc": "Label to use when rendering a form.",
64218      "memberOf": ""
64219     },
64220     {
64221      "name": "qtip",
64222      "type": "String",
64223      "desc": "Mouse over tip",
64224      "memberOf": ""
64225     },
64226     {
64227      "name": "name",
64228      "type": "String",
64229      "desc": "The field's HTML name attribute.",
64230      "memberOf": ""
64231     },
64232     {
64233      "name": "invalidClass",
64234      "type": "String",
64235      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
64236      "memberOf": ""
64237     },
64238     {
64239      "name": "invalidText",
64240      "type": "String",
64241      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
64242      "memberOf": ""
64243     },
64244     {
64245      "name": "focusClass",
64246      "type": "String",
64247      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
64248      "memberOf": ""
64249     },
64250     {
64251      "name": "validationEvent",
64252      "type": "String/Boolean",
64253      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
64254      "memberOf": ""
64255     },
64256     {
64257      "name": "validateOnBlur",
64258      "type": "Boolean",
64259      "desc": "Whether the field should validate when it loses focus (defaults to true).",
64260      "memberOf": ""
64261     },
64262     {
64263      "name": "validationDelay",
64264      "type": "Number",
64265      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
64266      "memberOf": ""
64267     },
64268     {
64269      "name": "autoCreate",
64270      "type": "String/Object",
64271      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"20\", autocomplete: \"off\"})",
64272      "memberOf": ""
64273     },
64274     {
64275      "name": "fieldClass",
64276      "type": "String",
64277      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
64278      "memberOf": ""
64279     },
64280     {
64281      "name": "msgTarget",
64282      "type": "String",
64283      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
64284      "memberOf": ""
64285     },
64286     {
64287      "name": "msgFx",
64288      "type": "String",
64289      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
64290      "memberOf": ""
64291     },
64292     {
64293      "name": "readOnly",
64294      "type": "Boolean",
64295      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
64296      "memberOf": ""
64297     },
64298     {
64299      "name": "disabled",
64300      "type": "Boolean",
64301      "desc": "True to disable the field (defaults to false).",
64302      "memberOf": ""
64303     },
64304     {
64305      "name": "inputType",
64306      "type": "String",
64307      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
64308      "memberOf": ""
64309     },
64310     {
64311      "name": "tabIndex",
64312      "type": "Number",
64313      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
64314      "memberOf": ""
64315     },
64316     {
64317      "name": "value",
64318      "type": "Mixed",
64319      "desc": "A value to initialize this field with.",
64320      "memberOf": ""
64321     },
64322     {
64323      "name": "cls",
64324      "type": "String",
64325      "desc": "A CSS class to apply to the field's underlying element.",
64326      "memberOf": ""
64327     },
64328     {
64329      "name": "width",
64330      "type": "Number",
64331      "desc": "width (optional) size of component",
64332      "memberOf": "Roo.BoxComponent"
64333     },
64334     {
64335      "name": "height",
64336      "type": "Number",
64337      "desc": "height (optional) size of component",
64338      "memberOf": "Roo.BoxComponent"
64339     },
64340     {
64341      "name": "disableClass",
64342      "type": "String",
64343      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
64344      "memberOf": "Roo.Component"
64345     },
64346     {
64347      "name": "allowDomMove",
64348      "type": "Boolean",
64349      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
64350      "memberOf": "Roo.Component"
64351     },
64352     {
64353      "name": "hideMode",
64354      "type": "String",
64355      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
64356      "memberOf": "Roo.Component",
64357      "optvals": [
64358       "display",
64359       "visibility"
64360      ]
64361     },
64362     {
64363      "name": "actionMode",
64364      "type": "String",
64365      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
64366      "memberOf": "Roo.Component"
64367     },
64368     {
64369      "name": "listeners",
64370      "type": "Object",
64371      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
64372      "memberOf": "Roo.util.Observable"
64373     }
64374    ],
64375    "events": [
64376     {
64377      "name": "beforedestroy",
64378      "sig": "function (_self)\n{\n\n}",
64379      "type": "function",
64380      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
64381     },
64382     {
64383      "name": "beforehide",
64384      "sig": "function (_self)\n{\n\n}",
64385      "type": "function",
64386      "desc": "Fires before the component is hidden. Return false to stop the hide."
64387     },
64388     {
64389      "name": "beforerender",
64390      "sig": "function (_self)\n{\n\n}",
64391      "type": "function",
64392      "desc": "Fires before the component is rendered. Return false to stop the render."
64393     },
64394     {
64395      "name": "beforeshow",
64396      "sig": "function (_self)\n{\n\n}",
64397      "type": "function",
64398      "desc": "Fires before the component is shown.  Return false to stop the show."
64399     },
64400     {
64401      "name": "blur",
64402      "sig": "function (_self)\n{\n\n}",
64403      "type": "function",
64404      "desc": "Fires when this field loses input focus."
64405     },
64406     {
64407      "name": "change",
64408      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
64409      "type": "function",
64410      "desc": "Fires just before the field blurs if the field value has changed."
64411     },
64412     {
64413      "name": "destroy",
64414      "sig": "function (_self)\n{\n\n}",
64415      "type": "function",
64416      "desc": "Fires after the component is destroyed."
64417     },
64418     {
64419      "name": "disable",
64420      "sig": "function (_self)\n{\n\n}",
64421      "type": "function",
64422      "desc": "Fires after the component is disabled."
64423     },
64424     {
64425      "name": "enable",
64426      "sig": "function (_self)\n{\n\n}",
64427      "type": "function",
64428      "desc": "Fires after the component is enabled."
64429     },
64430     {
64431      "name": "focus",
64432      "sig": "function (_self)\n{\n\n}",
64433      "type": "function",
64434      "desc": "Fires when this field receives input focus."
64435     },
64436     {
64437      "name": "hide",
64438      "sig": "function (_self)\n{\n\n}",
64439      "type": "function",
64440      "desc": "Fires after the component is hidden."
64441     },
64442     {
64443      "name": "invalid",
64444      "sig": "function (_self, msg)\n{\n\n}",
64445      "type": "function",
64446      "desc": "Fires after the field has been marked as invalid."
64447     },
64448     {
64449      "name": "keyup",
64450      "sig": "function (_self, e)\n{\n\n}",
64451      "type": "function",
64452      "desc": "Fires after the key up"
64453     },
64454     {
64455      "name": "move",
64456      "sig": "function (_self, x, y)\n{\n\n}",
64457      "type": "function",
64458      "desc": "Fires after the component is moved."
64459     },
64460     {
64461      "name": "render",
64462      "sig": "function (_self)\n{\n\n}",
64463      "type": "function",
64464      "desc": "Fires after the component is rendered."
64465     },
64466     {
64467      "name": "resize",
64468      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
64469      "type": "function",
64470      "desc": "Fires after the component is resized."
64471     },
64472     {
64473      "name": "show",
64474      "sig": "function (_self)\n{\n\n}",
64475      "type": "function",
64476      "desc": "Fires after the component is shown."
64477     },
64478     {
64479      "name": "specialkey",
64480      "sig": "function (_self, e)\n{\n\n}",
64481      "type": "function",
64482      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
64483     },
64484     {
64485      "name": "valid",
64486      "sig": "function (_self)\n{\n\n}",
64487      "type": "function",
64488      "desc": "Fires after the field has been validated with no errors."
64489     }
64490    ],
64491    "methods": [
64492     {
64493      "name": "addEvents",
64494      "sig": "(Object object)",
64495      "type": "function",
64496      "desc": "Used to define events on this Observable"
64497     },
64498     {
64499      "name": "addListener",
64500      "sig": "(String eventName, Function handler, Object scope, Object options)",
64501      "type": "function",
64502      "desc": "Appends an event handler to this component"
64503     },
64504     {
64505      "name": "applyTo",
64506      "sig": "(String/HTMLElement/Element el)",
64507      "type": "function",
64508      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
64509     },
64510     {
64511      "name": "capture",
64512      "sig": "(Observable o, Function fn, Object scope)",
64513      "type": "function",
64514      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
64515     },
64516     {
64517      "name": "clearInvalid",
64518      "sig": "()",
64519      "type": "function",
64520      "desc": "Clear any invalid styles/messages for this field"
64521     },
64522     {
64523      "name": "destroy",
64524      "sig": "()",
64525      "type": "function",
64526      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
64527     },
64528     {
64529      "name": "disable",
64530      "sig": "()",
64531      "type": "function",
64532      "desc": "Disable this component."
64533     },
64534     {
64535      "name": "enable",
64536      "sig": "()",
64537      "type": "function",
64538      "desc": "Enable this component."
64539     },
64540     {
64541      "name": "fireEvent",
64542      "sig": "(String eventName, Object... args)",
64543      "type": "function",
64544      "desc": "Fires the specified event with the passed parameters (minus the event name)."
64545     },
64546     {
64547      "name": "focus",
64548      "sig": "(Boolean selectText)",
64549      "type": "function",
64550      "desc": "Try to focus this component."
64551     },
64552     {
64553      "name": "getBox",
64554      "sig": "(Boolean local)",
64555      "type": "function",
64556      "desc": "Gets the current box measurements of the component's underlying element."
64557     },
64558     {
64559      "name": "getEl",
64560      "sig": "()",
64561      "type": "function",
64562      "desc": "Returns the underlying {@link Roo.Element}."
64563     },
64564     {
64565      "name": "getId",
64566      "sig": "()",
64567      "type": "function",
64568      "desc": "Returns the id of this component."
64569     },
64570     {
64571      "name": "getName",
64572      "sig": "()",
64573      "type": "function",
64574      "desc": "Returns the name attribute of the field if available"
64575     },
64576     {
64577      "name": "getPosition",
64578      "sig": "(Boolean local)",
64579      "type": "function",
64580      "desc": "Gets the current XY position of the component's underlying element."
64581     },
64582     {
64583      "name": "getRawValue",
64584      "sig": "()",
64585      "type": "function",
64586      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
64587     },
64588     {
64589      "name": "getSize",
64590      "sig": "()",
64591      "type": "function",
64592      "desc": "Gets the current size of the component's underlying element."
64593     },
64594     {
64595      "name": "getValue",
64596      "sig": "()",
64597      "type": "function",
64598      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
64599     },
64600     {
64601      "name": "hasChanged",
64602      "sig": "()",
64603      "type": "function",
64604      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
64605     },
64606     {
64607      "name": "hasListener",
64608      "sig": "(String eventName)",
64609      "type": "function",
64610      "desc": "Checks to see if this object has any listeners for a specified event"
64611     },
64612     {
64613      "name": "hide",
64614      "sig": "()",
64615      "type": "function",
64616      "desc": "Hide this component."
64617     },
64618     {
64619      "name": "isDirty",
64620      "sig": "()",
64621      "type": "function",
64622      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
64623     },
64624     {
64625      "name": "isValid",
64626      "sig": "(Boolean preventMark)",
64627      "type": "function",
64628      "desc": "Returns whether or not the field value is currently valid"
64629     },
64630     {
64631      "name": "isVisible",
64632      "sig": "()",
64633      "type": "function",
64634      "desc": "Returns true if this component is visible."
64635     },
64636     {
64637      "name": "markInvalid",
64638      "sig": "(String msg)",
64639      "type": "function",
64640      "desc": "Mark this field as invalid"
64641     },
64642     {
64643      "name": "on",
64644      "sig": "(String eventName, Function handler, Object scope, Object options)",
64645      "type": "function",
64646      "desc": "Appends an event handler to this element (shorthand for addListener)"
64647     },
64648     {
64649      "name": "onPosition",
64650      "sig": "(Number x, Number y)",
64651      "type": "function",
64652      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
64653     },
64654     {
64655      "name": "onResize",
64656      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
64657      "type": "function",
64658      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
64659     },
64660     {
64661      "name": "purgeListeners",
64662      "sig": "()",
64663      "type": "function",
64664      "desc": "Removes all listeners for this object"
64665     },
64666     {
64667      "name": "releaseCapture",
64668      "sig": "(Observable o)",
64669      "type": "function",
64670      "desc": "Removes <b>all</b> added captures from the Observable."
64671     },
64672     {
64673      "name": "removeListener",
64674      "sig": "(String eventName, Function handler, Object scope)",
64675      "type": "function",
64676      "desc": "Removes a listener"
64677     },
64678     {
64679      "name": "render",
64680      "sig": "(String/HTMLElement/Element container)",
64681      "type": "function",
64682      "desc": "If this is a lazy rendering component, render it to its container element."
64683     },
64684     {
64685      "name": "reset",
64686      "sig": "()",
64687      "type": "function",
64688      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
64689     },
64690     {
64691      "name": "resetHasChanged",
64692      "sig": "()",
64693      "type": "function",
64694      "desc": "stores the current value in loadedValue"
64695     },
64696     {
64697      "name": "setDisabled",
64698      "sig": "(Boolean disabled)",
64699      "type": "function",
64700      "desc": "Convenience function for setting disabled/enabled by boolean."
64701     },
64702     {
64703      "name": "setPagePosition",
64704      "sig": "(Number x, Number y)",
64705      "type": "function",
64706      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
64707     },
64708     {
64709      "name": "setPosition",
64710      "sig": "(Number left, Number top)",
64711      "type": "function",
64712      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
64713     },
64714     {
64715      "name": "setRawValue",
64716      "sig": "(Mixed value)",
64717      "type": "function",
64718      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
64719     },
64720     {
64721      "name": "setSize",
64722      "sig": "(Number/Object width, Number height)",
64723      "type": "function",
64724      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
64725     },
64726     {
64727      "name": "setValue",
64728      "sig": "(Mixed value)",
64729      "type": "function",
64730      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
64731     },
64732     {
64733      "name": "setVisible",
64734      "sig": "(Boolean visible)",
64735      "type": "function",
64736      "desc": "Convenience function to hide or show this component by boolean."
64737     },
64738     {
64739      "name": "show",
64740      "sig": "()",
64741      "type": "function",
64742      "desc": "Show this component."
64743     },
64744     {
64745      "name": "syncSize",
64746      "sig": "()",
64747      "type": "function",
64748      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
64749     },
64750     {
64751      "name": "un",
64752      "sig": "(String eventName, Function handler, Object scope)",
64753      "type": "function",
64754      "desc": "Removes a listener (shorthand for removeListener)"
64755     },
64756     {
64757      "name": "updateBox",
64758      "sig": "(Object box)",
64759      "type": "function",
64760      "desc": "Sets the current box measurements of the component's underlying element."
64761     },
64762     {
64763      "name": "validate",
64764      "sig": "()",
64765      "type": "function",
64766      "desc": "Validates the field value"
64767     }
64768    ]
64769   },
64770   "Roo.form.FieldSet": {
64771    "props": [
64772     {
64773      "name": "legend",
64774      "type": "String",
64775      "desc": "The text to display as the legend for the FieldSet (defaults to '')",
64776      "memberOf": ""
64777     },
64778     {
64779      "name": "autoCreate",
64780      "type": "String/Object",
64781      "desc": "A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})",
64782      "memberOf": ""
64783     },
64784     {
64785      "name": "style",
64786      "type": "String/Object/Function",
64787      "desc": "A style specification string, e.g. \"width:100px\", or object in the form {width:\"100px\"}, or\na function which returns such a specification.",
64788      "memberOf": "Roo.form.Layout"
64789     },
64790     {
64791      "name": "labelAlign",
64792      "type": "String",
64793      "desc": "Valid values are \"left,\" \"top\" and \"right\" (defaults to \"left\")",
64794      "memberOf": "Roo.form.Layout"
64795     },
64796     {
64797      "name": "labelWidth",
64798      "type": "Number",
64799      "desc": "Fixed width in pixels of all field labels (defaults to undefined)",
64800      "memberOf": "Roo.form.Layout"
64801     },
64802     {
64803      "name": "clear",
64804      "type": "Boolean",
64805      "desc": "True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)",
64806      "memberOf": "Roo.form.Layout"
64807     },
64808     {
64809      "name": "labelSeparator",
64810      "type": "String",
64811      "desc": "The separator to use after field labels (defaults to ':')",
64812      "memberOf": "Roo.form.Layout"
64813     },
64814     {
64815      "name": "hideLabels",
64816      "type": "Boolean",
64817      "desc": "True to suppress the display of field labels in this layout (defaults to false)",
64818      "memberOf": "Roo.form.Layout"
64819     },
64820     {
64821      "name": "disableClass",
64822      "type": "String",
64823      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
64824      "memberOf": "Roo.Component"
64825     },
64826     {
64827      "name": "allowDomMove",
64828      "type": "Boolean",
64829      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
64830      "memberOf": "Roo.Component"
64831     },
64832     {
64833      "name": "hideMode",
64834      "type": "String",
64835      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
64836      "memberOf": "Roo.Component",
64837      "optvals": [
64838       "display",
64839       "visibility"
64840      ]
64841     },
64842     {
64843      "name": "actionMode",
64844      "type": "String",
64845      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
64846      "memberOf": "Roo.Component"
64847     },
64848     {
64849      "name": "listeners",
64850      "type": "Object",
64851      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
64852      "memberOf": "Roo.util.Observable"
64853     }
64854    ],
64855    "events": [
64856     {
64857      "name": "beforedestroy",
64858      "sig": "function (_self)\n{\n\n}",
64859      "type": "function",
64860      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
64861     },
64862     {
64863      "name": "beforehide",
64864      "sig": "function (_self)\n{\n\n}",
64865      "type": "function",
64866      "desc": "Fires before the component is hidden. Return false to stop the hide."
64867     },
64868     {
64869      "name": "beforerender",
64870      "sig": "function (_self)\n{\n\n}",
64871      "type": "function",
64872      "desc": "Fires before the component is rendered. Return false to stop the render."
64873     },
64874     {
64875      "name": "beforeshow",
64876      "sig": "function (_self)\n{\n\n}",
64877      "type": "function",
64878      "desc": "Fires before the component is shown.  Return false to stop the show."
64879     },
64880     {
64881      "name": "destroy",
64882      "sig": "function (_self)\n{\n\n}",
64883      "type": "function",
64884      "desc": "Fires after the component is destroyed."
64885     },
64886     {
64887      "name": "disable",
64888      "sig": "function (_self)\n{\n\n}",
64889      "type": "function",
64890      "desc": "Fires after the component is disabled."
64891     },
64892     {
64893      "name": "enable",
64894      "sig": "function (_self)\n{\n\n}",
64895      "type": "function",
64896      "desc": "Fires after the component is enabled."
64897     },
64898     {
64899      "name": "hide",
64900      "sig": "function (_self)\n{\n\n}",
64901      "type": "function",
64902      "desc": "Fires after the component is hidden."
64903     },
64904     {
64905      "name": "render",
64906      "sig": "function (_self)\n{\n\n}",
64907      "type": "function",
64908      "desc": "Fires after the component is rendered."
64909     },
64910     {
64911      "name": "show",
64912      "sig": "function (_self)\n{\n\n}",
64913      "type": "function",
64914      "desc": "Fires after the component is shown."
64915     }
64916    ],
64917    "methods": [
64918     {
64919      "name": "addEvents",
64920      "sig": "(Object object)",
64921      "type": "function",
64922      "desc": "Used to define events on this Observable"
64923     },
64924     {
64925      "name": "addListener",
64926      "sig": "(String eventName, Function handler, Object scope, Object options)",
64927      "type": "function",
64928      "desc": "Appends an event handler to this component"
64929     },
64930     {
64931      "name": "addxtype",
64932      "sig": "(Object config)",
64933      "type": "function",
64934      "desc": "Adds a object form elements (using the xtype property as the factory method.)\nValid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column"
64935     },
64936     {
64937      "name": "capture",
64938      "sig": "(Observable o, Function fn, Object scope)",
64939      "type": "function",
64940      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
64941     },
64942     {
64943      "name": "destroy",
64944      "sig": "()",
64945      "type": "function",
64946      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
64947     },
64948     {
64949      "name": "disable",
64950      "sig": "()",
64951      "type": "function",
64952      "desc": "Disable this component."
64953     },
64954     {
64955      "name": "enable",
64956      "sig": "()",
64957      "type": "function",
64958      "desc": "Enable this component."
64959     },
64960     {
64961      "name": "fireEvent",
64962      "sig": "(String eventName, Object... args)",
64963      "type": "function",
64964      "desc": "Fires the specified event with the passed parameters (minus the event name)."
64965     },
64966     {
64967      "name": "focus",
64968      "sig": "(Boolean selectText)",
64969      "type": "function",
64970      "desc": "Try to focus this component."
64971     },
64972     {
64973      "name": "getEl",
64974      "sig": "()",
64975      "type": "function",
64976      "desc": "Returns the underlying {@link Roo.Element}."
64977     },
64978     {
64979      "name": "getId",
64980      "sig": "()",
64981      "type": "function",
64982      "desc": "Returns the id of this component."
64983     },
64984     {
64985      "name": "hasListener",
64986      "sig": "(String eventName)",
64987      "type": "function",
64988      "desc": "Checks to see if this object has any listeners for a specified event"
64989     },
64990     {
64991      "name": "hide",
64992      "sig": "()",
64993      "type": "function",
64994      "desc": "Hide this component."
64995     },
64996     {
64997      "name": "isVisible",
64998      "sig": "()",
64999      "type": "function",
65000      "desc": "Returns true if this component is visible."
65001     },
65002     {
65003      "name": "on",
65004      "sig": "(String eventName, Function handler, Object scope, Object options)",
65005      "type": "function",
65006      "desc": "Appends an event handler to this element (shorthand for addListener)"
65007     },
65008     {
65009      "name": "purgeListeners",
65010      "sig": "()",
65011      "type": "function",
65012      "desc": "Removes all listeners for this object"
65013     },
65014     {
65015      "name": "releaseCapture",
65016      "sig": "(Observable o)",
65017      "type": "function",
65018      "desc": "Removes <b>all</b> added captures from the Observable."
65019     },
65020     {
65021      "name": "removeListener",
65022      "sig": "(String eventName, Function handler, Object scope)",
65023      "type": "function",
65024      "desc": "Removes a listener"
65025     },
65026     {
65027      "name": "render",
65028      "sig": "(String/HTMLElement/Element container)",
65029      "type": "function",
65030      "desc": "If this is a lazy rendering component, render it to its container element."
65031     },
65032     {
65033      "name": "setDisabled",
65034      "sig": "(Boolean disabled)",
65035      "type": "function",
65036      "desc": "Convenience function for setting disabled/enabled by boolean."
65037     },
65038     {
65039      "name": "setVisible",
65040      "sig": "(Boolean visible)",
65041      "type": "function",
65042      "desc": "Convenience function to hide or show this component by boolean."
65043     },
65044     {
65045      "name": "show",
65046      "sig": "()",
65047      "type": "function",
65048      "desc": "Show this component."
65049     },
65050     {
65051      "name": "un",
65052      "sig": "(String eventName, Function handler, Object scope)",
65053      "type": "function",
65054      "desc": "Removes a listener (shorthand for removeListener)"
65055     }
65056    ]
65057   },
65058   "Roo.form.Form": {
65059    "props": [
65060     {
65061      "name": "labelWidth",
65062      "type": "Number",
65063      "desc": "The width of labels. This property cascades to child containers.",
65064      "memberOf": ""
65065     },
65066     {
65067      "name": "itemCls",
65068      "type": "String",
65069      "desc": "A css class to apply to the x-form-item of fields. This property cascades to child containers.",
65070      "memberOf": ""
65071     },
65072     {
65073      "name": "buttonAlign",
65074      "type": "String",
65075      "desc": "Valid values are \"left,\" \"center\" and \"right\" (defaults to \"center\")",
65076      "memberOf": ""
65077     },
65078     {
65079      "name": "minButtonWidth",
65080      "type": "Number",
65081      "desc": "Minimum width of all buttons in pixels (defaults to 75)",
65082      "memberOf": ""
65083     },
65084     {
65085      "name": "labelAlign",
65086      "type": "String",
65087      "desc": "Valid values are \"left,\" \"top\" and \"right\" (defaults to \"left\").\nThis property cascades to child containers if not set.",
65088      "memberOf": ""
65089     },
65090     {
65091      "name": "monitorValid",
65092      "type": "Boolean",
65093      "desc": "If true the form monitors its valid state <b>client-side</b> and\nfires a looping event with that state. This is required to bind buttons to the valid\nstate using the config value formBind:true on the button.",
65094      "memberOf": ""
65095     },
65096     {
65097      "name": "monitorPoll",
65098      "type": "Number",
65099      "desc": "The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)",
65100      "memberOf": ""
65101     },
65102     {
65103      "name": "progressUrl",
65104      "type": "String",
65105      "desc": "- Url to return progress data",
65106      "memberOf": ""
65107     },
65108     {
65109      "name": "method",
65110      "type": "String",
65111      "desc": "The request method to use (GET or POST) for form actions if one isn't supplied in the action options.",
65112      "memberOf": "Roo.form.BasicForm"
65113     },
65114     {
65115      "name": "reader",
65116      "type": "DataReader",
65117      "desc": "An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing \"load\" actions.\nThis is optional as there is built-in support for processing JSON.",
65118      "memberOf": "Roo.form.BasicForm"
65119     },
65120     {
65121      "name": "errorReader",
65122      "type": "DataReader",
65123      "desc": "An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on \"submit\" actions.\nThis is completely optional as there is built-in support for processing JSON.",
65124      "memberOf": "Roo.form.BasicForm"
65125     },
65126     {
65127      "name": "url",
65128      "type": "String",
65129      "desc": "The URL to use for form actions if one isn't supplied in the action options.",
65130      "memberOf": "Roo.form.BasicForm"
65131     },
65132     {
65133      "name": "fileUpload",
65134      "type": "Boolean",
65135      "desc": "Set to true if this form is a file upload.",
65136      "memberOf": "Roo.form.BasicForm"
65137     },
65138     {
65139      "name": "baseParams",
65140      "type": "Object",
65141      "desc": "Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.",
65142      "memberOf": "Roo.form.BasicForm"
65143     },
65144     {
65145      "name": "timeout",
65146      "type": "Number",
65147      "desc": "Timeout for form actions in seconds (default is 30 seconds).",
65148      "memberOf": "Roo.form.BasicForm"
65149     },
65150     {
65151      "name": "trackResetOnLoad",
65152      "type": "Boolean",
65153      "desc": "If set to true, form.reset() resets to the last loaded\nor setValues() data instead of when the form was first created.",
65154      "memberOf": "Roo.form.BasicForm"
65155     },
65156     {
65157      "name": "listeners",
65158      "type": "Object",
65159      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
65160      "memberOf": "Roo.util.Observable"
65161     }
65162    ],
65163    "events": [
65164     {
65165      "name": "actioncomplete",
65166      "sig": "function (_self, action)\n{\n\n}",
65167      "type": "function",
65168      "desc": "Fires when an action is completed."
65169     },
65170     {
65171      "name": "actionfailed",
65172      "sig": "function (_self, action)\n{\n\n}",
65173      "type": "function",
65174      "desc": "Fires when an action fails."
65175     },
65176     {
65177      "name": "beforeaction",
65178      "sig": "function (_self, action)\n{\n\n}",
65179      "type": "function",
65180      "desc": "Fires before any action is performed. Return false to cancel the action."
65181     },
65182     {
65183      "name": "clientvalidation",
65184      "sig": "function (_self, valid)\n{\n\n}",
65185      "type": "function",
65186      "desc": "If the monitorValid config option is true, this event fires repetitively to notify of valid state"
65187     },
65188     {
65189      "name": "rendered",
65190      "sig": "function (form)\n{\n\n}",
65191      "type": "function",
65192      "desc": "Fires when the form is rendered"
65193     }
65194    ],
65195    "methods": [
65196     {
65197      "name": "add",
65198      "sig": "(Field field1, Field field2)",
65199      "type": "function",
65200      "desc": "Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method\ncan also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display\nas the label of the field."
65201     },
65202     {
65203      "name": "addButton",
65204      "sig": "(String/Object config, Function handler, Object scope)",
65205      "type": "function",
65206      "desc": "Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered."
65207     },
65208     {
65209      "name": "addEvents",
65210      "sig": "(Object object)",
65211      "type": "function",
65212      "desc": "Used to define events on this Observable"
65213     },
65214     {
65215      "name": "addForm",
65216      "sig": "(Roo.form.Form form)",
65217      "type": "function",
65218      "desc": "Add a secondary form to this one, \nUsed to provide tabbed forms. One form is primary, with hidden values \nwhich mirror the elements from the other forms."
65219     },
65220     {
65221      "name": "addListener",
65222      "sig": "(String eventName, Function handler, Object scope, Object options)",
65223      "type": "function",
65224      "desc": "Appends an event handler to this component"
65225     },
65226     {
65227      "name": "addxtype",
65228      "sig": "(Object config)",
65229      "type": "function",
65230      "desc": "Adds a series of form elements (using the xtype property as the factory method.\nValid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)"
65231     },
65232     {
65233      "name": "applyIfToFields",
65234      "sig": "(Object values)",
65235      "type": "function",
65236      "desc": "Calls {@link Ext#applyIf} for all field in this form with the passed object."
65237     },
65238     {
65239      "name": "applyToFields",
65240      "sig": "(Object values)",
65241      "type": "function",
65242      "desc": "Calls {@link Ext#apply} for all fields in this form with the passed object."
65243     },
65244     {
65245      "name": "capture",
65246      "sig": "(Observable o, Function fn, Object scope)",
65247      "type": "function",
65248      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
65249     },
65250     {
65251      "name": "clearInvalid",
65252      "sig": "()",
65253      "type": "function",
65254      "desc": "Clears all invalid messages in this form."
65255     },
65256     {
65257      "name": "column",
65258      "sig": "(Object config, Field field1, Field field2, Field etc)",
65259      "type": "function",
65260      "desc": "Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the\nfields are added and the column is closed. If no fields are passed the column remains open\nuntil end() is called."
65261     },
65262     {
65263      "name": "container",
65264      "sig": "(Object config, Field field1, Field field2, Field etc)",
65265      "type": "function",
65266      "desc": "Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the\nfields are added and the container is closed. If no fields are passed the container remains open\nuntil end() is called."
65267     },
65268     {
65269      "name": "doAction",
65270      "sig": "(String actionName, Object options)",
65271      "type": "function",
65272      "desc": "Performs a predefined action (submit or load) or custom actions you define on this form."
65273     },
65274     {
65275      "name": "end",
65276      "sig": "()",
65277      "type": "function",
65278      "desc": "Closes the current open container"
65279     },
65280     {
65281      "name": "fieldset",
65282      "sig": "(Object config, Field field1, Field field2, Field etc)",
65283      "type": "function",
65284      "desc": "Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the\nfields are added and the fieldset is closed. If no fields are passed the fieldset remains open\nuntil end() is called."
65285     },
65286     {
65287      "name": "findField",
65288      "sig": "(String id)",
65289      "type": "function",
65290      "desc": "Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName"
65291     },
65292     {
65293      "name": "findbyId",
65294      "sig": "(String id)",
65295      "type": "function",
65296      "desc": "Find any element that has been added to a form, using it's ID or name\nThis can include framesets, columns etc. along with regular fields.."
65297     },
65298     {
65299      "name": "fireEvent",
65300      "sig": "(String eventName, Object... args)",
65301      "type": "function",
65302      "desc": "Fires the specified event with the passed parameters (minus the event name)."
65303     },
65304     {
65305      "name": "getFieldValues",
65306      "sig": "()",
65307      "type": "function",
65308      "desc": "Returns the fields in this form as an object with key/value pairs. \nThis differs from getValues as it calls getValue on each child item, rather than using dom data."
65309     },
65310     {
65311      "name": "getValues",
65312      "sig": "(Boolean asString)",
65313      "type": "function",
65314      "desc": "Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name\nthey are returned as an array."
65315     },
65316     {
65317      "name": "hasChanged",
65318      "sig": "()",
65319      "type": "function",
65320      "desc": "Returns true if any fields in this form have changed since their original load. (New version)"
65321     },
65322     {
65323      "name": "hasListener",
65324      "sig": "(String eventName)",
65325      "type": "function",
65326      "desc": "Checks to see if this object has any listeners for a specified event"
65327     },
65328     {
65329      "name": "isDirty",
65330      "sig": "()",
65331      "type": "function",
65332      "desc": "DEPRICATED Returns true if any fields in this form have changed since their original load."
65333     },
65334     {
65335      "name": "isValid",
65336      "sig": "()",
65337      "type": "function",
65338      "desc": "Returns true if client-side validation on the form is successful."
65339     },
65340     {
65341      "name": "load",
65342      "sig": "(Object options)",
65343      "type": "function",
65344      "desc": "Shortcut to do a load action."
65345     },
65346     {
65347      "name": "loadRecord",
65348      "sig": "(Record record)",
65349      "type": "function",
65350      "desc": "Loads an Roo.data.Record into this form."
65351     },
65352     {
65353      "name": "markInvalid",
65354      "sig": "(Array/Object errors)",
65355      "type": "function",
65356      "desc": "Mark fields in this form invalid in bulk."
65357     },
65358     {
65359      "name": "on",
65360      "sig": "(String eventName, Function handler, Object scope, Object options)",
65361      "type": "function",
65362      "desc": "Appends an event handler to this element (shorthand for addListener)"
65363     },
65364     {
65365      "name": "purgeListeners",
65366      "sig": "()",
65367      "type": "function",
65368      "desc": "Removes all listeners for this object"
65369     },
65370     {
65371      "name": "releaseCapture",
65372      "sig": "(Observable o)",
65373      "type": "function",
65374      "desc": "Removes <b>all</b> added captures from the Observable."
65375     },
65376     {
65377      "name": "remove",
65378      "sig": "(Field field)",
65379      "type": "function",
65380      "desc": "Removes a field from the items collection (does NOT remove its markup)."
65381     },
65382     {
65383      "name": "removeListener",
65384      "sig": "(String eventName, Function handler, Object scope)",
65385      "type": "function",
65386      "desc": "Removes a listener"
65387     },
65388     {
65389      "name": "render",
65390      "sig": "(String/HTMLElement/Element container)",
65391      "type": "function",
65392      "desc": "Render this form into the passed container. This should only be called once!"
65393     },
65394     {
65395      "name": "reset",
65396      "sig": "()",
65397      "type": "function",
65398      "desc": "Resets this form."
65399     },
65400     {
65401      "name": "resetHasChanged",
65402      "sig": "()",
65403      "type": "function",
65404      "desc": "Resets all hasChanged to 'false' -\nThe old 'isDirty' used 'original value..' however this breaks reset() and a few other things.\nSo hasChanged storage is only to be used for this purpose"
65405     },
65406     {
65407      "name": "setValues",
65408      "sig": "(Array/Object values)",
65409      "type": "function",
65410      "desc": "Set values for fields in this form in bulk."
65411     },
65412     {
65413      "name": "start",
65414      "sig": "(Object container)",
65415      "type": "function",
65416      "desc": "Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass."
65417     },
65418     {
65419      "name": "startMonitoring",
65420      "sig": "()",
65421      "type": "function",
65422      "desc": "Starts monitoring of the valid state of this form. Usually this is done by passing the config\noption \"monitorValid\""
65423     },
65424     {
65425      "name": "stopMonitoring",
65426      "sig": "()",
65427      "type": "function",
65428      "desc": "Stops monitoring of the valid state of this form"
65429     },
65430     {
65431      "name": "submit",
65432      "sig": "(Object options)",
65433      "type": "function",
65434      "desc": "Shortcut to do a submit action."
65435     },
65436     {
65437      "name": "un",
65438      "sig": "(String eventName, Function handler, Object scope)",
65439      "type": "function",
65440      "desc": "Removes a listener (shorthand for removeListener)"
65441     },
65442     {
65443      "name": "updateRecord",
65444      "sig": "(Record record)",
65445      "type": "function",
65446      "desc": "Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block."
65447     }
65448    ]
65449   },
65450   "Roo.form.GridField": {
65451    "props": [
65452     {
65453      "name": "width",
65454      "type": "Number",
65455      "desc": "- used to restrict width of grid..",
65456      "memberOf": ""
65457     },
65458     {
65459      "name": "height",
65460      "type": "Number",
65461      "desc": "- used to restrict height of grid..",
65462      "memberOf": ""
65463     },
65464     {
65465      "name": "xgrid",
65466      "type": "Object",
65467      "desc": "(xtype'd description of grid) { xtype : 'Grid', dataSource: .... }\n\n}",
65468      "memberOf": ""
65469     },
65470     {
65471      "name": "autoCreate",
65472      "type": "String/Object",
65473      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"checkbox\", autocomplete: \"off\"})",
65474      "memberOf": ""
65475     },
65476     {
65477      "name": "addTitle",
65478      "type": "String",
65479      "desc": "Text to include for adding a title.",
65480      "memberOf": ""
65481     },
65482     {
65483      "name": "fieldLabel",
65484      "type": "String",
65485      "desc": "Label to use when rendering a form.",
65486      "memberOf": "Roo.form.Field"
65487     },
65488     {
65489      "name": "qtip",
65490      "type": "String",
65491      "desc": "Mouse over tip",
65492      "memberOf": "Roo.form.Field"
65493     },
65494     {
65495      "name": "name",
65496      "type": "String",
65497      "desc": "The field's HTML name attribute.",
65498      "memberOf": "Roo.form.Field"
65499     },
65500     {
65501      "name": "invalidClass",
65502      "type": "String",
65503      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
65504      "memberOf": "Roo.form.Field"
65505     },
65506     {
65507      "name": "invalidText",
65508      "type": "String",
65509      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
65510      "memberOf": "Roo.form.Field"
65511     },
65512     {
65513      "name": "focusClass",
65514      "type": "String",
65515      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
65516      "memberOf": "Roo.form.Field"
65517     },
65518     {
65519      "name": "validationEvent",
65520      "type": "String/Boolean",
65521      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
65522      "memberOf": "Roo.form.Field"
65523     },
65524     {
65525      "name": "validateOnBlur",
65526      "type": "Boolean",
65527      "desc": "Whether the field should validate when it loses focus (defaults to true).",
65528      "memberOf": "Roo.form.Field"
65529     },
65530     {
65531      "name": "validationDelay",
65532      "type": "Number",
65533      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
65534      "memberOf": "Roo.form.Field"
65535     },
65536     {
65537      "name": "fieldClass",
65538      "type": "String",
65539      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
65540      "memberOf": "Roo.form.Field"
65541     },
65542     {
65543      "name": "msgTarget",
65544      "type": "String",
65545      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
65546      "memberOf": "Roo.form.Field"
65547     },
65548     {
65549      "name": "msgFx",
65550      "type": "String",
65551      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
65552      "memberOf": "Roo.form.Field"
65553     },
65554     {
65555      "name": "readOnly",
65556      "type": "Boolean",
65557      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
65558      "memberOf": "Roo.form.Field"
65559     },
65560     {
65561      "name": "disabled",
65562      "type": "Boolean",
65563      "desc": "True to disable the field (defaults to false).",
65564      "memberOf": "Roo.form.Field"
65565     },
65566     {
65567      "name": "inputType",
65568      "type": "String",
65569      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
65570      "memberOf": "Roo.form.Field"
65571     },
65572     {
65573      "name": "tabIndex",
65574      "type": "Number",
65575      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
65576      "memberOf": "Roo.form.Field"
65577     },
65578     {
65579      "name": "value",
65580      "type": "Mixed",
65581      "desc": "A value to initialize this field with.",
65582      "memberOf": "Roo.form.Field"
65583     },
65584     {
65585      "name": "cls",
65586      "type": "String",
65587      "desc": "A CSS class to apply to the field's underlying element.",
65588      "memberOf": "Roo.form.Field"
65589     },
65590     {
65591      "name": "disableClass",
65592      "type": "String",
65593      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
65594      "memberOf": "Roo.Component"
65595     },
65596     {
65597      "name": "allowDomMove",
65598      "type": "Boolean",
65599      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
65600      "memberOf": "Roo.Component"
65601     },
65602     {
65603      "name": "hideMode",
65604      "type": "String",
65605      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
65606      "memberOf": "Roo.Component",
65607      "optvals": [
65608       "display",
65609       "visibility"
65610      ]
65611     },
65612     {
65613      "name": "actionMode",
65614      "type": "String",
65615      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
65616      "memberOf": "Roo.Component"
65617     },
65618     {
65619      "name": "listeners",
65620      "type": "Object",
65621      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
65622      "memberOf": "Roo.util.Observable"
65623     }
65624    ],
65625    "events": [
65626     {
65627      "name": "beforedestroy",
65628      "sig": "function (_self)\n{\n\n}",
65629      "type": "function",
65630      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
65631     },
65632     {
65633      "name": "beforehide",
65634      "sig": "function (_self)\n{\n\n}",
65635      "type": "function",
65636      "desc": "Fires before the component is hidden. Return false to stop the hide."
65637     },
65638     {
65639      "name": "beforerender",
65640      "sig": "function (_self)\n{\n\n}",
65641      "type": "function",
65642      "desc": "Fires before the component is rendered. Return false to stop the render."
65643     },
65644     {
65645      "name": "beforeshow",
65646      "sig": "function (_self)\n{\n\n}",
65647      "type": "function",
65648      "desc": "Fires before the component is shown.  Return false to stop the show."
65649     },
65650     {
65651      "name": "blur",
65652      "sig": "function (_self)\n{\n\n}",
65653      "type": "function",
65654      "desc": "Fires when this field loses input focus."
65655     },
65656     {
65657      "name": "change",
65658      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
65659      "type": "function",
65660      "desc": "Fires just before the field blurs if the field value has changed."
65661     },
65662     {
65663      "name": "destroy",
65664      "sig": "function (_self)\n{\n\n}",
65665      "type": "function",
65666      "desc": "Fires after the component is destroyed."
65667     },
65668     {
65669      "name": "disable",
65670      "sig": "function (_self)\n{\n\n}",
65671      "type": "function",
65672      "desc": "Fires after the component is disabled."
65673     },
65674     {
65675      "name": "enable",
65676      "sig": "function (_self)\n{\n\n}",
65677      "type": "function",
65678      "desc": "Fires after the component is enabled."
65679     },
65680     {
65681      "name": "focus",
65682      "sig": "function (_self)\n{\n\n}",
65683      "type": "function",
65684      "desc": "Fires when this field receives input focus."
65685     },
65686     {
65687      "name": "hide",
65688      "sig": "function (_self)\n{\n\n}",
65689      "type": "function",
65690      "desc": "Fires after the component is hidden."
65691     },
65692     {
65693      "name": "invalid",
65694      "sig": "function (_self, msg)\n{\n\n}",
65695      "type": "function",
65696      "desc": "Fires after the field has been marked as invalid."
65697     },
65698     {
65699      "name": "keyup",
65700      "sig": "function (_self, e)\n{\n\n}",
65701      "type": "function",
65702      "desc": "Fires after the key up"
65703     },
65704     {
65705      "name": "move",
65706      "sig": "function (_self, x, y)\n{\n\n}",
65707      "type": "function",
65708      "desc": "Fires after the component is moved."
65709     },
65710     {
65711      "name": "render",
65712      "sig": "function (_self)\n{\n\n}",
65713      "type": "function",
65714      "desc": "Fires after the component is rendered."
65715     },
65716     {
65717      "name": "resize",
65718      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
65719      "type": "function",
65720      "desc": "Fires after the component is resized."
65721     },
65722     {
65723      "name": "show",
65724      "sig": "function (_self)\n{\n\n}",
65725      "type": "function",
65726      "desc": "Fires after the component is shown."
65727     },
65728     {
65729      "name": "specialkey",
65730      "sig": "function (_self, e)\n{\n\n}",
65731      "type": "function",
65732      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
65733     },
65734     {
65735      "name": "valid",
65736      "sig": "function (_self)\n{\n\n}",
65737      "type": "function",
65738      "desc": "Fires after the field has been validated with no errors."
65739     }
65740    ],
65741    "methods": [
65742     {
65743      "name": "addEvents",
65744      "sig": "(Object object)",
65745      "type": "function",
65746      "desc": "Used to define events on this Observable"
65747     },
65748     {
65749      "name": "addListener",
65750      "sig": "(String eventName, Function handler, Object scope, Object options)",
65751      "type": "function",
65752      "desc": "Appends an event handler to this component"
65753     },
65754     {
65755      "name": "applyTo",
65756      "sig": "(String/HTMLElement/Element el)",
65757      "type": "function",
65758      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
65759     },
65760     {
65761      "name": "capture",
65762      "sig": "(Observable o, Function fn, Object scope)",
65763      "type": "function",
65764      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
65765     },
65766     {
65767      "name": "clearInvalid",
65768      "sig": "()",
65769      "type": "function",
65770      "desc": "Clear any invalid styles/messages for this field"
65771     },
65772     {
65773      "name": "destroy",
65774      "sig": "()",
65775      "type": "function",
65776      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
65777     },
65778     {
65779      "name": "disable",
65780      "sig": "()",
65781      "type": "function",
65782      "desc": "Disable this component."
65783     },
65784     {
65785      "name": "enable",
65786      "sig": "()",
65787      "type": "function",
65788      "desc": "Enable this component."
65789     },
65790     {
65791      "name": "fireEvent",
65792      "sig": "(String eventName, Object... args)",
65793      "type": "function",
65794      "desc": "Fires the specified event with the passed parameters (minus the event name)."
65795     },
65796     {
65797      "name": "focus",
65798      "sig": "(Boolean selectText)",
65799      "type": "function",
65800      "desc": "Try to focus this component."
65801     },
65802     {
65803      "name": "getBox",
65804      "sig": "(Boolean local)",
65805      "type": "function",
65806      "desc": "Gets the current box measurements of the component's underlying element."
65807     },
65808     {
65809      "name": "getEl",
65810      "sig": "()",
65811      "type": "function",
65812      "desc": "Returns the underlying {@link Roo.Element}."
65813     },
65814     {
65815      "name": "getId",
65816      "sig": "()",
65817      "type": "function",
65818      "desc": "Returns the id of this component."
65819     },
65820     {
65821      "name": "getName",
65822      "sig": "()",
65823      "type": "function",
65824      "desc": "Returns the name attribute of the field if available"
65825     },
65826     {
65827      "name": "getPosition",
65828      "sig": "(Boolean local)",
65829      "type": "function",
65830      "desc": "Gets the current XY position of the component's underlying element."
65831     },
65832     {
65833      "name": "getRawValue",
65834      "sig": "()",
65835      "type": "function",
65836      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
65837     },
65838     {
65839      "name": "getSize",
65840      "sig": "()",
65841      "type": "function",
65842      "desc": "Gets the current size of the component's underlying element."
65843     },
65844     {
65845      "name": "getValue",
65846      "sig": "()",
65847      "type": "function",
65848      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
65849     },
65850     {
65851      "name": "hasChanged",
65852      "sig": "()",
65853      "type": "function",
65854      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
65855     },
65856     {
65857      "name": "hasListener",
65858      "sig": "(String eventName)",
65859      "type": "function",
65860      "desc": "Checks to see if this object has any listeners for a specified event"
65861     },
65862     {
65863      "name": "hide",
65864      "sig": "()",
65865      "type": "function",
65866      "desc": "Hide this component."
65867     },
65868     {
65869      "name": "isDirty",
65870      "sig": "()",
65871      "type": "function",
65872      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
65873     },
65874     {
65875      "name": "isValid",
65876      "sig": "(Boolean preventMark)",
65877      "type": "function",
65878      "desc": "Returns whether or not the field value is currently valid"
65879     },
65880     {
65881      "name": "isVisible",
65882      "sig": "()",
65883      "type": "function",
65884      "desc": "Returns true if this component is visible."
65885     },
65886     {
65887      "name": "markInvalid",
65888      "sig": "(String msg)",
65889      "type": "function",
65890      "desc": "Mark this field as invalid"
65891     },
65892     {
65893      "name": "on",
65894      "sig": "(String eventName, Function handler, Object scope, Object options)",
65895      "type": "function",
65896      "desc": "Appends an event handler to this element (shorthand for addListener)"
65897     },
65898     {
65899      "name": "onPosition",
65900      "sig": "(Number x, Number y)",
65901      "type": "function",
65902      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
65903     },
65904     {
65905      "name": "onResize",
65906      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
65907      "type": "function",
65908      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
65909     },
65910     {
65911      "name": "purgeListeners",
65912      "sig": "()",
65913      "type": "function",
65914      "desc": "Removes all listeners for this object"
65915     },
65916     {
65917      "name": "releaseCapture",
65918      "sig": "(Observable o)",
65919      "type": "function",
65920      "desc": "Removes <b>all</b> added captures from the Observable."
65921     },
65922     {
65923      "name": "removeListener",
65924      "sig": "(String eventName, Function handler, Object scope)",
65925      "type": "function",
65926      "desc": "Removes a listener"
65927     },
65928     {
65929      "name": "render",
65930      "sig": "(String/HTMLElement/Element container)",
65931      "type": "function",
65932      "desc": "If this is a lazy rendering component, render it to its container element."
65933     },
65934     {
65935      "name": "reset",
65936      "sig": "()",
65937      "type": "function",
65938      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
65939     },
65940     {
65941      "name": "resetHasChanged",
65942      "sig": "()",
65943      "type": "function",
65944      "desc": "stores the current value in loadedValue"
65945     },
65946     {
65947      "name": "setDisabled",
65948      "sig": "(Boolean disabled)",
65949      "type": "function",
65950      "desc": "Convenience function for setting disabled/enabled by boolean."
65951     },
65952     {
65953      "name": "setPagePosition",
65954      "sig": "(Number x, Number y)",
65955      "type": "function",
65956      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
65957     },
65958     {
65959      "name": "setPosition",
65960      "sig": "(Number left, Number top)",
65961      "type": "function",
65962      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
65963     },
65964     {
65965      "name": "setRawValue",
65966      "sig": "(Mixed value)",
65967      "type": "function",
65968      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
65969     },
65970     {
65971      "name": "setSize",
65972      "sig": "(Number/Object width, Number height)",
65973      "type": "function",
65974      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
65975     },
65976     {
65977      "name": "setValue",
65978      "sig": "(String either)",
65979      "type": "function",
65980      "desc": "Sets the value of the item."
65981     },
65982     {
65983      "name": "setVisible",
65984      "sig": "(Boolean visible)",
65985      "type": "function",
65986      "desc": "Convenience function to hide or show this component by boolean."
65987     },
65988     {
65989      "name": "show",
65990      "sig": "()",
65991      "type": "function",
65992      "desc": "Show this component."
65993     },
65994     {
65995      "name": "syncSize",
65996      "sig": "()",
65997      "type": "function",
65998      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
65999     },
66000     {
66001      "name": "un",
66002      "sig": "(String eventName, Function handler, Object scope)",
66003      "type": "function",
66004      "desc": "Removes a listener (shorthand for removeListener)"
66005     },
66006     {
66007      "name": "updateBox",
66008      "sig": "(Object box)",
66009      "type": "function",
66010      "desc": "Sets the current box measurements of the component's underlying element."
66011     },
66012     {
66013      "name": "validate",
66014      "sig": "()",
66015      "type": "function",
66016      "desc": "Validates the field value"
66017     }
66018    ]
66019   },
66020   "Roo.form.Hidden": {
66021    "props": [
66022     {
66023      "name": "grow",
66024      "type": "Boolean",
66025      "desc": "True if this field should automatically grow and shrink to its content",
66026      "memberOf": "Roo.form.TextField"
66027     },
66028     {
66029      "name": "growMin",
66030      "type": "Number",
66031      "desc": "The minimum width to allow when grow = true (defaults to 30)",
66032      "memberOf": "Roo.form.TextField"
66033     },
66034     {
66035      "name": "growMax",
66036      "type": "Number",
66037      "desc": "The maximum width to allow when grow = true (defaults to 800)",
66038      "memberOf": "Roo.form.TextField"
66039     },
66040     {
66041      "name": "vtype",
66042      "type": "String",
66043      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
66044      "memberOf": "Roo.form.TextField"
66045     },
66046     {
66047      "name": "maskRe",
66048      "type": "String",
66049      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
66050      "memberOf": "Roo.form.TextField"
66051     },
66052     {
66053      "name": "disableKeyFilter",
66054      "type": "Boolean",
66055      "desc": "True to disable input keystroke filtering (defaults to false)",
66056      "memberOf": "Roo.form.TextField"
66057     },
66058     {
66059      "name": "allowBlank",
66060      "type": "Boolean",
66061      "desc": "False to validate that the value length > 0 (defaults to true)",
66062      "memberOf": "Roo.form.TextField"
66063     },
66064     {
66065      "name": "minLength",
66066      "type": "Number",
66067      "desc": "Minimum input field length required (defaults to 0)",
66068      "memberOf": "Roo.form.TextField"
66069     },
66070     {
66071      "name": "maxLength",
66072      "type": "Number",
66073      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
66074      "memberOf": "Roo.form.TextField"
66075     },
66076     {
66077      "name": "minLengthText",
66078      "type": "String",
66079      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
66080      "memberOf": "Roo.form.TextField"
66081     },
66082     {
66083      "name": "maxLengthText",
66084      "type": "String",
66085      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
66086      "memberOf": "Roo.form.TextField"
66087     },
66088     {
66089      "name": "selectOnFocus",
66090      "type": "Boolean",
66091      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
66092      "memberOf": "Roo.form.TextField"
66093     },
66094     {
66095      "name": "blankText",
66096      "type": "String",
66097      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
66098      "memberOf": "Roo.form.TextField"
66099     },
66100     {
66101      "name": "validator",
66102      "type": "Function",
66103      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
66104      "memberOf": "Roo.form.TextField"
66105     },
66106     {
66107      "name": "regex",
66108      "type": "RegExp",
66109      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
66110      "memberOf": "Roo.form.TextField"
66111     },
66112     {
66113      "name": "regexText",
66114      "type": "String",
66115      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
66116      "memberOf": "Roo.form.TextField"
66117     },
66118     {
66119      "name": "emptyText",
66120      "type": "String",
66121      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
66122      "memberOf": "Roo.form.TextField"
66123     },
66124     {
66125      "name": "fieldLabel",
66126      "type": "String",
66127      "desc": "Label to use when rendering a form.",
66128      "memberOf": "Roo.form.Field"
66129     },
66130     {
66131      "name": "qtip",
66132      "type": "String",
66133      "desc": "Mouse over tip",
66134      "memberOf": "Roo.form.Field"
66135     },
66136     {
66137      "name": "name",
66138      "type": "String",
66139      "desc": "The field's HTML name attribute.",
66140      "memberOf": "Roo.form.Field"
66141     },
66142     {
66143      "name": "invalidClass",
66144      "type": "String",
66145      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
66146      "memberOf": "Roo.form.Field"
66147     },
66148     {
66149      "name": "invalidText",
66150      "type": "String",
66151      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
66152      "memberOf": "Roo.form.Field"
66153     },
66154     {
66155      "name": "focusClass",
66156      "type": "String",
66157      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
66158      "memberOf": "Roo.form.Field"
66159     },
66160     {
66161      "name": "validationEvent",
66162      "type": "String/Boolean",
66163      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
66164      "memberOf": "Roo.form.Field"
66165     },
66166     {
66167      "name": "validateOnBlur",
66168      "type": "Boolean",
66169      "desc": "Whether the field should validate when it loses focus (defaults to true).",
66170      "memberOf": "Roo.form.Field"
66171     },
66172     {
66173      "name": "validationDelay",
66174      "type": "Number",
66175      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
66176      "memberOf": "Roo.form.Field"
66177     },
66178     {
66179      "name": "autoCreate",
66180      "type": "String/Object",
66181      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"20\", autocomplete: \"off\"})",
66182      "memberOf": "Roo.form.Field"
66183     },
66184     {
66185      "name": "fieldClass",
66186      "type": "String",
66187      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
66188      "memberOf": "Roo.form.Field"
66189     },
66190     {
66191      "name": "msgTarget",
66192      "type": "String",
66193      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
66194      "memberOf": "Roo.form.Field"
66195     },
66196     {
66197      "name": "msgFx",
66198      "type": "String",
66199      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
66200      "memberOf": "Roo.form.Field"
66201     },
66202     {
66203      "name": "readOnly",
66204      "type": "Boolean",
66205      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
66206      "memberOf": "Roo.form.Field"
66207     },
66208     {
66209      "name": "disabled",
66210      "type": "Boolean",
66211      "desc": "True to disable the field (defaults to false).",
66212      "memberOf": "Roo.form.Field"
66213     },
66214     {
66215      "name": "inputType",
66216      "type": "String",
66217      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
66218      "memberOf": "Roo.form.Field"
66219     },
66220     {
66221      "name": "tabIndex",
66222      "type": "Number",
66223      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
66224      "memberOf": "Roo.form.Field"
66225     },
66226     {
66227      "name": "value",
66228      "type": "Mixed",
66229      "desc": "A value to initialize this field with.",
66230      "memberOf": "Roo.form.Field"
66231     },
66232     {
66233      "name": "cls",
66234      "type": "String",
66235      "desc": "A CSS class to apply to the field's underlying element.",
66236      "memberOf": "Roo.form.Field"
66237     },
66238     {
66239      "name": "width",
66240      "type": "Number",
66241      "desc": "width (optional) size of component",
66242      "memberOf": "Roo.BoxComponent"
66243     },
66244     {
66245      "name": "height",
66246      "type": "Number",
66247      "desc": "height (optional) size of component",
66248      "memberOf": "Roo.BoxComponent"
66249     },
66250     {
66251      "name": "disableClass",
66252      "type": "String",
66253      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
66254      "memberOf": "Roo.Component"
66255     },
66256     {
66257      "name": "allowDomMove",
66258      "type": "Boolean",
66259      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
66260      "memberOf": "Roo.Component"
66261     },
66262     {
66263      "name": "hideMode",
66264      "type": "String",
66265      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
66266      "memberOf": "Roo.Component",
66267      "optvals": [
66268       "display",
66269       "visibility"
66270      ]
66271     },
66272     {
66273      "name": "actionMode",
66274      "type": "String",
66275      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
66276      "memberOf": "Roo.Component"
66277     },
66278     {
66279      "name": "listeners",
66280      "type": "Object",
66281      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
66282      "memberOf": "Roo.util.Observable"
66283     }
66284    ],
66285    "events": [
66286     {
66287      "name": "autosize",
66288      "sig": "function (_self, width)\n{\n\n}",
66289      "type": "function",
66290      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
66291     },
66292     {
66293      "name": "beforedestroy",
66294      "sig": "function (_self)\n{\n\n}",
66295      "type": "function",
66296      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
66297     },
66298     {
66299      "name": "beforehide",
66300      "sig": "function (_self)\n{\n\n}",
66301      "type": "function",
66302      "desc": "Fires before the component is hidden. Return false to stop the hide."
66303     },
66304     {
66305      "name": "beforerender",
66306      "sig": "function (_self)\n{\n\n}",
66307      "type": "function",
66308      "desc": "Fires before the component is rendered. Return false to stop the render."
66309     },
66310     {
66311      "name": "beforeshow",
66312      "sig": "function (_self)\n{\n\n}",
66313      "type": "function",
66314      "desc": "Fires before the component is shown.  Return false to stop the show."
66315     },
66316     {
66317      "name": "blur",
66318      "sig": "function (_self)\n{\n\n}",
66319      "type": "function",
66320      "desc": "Fires when this field loses input focus."
66321     },
66322     {
66323      "name": "change",
66324      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
66325      "type": "function",
66326      "desc": "Fires just before the field blurs if the field value has changed."
66327     },
66328     {
66329      "name": "destroy",
66330      "sig": "function (_self)\n{\n\n}",
66331      "type": "function",
66332      "desc": "Fires after the component is destroyed."
66333     },
66334     {
66335      "name": "disable",
66336      "sig": "function (_self)\n{\n\n}",
66337      "type": "function",
66338      "desc": "Fires after the component is disabled."
66339     },
66340     {
66341      "name": "enable",
66342      "sig": "function (_self)\n{\n\n}",
66343      "type": "function",
66344      "desc": "Fires after the component is enabled."
66345     },
66346     {
66347      "name": "focus",
66348      "sig": "function (_self)\n{\n\n}",
66349      "type": "function",
66350      "desc": "Fires when this field receives input focus."
66351     },
66352     {
66353      "name": "hide",
66354      "sig": "function (_self)\n{\n\n}",
66355      "type": "function",
66356      "desc": "Fires after the component is hidden."
66357     },
66358     {
66359      "name": "invalid",
66360      "sig": "function (_self, msg)\n{\n\n}",
66361      "type": "function",
66362      "desc": "Fires after the field has been marked as invalid."
66363     },
66364     {
66365      "name": "keyup",
66366      "sig": "function (_self, e)\n{\n\n}",
66367      "type": "function",
66368      "desc": "Fires after the key up"
66369     },
66370     {
66371      "name": "move",
66372      "sig": "function (_self, x, y)\n{\n\n}",
66373      "type": "function",
66374      "desc": "Fires after the component is moved."
66375     },
66376     {
66377      "name": "render",
66378      "sig": "function (_self)\n{\n\n}",
66379      "type": "function",
66380      "desc": "Fires after the component is rendered."
66381     },
66382     {
66383      "name": "resize",
66384      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
66385      "type": "function",
66386      "desc": "Fires after the component is resized."
66387     },
66388     {
66389      "name": "show",
66390      "sig": "function (_self)\n{\n\n}",
66391      "type": "function",
66392      "desc": "Fires after the component is shown."
66393     },
66394     {
66395      "name": "specialkey",
66396      "sig": "function (_self, e)\n{\n\n}",
66397      "type": "function",
66398      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
66399     },
66400     {
66401      "name": "valid",
66402      "sig": "function (_self)\n{\n\n}",
66403      "type": "function",
66404      "desc": "Fires after the field has been validated with no errors."
66405     }
66406    ],
66407    "methods": [
66408     {
66409      "name": "addEvents",
66410      "sig": "(Object object)",
66411      "type": "function",
66412      "desc": "Used to define events on this Observable"
66413     },
66414     {
66415      "name": "addListener",
66416      "sig": "(String eventName, Function handler, Object scope, Object options)",
66417      "type": "function",
66418      "desc": "Appends an event handler to this component"
66419     },
66420     {
66421      "name": "applyTo",
66422      "sig": "(String/HTMLElement/Element el)",
66423      "type": "function",
66424      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
66425     },
66426     {
66427      "name": "autoSize",
66428      "sig": "()",
66429      "type": "function",
66430      "desc": "Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.\nThis only takes effect if grow = true, and fires the autosize event."
66431     },
66432     {
66433      "name": "capture",
66434      "sig": "(Observable o, Function fn, Object scope)",
66435      "type": "function",
66436      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
66437     },
66438     {
66439      "name": "clearInvalid",
66440      "sig": "()",
66441      "type": "function",
66442      "desc": "Clear any invalid styles/messages for this field"
66443     },
66444     {
66445      "name": "destroy",
66446      "sig": "()",
66447      "type": "function",
66448      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
66449     },
66450     {
66451      "name": "disable",
66452      "sig": "()",
66453      "type": "function",
66454      "desc": "Disable this component."
66455     },
66456     {
66457      "name": "enable",
66458      "sig": "()",
66459      "type": "function",
66460      "desc": "Enable this component."
66461     },
66462     {
66463      "name": "fireEvent",
66464      "sig": "(String eventName, Object... args)",
66465      "type": "function",
66466      "desc": "Fires the specified event with the passed parameters (minus the event name)."
66467     },
66468     {
66469      "name": "focus",
66470      "sig": "(Boolean selectText)",
66471      "type": "function",
66472      "desc": "Try to focus this component."
66473     },
66474     {
66475      "name": "getBox",
66476      "sig": "(Boolean local)",
66477      "type": "function",
66478      "desc": "Gets the current box measurements of the component's underlying element."
66479     },
66480     {
66481      "name": "getEl",
66482      "sig": "()",
66483      "type": "function",
66484      "desc": "Returns the underlying {@link Roo.Element}."
66485     },
66486     {
66487      "name": "getId",
66488      "sig": "()",
66489      "type": "function",
66490      "desc": "Returns the id of this component."
66491     },
66492     {
66493      "name": "getName",
66494      "sig": "()",
66495      "type": "function",
66496      "desc": "Returns the name attribute of the field if available"
66497     },
66498     {
66499      "name": "getPosition",
66500      "sig": "(Boolean local)",
66501      "type": "function",
66502      "desc": "Gets the current XY position of the component's underlying element."
66503     },
66504     {
66505      "name": "getRawValue",
66506      "sig": "()",
66507      "type": "function",
66508      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
66509     },
66510     {
66511      "name": "getSize",
66512      "sig": "()",
66513      "type": "function",
66514      "desc": "Gets the current size of the component's underlying element."
66515     },
66516     {
66517      "name": "getValue",
66518      "sig": "()",
66519      "type": "function",
66520      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
66521     },
66522     {
66523      "name": "hasChanged",
66524      "sig": "()",
66525      "type": "function",
66526      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
66527     },
66528     {
66529      "name": "hasListener",
66530      "sig": "(String eventName)",
66531      "type": "function",
66532      "desc": "Checks to see if this object has any listeners for a specified event"
66533     },
66534     {
66535      "name": "hide",
66536      "sig": "()",
66537      "type": "function",
66538      "desc": "Hide this component."
66539     },
66540     {
66541      "name": "isDirty",
66542      "sig": "()",
66543      "type": "function",
66544      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
66545     },
66546     {
66547      "name": "isValid",
66548      "sig": "(Boolean preventMark)",
66549      "type": "function",
66550      "desc": "Returns whether or not the field value is currently valid"
66551     },
66552     {
66553      "name": "isVisible",
66554      "sig": "()",
66555      "type": "function",
66556      "desc": "Returns true if this component is visible."
66557     },
66558     {
66559      "name": "markInvalid",
66560      "sig": "(String msg)",
66561      "type": "function",
66562      "desc": "Mark this field as invalid"
66563     },
66564     {
66565      "name": "on",
66566      "sig": "(String eventName, Function handler, Object scope, Object options)",
66567      "type": "function",
66568      "desc": "Appends an event handler to this element (shorthand for addListener)"
66569     },
66570     {
66571      "name": "onPosition",
66572      "sig": "(Number x, Number y)",
66573      "type": "function",
66574      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
66575     },
66576     {
66577      "name": "onResize",
66578      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
66579      "type": "function",
66580      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
66581     },
66582     {
66583      "name": "purgeListeners",
66584      "sig": "()",
66585      "type": "function",
66586      "desc": "Removes all listeners for this object"
66587     },
66588     {
66589      "name": "releaseCapture",
66590      "sig": "(Observable o)",
66591      "type": "function",
66592      "desc": "Removes <b>all</b> added captures from the Observable."
66593     },
66594     {
66595      "name": "removeListener",
66596      "sig": "(String eventName, Function handler, Object scope)",
66597      "type": "function",
66598      "desc": "Removes a listener"
66599     },
66600     {
66601      "name": "render",
66602      "sig": "(String/HTMLElement/Element container)",
66603      "type": "function",
66604      "desc": "If this is a lazy rendering component, render it to its container element."
66605     },
66606     {
66607      "name": "reset",
66608      "sig": "()",
66609      "type": "function",
66610      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
66611     },
66612     {
66613      "name": "resetHasChanged",
66614      "sig": "()",
66615      "type": "function",
66616      "desc": "stores the current value in loadedValue"
66617     },
66618     {
66619      "name": "selectText",
66620      "sig": "(Number start, Number end)",
66621      "type": "function",
66622      "desc": "Selects text in this field"
66623     },
66624     {
66625      "name": "setDisabled",
66626      "sig": "(Boolean disabled)",
66627      "type": "function",
66628      "desc": "Convenience function for setting disabled/enabled by boolean."
66629     },
66630     {
66631      "name": "setPagePosition",
66632      "sig": "(Number x, Number y)",
66633      "type": "function",
66634      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
66635     },
66636     {
66637      "name": "setPosition",
66638      "sig": "(Number left, Number top)",
66639      "type": "function",
66640      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
66641     },
66642     {
66643      "name": "setRawValue",
66644      "sig": "(Mixed value)",
66645      "type": "function",
66646      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
66647     },
66648     {
66649      "name": "setSize",
66650      "sig": "(Number/Object width, Number height)",
66651      "type": "function",
66652      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
66653     },
66654     {
66655      "name": "setValue",
66656      "sig": "(Mixed value)",
66657      "type": "function",
66658      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
66659     },
66660     {
66661      "name": "setVisible",
66662      "sig": "(Boolean visible)",
66663      "type": "function",
66664      "desc": "Convenience function to hide or show this component by boolean."
66665     },
66666     {
66667      "name": "show",
66668      "sig": "()",
66669      "type": "function",
66670      "desc": "Show this component."
66671     },
66672     {
66673      "name": "syncSize",
66674      "sig": "()",
66675      "type": "function",
66676      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
66677     },
66678     {
66679      "name": "un",
66680      "sig": "(String eventName, Function handler, Object scope)",
66681      "type": "function",
66682      "desc": "Removes a listener (shorthand for removeListener)"
66683     },
66684     {
66685      "name": "updateBox",
66686      "sig": "(Object box)",
66687      "type": "function",
66688      "desc": "Sets the current box measurements of the component's underlying element."
66689     },
66690     {
66691      "name": "validate",
66692      "sig": "()",
66693      "type": "function",
66694      "desc": "Validates the field value"
66695     },
66696     {
66697      "name": "validateValue",
66698      "sig": "(Mixed value)",
66699      "type": "function",
66700      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
66701     }
66702    ]
66703   },
66704   "Roo.form.HtmlEditor": {
66705    "props": [
66706     {
66707      "name": "clearUp",
66708      "type": "Boolean",
66709      "desc": "",
66710      "memberOf": ""
66711     },
66712     {
66713      "name": "toolbars",
66714      "type": "Array",
66715      "desc": "Array of toolbars. - defaults to just the Standard one",
66716      "memberOf": ""
66717     },
66718     {
66719      "name": "resizable",
66720      "type": "String",
66721      "desc": "'s' or 'se' or 'e' - wrapps the element in a\n                       Roo.resizable.",
66722      "memberOf": ""
66723     },
66724     {
66725      "name": "height",
66726      "type": "Number",
66727      "desc": "(in pixels)",
66728      "memberOf": ""
66729     },
66730     {
66731      "name": "width",
66732      "type": "Number",
66733      "desc": "(in pixels)",
66734      "memberOf": ""
66735     },
66736     {
66737      "name": "stylesheets",
66738      "type": "Array",
66739      "desc": "url of stylesheets. set to [] to disable stylesheets.",
66740      "memberOf": ""
66741     },
66742     {
66743      "name": "blacklist",
66744      "type": "Array",
66745      "desc": "of css styles style attributes (blacklist overrides whitelist)",
66746      "memberOf": ""
66747     },
66748     {
66749      "name": "whitelist",
66750      "type": "Array",
66751      "desc": "of css styles style attributes (blacklist overrides whitelist)",
66752      "memberOf": ""
66753     },
66754     {
66755      "name": "fieldLabel",
66756      "type": "String",
66757      "desc": "Label to use when rendering a form.",
66758      "memberOf": "Roo.form.Field"
66759     },
66760     {
66761      "name": "qtip",
66762      "type": "String",
66763      "desc": "Mouse over tip",
66764      "memberOf": "Roo.form.Field"
66765     },
66766     {
66767      "name": "name",
66768      "type": "String",
66769      "desc": "The field's HTML name attribute.",
66770      "memberOf": "Roo.form.Field"
66771     },
66772     {
66773      "name": "validationEvent",
66774      "type": "String/Boolean",
66775      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
66776      "memberOf": "Roo.form.Field"
66777     },
66778     {
66779      "name": "validationDelay",
66780      "type": "Number",
66781      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
66782      "memberOf": "Roo.form.Field"
66783     },
66784     {
66785      "name": "msgTarget",
66786      "type": "String",
66787      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
66788      "memberOf": "Roo.form.Field"
66789     },
66790     {
66791      "name": "readOnly",
66792      "type": "Boolean",
66793      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
66794      "memberOf": "Roo.form.Field"
66795     },
66796     {
66797      "name": "disabled",
66798      "type": "Boolean",
66799      "desc": "True to disable the field (defaults to false).",
66800      "memberOf": "Roo.form.Field"
66801     },
66802     {
66803      "name": "tabIndex",
66804      "type": "Number",
66805      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
66806      "memberOf": "Roo.form.Field"
66807     },
66808     {
66809      "name": "value",
66810      "type": "Mixed",
66811      "desc": "A value to initialize this field with.",
66812      "memberOf": "Roo.form.Field"
66813     },
66814     {
66815      "name": "cls",
66816      "type": "String",
66817      "desc": "A CSS class to apply to the field's underlying element.",
66818      "memberOf": "Roo.form.Field"
66819     },
66820     {
66821      "name": "disableClass",
66822      "type": "String",
66823      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
66824      "memberOf": "Roo.Component"
66825     },
66826     {
66827      "name": "allowDomMove",
66828      "type": "Boolean",
66829      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
66830      "memberOf": "Roo.Component"
66831     },
66832     {
66833      "name": "hideMode",
66834      "type": "String",
66835      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
66836      "memberOf": "Roo.Component",
66837      "optvals": [
66838       "display",
66839       "visibility"
66840      ]
66841     },
66842     {
66843      "name": "actionMode",
66844      "type": "String",
66845      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
66846      "memberOf": "Roo.Component"
66847     },
66848     {
66849      "name": "listeners",
66850      "type": "Object",
66851      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
66852      "memberOf": "Roo.util.Observable"
66853     }
66854    ],
66855    "events": [
66856     {
66857      "name": "activate",
66858      "sig": "function (_self)\n{\n\n}",
66859      "type": "function",
66860      "desc": "Fires when the editor is first receives the focus. Any insertion must wait\nuntil after this event."
66861     },
66862     {
66863      "name": "autosave",
66864      "sig": "function (_self)\n{\n\n}",
66865      "type": "function",
66866      "desc": "Auto save the htmlEditor value as a file into Events"
66867     },
66868     {
66869      "name": "beforedestroy",
66870      "sig": "function (_self)\n{\n\n}",
66871      "type": "function",
66872      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
66873     },
66874     {
66875      "name": "beforehide",
66876      "sig": "function (_self)\n{\n\n}",
66877      "type": "function",
66878      "desc": "Fires before the component is hidden. Return false to stop the hide."
66879     },
66880     {
66881      "name": "beforepush",
66882      "sig": "function (_self, html)\n{\n\n}",
66883      "type": "function",
66884      "desc": "Fires before the iframe editor is updated with content from the textarea. Return false\nto cancel the push."
66885     },
66886     {
66887      "name": "beforerender",
66888      "sig": "function (_self)\n{\n\n}",
66889      "type": "function",
66890      "desc": "Fires before the component is rendered. Return false to stop the render."
66891     },
66892     {
66893      "name": "beforeshow",
66894      "sig": "function (_self)\n{\n\n}",
66895      "type": "function",
66896      "desc": "Fires before the component is shown.  Return false to stop the show."
66897     },
66898     {
66899      "name": "beforesync",
66900      "sig": "function (_self, html)\n{\n\n}",
66901      "type": "function",
66902      "desc": "Fires before the textarea is updated with content from the editor iframe. Return false\nto cancel the sync."
66903     },
66904     {
66905      "name": "destroy",
66906      "sig": "function (_self)\n{\n\n}",
66907      "type": "function",
66908      "desc": "Fires after the component is destroyed."
66909     },
66910     {
66911      "name": "disable",
66912      "sig": "function (_self)\n{\n\n}",
66913      "type": "function",
66914      "desc": "Fires after the component is disabled."
66915     },
66916     {
66917      "name": "editmodechange",
66918      "sig": "function (_self, sourceEdit)\n{\n\n}",
66919      "type": "function",
66920      "desc": "Fires when the editor switches edit modes"
66921     },
66922     {
66923      "name": "editorevent",
66924      "sig": "function (_self)\n{\n\n}",
66925      "type": "function",
66926      "desc": "Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks."
66927     },
66928     {
66929      "name": "enable",
66930      "sig": "function (_self)\n{\n\n}",
66931      "type": "function",
66932      "desc": "Fires after the component is enabled."
66933     },
66934     {
66935      "name": "firstfocus",
66936      "sig": "function (_self)\n{\n\n}",
66937      "type": "function",
66938      "desc": "Fires when on first focus - needed by toolbars.."
66939     },
66940     {
66941      "name": "hide",
66942      "sig": "function (_self)\n{\n\n}",
66943      "type": "function",
66944      "desc": "Fires after the component is hidden."
66945     },
66946     {
66947      "name": "initialize",
66948      "sig": "function (_self)\n{\n\n}",
66949      "type": "function",
66950      "desc": "Fires when the editor is fully initialized (including the iframe)"
66951     },
66952     {
66953      "name": "invalid",
66954      "sig": "function (_self, msg)\n{\n\n}",
66955      "type": "function",
66956      "desc": "Fires after the field has been marked as invalid."
66957     },
66958     {
66959      "name": "keyup",
66960      "sig": "function (_self, e)\n{\n\n}",
66961      "type": "function",
66962      "desc": "Fires after the key up"
66963     },
66964     {
66965      "name": "move",
66966      "sig": "function (_self, x, y)\n{\n\n}",
66967      "type": "function",
66968      "desc": "Fires after the component is moved."
66969     },
66970     {
66971      "name": "push",
66972      "sig": "function (_self, html)\n{\n\n}",
66973      "type": "function",
66974      "desc": "Fires when the iframe editor is updated with content from the textarea."
66975     },
66976     {
66977      "name": "render",
66978      "sig": "function (_self)\n{\n\n}",
66979      "type": "function",
66980      "desc": "Fires after the component is rendered."
66981     },
66982     {
66983      "name": "resize",
66984      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
66985      "type": "function",
66986      "desc": "Fires after the component is resized."
66987     },
66988     {
66989      "name": "savedpreview",
66990      "sig": "function (_self)\n{\n\n}",
66991      "type": "function",
66992      "desc": "preview the saved version of htmlEditor"
66993     },
66994     {
66995      "name": "show",
66996      "sig": "function (_self)\n{\n\n}",
66997      "type": "function",
66998      "desc": "Fires after the component is shown."
66999     },
67000     {
67001      "name": "stylesheetsclick",
67002      "sig": "function (_self)\n{\n\n}",
67003      "type": "function",
67004      "desc": "Fires when press the Sytlesheets button"
67005     },
67006     {
67007      "name": "sync",
67008      "sig": "function (_self, html)\n{\n\n}",
67009      "type": "function",
67010      "desc": "Fires when the textarea is updated with content from the editor iframe."
67011     },
67012     {
67013      "name": "valid",
67014      "sig": "function (_self)\n{\n\n}",
67015      "type": "function",
67016      "desc": "Fires after the field has been validated with no errors."
67017     }
67018    ],
67019    "methods": [
67020     {
67021      "name": "addEvents",
67022      "sig": "(Object object)",
67023      "type": "function",
67024      "desc": "Used to define events on this Observable"
67025     },
67026     {
67027      "name": "addListener",
67028      "sig": "(String eventName, Function handler, Object scope, Object options)",
67029      "type": "function",
67030      "desc": "Appends an event handler to this component"
67031     },
67032     {
67033      "name": "applyTo",
67034      "sig": "(String/HTMLElement/Element el)",
67035      "type": "function",
67036      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
67037     },
67038     {
67039      "name": "capture",
67040      "sig": "(Observable o, Function fn, Object scope)",
67041      "type": "function",
67042      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
67043     },
67044     {
67045      "name": "clearInvalid",
67046      "sig": "()",
67047      "type": "function",
67048      "desc": "Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide"
67049     },
67050     {
67051      "name": "createToolbar",
67052      "sig": "(HtmlEditor editor)",
67053      "type": "function",
67054      "desc": "Protected method that will not generally be called directly. It\nis called when the editor creates its toolbar. Override this method if you need to\nadd custom toolbar buttons."
67055     },
67056     {
67057      "name": "destroy",
67058      "sig": "()",
67059      "type": "function",
67060      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
67061     },
67062     {
67063      "name": "disable",
67064      "sig": "()",
67065      "type": "function",
67066      "desc": "Disable this component."
67067     },
67068     {
67069      "name": "enable",
67070      "sig": "()",
67071      "type": "function",
67072      "desc": "Enable this component."
67073     },
67074     {
67075      "name": "fireEvent",
67076      "sig": "(String eventName, Object... args)",
67077      "type": "function",
67078      "desc": "Fires the specified event with the passed parameters (minus the event name)."
67079     },
67080     {
67081      "name": "focus",
67082      "sig": "(Boolean selectText)",
67083      "type": "function",
67084      "desc": "Try to focus this component."
67085     },
67086     {
67087      "name": "getBox",
67088      "sig": "(Boolean local)",
67089      "type": "function",
67090      "desc": "Gets the current box measurements of the component's underlying element."
67091     },
67092     {
67093      "name": "getEl",
67094      "sig": "()",
67095      "type": "function",
67096      "desc": "Returns the underlying {@link Roo.Element}."
67097     },
67098     {
67099      "name": "getId",
67100      "sig": "()",
67101      "type": "function",
67102      "desc": "Returns the id of this component."
67103     },
67104     {
67105      "name": "getName",
67106      "sig": "()",
67107      "type": "function",
67108      "desc": "Returns the name attribute of the field if available"
67109     },
67110     {
67111      "name": "getPosition",
67112      "sig": "(Boolean local)",
67113      "type": "function",
67114      "desc": "Gets the current XY position of the component's underlying element."
67115     },
67116     {
67117      "name": "getRawValue",
67118      "sig": "()",
67119      "type": "function",
67120      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
67121     },
67122     {
67123      "name": "getSize",
67124      "sig": "()",
67125      "type": "function",
67126      "desc": "Gets the current size of the component's underlying element."
67127     },
67128     {
67129      "name": "getValue",
67130      "sig": "()",
67131      "type": "function",
67132      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
67133     },
67134     {
67135      "name": "hasChanged",
67136      "sig": "()",
67137      "type": "function",
67138      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
67139     },
67140     {
67141      "name": "hasListener",
67142      "sig": "(String eventName)",
67143      "type": "function",
67144      "desc": "Checks to see if this object has any listeners for a specified event"
67145     },
67146     {
67147      "name": "hide",
67148      "sig": "()",
67149      "type": "function",
67150      "desc": "Hide this component."
67151     },
67152     {
67153      "name": "isDirty",
67154      "sig": "()",
67155      "type": "function",
67156      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
67157     },
67158     {
67159      "name": "isValid",
67160      "sig": "(Boolean preventMark)",
67161      "type": "function",
67162      "desc": "Returns whether or not the field value is currently valid"
67163     },
67164     {
67165      "name": "isVisible",
67166      "sig": "()",
67167      "type": "function",
67168      "desc": "Returns true if this component is visible."
67169     },
67170     {
67171      "name": "markInvalid",
67172      "sig": "()",
67173      "type": "function",
67174      "desc": "Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide"
67175     },
67176     {
67177      "name": "on",
67178      "sig": "(String eventName, Function handler, Object scope, Object options)",
67179      "type": "function",
67180      "desc": "Appends an event handler to this element (shorthand for addListener)"
67181     },
67182     {
67183      "name": "onPosition",
67184      "sig": "(Number x, Number y)",
67185      "type": "function",
67186      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
67187     },
67188     {
67189      "name": "onResize",
67190      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
67191      "type": "function",
67192      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
67193     },
67194     {
67195      "name": "purgeListeners",
67196      "sig": "()",
67197      "type": "function",
67198      "desc": "Removes all listeners for this object"
67199     },
67200     {
67201      "name": "releaseCapture",
67202      "sig": "(Observable o)",
67203      "type": "function",
67204      "desc": "Removes <b>all</b> added captures from the Observable."
67205     },
67206     {
67207      "name": "removeListener",
67208      "sig": "(String eventName, Function handler, Object scope)",
67209      "type": "function",
67210      "desc": "Removes a listener"
67211     },
67212     {
67213      "name": "render",
67214      "sig": "(String/HTMLElement/Element container)",
67215      "type": "function",
67216      "desc": "If this is a lazy rendering component, render it to its container element."
67217     },
67218     {
67219      "name": "reset",
67220      "sig": "()",
67221      "type": "function",
67222      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
67223     },
67224     {
67225      "name": "resetHasChanged",
67226      "sig": "()",
67227      "type": "function",
67228      "desc": "stores the current value in loadedValue"
67229     },
67230     {
67231      "name": "setDisabled",
67232      "sig": "(Boolean disabled)",
67233      "type": "function",
67234      "desc": "Convenience function for setting disabled/enabled by boolean."
67235     },
67236     {
67237      "name": "setPagePosition",
67238      "sig": "(Number x, Number y)",
67239      "type": "function",
67240      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
67241     },
67242     {
67243      "name": "setPosition",
67244      "sig": "(Number left, Number top)",
67245      "type": "function",
67246      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
67247     },
67248     {
67249      "name": "setRawValue",
67250      "sig": "(Mixed value)",
67251      "type": "function",
67252      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
67253     },
67254     {
67255      "name": "setSize",
67256      "sig": "(Number/Object width, Number height)",
67257      "type": "function",
67258      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
67259     },
67260     {
67261      "name": "setValue",
67262      "sig": "(Mixed value)",
67263      "type": "function",
67264      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
67265     },
67266     {
67267      "name": "setVisible",
67268      "sig": "(Boolean visible)",
67269      "type": "function",
67270      "desc": "Convenience function to hide or show this component by boolean."
67271     },
67272     {
67273      "name": "show",
67274      "sig": "()",
67275      "type": "function",
67276      "desc": "Show this component."
67277     },
67278     {
67279      "name": "syncSize",
67280      "sig": "()",
67281      "type": "function",
67282      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
67283     },
67284     {
67285      "name": "toggleSourceEdit",
67286      "sig": "(Boolean sourceEdit)",
67287      "type": "function",
67288      "desc": "Toggles the editor between standard and source edit mode."
67289     },
67290     {
67291      "name": "un",
67292      "sig": "(String eventName, Function handler, Object scope)",
67293      "type": "function",
67294      "desc": "Removes a listener (shorthand for removeListener)"
67295     },
67296     {
67297      "name": "updateBox",
67298      "sig": "(Object box)",
67299      "type": "function",
67300      "desc": "Sets the current box measurements of the component's underlying element."
67301     },
67302     {
67303      "name": "validate",
67304      "sig": "()",
67305      "type": "function",
67306      "desc": "Validates the field value"
67307     }
67308    ]
67309   },
67310   "Roo.form.HtmlEditor.ToolbarContext": {
67311    "props": [
67312     {
67313      "name": "disable",
67314      "type": "Object",
67315      "desc": "List of toolbar elements to disable",
67316      "memberOf": ""
67317     },
67318     {
67319      "name": "styles",
67320      "type": "Object",
67321      "desc": "List of styles \n   eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } \n\nThese must be defined in the page, so they get rendered correctly..\n.headline { }\nTD.underline { }",
67322      "memberOf": ""
67323     }
67324    ],
67325    "events": [],
67326    "methods": [
67327     {
67328      "name": "updateToolbar",
67329      "sig": "()",
67330      "type": "function",
67331      "desc": "Protected method that will not generally be called directly. It triggers\na toolbar update by reading the markup state of the current selection in the editor.\n\nNote you can force an update by calling on('editorevent', scope, false)"
67332     }
67333    ]
67334   },
67335   "Roo.form.HtmlEditor.ToolbarStandard": {
67336    "props": [
67337     {
67338      "name": "disable",
67339      "type": "Object",
67340      "desc": "List of elements to disable..",
67341      "memberOf": ""
67342     },
67343     {
67344      "name": "btns",
67345      "type": "Array",
67346      "desc": "List of additional buttons.\n\n\nNEEDS Extra CSS? \n.x-html-editor-tb .x-edit-none .x-btn-text { background: none; }",
67347      "memberOf": ""
67348     },
67349     {
67350      "name": "createLinkText",
67351      "type": "String",
67352      "desc": "The default text for the create link prompt",
67353      "memberOf": ""
67354     },
67355     {
67356      "name": "defaultLinkValue",
67357      "type": "String",
67358      "desc": "The default value for the create link prompt (defaults to http:/ /)",
67359      "memberOf": ""
67360     },
67361     {
67362      "name": "fontFamilies",
67363      "type": "Array",
67364      "desc": "An array of available font families",
67365      "memberOf": ""
67366     },
67367     {
67368      "name": "defaultFont",
67369      "type": "String",
67370      "desc": "default font to use.",
67371      "memberOf": ""
67372     }
67373    ],
67374    "events": [],
67375    "methods": [
67376     {
67377      "name": "updateToolbar",
67378      "sig": "()",
67379      "type": "function",
67380      "desc": "Protected method that will not generally be called directly. It triggers\na toolbar update by reading the markup state of the current selection in the editor."
67381     }
67382    ]
67383   },
67384   "Roo.form.Layout": {
67385    "props": [
67386     {
67387      "name": "autoCreate",
67388      "type": "String/Object",
67389      "desc": "A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})",
67390      "memberOf": ""
67391     },
67392     {
67393      "name": "style",
67394      "type": "String/Object/Function",
67395      "desc": "A style specification string, e.g. \"width:100px\", or object in the form {width:\"100px\"}, or\na function which returns such a specification.",
67396      "memberOf": ""
67397     },
67398     {
67399      "name": "labelAlign",
67400      "type": "String",
67401      "desc": "Valid values are \"left,\" \"top\" and \"right\" (defaults to \"left\")",
67402      "memberOf": ""
67403     },
67404     {
67405      "name": "labelWidth",
67406      "type": "Number",
67407      "desc": "Fixed width in pixels of all field labels (defaults to undefined)",
67408      "memberOf": ""
67409     },
67410     {
67411      "name": "clear",
67412      "type": "Boolean",
67413      "desc": "True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)",
67414      "memberOf": ""
67415     },
67416     {
67417      "name": "labelSeparator",
67418      "type": "String",
67419      "desc": "The separator to use after field labels (defaults to ':')",
67420      "memberOf": ""
67421     },
67422     {
67423      "name": "hideLabels",
67424      "type": "Boolean",
67425      "desc": "True to suppress the display of field labels in this layout (defaults to false)",
67426      "memberOf": ""
67427     },
67428     {
67429      "name": "disableClass",
67430      "type": "String",
67431      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
67432      "memberOf": "Roo.Component"
67433     },
67434     {
67435      "name": "allowDomMove",
67436      "type": "Boolean",
67437      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
67438      "memberOf": "Roo.Component"
67439     },
67440     {
67441      "name": "hideMode",
67442      "type": "String",
67443      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
67444      "memberOf": "Roo.Component",
67445      "optvals": [
67446       "display",
67447       "visibility"
67448      ]
67449     },
67450     {
67451      "name": "actionMode",
67452      "type": "String",
67453      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
67454      "memberOf": "Roo.Component"
67455     },
67456     {
67457      "name": "listeners",
67458      "type": "Object",
67459      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
67460      "memberOf": "Roo.util.Observable"
67461     }
67462    ],
67463    "events": [
67464     {
67465      "name": "beforedestroy",
67466      "sig": "function (_self)\n{\n\n}",
67467      "type": "function",
67468      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
67469     },
67470     {
67471      "name": "beforehide",
67472      "sig": "function (_self)\n{\n\n}",
67473      "type": "function",
67474      "desc": "Fires before the component is hidden. Return false to stop the hide."
67475     },
67476     {
67477      "name": "beforerender",
67478      "sig": "function (_self)\n{\n\n}",
67479      "type": "function",
67480      "desc": "Fires before the component is rendered. Return false to stop the render."
67481     },
67482     {
67483      "name": "beforeshow",
67484      "sig": "function (_self)\n{\n\n}",
67485      "type": "function",
67486      "desc": "Fires before the component is shown.  Return false to stop the show."
67487     },
67488     {
67489      "name": "destroy",
67490      "sig": "function (_self)\n{\n\n}",
67491      "type": "function",
67492      "desc": "Fires after the component is destroyed."
67493     },
67494     {
67495      "name": "disable",
67496      "sig": "function (_self)\n{\n\n}",
67497      "type": "function",
67498      "desc": "Fires after the component is disabled."
67499     },
67500     {
67501      "name": "enable",
67502      "sig": "function (_self)\n{\n\n}",
67503      "type": "function",
67504      "desc": "Fires after the component is enabled."
67505     },
67506     {
67507      "name": "hide",
67508      "sig": "function (_self)\n{\n\n}",
67509      "type": "function",
67510      "desc": "Fires after the component is hidden."
67511     },
67512     {
67513      "name": "render",
67514      "sig": "function (_self)\n{\n\n}",
67515      "type": "function",
67516      "desc": "Fires after the component is rendered."
67517     },
67518     {
67519      "name": "show",
67520      "sig": "function (_self)\n{\n\n}",
67521      "type": "function",
67522      "desc": "Fires after the component is shown."
67523     }
67524    ],
67525    "methods": [
67526     {
67527      "name": "addEvents",
67528      "sig": "(Object object)",
67529      "type": "function",
67530      "desc": "Used to define events on this Observable"
67531     },
67532     {
67533      "name": "addListener",
67534      "sig": "(String eventName, Function handler, Object scope, Object options)",
67535      "type": "function",
67536      "desc": "Appends an event handler to this component"
67537     },
67538     {
67539      "name": "addxtype",
67540      "sig": "(Object config)",
67541      "type": "function",
67542      "desc": "Adds a object form elements (using the xtype property as the factory method.)\nValid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column"
67543     },
67544     {
67545      "name": "capture",
67546      "sig": "(Observable o, Function fn, Object scope)",
67547      "type": "function",
67548      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
67549     },
67550     {
67551      "name": "destroy",
67552      "sig": "()",
67553      "type": "function",
67554      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
67555     },
67556     {
67557      "name": "disable",
67558      "sig": "()",
67559      "type": "function",
67560      "desc": "Disable this component."
67561     },
67562     {
67563      "name": "enable",
67564      "sig": "()",
67565      "type": "function",
67566      "desc": "Enable this component."
67567     },
67568     {
67569      "name": "fireEvent",
67570      "sig": "(String eventName, Object... args)",
67571      "type": "function",
67572      "desc": "Fires the specified event with the passed parameters (minus the event name)."
67573     },
67574     {
67575      "name": "focus",
67576      "sig": "(Boolean selectText)",
67577      "type": "function",
67578      "desc": "Try to focus this component."
67579     },
67580     {
67581      "name": "getEl",
67582      "sig": "()",
67583      "type": "function",
67584      "desc": "Returns the underlying {@link Roo.Element}."
67585     },
67586     {
67587      "name": "getId",
67588      "sig": "()",
67589      "type": "function",
67590      "desc": "Returns the id of this component."
67591     },
67592     {
67593      "name": "hasListener",
67594      "sig": "(String eventName)",
67595      "type": "function",
67596      "desc": "Checks to see if this object has any listeners for a specified event"
67597     },
67598     {
67599      "name": "hide",
67600      "sig": "()",
67601      "type": "function",
67602      "desc": "Hide this component."
67603     },
67604     {
67605      "name": "isVisible",
67606      "sig": "()",
67607      "type": "function",
67608      "desc": "Returns true if this component is visible."
67609     },
67610     {
67611      "name": "on",
67612      "sig": "(String eventName, Function handler, Object scope, Object options)",
67613      "type": "function",
67614      "desc": "Appends an event handler to this element (shorthand for addListener)"
67615     },
67616     {
67617      "name": "purgeListeners",
67618      "sig": "()",
67619      "type": "function",
67620      "desc": "Removes all listeners for this object"
67621     },
67622     {
67623      "name": "releaseCapture",
67624      "sig": "(Observable o)",
67625      "type": "function",
67626      "desc": "Removes <b>all</b> added captures from the Observable."
67627     },
67628     {
67629      "name": "removeListener",
67630      "sig": "(String eventName, Function handler, Object scope)",
67631      "type": "function",
67632      "desc": "Removes a listener"
67633     },
67634     {
67635      "name": "render",
67636      "sig": "(String/HTMLElement/Element container)",
67637      "type": "function",
67638      "desc": "If this is a lazy rendering component, render it to its container element."
67639     },
67640     {
67641      "name": "setDisabled",
67642      "sig": "(Boolean disabled)",
67643      "type": "function",
67644      "desc": "Convenience function for setting disabled/enabled by boolean."
67645     },
67646     {
67647      "name": "setVisible",
67648      "sig": "(Boolean visible)",
67649      "type": "function",
67650      "desc": "Convenience function to hide or show this component by boolean."
67651     },
67652     {
67653      "name": "show",
67654      "sig": "()",
67655      "type": "function",
67656      "desc": "Show this component."
67657     },
67658     {
67659      "name": "un",
67660      "sig": "(String eventName, Function handler, Object scope)",
67661      "type": "function",
67662      "desc": "Removes a listener (shorthand for removeListener)"
67663     }
67664    ]
67665   },
67666   "Roo.form.MonthField": {
67667    "props": [
67668     {
67669      "name": "format",
67670      "type": "String",
67671      "desc": "The default date format string which can be overriden for localization support.  The format must be\nvalid according to {@link Date#parseDate} (defaults to 'm/d/y').",
67672      "memberOf": ""
67673     },
67674     {
67675      "name": "altFormats",
67676      "type": "String",
67677      "desc": "Multiple date formats separated by \"|\" to try when parsing a user input value and it doesn't match the defined\nformat (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').",
67678      "memberOf": ""
67679     },
67680     {
67681      "name": "disabledDays",
67682      "type": "Array",
67683      "desc": "An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).",
67684      "memberOf": ""
67685     },
67686     {
67687      "name": "disabledDaysText",
67688      "type": "String",
67689      "desc": "The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')",
67690      "memberOf": ""
67691     },
67692     {
67693      "name": "disabledDates",
67694      "type": "Array",
67695      "desc": "An array of \"dates\" to disable, as strings. These strings will be used to build a dynamic regular\nexpression so they are very powerful. Some examples:\n<ul>\n<li>[\"03/08/2003\", \"09/16/2003\"] would disable those exact dates</li>\n<li>[\"03/08\", \"09/16\"] would disable those days for every year</li>\n<li>[\"^03/08\"] would only match the beginning (useful if you are using short years)</li>\n<li>[\"03/../2006\"] would disable every day in March 2006</li>\n<li>[\"^03\"] would disable every day in every March</li>\n</ul>\nIn order to support regular expressions, if you are using a date format that has \".\" in it, you will have to\nescape the dot when restricting dates. For example: [\"03\\\\.08\\\\.03\"].",
67696      "memberOf": ""
67697     },
67698     {
67699      "name": "disabledDatesText",
67700      "type": "String",
67701      "desc": "The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')",
67702      "memberOf": ""
67703     },
67704     {
67705      "name": "minValue",
67706      "type": "Date/String",
67707      "desc": "The minimum allowed date. Can be either a Javascript date object or a string date in a\nvalid format (defaults to null).",
67708      "memberOf": ""
67709     },
67710     {
67711      "name": "maxValue",
67712      "type": "Date/String",
67713      "desc": "The maximum allowed date. Can be either a Javascript date object or a string date in a\nvalid format (defaults to null).",
67714      "memberOf": ""
67715     },
67716     {
67717      "name": "minText",
67718      "type": "String",
67719      "desc": "The error text to display when the date in the cell is before minValue (defaults to\n'The date in this field must be after {minValue}').",
67720      "memberOf": ""
67721     },
67722     {
67723      "name": "maxTextf",
67724      "type": "String",
67725      "desc": "The error text to display when the date in the cell is after maxValue (defaults to\n'The date in this field must be before {maxValue}').",
67726      "memberOf": ""
67727     },
67728     {
67729      "name": "invalidText",
67730      "type": "String",
67731      "desc": "The error text to display when the date in the field is invalid (defaults to\n'{value} is not a valid date - it must be in the format {format}').",
67732      "memberOf": ""
67733     },
67734     {
67735      "name": "triggerClass",
67736      "type": "String",
67737      "desc": "An additional CSS class used to style the trigger button.  The trigger will always get the\nclass 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'\nwhich displays a calendar icon).",
67738      "memberOf": ""
67739     },
67740     {
67741      "name": "useIso",
67742      "type": "Boolean",
67743      "desc": "if enabled, then the date field will use a hidden field to store the \nreal value as iso formated date. default (true)",
67744      "memberOf": ""
67745     },
67746     {
67747      "name": "autoCreate",
67748      "type": "String/Object",
67749      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"10\", autocomplete: \"off\"})",
67750      "memberOf": ""
67751     },
67752     {
67753      "name": "hideTrigger",
67754      "type": "Boolean",
67755      "desc": "True to hide the trigger element and display only the base text field (defaults to false)",
67756      "memberOf": "Roo.form.TriggerField"
67757     },
67758     {
67759      "name": "vtype",
67760      "type": "String",
67761      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
67762      "memberOf": "Roo.form.TextField"
67763     },
67764     {
67765      "name": "maskRe",
67766      "type": "String",
67767      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
67768      "memberOf": "Roo.form.TextField"
67769     },
67770     {
67771      "name": "disableKeyFilter",
67772      "type": "Boolean",
67773      "desc": "True to disable input keystroke filtering (defaults to false)",
67774      "memberOf": "Roo.form.TextField"
67775     },
67776     {
67777      "name": "allowBlank",
67778      "type": "Boolean",
67779      "desc": "False to validate that the value length > 0 (defaults to true)",
67780      "memberOf": "Roo.form.TextField"
67781     },
67782     {
67783      "name": "minLength",
67784      "type": "Number",
67785      "desc": "Minimum input field length required (defaults to 0)",
67786      "memberOf": "Roo.form.TextField"
67787     },
67788     {
67789      "name": "maxLength",
67790      "type": "Number",
67791      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
67792      "memberOf": "Roo.form.TextField"
67793     },
67794     {
67795      "name": "minLengthText",
67796      "type": "String",
67797      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
67798      "memberOf": "Roo.form.TextField"
67799     },
67800     {
67801      "name": "maxLengthText",
67802      "type": "String",
67803      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
67804      "memberOf": "Roo.form.TextField"
67805     },
67806     {
67807      "name": "selectOnFocus",
67808      "type": "Boolean",
67809      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
67810      "memberOf": "Roo.form.TextField"
67811     },
67812     {
67813      "name": "blankText",
67814      "type": "String",
67815      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
67816      "memberOf": "Roo.form.TextField"
67817     },
67818     {
67819      "name": "validator",
67820      "type": "Function",
67821      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
67822      "memberOf": "Roo.form.TextField"
67823     },
67824     {
67825      "name": "regex",
67826      "type": "RegExp",
67827      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
67828      "memberOf": "Roo.form.TextField"
67829     },
67830     {
67831      "name": "regexText",
67832      "type": "String",
67833      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
67834      "memberOf": "Roo.form.TextField"
67835     },
67836     {
67837      "name": "emptyText",
67838      "type": "String",
67839      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
67840      "memberOf": "Roo.form.TextField"
67841     },
67842     {
67843      "name": "fieldLabel",
67844      "type": "String",
67845      "desc": "Label to use when rendering a form.",
67846      "memberOf": "Roo.form.Field"
67847     },
67848     {
67849      "name": "qtip",
67850      "type": "String",
67851      "desc": "Mouse over tip",
67852      "memberOf": "Roo.form.Field"
67853     },
67854     {
67855      "name": "name",
67856      "type": "String",
67857      "desc": "The field's HTML name attribute.",
67858      "memberOf": "Roo.form.Field"
67859     },
67860     {
67861      "name": "invalidClass",
67862      "type": "String",
67863      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
67864      "memberOf": "Roo.form.Field"
67865     },
67866     {
67867      "name": "focusClass",
67868      "type": "String",
67869      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
67870      "memberOf": "Roo.form.Field"
67871     },
67872     {
67873      "name": "validationEvent",
67874      "type": "String/Boolean",
67875      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
67876      "memberOf": "Roo.form.Field"
67877     },
67878     {
67879      "name": "validateOnBlur",
67880      "type": "Boolean",
67881      "desc": "Whether the field should validate when it loses focus (defaults to true).",
67882      "memberOf": "Roo.form.Field"
67883     },
67884     {
67885      "name": "validationDelay",
67886      "type": "Number",
67887      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
67888      "memberOf": "Roo.form.Field"
67889     },
67890     {
67891      "name": "fieldClass",
67892      "type": "String",
67893      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
67894      "memberOf": "Roo.form.Field"
67895     },
67896     {
67897      "name": "msgTarget",
67898      "type": "String",
67899      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
67900      "memberOf": "Roo.form.Field"
67901     },
67902     {
67903      "name": "msgFx",
67904      "type": "String",
67905      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
67906      "memberOf": "Roo.form.Field"
67907     },
67908     {
67909      "name": "readOnly",
67910      "type": "Boolean",
67911      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
67912      "memberOf": "Roo.form.Field"
67913     },
67914     {
67915      "name": "disabled",
67916      "type": "Boolean",
67917      "desc": "True to disable the field (defaults to false).",
67918      "memberOf": "Roo.form.Field"
67919     },
67920     {
67921      "name": "inputType",
67922      "type": "String",
67923      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
67924      "memberOf": "Roo.form.Field"
67925     },
67926     {
67927      "name": "tabIndex",
67928      "type": "Number",
67929      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
67930      "memberOf": "Roo.form.Field"
67931     },
67932     {
67933      "name": "value",
67934      "type": "Mixed",
67935      "desc": "A value to initialize this field with.",
67936      "memberOf": "Roo.form.Field"
67937     },
67938     {
67939      "name": "cls",
67940      "type": "String",
67941      "desc": "A CSS class to apply to the field's underlying element.",
67942      "memberOf": "Roo.form.Field"
67943     },
67944     {
67945      "name": "width",
67946      "type": "Number",
67947      "desc": "width (optional) size of component",
67948      "memberOf": "Roo.BoxComponent"
67949     },
67950     {
67951      "name": "height",
67952      "type": "Number",
67953      "desc": "height (optional) size of component",
67954      "memberOf": "Roo.BoxComponent"
67955     },
67956     {
67957      "name": "disableClass",
67958      "type": "String",
67959      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
67960      "memberOf": "Roo.Component"
67961     },
67962     {
67963      "name": "allowDomMove",
67964      "type": "Boolean",
67965      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
67966      "memberOf": "Roo.Component"
67967     },
67968     {
67969      "name": "hideMode",
67970      "type": "String",
67971      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
67972      "memberOf": "Roo.Component",
67973      "optvals": [
67974       "display",
67975       "visibility"
67976      ]
67977     },
67978     {
67979      "name": "actionMode",
67980      "type": "String",
67981      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
67982      "memberOf": "Roo.Component"
67983     },
67984     {
67985      "name": "listeners",
67986      "type": "Object",
67987      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
67988      "memberOf": "Roo.util.Observable"
67989     }
67990    ],
67991    "events": [
67992     {
67993      "name": "autosize",
67994      "sig": "function (_self, width)\n{\n\n}",
67995      "type": "function",
67996      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
67997     },
67998     {
67999      "name": "beforedestroy",
68000      "sig": "function (_self)\n{\n\n}",
68001      "type": "function",
68002      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
68003     },
68004     {
68005      "name": "beforehide",
68006      "sig": "function (_self)\n{\n\n}",
68007      "type": "function",
68008      "desc": "Fires before the component is hidden. Return false to stop the hide."
68009     },
68010     {
68011      "name": "beforerender",
68012      "sig": "function (_self)\n{\n\n}",
68013      "type": "function",
68014      "desc": "Fires before the component is rendered. Return false to stop the render."
68015     },
68016     {
68017      "name": "beforeshow",
68018      "sig": "function (_self)\n{\n\n}",
68019      "type": "function",
68020      "desc": "Fires before the component is shown.  Return false to stop the show."
68021     },
68022     {
68023      "name": "blur",
68024      "sig": "function (_self)\n{\n\n}",
68025      "type": "function",
68026      "desc": "Fires when this field loses input focus."
68027     },
68028     {
68029      "name": "change",
68030      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
68031      "type": "function",
68032      "desc": "Fires just before the field blurs if the field value has changed."
68033     },
68034     {
68035      "name": "destroy",
68036      "sig": "function (_self)\n{\n\n}",
68037      "type": "function",
68038      "desc": "Fires after the component is destroyed."
68039     },
68040     {
68041      "name": "disable",
68042      "sig": "function (_self)\n{\n\n}",
68043      "type": "function",
68044      "desc": "Fires after the component is disabled."
68045     },
68046     {
68047      "name": "enable",
68048      "sig": "function (_self)\n{\n\n}",
68049      "type": "function",
68050      "desc": "Fires after the component is enabled."
68051     },
68052     {
68053      "name": "focus",
68054      "sig": "function (_self)\n{\n\n}",
68055      "type": "function",
68056      "desc": "Fires when this field receives input focus."
68057     },
68058     {
68059      "name": "hide",
68060      "sig": "function (_self)\n{\n\n}",
68061      "type": "function",
68062      "desc": "Fires after the component is hidden."
68063     },
68064     {
68065      "name": "invalid",
68066      "sig": "function (_self, msg)\n{\n\n}",
68067      "type": "function",
68068      "desc": "Fires after the field has been marked as invalid."
68069     },
68070     {
68071      "name": "keyup",
68072      "sig": "function (_self, e)\n{\n\n}",
68073      "type": "function",
68074      "desc": "Fires after the key up"
68075     },
68076     {
68077      "name": "move",
68078      "sig": "function (_self, x, y)\n{\n\n}",
68079      "type": "function",
68080      "desc": "Fires after the component is moved."
68081     },
68082     {
68083      "name": "render",
68084      "sig": "function (_self)\n{\n\n}",
68085      "type": "function",
68086      "desc": "Fires after the component is rendered."
68087     },
68088     {
68089      "name": "resize",
68090      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
68091      "type": "function",
68092      "desc": "Fires after the component is resized."
68093     },
68094     {
68095      "name": "select",
68096      "sig": "function (combo, date)\n{\n\n}",
68097      "type": "function",
68098      "desc": "Fires when a date is selected"
68099     },
68100     {
68101      "name": "show",
68102      "sig": "function (_self)\n{\n\n}",
68103      "type": "function",
68104      "desc": "Fires after the component is shown."
68105     },
68106     {
68107      "name": "specialkey",
68108      "sig": "function (_self, e)\n{\n\n}",
68109      "type": "function",
68110      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
68111     },
68112     {
68113      "name": "valid",
68114      "sig": "function (_self)\n{\n\n}",
68115      "type": "function",
68116      "desc": "Fires after the field has been validated with no errors."
68117     }
68118    ],
68119    "methods": [
68120     {
68121      "name": "addEvents",
68122      "sig": "(Object object)",
68123      "type": "function",
68124      "desc": "Used to define events on this Observable"
68125     },
68126     {
68127      "name": "addListener",
68128      "sig": "(String eventName, Function handler, Object scope, Object options)",
68129      "type": "function",
68130      "desc": "Appends an event handler to this component"
68131     },
68132     {
68133      "name": "applyTo",
68134      "sig": "(String/HTMLElement/Element el)",
68135      "type": "function",
68136      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
68137     },
68138     {
68139      "name": "capture",
68140      "sig": "(Observable o, Function fn, Object scope)",
68141      "type": "function",
68142      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
68143     },
68144     {
68145      "name": "clearInvalid",
68146      "sig": "()",
68147      "type": "function",
68148      "desc": "Clear any invalid styles/messages for this field"
68149     },
68150     {
68151      "name": "destroy",
68152      "sig": "()",
68153      "type": "function",
68154      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
68155     },
68156     {
68157      "name": "disable",
68158      "sig": "()",
68159      "type": "function",
68160      "desc": "Disable this component."
68161     },
68162     {
68163      "name": "enable",
68164      "sig": "()",
68165      "type": "function",
68166      "desc": "Enable this component."
68167     },
68168     {
68169      "name": "fireEvent",
68170      "sig": "(String eventName, Object... args)",
68171      "type": "function",
68172      "desc": "Fires the specified event with the passed parameters (minus the event name)."
68173     },
68174     {
68175      "name": "focus",
68176      "sig": "(Boolean selectText)",
68177      "type": "function",
68178      "desc": "Try to focus this component."
68179     },
68180     {
68181      "name": "getBox",
68182      "sig": "(Boolean local)",
68183      "type": "function",
68184      "desc": "Gets the current box measurements of the component's underlying element."
68185     },
68186     {
68187      "name": "getEl",
68188      "sig": "()",
68189      "type": "function",
68190      "desc": "Returns the underlying {@link Roo.Element}."
68191     },
68192     {
68193      "name": "getId",
68194      "sig": "()",
68195      "type": "function",
68196      "desc": "Returns the id of this component."
68197     },
68198     {
68199      "name": "getName",
68200      "sig": "()",
68201      "type": "function",
68202      "desc": "Returns the name attribute of the field if available"
68203     },
68204     {
68205      "name": "getPosition",
68206      "sig": "(Boolean local)",
68207      "type": "function",
68208      "desc": "Gets the current XY position of the component's underlying element."
68209     },
68210     {
68211      "name": "getRawValue",
68212      "sig": "()",
68213      "type": "function",
68214      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
68215     },
68216     {
68217      "name": "getSize",
68218      "sig": "()",
68219      "type": "function",
68220      "desc": "Gets the current size of the component's underlying element."
68221     },
68222     {
68223      "name": "getValue",
68224      "sig": "()",
68225      "type": "function",
68226      "desc": "Returns the current date value of the date field."
68227     },
68228     {
68229      "name": "hasChanged",
68230      "sig": "()",
68231      "type": "function",
68232      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
68233     },
68234     {
68235      "name": "hasListener",
68236      "sig": "(String eventName)",
68237      "type": "function",
68238      "desc": "Checks to see if this object has any listeners for a specified event"
68239     },
68240     {
68241      "name": "hide",
68242      "sig": "()",
68243      "type": "function",
68244      "desc": "Hide this component."
68245     },
68246     {
68247      "name": "isDirty",
68248      "sig": "()",
68249      "type": "function",
68250      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
68251     },
68252     {
68253      "name": "isValid",
68254      "sig": "(Boolean preventMark)",
68255      "type": "function",
68256      "desc": "Returns whether or not the field value is currently valid"
68257     },
68258     {
68259      "name": "isVisible",
68260      "sig": "()",
68261      "type": "function",
68262      "desc": "Returns true if this component is visible."
68263     },
68264     {
68265      "name": "markInvalid",
68266      "sig": "(String msg)",
68267      "type": "function",
68268      "desc": "Mark this field as invalid"
68269     },
68270     {
68271      "name": "on",
68272      "sig": "(String eventName, Function handler, Object scope, Object options)",
68273      "type": "function",
68274      "desc": "Appends an event handler to this element (shorthand for addListener)"
68275     },
68276     {
68277      "name": "onPosition",
68278      "sig": "(Number x, Number y)",
68279      "type": "function",
68280      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
68281     },
68282     {
68283      "name": "onResize",
68284      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
68285      "type": "function",
68286      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
68287     },
68288     {
68289      "name": "onTriggerClick",
68290      "sig": "(EventObject e)",
68291      "type": "function",
68292      "desc": "The function that should handle the trigger's click event.  This method does nothing by default until overridden\nby an implementing function."
68293     },
68294     {
68295      "name": "purgeListeners",
68296      "sig": "()",
68297      "type": "function",
68298      "desc": "Removes all listeners for this object"
68299     },
68300     {
68301      "name": "releaseCapture",
68302      "sig": "(Observable o)",
68303      "type": "function",
68304      "desc": "Removes <b>all</b> added captures from the Observable."
68305     },
68306     {
68307      "name": "removeListener",
68308      "sig": "(String eventName, Function handler, Object scope)",
68309      "type": "function",
68310      "desc": "Removes a listener"
68311     },
68312     {
68313      "name": "render",
68314      "sig": "(String/HTMLElement/Element container)",
68315      "type": "function",
68316      "desc": "If this is a lazy rendering component, render it to its container element."
68317     },
68318     {
68319      "name": "reset",
68320      "sig": "()",
68321      "type": "function",
68322      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
68323     },
68324     {
68325      "name": "resetHasChanged",
68326      "sig": "()",
68327      "type": "function",
68328      "desc": "stores the current value in loadedValue"
68329     },
68330     {
68331      "name": "selectText",
68332      "sig": "(Number start, Number end)",
68333      "type": "function",
68334      "desc": "Selects text in this field"
68335     },
68336     {
68337      "name": "setDisabled",
68338      "sig": "(Boolean disabled)",
68339      "type": "function",
68340      "desc": "Convenience function for setting disabled/enabled by boolean."
68341     },
68342     {
68343      "name": "setPagePosition",
68344      "sig": "(Number x, Number y)",
68345      "type": "function",
68346      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
68347     },
68348     {
68349      "name": "setPosition",
68350      "sig": "(Number left, Number top)",
68351      "type": "function",
68352      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
68353     },
68354     {
68355      "name": "setRawValue",
68356      "sig": "(Mixed value)",
68357      "type": "function",
68358      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
68359     },
68360     {
68361      "name": "setSize",
68362      "sig": "(Number/Object width, Number height)",
68363      "type": "function",
68364      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
68365     },
68366     {
68367      "name": "setValue",
68368      "sig": "(String/Date date)",
68369      "type": "function",
68370      "desc": "Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid\ndate, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}\n(the default format used is \"m/d/y\").\n<br />Usage:\n<pre><code>\n//All of these calls set the same date value (May 4, 2006)\n\n//Pass a date object:\nvar dt = new Date('5/4/06');\nmonthField.setValue(dt);\n\n//Pass a date string (default format):\nmonthField.setValue('5/4/06');\n\n//Pass a date string (custom format):\nmonthField.format = 'Y-m-d';\nmonthField.setValue('2006-5-4');\n</code></pre>"
68371     },
68372     {
68373      "name": "setVisible",
68374      "sig": "(Boolean visible)",
68375      "type": "function",
68376      "desc": "Convenience function to hide or show this component by boolean."
68377     },
68378     {
68379      "name": "show",
68380      "sig": "()",
68381      "type": "function",
68382      "desc": "Show this component."
68383     },
68384     {
68385      "name": "syncSize",
68386      "sig": "()",
68387      "type": "function",
68388      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
68389     },
68390     {
68391      "name": "un",
68392      "sig": "(String eventName, Function handler, Object scope)",
68393      "type": "function",
68394      "desc": "Removes a listener (shorthand for removeListener)"
68395     },
68396     {
68397      "name": "updateBox",
68398      "sig": "(Object box)",
68399      "type": "function",
68400      "desc": "Sets the current box measurements of the component's underlying element."
68401     },
68402     {
68403      "name": "validate",
68404      "sig": "()",
68405      "type": "function",
68406      "desc": "Validates the field value"
68407     },
68408     {
68409      "name": "validateValue",
68410      "sig": "(Mixed value)",
68411      "type": "function",
68412      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
68413     }
68414    ]
68415   },
68416   "Roo.form.NumberField": {
68417    "props": [
68418     {
68419      "name": "fieldClass",
68420      "type": "String",
68421      "desc": "The default CSS class for the field (defaults to \"x-form-field x-form-num-field\")",
68422      "memberOf": ""
68423     },
68424     {
68425      "name": "allowDecimals",
68426      "type": "Boolean",
68427      "desc": "False to disallow decimal values (defaults to true)",
68428      "memberOf": ""
68429     },
68430     {
68431      "name": "decimalSeparator",
68432      "type": "String",
68433      "desc": "Character(s) to allow as the decimal separator (defaults to '.')",
68434      "memberOf": ""
68435     },
68436     {
68437      "name": "decimalPrecision",
68438      "type": "Number",
68439      "desc": "The maximum precision to display after the decimal separator (defaults to 2)",
68440      "memberOf": ""
68441     },
68442     {
68443      "name": "allowNegative",
68444      "type": "Boolean",
68445      "desc": "False to prevent entering a negative sign (defaults to true)",
68446      "memberOf": ""
68447     },
68448     {
68449      "name": "minValue",
68450      "type": "Number",
68451      "desc": "The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)",
68452      "memberOf": ""
68453     },
68454     {
68455      "name": "maxValue",
68456      "type": "Number",
68457      "desc": "The maximum allowed value (defaults to Number.MAX_VALUE)",
68458      "memberOf": ""
68459     },
68460     {
68461      "name": "minText",
68462      "type": "String",
68463      "desc": "Error text to display if the minimum value validation fails (defaults to \"The minimum value for this field is {minValue}\")",
68464      "memberOf": ""
68465     },
68466     {
68467      "name": "maxText",
68468      "type": "String",
68469      "desc": "Error text to display if the maximum value validation fails (defaults to \"The maximum value for this field is {maxValue}\")",
68470      "memberOf": ""
68471     },
68472     {
68473      "name": "nanText",
68474      "type": "String",
68475      "desc": "Error text to display if the value is not a valid number.  For example, this can happen\nif a valid character like '.' or '-' is left in the field with no number (defaults to \"{value} is not a valid number\")",
68476      "memberOf": ""
68477     },
68478     {
68479      "name": "grow",
68480      "type": "Boolean",
68481      "desc": "True if this field should automatically grow and shrink to its content",
68482      "memberOf": "Roo.form.TextField"
68483     },
68484     {
68485      "name": "growMin",
68486      "type": "Number",
68487      "desc": "The minimum width to allow when grow = true (defaults to 30)",
68488      "memberOf": "Roo.form.TextField"
68489     },
68490     {
68491      "name": "growMax",
68492      "type": "Number",
68493      "desc": "The maximum width to allow when grow = true (defaults to 800)",
68494      "memberOf": "Roo.form.TextField"
68495     },
68496     {
68497      "name": "vtype",
68498      "type": "String",
68499      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
68500      "memberOf": "Roo.form.TextField"
68501     },
68502     {
68503      "name": "maskRe",
68504      "type": "String",
68505      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
68506      "memberOf": "Roo.form.TextField"
68507     },
68508     {
68509      "name": "disableKeyFilter",
68510      "type": "Boolean",
68511      "desc": "True to disable input keystroke filtering (defaults to false)",
68512      "memberOf": "Roo.form.TextField"
68513     },
68514     {
68515      "name": "allowBlank",
68516      "type": "Boolean",
68517      "desc": "False to validate that the value length > 0 (defaults to true)",
68518      "memberOf": "Roo.form.TextField"
68519     },
68520     {
68521      "name": "minLength",
68522      "type": "Number",
68523      "desc": "Minimum input field length required (defaults to 0)",
68524      "memberOf": "Roo.form.TextField"
68525     },
68526     {
68527      "name": "maxLength",
68528      "type": "Number",
68529      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
68530      "memberOf": "Roo.form.TextField"
68531     },
68532     {
68533      "name": "minLengthText",
68534      "type": "String",
68535      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
68536      "memberOf": "Roo.form.TextField"
68537     },
68538     {
68539      "name": "maxLengthText",
68540      "type": "String",
68541      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
68542      "memberOf": "Roo.form.TextField"
68543     },
68544     {
68545      "name": "selectOnFocus",
68546      "type": "Boolean",
68547      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
68548      "memberOf": "Roo.form.TextField"
68549     },
68550     {
68551      "name": "blankText",
68552      "type": "String",
68553      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
68554      "memberOf": "Roo.form.TextField"
68555     },
68556     {
68557      "name": "validator",
68558      "type": "Function",
68559      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
68560      "memberOf": "Roo.form.TextField"
68561     },
68562     {
68563      "name": "regex",
68564      "type": "RegExp",
68565      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
68566      "memberOf": "Roo.form.TextField"
68567     },
68568     {
68569      "name": "regexText",
68570      "type": "String",
68571      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
68572      "memberOf": "Roo.form.TextField"
68573     },
68574     {
68575      "name": "emptyText",
68576      "type": "String",
68577      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
68578      "memberOf": "Roo.form.TextField"
68579     },
68580     {
68581      "name": "fieldLabel",
68582      "type": "String",
68583      "desc": "Label to use when rendering a form.",
68584      "memberOf": "Roo.form.Field"
68585     },
68586     {
68587      "name": "qtip",
68588      "type": "String",
68589      "desc": "Mouse over tip",
68590      "memberOf": "Roo.form.Field"
68591     },
68592     {
68593      "name": "name",
68594      "type": "String",
68595      "desc": "The field's HTML name attribute.",
68596      "memberOf": "Roo.form.Field"
68597     },
68598     {
68599      "name": "invalidClass",
68600      "type": "String",
68601      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
68602      "memberOf": "Roo.form.Field"
68603     },
68604     {
68605      "name": "invalidText",
68606      "type": "String",
68607      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
68608      "memberOf": "Roo.form.Field"
68609     },
68610     {
68611      "name": "focusClass",
68612      "type": "String",
68613      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
68614      "memberOf": "Roo.form.Field"
68615     },
68616     {
68617      "name": "validationEvent",
68618      "type": "String/Boolean",
68619      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
68620      "memberOf": "Roo.form.Field"
68621     },
68622     {
68623      "name": "validateOnBlur",
68624      "type": "Boolean",
68625      "desc": "Whether the field should validate when it loses focus (defaults to true).",
68626      "memberOf": "Roo.form.Field"
68627     },
68628     {
68629      "name": "validationDelay",
68630      "type": "Number",
68631      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
68632      "memberOf": "Roo.form.Field"
68633     },
68634     {
68635      "name": "autoCreate",
68636      "type": "String/Object",
68637      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"20\", autocomplete: \"off\"})",
68638      "memberOf": "Roo.form.Field"
68639     },
68640     {
68641      "name": "msgTarget",
68642      "type": "String",
68643      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
68644      "memberOf": "Roo.form.Field"
68645     },
68646     {
68647      "name": "msgFx",
68648      "type": "String",
68649      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
68650      "memberOf": "Roo.form.Field"
68651     },
68652     {
68653      "name": "readOnly",
68654      "type": "Boolean",
68655      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
68656      "memberOf": "Roo.form.Field"
68657     },
68658     {
68659      "name": "disabled",
68660      "type": "Boolean",
68661      "desc": "True to disable the field (defaults to false).",
68662      "memberOf": "Roo.form.Field"
68663     },
68664     {
68665      "name": "inputType",
68666      "type": "String",
68667      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
68668      "memberOf": "Roo.form.Field"
68669     },
68670     {
68671      "name": "tabIndex",
68672      "type": "Number",
68673      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
68674      "memberOf": "Roo.form.Field"
68675     },
68676     {
68677      "name": "value",
68678      "type": "Mixed",
68679      "desc": "A value to initialize this field with.",
68680      "memberOf": "Roo.form.Field"
68681     },
68682     {
68683      "name": "cls",
68684      "type": "String",
68685      "desc": "A CSS class to apply to the field's underlying element.",
68686      "memberOf": "Roo.form.Field"
68687     },
68688     {
68689      "name": "width",
68690      "type": "Number",
68691      "desc": "width (optional) size of component",
68692      "memberOf": "Roo.BoxComponent"
68693     },
68694     {
68695      "name": "height",
68696      "type": "Number",
68697      "desc": "height (optional) size of component",
68698      "memberOf": "Roo.BoxComponent"
68699     },
68700     {
68701      "name": "disableClass",
68702      "type": "String",
68703      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
68704      "memberOf": "Roo.Component"
68705     },
68706     {
68707      "name": "allowDomMove",
68708      "type": "Boolean",
68709      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
68710      "memberOf": "Roo.Component"
68711     },
68712     {
68713      "name": "hideMode",
68714      "type": "String",
68715      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
68716      "memberOf": "Roo.Component",
68717      "optvals": [
68718       "display",
68719       "visibility"
68720      ]
68721     },
68722     {
68723      "name": "actionMode",
68724      "type": "String",
68725      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
68726      "memberOf": "Roo.Component"
68727     },
68728     {
68729      "name": "listeners",
68730      "type": "Object",
68731      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
68732      "memberOf": "Roo.util.Observable"
68733     }
68734    ],
68735    "events": [
68736     {
68737      "name": "autosize",
68738      "sig": "function (_self, width)\n{\n\n}",
68739      "type": "function",
68740      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
68741     },
68742     {
68743      "name": "beforedestroy",
68744      "sig": "function (_self)\n{\n\n}",
68745      "type": "function",
68746      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
68747     },
68748     {
68749      "name": "beforehide",
68750      "sig": "function (_self)\n{\n\n}",
68751      "type": "function",
68752      "desc": "Fires before the component is hidden. Return false to stop the hide."
68753     },
68754     {
68755      "name": "beforerender",
68756      "sig": "function (_self)\n{\n\n}",
68757      "type": "function",
68758      "desc": "Fires before the component is rendered. Return false to stop the render."
68759     },
68760     {
68761      "name": "beforeshow",
68762      "sig": "function (_self)\n{\n\n}",
68763      "type": "function",
68764      "desc": "Fires before the component is shown.  Return false to stop the show."
68765     },
68766     {
68767      "name": "blur",
68768      "sig": "function (_self)\n{\n\n}",
68769      "type": "function",
68770      "desc": "Fires when this field loses input focus."
68771     },
68772     {
68773      "name": "change",
68774      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
68775      "type": "function",
68776      "desc": "Fires just before the field blurs if the field value has changed."
68777     },
68778     {
68779      "name": "destroy",
68780      "sig": "function (_self)\n{\n\n}",
68781      "type": "function",
68782      "desc": "Fires after the component is destroyed."
68783     },
68784     {
68785      "name": "disable",
68786      "sig": "function (_self)\n{\n\n}",
68787      "type": "function",
68788      "desc": "Fires after the component is disabled."
68789     },
68790     {
68791      "name": "enable",
68792      "sig": "function (_self)\n{\n\n}",
68793      "type": "function",
68794      "desc": "Fires after the component is enabled."
68795     },
68796     {
68797      "name": "focus",
68798      "sig": "function (_self)\n{\n\n}",
68799      "type": "function",
68800      "desc": "Fires when this field receives input focus."
68801     },
68802     {
68803      "name": "hide",
68804      "sig": "function (_self)\n{\n\n}",
68805      "type": "function",
68806      "desc": "Fires after the component is hidden."
68807     },
68808     {
68809      "name": "invalid",
68810      "sig": "function (_self, msg)\n{\n\n}",
68811      "type": "function",
68812      "desc": "Fires after the field has been marked as invalid."
68813     },
68814     {
68815      "name": "keyup",
68816      "sig": "function (_self, e)\n{\n\n}",
68817      "type": "function",
68818      "desc": "Fires after the key up"
68819     },
68820     {
68821      "name": "move",
68822      "sig": "function (_self, x, y)\n{\n\n}",
68823      "type": "function",
68824      "desc": "Fires after the component is moved."
68825     },
68826     {
68827      "name": "render",
68828      "sig": "function (_self)\n{\n\n}",
68829      "type": "function",
68830      "desc": "Fires after the component is rendered."
68831     },
68832     {
68833      "name": "resize",
68834      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
68835      "type": "function",
68836      "desc": "Fires after the component is resized."
68837     },
68838     {
68839      "name": "show",
68840      "sig": "function (_self)\n{\n\n}",
68841      "type": "function",
68842      "desc": "Fires after the component is shown."
68843     },
68844     {
68845      "name": "specialkey",
68846      "sig": "function (_self, e)\n{\n\n}",
68847      "type": "function",
68848      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
68849     },
68850     {
68851      "name": "valid",
68852      "sig": "function (_self)\n{\n\n}",
68853      "type": "function",
68854      "desc": "Fires after the field has been validated with no errors."
68855     }
68856    ],
68857    "methods": [
68858     {
68859      "name": "addEvents",
68860      "sig": "(Object object)",
68861      "type": "function",
68862      "desc": "Used to define events on this Observable"
68863     },
68864     {
68865      "name": "addListener",
68866      "sig": "(String eventName, Function handler, Object scope, Object options)",
68867      "type": "function",
68868      "desc": "Appends an event handler to this component"
68869     },
68870     {
68871      "name": "applyTo",
68872      "sig": "(String/HTMLElement/Element el)",
68873      "type": "function",
68874      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
68875     },
68876     {
68877      "name": "autoSize",
68878      "sig": "()",
68879      "type": "function",
68880      "desc": "Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.\nThis only takes effect if grow = true, and fires the autosize event."
68881     },
68882     {
68883      "name": "capture",
68884      "sig": "(Observable o, Function fn, Object scope)",
68885      "type": "function",
68886      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
68887     },
68888     {
68889      "name": "clearInvalid",
68890      "sig": "()",
68891      "type": "function",
68892      "desc": "Clear any invalid styles/messages for this field"
68893     },
68894     {
68895      "name": "destroy",
68896      "sig": "()",
68897      "type": "function",
68898      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
68899     },
68900     {
68901      "name": "disable",
68902      "sig": "()",
68903      "type": "function",
68904      "desc": "Disable this component."
68905     },
68906     {
68907      "name": "enable",
68908      "sig": "()",
68909      "type": "function",
68910      "desc": "Enable this component."
68911     },
68912     {
68913      "name": "fireEvent",
68914      "sig": "(String eventName, Object... args)",
68915      "type": "function",
68916      "desc": "Fires the specified event with the passed parameters (minus the event name)."
68917     },
68918     {
68919      "name": "focus",
68920      "sig": "(Boolean selectText)",
68921      "type": "function",
68922      "desc": "Try to focus this component."
68923     },
68924     {
68925      "name": "getBox",
68926      "sig": "(Boolean local)",
68927      "type": "function",
68928      "desc": "Gets the current box measurements of the component's underlying element."
68929     },
68930     {
68931      "name": "getEl",
68932      "sig": "()",
68933      "type": "function",
68934      "desc": "Returns the underlying {@link Roo.Element}."
68935     },
68936     {
68937      "name": "getId",
68938      "sig": "()",
68939      "type": "function",
68940      "desc": "Returns the id of this component."
68941     },
68942     {
68943      "name": "getName",
68944      "sig": "()",
68945      "type": "function",
68946      "desc": "Returns the name attribute of the field if available"
68947     },
68948     {
68949      "name": "getPosition",
68950      "sig": "(Boolean local)",
68951      "type": "function",
68952      "desc": "Gets the current XY position of the component's underlying element."
68953     },
68954     {
68955      "name": "getRawValue",
68956      "sig": "()",
68957      "type": "function",
68958      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
68959     },
68960     {
68961      "name": "getSize",
68962      "sig": "()",
68963      "type": "function",
68964      "desc": "Gets the current size of the component's underlying element."
68965     },
68966     {
68967      "name": "getValue",
68968      "sig": "()",
68969      "type": "function",
68970      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
68971     },
68972     {
68973      "name": "hasChanged",
68974      "sig": "()",
68975      "type": "function",
68976      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
68977     },
68978     {
68979      "name": "hasListener",
68980      "sig": "(String eventName)",
68981      "type": "function",
68982      "desc": "Checks to see if this object has any listeners for a specified event"
68983     },
68984     {
68985      "name": "hide",
68986      "sig": "()",
68987      "type": "function",
68988      "desc": "Hide this component."
68989     },
68990     {
68991      "name": "isDirty",
68992      "sig": "()",
68993      "type": "function",
68994      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
68995     },
68996     {
68997      "name": "isValid",
68998      "sig": "(Boolean preventMark)",
68999      "type": "function",
69000      "desc": "Returns whether or not the field value is currently valid"
69001     },
69002     {
69003      "name": "isVisible",
69004      "sig": "()",
69005      "type": "function",
69006      "desc": "Returns true if this component is visible."
69007     },
69008     {
69009      "name": "markInvalid",
69010      "sig": "(String msg)",
69011      "type": "function",
69012      "desc": "Mark this field as invalid"
69013     },
69014     {
69015      "name": "on",
69016      "sig": "(String eventName, Function handler, Object scope, Object options)",
69017      "type": "function",
69018      "desc": "Appends an event handler to this element (shorthand for addListener)"
69019     },
69020     {
69021      "name": "onPosition",
69022      "sig": "(Number x, Number y)",
69023      "type": "function",
69024      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
69025     },
69026     {
69027      "name": "onResize",
69028      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
69029      "type": "function",
69030      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
69031     },
69032     {
69033      "name": "purgeListeners",
69034      "sig": "()",
69035      "type": "function",
69036      "desc": "Removes all listeners for this object"
69037     },
69038     {
69039      "name": "releaseCapture",
69040      "sig": "(Observable o)",
69041      "type": "function",
69042      "desc": "Removes <b>all</b> added captures from the Observable."
69043     },
69044     {
69045      "name": "removeListener",
69046      "sig": "(String eventName, Function handler, Object scope)",
69047      "type": "function",
69048      "desc": "Removes a listener"
69049     },
69050     {
69051      "name": "render",
69052      "sig": "(String/HTMLElement/Element container)",
69053      "type": "function",
69054      "desc": "If this is a lazy rendering component, render it to its container element."
69055     },
69056     {
69057      "name": "reset",
69058      "sig": "()",
69059      "type": "function",
69060      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
69061     },
69062     {
69063      "name": "resetHasChanged",
69064      "sig": "()",
69065      "type": "function",
69066      "desc": "stores the current value in loadedValue"
69067     },
69068     {
69069      "name": "selectText",
69070      "sig": "(Number start, Number end)",
69071      "type": "function",
69072      "desc": "Selects text in this field"
69073     },
69074     {
69075      "name": "setDisabled",
69076      "sig": "(Boolean disabled)",
69077      "type": "function",
69078      "desc": "Convenience function for setting disabled/enabled by boolean."
69079     },
69080     {
69081      "name": "setPagePosition",
69082      "sig": "(Number x, Number y)",
69083      "type": "function",
69084      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
69085     },
69086     {
69087      "name": "setPosition",
69088      "sig": "(Number left, Number top)",
69089      "type": "function",
69090      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
69091     },
69092     {
69093      "name": "setRawValue",
69094      "sig": "(Mixed value)",
69095      "type": "function",
69096      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
69097     },
69098     {
69099      "name": "setSize",
69100      "sig": "(Number/Object width, Number height)",
69101      "type": "function",
69102      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
69103     },
69104     {
69105      "name": "setValue",
69106      "sig": "(Mixed value)",
69107      "type": "function",
69108      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
69109     },
69110     {
69111      "name": "setVisible",
69112      "sig": "(Boolean visible)",
69113      "type": "function",
69114      "desc": "Convenience function to hide or show this component by boolean."
69115     },
69116     {
69117      "name": "show",
69118      "sig": "()",
69119      "type": "function",
69120      "desc": "Show this component."
69121     },
69122     {
69123      "name": "syncSize",
69124      "sig": "()",
69125      "type": "function",
69126      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
69127     },
69128     {
69129      "name": "un",
69130      "sig": "(String eventName, Function handler, Object scope)",
69131      "type": "function",
69132      "desc": "Removes a listener (shorthand for removeListener)"
69133     },
69134     {
69135      "name": "updateBox",
69136      "sig": "(Object box)",
69137      "type": "function",
69138      "desc": "Sets the current box measurements of the component's underlying element."
69139     },
69140     {
69141      "name": "validate",
69142      "sig": "()",
69143      "type": "function",
69144      "desc": "Validates the field value"
69145     },
69146     {
69147      "name": "validateValue",
69148      "sig": "(Mixed value)",
69149      "type": "function",
69150      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
69151     }
69152    ]
69153   },
69154   "Roo.form.Radio": {
69155    "props": [
69156     {
69157      "name": "focusClass",
69158      "type": "String",
69159      "desc": "The CSS class to use when the checkbox receives focus (defaults to undefined)",
69160      "memberOf": "Roo.form.Checkbox"
69161     },
69162     {
69163      "name": "fieldClass",
69164      "type": "String",
69165      "desc": "The default CSS class for the checkbox (defaults to \"x-form-field\")",
69166      "memberOf": "Roo.form.Checkbox"
69167     },
69168     {
69169      "name": "checked",
69170      "type": "Boolean",
69171      "desc": "True if the the checkbox should render already checked (defaults to false)",
69172      "memberOf": "Roo.form.Checkbox"
69173     },
69174     {
69175      "name": "autoCreate",
69176      "type": "String/Object",
69177      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"checkbox\", autocomplete: \"off\"})",
69178      "memberOf": "Roo.form.Checkbox"
69179     },
69180     {
69181      "name": "boxLabel",
69182      "type": "String",
69183      "desc": "The text that appears beside the checkbox",
69184      "memberOf": "Roo.form.Checkbox"
69185     },
69186     {
69187      "name": "inputValue",
69188      "type": "String",
69189      "desc": "The value that should go into the generated input element's value attribute",
69190      "memberOf": "Roo.form.Checkbox"
69191     },
69192     {
69193      "name": "valueOff",
69194      "type": "String",
69195      "desc": "The value that should go into the generated input element's value when unchecked.",
69196      "memberOf": "Roo.form.Checkbox"
69197     },
69198     {
69199      "name": "fieldLabel",
69200      "type": "String",
69201      "desc": "Label to use when rendering a form.",
69202      "memberOf": "Roo.form.Field"
69203     },
69204     {
69205      "name": "qtip",
69206      "type": "String",
69207      "desc": "Mouse over tip",
69208      "memberOf": "Roo.form.Field"
69209     },
69210     {
69211      "name": "name",
69212      "type": "String",
69213      "desc": "The field's HTML name attribute.",
69214      "memberOf": "Roo.form.Field"
69215     },
69216     {
69217      "name": "invalidClass",
69218      "type": "String",
69219      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
69220      "memberOf": "Roo.form.Field"
69221     },
69222     {
69223      "name": "invalidText",
69224      "type": "String",
69225      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
69226      "memberOf": "Roo.form.Field"
69227     },
69228     {
69229      "name": "validationEvent",
69230      "type": "String/Boolean",
69231      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
69232      "memberOf": "Roo.form.Field"
69233     },
69234     {
69235      "name": "validateOnBlur",
69236      "type": "Boolean",
69237      "desc": "Whether the field should validate when it loses focus (defaults to true).",
69238      "memberOf": "Roo.form.Field"
69239     },
69240     {
69241      "name": "validationDelay",
69242      "type": "Number",
69243      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
69244      "memberOf": "Roo.form.Field"
69245     },
69246     {
69247      "name": "msgTarget",
69248      "type": "String",
69249      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
69250      "memberOf": "Roo.form.Field"
69251     },
69252     {
69253      "name": "msgFx",
69254      "type": "String",
69255      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
69256      "memberOf": "Roo.form.Field"
69257     },
69258     {
69259      "name": "readOnly",
69260      "type": "Boolean",
69261      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
69262      "memberOf": "Roo.form.Field"
69263     },
69264     {
69265      "name": "disabled",
69266      "type": "Boolean",
69267      "desc": "True to disable the field (defaults to false).",
69268      "memberOf": "Roo.form.Field"
69269     },
69270     {
69271      "name": "inputType",
69272      "type": "String",
69273      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
69274      "memberOf": "Roo.form.Field"
69275     },
69276     {
69277      "name": "tabIndex",
69278      "type": "Number",
69279      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
69280      "memberOf": "Roo.form.Field"
69281     },
69282     {
69283      "name": "value",
69284      "type": "Mixed",
69285      "desc": "A value to initialize this field with.",
69286      "memberOf": "Roo.form.Field"
69287     },
69288     {
69289      "name": "cls",
69290      "type": "String",
69291      "desc": "A CSS class to apply to the field's underlying element.",
69292      "memberOf": "Roo.form.Field"
69293     },
69294     {
69295      "name": "width",
69296      "type": "Number",
69297      "desc": "width (optional) size of component",
69298      "memberOf": "Roo.BoxComponent"
69299     },
69300     {
69301      "name": "height",
69302      "type": "Number",
69303      "desc": "height (optional) size of component",
69304      "memberOf": "Roo.BoxComponent"
69305     },
69306     {
69307      "name": "disableClass",
69308      "type": "String",
69309      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
69310      "memberOf": "Roo.Component"
69311     },
69312     {
69313      "name": "allowDomMove",
69314      "type": "Boolean",
69315      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
69316      "memberOf": "Roo.Component"
69317     },
69318     {
69319      "name": "hideMode",
69320      "type": "String",
69321      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
69322      "memberOf": "Roo.Component",
69323      "optvals": [
69324       "display",
69325       "visibility"
69326      ]
69327     },
69328     {
69329      "name": "actionMode",
69330      "type": "String",
69331      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
69332      "memberOf": "Roo.Component"
69333     },
69334     {
69335      "name": "listeners",
69336      "type": "Object",
69337      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
69338      "memberOf": "Roo.util.Observable"
69339     }
69340    ],
69341    "events": [
69342     {
69343      "name": "beforedestroy",
69344      "sig": "function (_self)\n{\n\n}",
69345      "type": "function",
69346      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
69347     },
69348     {
69349      "name": "beforehide",
69350      "sig": "function (_self)\n{\n\n}",
69351      "type": "function",
69352      "desc": "Fires before the component is hidden. Return false to stop the hide."
69353     },
69354     {
69355      "name": "beforerender",
69356      "sig": "function (_self)\n{\n\n}",
69357      "type": "function",
69358      "desc": "Fires before the component is rendered. Return false to stop the render."
69359     },
69360     {
69361      "name": "beforeshow",
69362      "sig": "function (_self)\n{\n\n}",
69363      "type": "function",
69364      "desc": "Fires before the component is shown.  Return false to stop the show."
69365     },
69366     {
69367      "name": "blur",
69368      "sig": "function (_self)\n{\n\n}",
69369      "type": "function",
69370      "desc": "Fires when this field loses input focus."
69371     },
69372     {
69373      "name": "change",
69374      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
69375      "type": "function",
69376      "desc": "Fires just before the field blurs if the field value has changed."
69377     },
69378     {
69379      "name": "check",
69380      "sig": "function (_self, checked)\n{\n\n}",
69381      "type": "function",
69382      "desc": "Fires when the checkbox is checked or unchecked."
69383     },
69384     {
69385      "name": "destroy",
69386      "sig": "function (_self)\n{\n\n}",
69387      "type": "function",
69388      "desc": "Fires after the component is destroyed."
69389     },
69390     {
69391      "name": "disable",
69392      "sig": "function (_self)\n{\n\n}",
69393      "type": "function",
69394      "desc": "Fires after the component is disabled."
69395     },
69396     {
69397      "name": "enable",
69398      "sig": "function (_self)\n{\n\n}",
69399      "type": "function",
69400      "desc": "Fires after the component is enabled."
69401     },
69402     {
69403      "name": "focus",
69404      "sig": "function (_self)\n{\n\n}",
69405      "type": "function",
69406      "desc": "Fires when this field receives input focus."
69407     },
69408     {
69409      "name": "hide",
69410      "sig": "function (_self)\n{\n\n}",
69411      "type": "function",
69412      "desc": "Fires after the component is hidden."
69413     },
69414     {
69415      "name": "invalid",
69416      "sig": "function (_self, msg)\n{\n\n}",
69417      "type": "function",
69418      "desc": "Fires after the field has been marked as invalid."
69419     },
69420     {
69421      "name": "keyup",
69422      "sig": "function (_self, e)\n{\n\n}",
69423      "type": "function",
69424      "desc": "Fires after the key up"
69425     },
69426     {
69427      "name": "move",
69428      "sig": "function (_self, x, y)\n{\n\n}",
69429      "type": "function",
69430      "desc": "Fires after the component is moved."
69431     },
69432     {
69433      "name": "render",
69434      "sig": "function (_self)\n{\n\n}",
69435      "type": "function",
69436      "desc": "Fires after the component is rendered."
69437     },
69438     {
69439      "name": "resize",
69440      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
69441      "type": "function",
69442      "desc": "Fires after the component is resized."
69443     },
69444     {
69445      "name": "show",
69446      "sig": "function (_self)\n{\n\n}",
69447      "type": "function",
69448      "desc": "Fires after the component is shown."
69449     },
69450     {
69451      "name": "specialkey",
69452      "sig": "function (_self, e)\n{\n\n}",
69453      "type": "function",
69454      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
69455     },
69456     {
69457      "name": "valid",
69458      "sig": "function (_self)\n{\n\n}",
69459      "type": "function",
69460      "desc": "Fires after the field has been validated with no errors."
69461     }
69462    ],
69463    "methods": [
69464     {
69465      "name": "addEvents",
69466      "sig": "(Object object)",
69467      "type": "function",
69468      "desc": "Used to define events on this Observable"
69469     },
69470     {
69471      "name": "addListener",
69472      "sig": "(String eventName, Function handler, Object scope, Object options)",
69473      "type": "function",
69474      "desc": "Appends an event handler to this component"
69475     },
69476     {
69477      "name": "applyTo",
69478      "sig": "(String/HTMLElement/Element el)",
69479      "type": "function",
69480      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
69481     },
69482     {
69483      "name": "capture",
69484      "sig": "(Observable o, Function fn, Object scope)",
69485      "type": "function",
69486      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
69487     },
69488     {
69489      "name": "clearInvalid",
69490      "sig": "()",
69491      "type": "function",
69492      "desc": "Clear any invalid styles/messages for this field"
69493     },
69494     {
69495      "name": "destroy",
69496      "sig": "()",
69497      "type": "function",
69498      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
69499     },
69500     {
69501      "name": "disable",
69502      "sig": "()",
69503      "type": "function",
69504      "desc": "Disable this component."
69505     },
69506     {
69507      "name": "enable",
69508      "sig": "()",
69509      "type": "function",
69510      "desc": "Enable this component."
69511     },
69512     {
69513      "name": "fireEvent",
69514      "sig": "(String eventName, Object... args)",
69515      "type": "function",
69516      "desc": "Fires the specified event with the passed parameters (minus the event name)."
69517     },
69518     {
69519      "name": "focus",
69520      "sig": "(Boolean selectText)",
69521      "type": "function",
69522      "desc": "Try to focus this component."
69523     },
69524     {
69525      "name": "getBox",
69526      "sig": "(Boolean local)",
69527      "type": "function",
69528      "desc": "Gets the current box measurements of the component's underlying element."
69529     },
69530     {
69531      "name": "getEl",
69532      "sig": "()",
69533      "type": "function",
69534      "desc": "Returns the underlying {@link Roo.Element}."
69535     },
69536     {
69537      "name": "getGroupValue",
69538      "sig": "()",
69539      "type": "function",
69540      "desc": "If this radio is part of a group, it will return the selected value"
69541     },
69542     {
69543      "name": "getId",
69544      "sig": "()",
69545      "type": "function",
69546      "desc": "Returns the id of this component."
69547     },
69548     {
69549      "name": "getName",
69550      "sig": "()",
69551      "type": "function",
69552      "desc": "Returns the name attribute of the field if available"
69553     },
69554     {
69555      "name": "getPosition",
69556      "sig": "(Boolean local)",
69557      "type": "function",
69558      "desc": "Gets the current XY position of the component's underlying element."
69559     },
69560     {
69561      "name": "getRawValue",
69562      "sig": "()",
69563      "type": "function",
69564      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
69565     },
69566     {
69567      "name": "getSize",
69568      "sig": "()",
69569      "type": "function",
69570      "desc": "Gets the current size of the component's underlying element."
69571     },
69572     {
69573      "name": "getValue",
69574      "sig": "()",
69575      "type": "function",
69576      "desc": "Returns the checked state of the checkbox."
69577     },
69578     {
69579      "name": "hasChanged",
69580      "sig": "()",
69581      "type": "function",
69582      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
69583     },
69584     {
69585      "name": "hasListener",
69586      "sig": "(String eventName)",
69587      "type": "function",
69588      "desc": "Checks to see if this object has any listeners for a specified event"
69589     },
69590     {
69591      "name": "hide",
69592      "sig": "()",
69593      "type": "function",
69594      "desc": "Hide this component."
69595     },
69596     {
69597      "name": "isDirty",
69598      "sig": "()",
69599      "type": "function",
69600      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
69601     },
69602     {
69603      "name": "isValid",
69604      "sig": "(Boolean preventMark)",
69605      "type": "function",
69606      "desc": "Returns whether or not the field value is currently valid"
69607     },
69608     {
69609      "name": "isVisible",
69610      "sig": "()",
69611      "type": "function",
69612      "desc": "Returns true if this component is visible."
69613     },
69614     {
69615      "name": "markInvalid",
69616      "sig": "(String msg)",
69617      "type": "function",
69618      "desc": "Mark this field as invalid"
69619     },
69620     {
69621      "name": "on",
69622      "sig": "(String eventName, Function handler, Object scope, Object options)",
69623      "type": "function",
69624      "desc": "Appends an event handler to this element (shorthand for addListener)"
69625     },
69626     {
69627      "name": "onPosition",
69628      "sig": "(Number x, Number y)",
69629      "type": "function",
69630      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
69631     },
69632     {
69633      "name": "onResize",
69634      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
69635      "type": "function",
69636      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
69637     },
69638     {
69639      "name": "purgeListeners",
69640      "sig": "()",
69641      "type": "function",
69642      "desc": "Removes all listeners for this object"
69643     },
69644     {
69645      "name": "releaseCapture",
69646      "sig": "(Observable o)",
69647      "type": "function",
69648      "desc": "Removes <b>all</b> added captures from the Observable."
69649     },
69650     {
69651      "name": "removeListener",
69652      "sig": "(String eventName, Function handler, Object scope)",
69653      "type": "function",
69654      "desc": "Removes a listener"
69655     },
69656     {
69657      "name": "render",
69658      "sig": "(String/HTMLElement/Element container)",
69659      "type": "function",
69660      "desc": "If this is a lazy rendering component, render it to its container element."
69661     },
69662     {
69663      "name": "reset",
69664      "sig": "()",
69665      "type": "function",
69666      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
69667     },
69668     {
69669      "name": "resetHasChanged",
69670      "sig": "()",
69671      "type": "function",
69672      "desc": "stores the current value in loadedValue"
69673     },
69674     {
69675      "name": "setDisabled",
69676      "sig": "(Boolean disabled)",
69677      "type": "function",
69678      "desc": "Convenience function for setting disabled/enabled by boolean."
69679     },
69680     {
69681      "name": "setPagePosition",
69682      "sig": "(Number x, Number y)",
69683      "type": "function",
69684      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
69685     },
69686     {
69687      "name": "setPosition",
69688      "sig": "(Number left, Number top)",
69689      "type": "function",
69690      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
69691     },
69692     {
69693      "name": "setRawValue",
69694      "sig": "(Mixed value)",
69695      "type": "function",
69696      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
69697     },
69698     {
69699      "name": "setSize",
69700      "sig": "(Number/Object width, Number height)",
69701      "type": "function",
69702      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
69703     },
69704     {
69705      "name": "setValue",
69706      "sig": "(Boolean/String value, Boolean/String suppressEvent)",
69707      "type": "function",
69708      "desc": "Sets the checked state of the checkbox.\nOn is always based on a string comparison between inputValue and the param."
69709     },
69710     {
69711      "name": "setVisible",
69712      "sig": "(Boolean visible)",
69713      "type": "function",
69714      "desc": "Convenience function to hide or show this component by boolean."
69715     },
69716     {
69717      "name": "show",
69718      "sig": "()",
69719      "type": "function",
69720      "desc": "Show this component."
69721     },
69722     {
69723      "name": "syncSize",
69724      "sig": "()",
69725      "type": "function",
69726      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
69727     },
69728     {
69729      "name": "un",
69730      "sig": "(String eventName, Function handler, Object scope)",
69731      "type": "function",
69732      "desc": "Removes a listener (shorthand for removeListener)"
69733     },
69734     {
69735      "name": "updateBox",
69736      "sig": "(Object box)",
69737      "type": "function",
69738      "desc": "Sets the current box measurements of the component's underlying element."
69739     },
69740     {
69741      "name": "validate",
69742      "sig": "()",
69743      "type": "function",
69744      "desc": "Validates the field value"
69745     }
69746    ]
69747   },
69748   "Roo.form.Row": {
69749    "props": [
69750     {
69751      "name": "width",
69752      "type": "Number/String",
69753      "desc": "The fixed width of the column in pixels or CSS value (defaults to \"auto\")",
69754      "memberOf": ""
69755     },
69756     {
69757      "name": "height",
69758      "type": "Number/String",
69759      "desc": "The fixed height of the column in pixels or CSS value (defaults to \"auto\")",
69760      "memberOf": ""
69761     },
69762     {
69763      "name": "autoCreate",
69764      "type": "String/Object",
69765      "desc": "A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})",
69766      "memberOf": "Roo.form.Layout"
69767     },
69768     {
69769      "name": "style",
69770      "type": "String/Object/Function",
69771      "desc": "A style specification string, e.g. \"width:100px\", or object in the form {width:\"100px\"}, or\na function which returns such a specification.",
69772      "memberOf": "Roo.form.Layout"
69773     },
69774     {
69775      "name": "labelAlign",
69776      "type": "String",
69777      "desc": "Valid values are \"left,\" \"top\" and \"right\" (defaults to \"left\")",
69778      "memberOf": "Roo.form.Layout"
69779     },
69780     {
69781      "name": "labelWidth",
69782      "type": "Number",
69783      "desc": "Fixed width in pixels of all field labels (defaults to undefined)",
69784      "memberOf": "Roo.form.Layout"
69785     },
69786     {
69787      "name": "clear",
69788      "type": "Boolean",
69789      "desc": "True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)",
69790      "memberOf": "Roo.form.Layout"
69791     },
69792     {
69793      "name": "labelSeparator",
69794      "type": "String",
69795      "desc": "The separator to use after field labels (defaults to ':')",
69796      "memberOf": "Roo.form.Layout"
69797     },
69798     {
69799      "name": "hideLabels",
69800      "type": "Boolean",
69801      "desc": "True to suppress the display of field labels in this layout (defaults to false)",
69802      "memberOf": "Roo.form.Layout"
69803     },
69804     {
69805      "name": "disableClass",
69806      "type": "String",
69807      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
69808      "memberOf": "Roo.Component"
69809     },
69810     {
69811      "name": "allowDomMove",
69812      "type": "Boolean",
69813      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
69814      "memberOf": "Roo.Component"
69815     },
69816     {
69817      "name": "hideMode",
69818      "type": "String",
69819      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
69820      "memberOf": "Roo.Component",
69821      "optvals": [
69822       "display",
69823       "visibility"
69824      ]
69825     },
69826     {
69827      "name": "actionMode",
69828      "type": "String",
69829      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
69830      "memberOf": "Roo.Component"
69831     },
69832     {
69833      "name": "listeners",
69834      "type": "Object",
69835      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
69836      "memberOf": "Roo.util.Observable"
69837     }
69838    ],
69839    "events": [
69840     {
69841      "name": "beforedestroy",
69842      "sig": "function (_self)\n{\n\n}",
69843      "type": "function",
69844      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
69845     },
69846     {
69847      "name": "beforehide",
69848      "sig": "function (_self)\n{\n\n}",
69849      "type": "function",
69850      "desc": "Fires before the component is hidden. Return false to stop the hide."
69851     },
69852     {
69853      "name": "beforerender",
69854      "sig": "function (_self)\n{\n\n}",
69855      "type": "function",
69856      "desc": "Fires before the component is rendered. Return false to stop the render."
69857     },
69858     {
69859      "name": "beforeshow",
69860      "sig": "function (_self)\n{\n\n}",
69861      "type": "function",
69862      "desc": "Fires before the component is shown.  Return false to stop the show."
69863     },
69864     {
69865      "name": "destroy",
69866      "sig": "function (_self)\n{\n\n}",
69867      "type": "function",
69868      "desc": "Fires after the component is destroyed."
69869     },
69870     {
69871      "name": "disable",
69872      "sig": "function (_self)\n{\n\n}",
69873      "type": "function",
69874      "desc": "Fires after the component is disabled."
69875     },
69876     {
69877      "name": "enable",
69878      "sig": "function (_self)\n{\n\n}",
69879      "type": "function",
69880      "desc": "Fires after the component is enabled."
69881     },
69882     {
69883      "name": "hide",
69884      "sig": "function (_self)\n{\n\n}",
69885      "type": "function",
69886      "desc": "Fires after the component is hidden."
69887     },
69888     {
69889      "name": "render",
69890      "sig": "function (_self)\n{\n\n}",
69891      "type": "function",
69892      "desc": "Fires after the component is rendered."
69893     },
69894     {
69895      "name": "show",
69896      "sig": "function (_self)\n{\n\n}",
69897      "type": "function",
69898      "desc": "Fires after the component is shown."
69899     }
69900    ],
69901    "methods": [
69902     {
69903      "name": "addEvents",
69904      "sig": "(Object object)",
69905      "type": "function",
69906      "desc": "Used to define events on this Observable"
69907     },
69908     {
69909      "name": "addListener",
69910      "sig": "(String eventName, Function handler, Object scope, Object options)",
69911      "type": "function",
69912      "desc": "Appends an event handler to this component"
69913     },
69914     {
69915      "name": "addxtype",
69916      "sig": "(Object config)",
69917      "type": "function",
69918      "desc": "Adds a object form elements (using the xtype property as the factory method.)\nValid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column"
69919     },
69920     {
69921      "name": "capture",
69922      "sig": "(Observable o, Function fn, Object scope)",
69923      "type": "function",
69924      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
69925     },
69926     {
69927      "name": "destroy",
69928      "sig": "()",
69929      "type": "function",
69930      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
69931     },
69932     {
69933      "name": "disable",
69934      "sig": "()",
69935      "type": "function",
69936      "desc": "Disable this component."
69937     },
69938     {
69939      "name": "enable",
69940      "sig": "()",
69941      "type": "function",
69942      "desc": "Enable this component."
69943     },
69944     {
69945      "name": "fireEvent",
69946      "sig": "(String eventName, Object... args)",
69947      "type": "function",
69948      "desc": "Fires the specified event with the passed parameters (minus the event name)."
69949     },
69950     {
69951      "name": "focus",
69952      "sig": "(Boolean selectText)",
69953      "type": "function",
69954      "desc": "Try to focus this component."
69955     },
69956     {
69957      "name": "getEl",
69958      "sig": "()",
69959      "type": "function",
69960      "desc": "Returns the underlying {@link Roo.Element}."
69961     },
69962     {
69963      "name": "getId",
69964      "sig": "()",
69965      "type": "function",
69966      "desc": "Returns the id of this component."
69967     },
69968     {
69969      "name": "hasListener",
69970      "sig": "(String eventName)",
69971      "type": "function",
69972      "desc": "Checks to see if this object has any listeners for a specified event"
69973     },
69974     {
69975      "name": "hide",
69976      "sig": "()",
69977      "type": "function",
69978      "desc": "Hide this component."
69979     },
69980     {
69981      "name": "isVisible",
69982      "sig": "()",
69983      "type": "function",
69984      "desc": "Returns true if this component is visible."
69985     },
69986     {
69987      "name": "on",
69988      "sig": "(String eventName, Function handler, Object scope, Object options)",
69989      "type": "function",
69990      "desc": "Appends an event handler to this element (shorthand for addListener)"
69991     },
69992     {
69993      "name": "purgeListeners",
69994      "sig": "()",
69995      "type": "function",
69996      "desc": "Removes all listeners for this object"
69997     },
69998     {
69999      "name": "releaseCapture",
70000      "sig": "(Observable o)",
70001      "type": "function",
70002      "desc": "Removes <b>all</b> added captures from the Observable."
70003     },
70004     {
70005      "name": "removeListener",
70006      "sig": "(String eventName, Function handler, Object scope)",
70007      "type": "function",
70008      "desc": "Removes a listener"
70009     },
70010     {
70011      "name": "render",
70012      "sig": "(String/HTMLElement/Element container)",
70013      "type": "function",
70014      "desc": "If this is a lazy rendering component, render it to its container element."
70015     },
70016     {
70017      "name": "setDisabled",
70018      "sig": "(Boolean disabled)",
70019      "type": "function",
70020      "desc": "Convenience function for setting disabled/enabled by boolean."
70021     },
70022     {
70023      "name": "setVisible",
70024      "sig": "(Boolean visible)",
70025      "type": "function",
70026      "desc": "Convenience function to hide or show this component by boolean."
70027     },
70028     {
70029      "name": "show",
70030      "sig": "()",
70031      "type": "function",
70032      "desc": "Show this component."
70033     },
70034     {
70035      "name": "un",
70036      "sig": "(String eventName, Function handler, Object scope)",
70037      "type": "function",
70038      "desc": "Removes a listener (shorthand for removeListener)"
70039     }
70040    ]
70041   },
70042   "Roo.form.Select": {
70043    "props": [
70044     {
70045      "name": "transform",
70046      "type": "String/HTMLElement/Element",
70047      "desc": "The id, DOM node or element of an existing select to convert to a ComboBox",
70048      "memberOf": ""
70049     },
70050     {
70051      "name": "lazyRender",
70052      "type": "Boolean",
70053      "desc": "True to prevent the ComboBox from rendering until requested (should always be used when\nrendering into an Roo.Editor, defaults to false)",
70054      "memberOf": ""
70055     },
70056     {
70057      "name": "autoCreate",
70058      "type": "Boolean/Object",
70059      "desc": "A DomHelper element spec, or true for a default element spec (defaults to:\n{tag: \"input\", type: \"text\", size: \"24\", autocomplete: \"off\"})",
70060      "memberOf": ""
70061     },
70062     {
70063      "name": "store",
70064      "type": "Roo.data.Store",
70065      "desc": "The data store to which this combo is bound (defaults to undefined)",
70066      "memberOf": ""
70067     },
70068     {
70069      "name": "title",
70070      "type": "String",
70071      "desc": "If supplied, a header element is created containing this text and added into the top of\nthe dropdown list (defaults to undefined, with no header element)",
70072      "memberOf": ""
70073     },
70074     {
70075      "name": "grow",
70076      "type": "Boolean",
70077      "desc": "",
70078      "memberOf": ""
70079     },
70080     {
70081      "name": "growMin",
70082      "type": "Number",
70083      "desc": "",
70084      "memberOf": ""
70085     },
70086     {
70087      "name": "growMax",
70088      "type": "Number",
70089      "desc": "",
70090      "memberOf": ""
70091     },
70092     {
70093      "name": "tpl",
70094      "type": "String/Roo.Template",
70095      "desc": "The template to use to render the output",
70096      "memberOf": ""
70097     },
70098     {
70099      "name": "listWidth",
70100      "type": "Number",
70101      "desc": "The width in pixels of the dropdown list (defaults to the width of the ComboBox field)",
70102      "memberOf": ""
70103     },
70104     {
70105      "name": "displayField",
70106      "type": "String",
70107      "desc": "The underlying data field name to bind to this CombBox (defaults to undefined if\nmode = 'remote' or 'text' if mode = 'local')",
70108      "memberOf": ""
70109     },
70110     {
70111      "name": "valueField",
70112      "type": "String",
70113      "desc": "The underlying data value name to bind to this CombBox (defaults to undefined if\nmode = 'remote' or 'value' if mode = 'local'). \nNote: use of a valueField requires the user make a selection\nin order for a value to be mapped.",
70114      "memberOf": ""
70115     },
70116     {
70117      "name": "hiddenName",
70118      "type": "String",
70119      "desc": "If specified, a hidden form field with this name is dynamically generated to store the\nfield's data value (defaults to the underlying DOM element's name)",
70120      "memberOf": ""
70121     },
70122     {
70123      "name": "listClass",
70124      "type": "String",
70125      "desc": "CSS class to apply to the dropdown list element (defaults to '')",
70126      "memberOf": ""
70127     },
70128     {
70129      "name": "selectedClass",
70130      "type": "String",
70131      "desc": "CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')",
70132      "memberOf": ""
70133     },
70134     {
70135      "name": "triggerClass",
70136      "type": "String",
70137      "desc": "An additional CSS class used to style the trigger button.  The trigger will always get the\nclass 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'\nwhich displays a downward arrow icon).",
70138      "memberOf": ""
70139     },
70140     {
70141      "name": "shadow",
70142      "type": "Boolean/String",
70143      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\" for bottom-right",
70144      "memberOf": ""
70145     },
70146     {
70147      "name": "listAlign",
70148      "type": "String",
70149      "desc": "A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported\nanchor positions (defaults to 'tl-bl')",
70150      "memberOf": ""
70151     },
70152     {
70153      "name": "maxHeight",
70154      "type": "Number",
70155      "desc": "The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)",
70156      "memberOf": ""
70157     },
70158     {
70159      "name": "triggerAction",
70160      "type": "String",
70161      "desc": "The action to execute when the trigger field is activated.  Use 'all' to run the\nquery specified by the allQuery config option (defaults to 'query')",
70162      "memberOf": ""
70163     },
70164     {
70165      "name": "minChars",
70166      "type": "Number",
70167      "desc": "The minimum number of characters the user must type before autocomplete and typeahead activate\n(defaults to 4, does not apply if editable = false)",
70168      "memberOf": ""
70169     },
70170     {
70171      "name": "typeAhead",
70172      "type": "Boolean",
70173      "desc": "True to populate and autoselect the remainder of the text being typed after a configurable\ndelay (typeAheadDelay) if it matches a known value (defaults to false)",
70174      "memberOf": ""
70175     },
70176     {
70177      "name": "queryDelay",
70178      "type": "Number",
70179      "desc": "The length of time in milliseconds to delay between the start of typing and sending the\nquery to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')",
70180      "memberOf": ""
70181     },
70182     {
70183      "name": "pageSize",
70184      "type": "Number",
70185      "desc": "If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the\nfilter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)",
70186      "memberOf": ""
70187     },
70188     {
70189      "name": "selectOnFocus",
70190      "type": "Boolean",
70191      "desc": "True to select any existing text in the field immediately on focus.  Only applies\nwhen editable = true (defaults to false)",
70192      "memberOf": ""
70193     },
70194     {
70195      "name": "queryParam",
70196      "type": "String",
70197      "desc": "Name of the query as it will be passed on the querystring (defaults to 'query')",
70198      "memberOf": ""
70199     },
70200     {
70201      "name": "loadingText",
70202      "type": "String",
70203      "desc": "The text to display in the dropdown list while data is loading.  Only applies\nwhen mode = 'remote' (defaults to 'Loading...')",
70204      "memberOf": ""
70205     },
70206     {
70207      "name": "resizable",
70208      "type": "Boolean",
70209      "desc": "True to add a resize handle to the bottom of the dropdown list (defaults to false)",
70210      "memberOf": ""
70211     },
70212     {
70213      "name": "handleHeight",
70214      "type": "Number",
70215      "desc": "The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)",
70216      "memberOf": ""
70217     },
70218     {
70219      "name": "editable",
70220      "type": "Boolean",
70221      "desc": "False to prevent the user from typing text directly into the field, just like a\ntraditional select (defaults to true)",
70222      "memberOf": ""
70223     },
70224     {
70225      "name": "allQuery",
70226      "type": "String",
70227      "desc": "The text query to send to the server to return all records for the list with no filtering (defaults to '')",
70228      "memberOf": ""
70229     },
70230     {
70231      "name": "mode",
70232      "type": "String",
70233      "desc": "Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)",
70234      "memberOf": ""
70235     },
70236     {
70237      "name": "minListWidth",
70238      "type": "Number",
70239      "desc": "The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if\nlistWidth has a higher value)",
70240      "memberOf": ""
70241     },
70242     {
70243      "name": "forceSelection",
70244      "type": "Boolean",
70245      "desc": "True to restrict the selected value to one of the values in the list, false to\nallow the user to set arbitrary text into the field (defaults to false)",
70246      "memberOf": ""
70247     },
70248     {
70249      "name": "typeAheadDelay",
70250      "type": "Number",
70251      "desc": "The length of time in milliseconds to wait until the typeahead text is displayed\nif typeAhead = true (defaults to 250)",
70252      "memberOf": ""
70253     },
70254     {
70255      "name": "valueNotFoundText",
70256      "type": "String",
70257      "desc": "When using a name/value combo, if the value passed to setValue is not found in\nthe store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)",
70258      "memberOf": ""
70259     },
70260     {
70261      "name": "defaultValue",
70262      "type": "String",
70263      "desc": "The value displayed after loading the store.",
70264      "memberOf": ""
70265     },
70266     {
70267      "name": "blockFocus",
70268      "type": "Boolean",
70269      "desc": "Prevents all focus calls, so it can work with things like HTML edtor bar",
70270      "memberOf": ""
70271     },
70272     {
70273      "name": "disableClear",
70274      "type": "Boolean",
70275      "desc": "Disable showing of clear button.",
70276      "memberOf": ""
70277     },
70278     {
70279      "name": "alwaysQuery",
70280      "type": "Boolean",
70281      "desc": "Disable caching of results, and always send query",
70282      "memberOf": ""
70283     },
70284     {
70285      "name": "hideTrigger",
70286      "type": "Boolean",
70287      "desc": "True to hide the trigger element and display only the base text field (defaults to false)",
70288      "memberOf": "Roo.form.TriggerField"
70289     },
70290     {
70291      "name": "vtype",
70292      "type": "String",
70293      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
70294      "memberOf": "Roo.form.TextField"
70295     },
70296     {
70297      "name": "maskRe",
70298      "type": "String",
70299      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
70300      "memberOf": "Roo.form.TextField"
70301     },
70302     {
70303      "name": "disableKeyFilter",
70304      "type": "Boolean",
70305      "desc": "True to disable input keystroke filtering (defaults to false)",
70306      "memberOf": "Roo.form.TextField"
70307     },
70308     {
70309      "name": "allowBlank",
70310      "type": "Boolean",
70311      "desc": "False to validate that the value length > 0 (defaults to true)",
70312      "memberOf": "Roo.form.TextField"
70313     },
70314     {
70315      "name": "minLength",
70316      "type": "Number",
70317      "desc": "Minimum input field length required (defaults to 0)",
70318      "memberOf": "Roo.form.TextField"
70319     },
70320     {
70321      "name": "maxLength",
70322      "type": "Number",
70323      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
70324      "memberOf": "Roo.form.TextField"
70325     },
70326     {
70327      "name": "minLengthText",
70328      "type": "String",
70329      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
70330      "memberOf": "Roo.form.TextField"
70331     },
70332     {
70333      "name": "maxLengthText",
70334      "type": "String",
70335      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
70336      "memberOf": "Roo.form.TextField"
70337     },
70338     {
70339      "name": "blankText",
70340      "type": "String",
70341      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
70342      "memberOf": "Roo.form.TextField"
70343     },
70344     {
70345      "name": "validator",
70346      "type": "Function",
70347      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
70348      "memberOf": "Roo.form.TextField"
70349     },
70350     {
70351      "name": "regex",
70352      "type": "RegExp",
70353      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
70354      "memberOf": "Roo.form.TextField"
70355     },
70356     {
70357      "name": "regexText",
70358      "type": "String",
70359      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
70360      "memberOf": "Roo.form.TextField"
70361     },
70362     {
70363      "name": "emptyText",
70364      "type": "String",
70365      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
70366      "memberOf": "Roo.form.TextField"
70367     },
70368     {
70369      "name": "fieldLabel",
70370      "type": "String",
70371      "desc": "Label to use when rendering a form.",
70372      "memberOf": "Roo.form.Field"
70373     },
70374     {
70375      "name": "qtip",
70376      "type": "String",
70377      "desc": "Mouse over tip",
70378      "memberOf": "Roo.form.Field"
70379     },
70380     {
70381      "name": "name",
70382      "type": "String",
70383      "desc": "The field's HTML name attribute.",
70384      "memberOf": "Roo.form.Field"
70385     },
70386     {
70387      "name": "invalidClass",
70388      "type": "String",
70389      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
70390      "memberOf": "Roo.form.Field"
70391     },
70392     {
70393      "name": "invalidText",
70394      "type": "String",
70395      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
70396      "memberOf": "Roo.form.Field"
70397     },
70398     {
70399      "name": "focusClass",
70400      "type": "String",
70401      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
70402      "memberOf": "Roo.form.Field"
70403     },
70404     {
70405      "name": "validationEvent",
70406      "type": "String/Boolean",
70407      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
70408      "memberOf": "Roo.form.Field"
70409     },
70410     {
70411      "name": "validateOnBlur",
70412      "type": "Boolean",
70413      "desc": "Whether the field should validate when it loses focus (defaults to true).",
70414      "memberOf": "Roo.form.Field"
70415     },
70416     {
70417      "name": "validationDelay",
70418      "type": "Number",
70419      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
70420      "memberOf": "Roo.form.Field"
70421     },
70422     {
70423      "name": "fieldClass",
70424      "type": "String",
70425      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
70426      "memberOf": "Roo.form.Field"
70427     },
70428     {
70429      "name": "msgTarget",
70430      "type": "String",
70431      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
70432      "memberOf": "Roo.form.Field"
70433     },
70434     {
70435      "name": "msgFx",
70436      "type": "String",
70437      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
70438      "memberOf": "Roo.form.Field"
70439     },
70440     {
70441      "name": "readOnly",
70442      "type": "Boolean",
70443      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
70444      "memberOf": "Roo.form.Field"
70445     },
70446     {
70447      "name": "disabled",
70448      "type": "Boolean",
70449      "desc": "True to disable the field (defaults to false).",
70450      "memberOf": "Roo.form.Field"
70451     },
70452     {
70453      "name": "inputType",
70454      "type": "String",
70455      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
70456      "memberOf": "Roo.form.Field"
70457     },
70458     {
70459      "name": "tabIndex",
70460      "type": "Number",
70461      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
70462      "memberOf": "Roo.form.Field"
70463     },
70464     {
70465      "name": "value",
70466      "type": "Mixed",
70467      "desc": "A value to initialize this field with.",
70468      "memberOf": "Roo.form.Field"
70469     },
70470     {
70471      "name": "cls",
70472      "type": "String",
70473      "desc": "A CSS class to apply to the field's underlying element.",
70474      "memberOf": "Roo.form.Field"
70475     },
70476     {
70477      "name": "width",
70478      "type": "Number",
70479      "desc": "width (optional) size of component",
70480      "memberOf": "Roo.BoxComponent"
70481     },
70482     {
70483      "name": "height",
70484      "type": "Number",
70485      "desc": "height (optional) size of component",
70486      "memberOf": "Roo.BoxComponent"
70487     },
70488     {
70489      "name": "disableClass",
70490      "type": "String",
70491      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
70492      "memberOf": "Roo.Component"
70493     },
70494     {
70495      "name": "allowDomMove",
70496      "type": "Boolean",
70497      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
70498      "memberOf": "Roo.Component"
70499     },
70500     {
70501      "name": "hideMode",
70502      "type": "String",
70503      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
70504      "memberOf": "Roo.Component",
70505      "optvals": [
70506       "display",
70507       "visibility"
70508      ]
70509     },
70510     {
70511      "name": "actionMode",
70512      "type": "String",
70513      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
70514      "memberOf": "Roo.Component"
70515     },
70516     {
70517      "name": "listeners",
70518      "type": "Object",
70519      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
70520      "memberOf": "Roo.util.Observable"
70521     }
70522    ],
70523    "events": [
70524     {
70525      "name": "autosize",
70526      "sig": "function (_self, width)\n{\n\n}",
70527      "type": "function",
70528      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
70529     },
70530     {
70531      "name": "beforedestroy",
70532      "sig": "function (_self)\n{\n\n}",
70533      "type": "function",
70534      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
70535     },
70536     {
70537      "name": "beforehide",
70538      "sig": "function (_self)\n{\n\n}",
70539      "type": "function",
70540      "desc": "Fires before the component is hidden. Return false to stop the hide."
70541     },
70542     {
70543      "name": "beforerender",
70544      "sig": "function (_self)\n{\n\n}",
70545      "type": "function",
70546      "desc": "Fires before the component is rendered. Return false to stop the render."
70547     },
70548     {
70549      "name": "beforeshow",
70550      "sig": "function (_self)\n{\n\n}",
70551      "type": "function",
70552      "desc": "Fires before the component is shown.  Return false to stop the show."
70553     },
70554     {
70555      "name": "blur",
70556      "sig": "function (_self)\n{\n\n}",
70557      "type": "function",
70558      "desc": "Fires when this field loses input focus."
70559     },
70560     {
70561      "name": "change",
70562      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
70563      "type": "function",
70564      "desc": "Fires just before the field blurs if the field value has changed."
70565     },
70566     {
70567      "name": "destroy",
70568      "sig": "function (_self)\n{\n\n}",
70569      "type": "function",
70570      "desc": "Fires after the component is destroyed."
70571     },
70572     {
70573      "name": "disable",
70574      "sig": "function (_self)\n{\n\n}",
70575      "type": "function",
70576      "desc": "Fires after the component is disabled."
70577     },
70578     {
70579      "name": "enable",
70580      "sig": "function (_self)\n{\n\n}",
70581      "type": "function",
70582      "desc": "Fires after the component is enabled."
70583     },
70584     {
70585      "name": "focus",
70586      "sig": "function (_self)\n{\n\n}",
70587      "type": "function",
70588      "desc": "Fires when this field receives input focus."
70589     },
70590     {
70591      "name": "hide",
70592      "sig": "function (_self)\n{\n\n}",
70593      "type": "function",
70594      "desc": "Fires after the component is hidden."
70595     },
70596     {
70597      "name": "invalid",
70598      "sig": "function (_self, msg)\n{\n\n}",
70599      "type": "function",
70600      "desc": "Fires after the field has been marked as invalid."
70601     },
70602     {
70603      "name": "keyup",
70604      "sig": "function (_self, e)\n{\n\n}",
70605      "type": "function",
70606      "desc": "Fires after the key up"
70607     },
70608     {
70609      "name": "move",
70610      "sig": "function (_self, x, y)\n{\n\n}",
70611      "type": "function",
70612      "desc": "Fires after the component is moved."
70613     },
70614     {
70615      "name": "render",
70616      "sig": "function (_self)\n{\n\n}",
70617      "type": "function",
70618      "desc": "Fires after the component is rendered."
70619     },
70620     {
70621      "name": "resize",
70622      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
70623      "type": "function",
70624      "desc": "Fires after the component is resized."
70625     },
70626     {
70627      "name": "show",
70628      "sig": "function (_self)\n{\n\n}",
70629      "type": "function",
70630      "desc": "Fires after the component is shown."
70631     },
70632     {
70633      "name": "specialkey",
70634      "sig": "function (_self, e)\n{\n\n}",
70635      "type": "function",
70636      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
70637     },
70638     {
70639      "name": "valid",
70640      "sig": "function (_self)\n{\n\n}",
70641      "type": "function",
70642      "desc": "Fires after the field has been validated with no errors."
70643     }
70644    ],
70645    "methods": [
70646     {
70647      "name": "addEvents",
70648      "sig": "(Object object)",
70649      "type": "function",
70650      "desc": "Used to define events on this Observable"
70651     },
70652     {
70653      "name": "addListener",
70654      "sig": "(String eventName, Function handler, Object scope, Object options)",
70655      "type": "function",
70656      "desc": "Appends an event handler to this component"
70657     },
70658     {
70659      "name": "applyTo",
70660      "sig": "(String/HTMLElement/Element el)",
70661      "type": "function",
70662      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
70663     },
70664     {
70665      "name": "capture",
70666      "sig": "(Observable o, Function fn, Object scope)",
70667      "type": "function",
70668      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
70669     },
70670     {
70671      "name": "clearInvalid",
70672      "sig": "()",
70673      "type": "function",
70674      "desc": "Clear any invalid styles/messages for this field"
70675     },
70676     {
70677      "name": "clearValue",
70678      "sig": "()",
70679      "type": "function",
70680      "desc": "Clears any text/value currently set in the field"
70681     },
70682     {
70683      "name": "collapse",
70684      "sig": "()",
70685      "type": "function",
70686      "desc": "Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion."
70687     },
70688     {
70689      "name": "destroy",
70690      "sig": "()",
70691      "type": "function",
70692      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
70693     },
70694     {
70695      "name": "disable",
70696      "sig": "()",
70697      "type": "function",
70698      "desc": "Disable this component."
70699     },
70700     {
70701      "name": "doQuery",
70702      "sig": "(String query, Boolean forceAll)",
70703      "type": "function",
70704      "desc": "Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the\nquery allowing the query action to be canceled if needed."
70705     },
70706     {
70707      "name": "enable",
70708      "sig": "()",
70709      "type": "function",
70710      "desc": "Enable this component."
70711     },
70712     {
70713      "name": "expand",
70714      "sig": "()",
70715      "type": "function",
70716      "desc": "Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion."
70717     },
70718     {
70719      "name": "fireEvent",
70720      "sig": "(String eventName, Object... args)",
70721      "type": "function",
70722      "desc": "Fires the specified event with the passed parameters (minus the event name)."
70723     },
70724     {
70725      "name": "focus",
70726      "sig": "(Boolean selectText)",
70727      "type": "function",
70728      "desc": "Try to focus this component."
70729     },
70730     {
70731      "name": "getBox",
70732      "sig": "(Boolean local)",
70733      "type": "function",
70734      "desc": "Gets the current box measurements of the component's underlying element."
70735     },
70736     {
70737      "name": "getEl",
70738      "sig": "()",
70739      "type": "function",
70740      "desc": "Returns the underlying {@link Roo.Element}."
70741     },
70742     {
70743      "name": "getId",
70744      "sig": "()",
70745      "type": "function",
70746      "desc": "Returns the id of this component."
70747     },
70748     {
70749      "name": "getName",
70750      "sig": "()",
70751      "type": "function",
70752      "desc": "Returns the name attribute of the field if available"
70753     },
70754     {
70755      "name": "getPosition",
70756      "sig": "(Boolean local)",
70757      "type": "function",
70758      "desc": "Gets the current XY position of the component's underlying element."
70759     },
70760     {
70761      "name": "getRawValue",
70762      "sig": "()",
70763      "type": "function",
70764      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
70765     },
70766     {
70767      "name": "getSize",
70768      "sig": "()",
70769      "type": "function",
70770      "desc": "Gets the current size of the component's underlying element."
70771     },
70772     {
70773      "name": "getValue",
70774      "sig": "()",
70775      "type": "function",
70776      "desc": "Returns the currently selected field value or empty string if no value is set."
70777     },
70778     {
70779      "name": "hasChanged",
70780      "sig": "()",
70781      "type": "function",
70782      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
70783     },
70784     {
70785      "name": "hasListener",
70786      "sig": "(String eventName)",
70787      "type": "function",
70788      "desc": "Checks to see if this object has any listeners for a specified event"
70789     },
70790     {
70791      "name": "hide",
70792      "sig": "()",
70793      "type": "function",
70794      "desc": "Hide this component."
70795     },
70796     {
70797      "name": "isDirty",
70798      "sig": "()",
70799      "type": "function",
70800      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
70801     },
70802     {
70803      "name": "isExpanded",
70804      "sig": "()",
70805      "type": "function",
70806      "desc": "Returns true if the dropdown list is expanded, else false."
70807     },
70808     {
70809      "name": "isValid",
70810      "sig": "(Boolean preventMark)",
70811      "type": "function",
70812      "desc": "Returns whether or not the field value is currently valid"
70813     },
70814     {
70815      "name": "isVisible",
70816      "sig": "()",
70817      "type": "function",
70818      "desc": "Returns true if this component is visible."
70819     },
70820     {
70821      "name": "markInvalid",
70822      "sig": "(String msg)",
70823      "type": "function",
70824      "desc": "Mark this field as invalid"
70825     },
70826     {
70827      "name": "on",
70828      "sig": "(String eventName, Function handler, Object scope, Object options)",
70829      "type": "function",
70830      "desc": "Appends an event handler to this element (shorthand for addListener)"
70831     },
70832     {
70833      "name": "onPosition",
70834      "sig": "(Number x, Number y)",
70835      "type": "function",
70836      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
70837     },
70838     {
70839      "name": "onResize",
70840      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
70841      "type": "function",
70842      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
70843     },
70844     {
70845      "name": "onTriggerClick",
70846      "sig": "(EventObject e)",
70847      "type": "function",
70848      "desc": "The function that should handle the trigger's click event.  This method does nothing by default until overridden\nby an implementing function."
70849     },
70850     {
70851      "name": "purgeListeners",
70852      "sig": "()",
70853      "type": "function",
70854      "desc": "Removes all listeners for this object"
70855     },
70856     {
70857      "name": "releaseCapture",
70858      "sig": "(Observable o)",
70859      "type": "function",
70860      "desc": "Removes <b>all</b> added captures from the Observable."
70861     },
70862     {
70863      "name": "removeListener",
70864      "sig": "(String eventName, Function handler, Object scope)",
70865      "type": "function",
70866      "desc": "Removes a listener"
70867     },
70868     {
70869      "name": "render",
70870      "sig": "(String/HTMLElement/Element container)",
70871      "type": "function",
70872      "desc": "If this is a lazy rendering component, render it to its container element."
70873     },
70874     {
70875      "name": "reset",
70876      "sig": "()",
70877      "type": "function",
70878      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
70879     },
70880     {
70881      "name": "resetHasChanged",
70882      "sig": "()",
70883      "type": "function",
70884      "desc": "stores the current value in loadedValue"
70885     },
70886     {
70887      "name": "select",
70888      "sig": "(Number index, Boolean scrollIntoView)",
70889      "type": "function",
70890      "desc": "Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.\nThe store must be loaded and the list expanded for this function to work, otherwise use setValue."
70891     },
70892     {
70893      "name": "selectByValue",
70894      "sig": "(String value, Boolean scrollIntoView)",
70895      "type": "function",
70896      "desc": "Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.\nThe store must be loaded and the list expanded for this function to work, otherwise use setValue."
70897     },
70898     {
70899      "name": "selectText",
70900      "sig": "(Number start, Number end)",
70901      "type": "function",
70902      "desc": "Selects text in this field"
70903     },
70904     {
70905      "name": "setDisabled",
70906      "sig": "(Boolean disabled)",
70907      "type": "function",
70908      "desc": "Convenience function for setting disabled/enabled by boolean."
70909     },
70910     {
70911      "name": "setEditable",
70912      "sig": "(Boolean value)",
70913      "type": "function",
70914      "desc": "Allow or prevent the user from directly editing the field text.  If false is passed,\nthe user will only be able to select from the items defined in the dropdown list.  This method\nis the runtime equivalent of setting the 'editable' config option at config time."
70915     },
70916     {
70917      "name": "setFromData",
70918      "sig": "(Object value)",
70919      "type": "function",
70920      "desc": "Sets the value of the field based on a object which is related to the record format for the store."
70921     },
70922     {
70923      "name": "setPagePosition",
70924      "sig": "(Number x, Number y)",
70925      "type": "function",
70926      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
70927     },
70928     {
70929      "name": "setPosition",
70930      "sig": "(Number left, Number top)",
70931      "type": "function",
70932      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
70933     },
70934     {
70935      "name": "setRawValue",
70936      "sig": "(Mixed value)",
70937      "type": "function",
70938      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
70939     },
70940     {
70941      "name": "setSize",
70942      "sig": "(Number/Object width, Number height)",
70943      "type": "function",
70944      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
70945     },
70946     {
70947      "name": "setValue",
70948      "sig": "(String value)",
70949      "type": "function",
70950      "desc": "Sets the specified value into the field.  If the value finds a match, the corresponding record text\nwill be displayed in the field.  If the value does not match the data value of an existing item,\nand the valueNotFoundText config option is defined, it will be displayed as the default field text.\nOtherwise the field will be blank (although the value will still be set)."
70951     },
70952     {
70953      "name": "setVisible",
70954      "sig": "(Boolean visible)",
70955      "type": "function",
70956      "desc": "Convenience function to hide or show this component by boolean."
70957     },
70958     {
70959      "name": "show",
70960      "sig": "()",
70961      "type": "function",
70962      "desc": "Show this component."
70963     },
70964     {
70965      "name": "syncSize",
70966      "sig": "()",
70967      "type": "function",
70968      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
70969     },
70970     {
70971      "name": "un",
70972      "sig": "(String eventName, Function handler, Object scope)",
70973      "type": "function",
70974      "desc": "Removes a listener (shorthand for removeListener)"
70975     },
70976     {
70977      "name": "updateBox",
70978      "sig": "(Object box)",
70979      "type": "function",
70980      "desc": "Sets the current box measurements of the component's underlying element."
70981     },
70982     {
70983      "name": "validate",
70984      "sig": "()",
70985      "type": "function",
70986      "desc": "Validates the field value"
70987     },
70988     {
70989      "name": "validateValue",
70990      "sig": "(Mixed value)",
70991      "type": "function",
70992      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
70993     }
70994    ]
70995   },
70996   "Roo.form.Signature": {
70997    "props": [
70998     {
70999      "name": "labels",
71000      "type": "Object",
71001      "desc": "Label to use when rendering a form.\ndefaults to \nlabels : { \n     clear : \"Clear\",\n     confirm : \"Confirm\"\n }",
71002      "memberOf": ""
71003     },
71004     {
71005      "name": "width",
71006      "type": "Number",
71007      "desc": "The signature panel width (defaults to 300)",
71008      "memberOf": ""
71009     },
71010     {
71011      "name": "height",
71012      "type": "Number",
71013      "desc": "The signature panel height (defaults to 100)",
71014      "memberOf": ""
71015     },
71016     {
71017      "name": "allowBlank",
71018      "type": "Boolean",
71019      "desc": "False to validate that the value length > 0 (defaults to false)",
71020      "memberOf": ""
71021     },
71022     {
71023      "name": "fieldLabel",
71024      "type": "String",
71025      "desc": "Label to use when rendering a form.",
71026      "memberOf": "Roo.form.Field"
71027     },
71028     {
71029      "name": "qtip",
71030      "type": "String",
71031      "desc": "Mouse over tip",
71032      "memberOf": "Roo.form.Field"
71033     },
71034     {
71035      "name": "name",
71036      "type": "String",
71037      "desc": "The field's HTML name attribute.",
71038      "memberOf": "Roo.form.Field"
71039     },
71040     {
71041      "name": "invalidClass",
71042      "type": "String",
71043      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
71044      "memberOf": "Roo.form.Field"
71045     },
71046     {
71047      "name": "invalidText",
71048      "type": "String",
71049      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
71050      "memberOf": "Roo.form.Field"
71051     },
71052     {
71053      "name": "focusClass",
71054      "type": "String",
71055      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
71056      "memberOf": "Roo.form.Field"
71057     },
71058     {
71059      "name": "validationEvent",
71060      "type": "String/Boolean",
71061      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
71062      "memberOf": "Roo.form.Field"
71063     },
71064     {
71065      "name": "validateOnBlur",
71066      "type": "Boolean",
71067      "desc": "Whether the field should validate when it loses focus (defaults to true).",
71068      "memberOf": "Roo.form.Field"
71069     },
71070     {
71071      "name": "validationDelay",
71072      "type": "Number",
71073      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
71074      "memberOf": "Roo.form.Field"
71075     },
71076     {
71077      "name": "autoCreate",
71078      "type": "String/Object",
71079      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"20\", autocomplete: \"off\"})",
71080      "memberOf": "Roo.form.Field"
71081     },
71082     {
71083      "name": "fieldClass",
71084      "type": "String",
71085      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
71086      "memberOf": "Roo.form.Field"
71087     },
71088     {
71089      "name": "msgTarget",
71090      "type": "String",
71091      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
71092      "memberOf": "Roo.form.Field"
71093     },
71094     {
71095      "name": "msgFx",
71096      "type": "String",
71097      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
71098      "memberOf": "Roo.form.Field"
71099     },
71100     {
71101      "name": "readOnly",
71102      "type": "Boolean",
71103      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
71104      "memberOf": "Roo.form.Field"
71105     },
71106     {
71107      "name": "disabled",
71108      "type": "Boolean",
71109      "desc": "True to disable the field (defaults to false).",
71110      "memberOf": "Roo.form.Field"
71111     },
71112     {
71113      "name": "inputType",
71114      "type": "String",
71115      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
71116      "memberOf": "Roo.form.Field"
71117     },
71118     {
71119      "name": "tabIndex",
71120      "type": "Number",
71121      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
71122      "memberOf": "Roo.form.Field"
71123     },
71124     {
71125      "name": "value",
71126      "type": "Mixed",
71127      "desc": "A value to initialize this field with.",
71128      "memberOf": "Roo.form.Field"
71129     },
71130     {
71131      "name": "cls",
71132      "type": "String",
71133      "desc": "A CSS class to apply to the field's underlying element.",
71134      "memberOf": "Roo.form.Field"
71135     },
71136     {
71137      "name": "disableClass",
71138      "type": "String",
71139      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
71140      "memberOf": "Roo.Component"
71141     },
71142     {
71143      "name": "allowDomMove",
71144      "type": "Boolean",
71145      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
71146      "memberOf": "Roo.Component"
71147     },
71148     {
71149      "name": "hideMode",
71150      "type": "String",
71151      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
71152      "memberOf": "Roo.Component",
71153      "optvals": [
71154       "display",
71155       "visibility"
71156      ]
71157     },
71158     {
71159      "name": "actionMode",
71160      "type": "String",
71161      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
71162      "memberOf": "Roo.Component"
71163     },
71164     {
71165      "name": "listeners",
71166      "type": "Object",
71167      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
71168      "memberOf": "Roo.util.Observable"
71169     }
71170    ],
71171    "events": [
71172     {
71173      "name": "beforedestroy",
71174      "sig": "function (_self)\n{\n\n}",
71175      "type": "function",
71176      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
71177     },
71178     {
71179      "name": "beforehide",
71180      "sig": "function (_self)\n{\n\n}",
71181      "type": "function",
71182      "desc": "Fires before the component is hidden. Return false to stop the hide."
71183     },
71184     {
71185      "name": "beforerender",
71186      "sig": "function (_self)\n{\n\n}",
71187      "type": "function",
71188      "desc": "Fires before the component is rendered. Return false to stop the render."
71189     },
71190     {
71191      "name": "beforeshow",
71192      "sig": "function (_self)\n{\n\n}",
71193      "type": "function",
71194      "desc": "Fires before the component is shown.  Return false to stop the show."
71195     },
71196     {
71197      "name": "blur",
71198      "sig": "function (_self)\n{\n\n}",
71199      "type": "function",
71200      "desc": "Fires when this field loses input focus."
71201     },
71202     {
71203      "name": "change",
71204      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
71205      "type": "function",
71206      "desc": "Fires just before the field blurs if the field value has changed."
71207     },
71208     {
71209      "name": "confirm",
71210      "sig": "function (combo)\n{\n\n}",
71211      "type": "function",
71212      "desc": "Fires when the 'confirm' icon is pressed (add a listener to enable add button)"
71213     },
71214     {
71215      "name": "destroy",
71216      "sig": "function (_self)\n{\n\n}",
71217      "type": "function",
71218      "desc": "Fires after the component is destroyed."
71219     },
71220     {
71221      "name": "disable",
71222      "sig": "function (_self)\n{\n\n}",
71223      "type": "function",
71224      "desc": "Fires after the component is disabled."
71225     },
71226     {
71227      "name": "enable",
71228      "sig": "function (_self)\n{\n\n}",
71229      "type": "function",
71230      "desc": "Fires after the component is enabled."
71231     },
71232     {
71233      "name": "focus",
71234      "sig": "function (_self)\n{\n\n}",
71235      "type": "function",
71236      "desc": "Fires when this field receives input focus."
71237     },
71238     {
71239      "name": "hide",
71240      "sig": "function (_self)\n{\n\n}",
71241      "type": "function",
71242      "desc": "Fires after the component is hidden."
71243     },
71244     {
71245      "name": "invalid",
71246      "sig": "function (_self, msg)\n{\n\n}",
71247      "type": "function",
71248      "desc": "Fires after the field has been marked as invalid."
71249     },
71250     {
71251      "name": "keyup",
71252      "sig": "function (_self, e)\n{\n\n}",
71253      "type": "function",
71254      "desc": "Fires after the key up"
71255     },
71256     {
71257      "name": "move",
71258      "sig": "function (_self, x, y)\n{\n\n}",
71259      "type": "function",
71260      "desc": "Fires after the component is moved."
71261     },
71262     {
71263      "name": "render",
71264      "sig": "function (_self)\n{\n\n}",
71265      "type": "function",
71266      "desc": "Fires after the component is rendered."
71267     },
71268     {
71269      "name": "reset",
71270      "sig": "function (combo, record)\n{\n\n}",
71271      "type": "function",
71272      "desc": "Fires when the 'edit' icon is pressed (add a listener to enable add button)"
71273     },
71274     {
71275      "name": "resize",
71276      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
71277      "type": "function",
71278      "desc": "Fires after the component is resized."
71279     },
71280     {
71281      "name": "show",
71282      "sig": "function (_self)\n{\n\n}",
71283      "type": "function",
71284      "desc": "Fires after the component is shown."
71285     },
71286     {
71287      "name": "specialkey",
71288      "sig": "function (_self, e)\n{\n\n}",
71289      "type": "function",
71290      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
71291     },
71292     {
71293      "name": "valid",
71294      "sig": "function (_self)\n{\n\n}",
71295      "type": "function",
71296      "desc": "Fires after the field has been validated with no errors."
71297     }
71298    ],
71299    "methods": [
71300     {
71301      "name": "addEvents",
71302      "sig": "(Object object)",
71303      "type": "function",
71304      "desc": "Used to define events on this Observable"
71305     },
71306     {
71307      "name": "addListener",
71308      "sig": "(String eventName, Function handler, Object scope, Object options)",
71309      "type": "function",
71310      "desc": "Appends an event handler to this component"
71311     },
71312     {
71313      "name": "applyTo",
71314      "sig": "(String/HTMLElement/Element el)",
71315      "type": "function",
71316      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
71317     },
71318     {
71319      "name": "capture",
71320      "sig": "(Observable o, Function fn, Object scope)",
71321      "type": "function",
71322      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
71323     },
71324     {
71325      "name": "clearInvalid",
71326      "sig": "()",
71327      "type": "function",
71328      "desc": "Clear any invalid styles/messages for this field"
71329     },
71330     {
71331      "name": "createToolbar",
71332      "sig": "(HtmlEditor editor)",
71333      "type": "function",
71334      "desc": "Protected method that will not generally be called directly. It\nis called when the editor creates its toolbar. Override this method if you need to\nadd custom toolbar buttons."
71335     },
71336     {
71337      "name": "destroy",
71338      "sig": "()",
71339      "type": "function",
71340      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
71341     },
71342     {
71343      "name": "disable",
71344      "sig": "()",
71345      "type": "function",
71346      "desc": "Disable this component."
71347     },
71348     {
71349      "name": "enable",
71350      "sig": "()",
71351      "type": "function",
71352      "desc": "Enable this component."
71353     },
71354     {
71355      "name": "fireEvent",
71356      "sig": "(String eventName, Object... args)",
71357      "type": "function",
71358      "desc": "Fires the specified event with the passed parameters (minus the event name)."
71359     },
71360     {
71361      "name": "focus",
71362      "sig": "(Boolean selectText)",
71363      "type": "function",
71364      "desc": "Try to focus this component."
71365     },
71366     {
71367      "name": "getBox",
71368      "sig": "(Boolean local)",
71369      "type": "function",
71370      "desc": "Gets the current box measurements of the component's underlying element."
71371     },
71372     {
71373      "name": "getConfirmed",
71374      "sig": "()",
71375      "type": "function",
71376      "desc": ""
71377     },
71378     {
71379      "name": "getEl",
71380      "sig": "()",
71381      "type": "function",
71382      "desc": "Returns the underlying {@link Roo.Element}."
71383     },
71384     {
71385      "name": "getHeight",
71386      "sig": "()",
71387      "type": "function",
71388      "desc": ""
71389     },
71390     {
71391      "name": "getId",
71392      "sig": "()",
71393      "type": "function",
71394      "desc": "Returns the id of this component."
71395     },
71396     {
71397      "name": "getImageDataURI",
71398      "sig": "()",
71399      "type": "function",
71400      "desc": "when user is clicked confirm then show this image....."
71401     },
71402     {
71403      "name": "getName",
71404      "sig": "()",
71405      "type": "function",
71406      "desc": "Returns the name attribute of the field if available"
71407     },
71408     {
71409      "name": "getPosition",
71410      "sig": "(Boolean local)",
71411      "type": "function",
71412      "desc": "Gets the current XY position of the component's underlying element."
71413     },
71414     {
71415      "name": "getRawValue",
71416      "sig": "()",
71417      "type": "function",
71418      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
71419     },
71420     {
71421      "name": "getSize",
71422      "sig": "()",
71423      "type": "function",
71424      "desc": "Gets the current size of the component's underlying element."
71425     },
71426     {
71427      "name": "getValue",
71428      "sig": "()",
71429      "type": "function",
71430      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
71431     },
71432     {
71433      "name": "getWidth",
71434      "sig": "()",
71435      "type": "function",
71436      "desc": ""
71437     },
71438     {
71439      "name": "hasChanged",
71440      "sig": "()",
71441      "type": "function",
71442      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
71443     },
71444     {
71445      "name": "hasListener",
71446      "sig": "(String eventName)",
71447      "type": "function",
71448      "desc": "Checks to see if this object has any listeners for a specified event"
71449     },
71450     {
71451      "name": "hide",
71452      "sig": "()",
71453      "type": "function",
71454      "desc": "Hide this component."
71455     },
71456     {
71457      "name": "isDirty",
71458      "sig": "()",
71459      "type": "function",
71460      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
71461     },
71462     {
71463      "name": "isValid",
71464      "sig": "(Boolean preventMark)",
71465      "type": "function",
71466      "desc": "Returns whether or not the field value is currently valid"
71467     },
71468     {
71469      "name": "isVisible",
71470      "sig": "()",
71471      "type": "function",
71472      "desc": "Returns true if this component is visible."
71473     },
71474     {
71475      "name": "markInvalid",
71476      "sig": "(String msg)",
71477      "type": "function",
71478      "desc": "Mark this field as invalid"
71479     },
71480     {
71481      "name": "on",
71482      "sig": "(String eventName, Function handler, Object scope, Object options)",
71483      "type": "function",
71484      "desc": "Appends an event handler to this element (shorthand for addListener)"
71485     },
71486     {
71487      "name": "onPosition",
71488      "sig": "(Number x, Number y)",
71489      "type": "function",
71490      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
71491     },
71492     {
71493      "name": "onResize",
71494      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
71495      "type": "function",
71496      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
71497     },
71498     {
71499      "name": "purgeListeners",
71500      "sig": "()",
71501      "type": "function",
71502      "desc": "Removes all listeners for this object"
71503     },
71504     {
71505      "name": "releaseCapture",
71506      "sig": "(Observable o)",
71507      "type": "function",
71508      "desc": "Removes <b>all</b> added captures from the Observable."
71509     },
71510     {
71511      "name": "removeListener",
71512      "sig": "(String eventName, Function handler, Object scope)",
71513      "type": "function",
71514      "desc": "Removes a listener"
71515     },
71516     {
71517      "name": "render",
71518      "sig": "(String/HTMLElement/Element container)",
71519      "type": "function",
71520      "desc": "If this is a lazy rendering component, render it to its container element."
71521     },
71522     {
71523      "name": "reset",
71524      "sig": "()",
71525      "type": "function",
71526      "desc": "Resets the current field value to the originally loaded value and clears any validation messages"
71527     },
71528     {
71529      "name": "resetHasChanged",
71530      "sig": "()",
71531      "type": "function",
71532      "desc": "stores the current value in loadedValue"
71533     },
71534     {
71535      "name": "setDisabled",
71536      "sig": "(Boolean disabled)",
71537      "type": "function",
71538      "desc": "Convenience function for setting disabled/enabled by boolean."
71539     },
71540     {
71541      "name": "setPagePosition",
71542      "sig": "(Number x, Number y)",
71543      "type": "function",
71544      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
71545     },
71546     {
71547      "name": "setPosition",
71548      "sig": "(Number left, Number top)",
71549      "type": "function",
71550      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
71551     },
71552     {
71553      "name": "setRawValue",
71554      "sig": "(Mixed value)",
71555      "type": "function",
71556      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
71557     },
71558     {
71559      "name": "setSize",
71560      "sig": "(Number/Object width, Number height)",
71561      "type": "function",
71562      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
71563     },
71564     {
71565      "name": "setValue",
71566      "sig": "(Mixed value)",
71567      "type": "function",
71568      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
71569     },
71570     {
71571      "name": "setVisible",
71572      "sig": "(Boolean visible)",
71573      "type": "function",
71574      "desc": "Convenience function to hide or show this component by boolean."
71575     },
71576     {
71577      "name": "show",
71578      "sig": "()",
71579      "type": "function",
71580      "desc": "Show this component."
71581     },
71582     {
71583      "name": "syncSize",
71584      "sig": "()",
71585      "type": "function",
71586      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
71587     },
71588     {
71589      "name": "un",
71590      "sig": "(String eventName, Function handler, Object scope)",
71591      "type": "function",
71592      "desc": "Removes a listener (shorthand for removeListener)"
71593     },
71594     {
71595      "name": "updateBox",
71596      "sig": "(Object box)",
71597      "type": "function",
71598      "desc": "Sets the current box measurements of the component's underlying element."
71599     },
71600     {
71601      "name": "validate",
71602      "sig": "()",
71603      "type": "function",
71604      "desc": "Validates the field value"
71605     }
71606    ]
71607   },
71608   "Roo.form.TextArea": {
71609    "props": [
71610     {
71611      "name": "growMin",
71612      "type": "Number",
71613      "desc": "The minimum height to allow when grow = true (defaults to 60)",
71614      "memberOf": ""
71615     },
71616     {
71617      "name": "growMax",
71618      "type": "Number",
71619      "desc": "The maximum height to allow when grow = true (defaults to 1000)",
71620      "memberOf": ""
71621     },
71622     {
71623      "name": "preventScrollbars",
71624      "type": "Boolean",
71625      "desc": "True to prevent scrollbars from appearing regardless of how much text is\nin the field (equivalent to setting overflow: hidden, defaults to false)",
71626      "memberOf": ""
71627     },
71628     {
71629      "name": "autoCreate",
71630      "type": "String/Object",
71631      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"textarea\", style: \"width:300px;height:60px;\", autocomplete: \"off\"})",
71632      "memberOf": ""
71633     },
71634     {
71635      "name": "grow",
71636      "type": "Boolean",
71637      "desc": "True if this field should automatically grow and shrink to its content",
71638      "memberOf": "Roo.form.TextField"
71639     },
71640     {
71641      "name": "vtype",
71642      "type": "String",
71643      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
71644      "memberOf": "Roo.form.TextField"
71645     },
71646     {
71647      "name": "maskRe",
71648      "type": "String",
71649      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
71650      "memberOf": "Roo.form.TextField"
71651     },
71652     {
71653      "name": "disableKeyFilter",
71654      "type": "Boolean",
71655      "desc": "True to disable input keystroke filtering (defaults to false)",
71656      "memberOf": "Roo.form.TextField"
71657     },
71658     {
71659      "name": "allowBlank",
71660      "type": "Boolean",
71661      "desc": "False to validate that the value length > 0 (defaults to true)",
71662      "memberOf": "Roo.form.TextField"
71663     },
71664     {
71665      "name": "minLength",
71666      "type": "Number",
71667      "desc": "Minimum input field length required (defaults to 0)",
71668      "memberOf": "Roo.form.TextField"
71669     },
71670     {
71671      "name": "maxLength",
71672      "type": "Number",
71673      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
71674      "memberOf": "Roo.form.TextField"
71675     },
71676     {
71677      "name": "minLengthText",
71678      "type": "String",
71679      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
71680      "memberOf": "Roo.form.TextField"
71681     },
71682     {
71683      "name": "maxLengthText",
71684      "type": "String",
71685      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
71686      "memberOf": "Roo.form.TextField"
71687     },
71688     {
71689      "name": "selectOnFocus",
71690      "type": "Boolean",
71691      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
71692      "memberOf": "Roo.form.TextField"
71693     },
71694     {
71695      "name": "blankText",
71696      "type": "String",
71697      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
71698      "memberOf": "Roo.form.TextField"
71699     },
71700     {
71701      "name": "validator",
71702      "type": "Function",
71703      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
71704      "memberOf": "Roo.form.TextField"
71705     },
71706     {
71707      "name": "regex",
71708      "type": "RegExp",
71709      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
71710      "memberOf": "Roo.form.TextField"
71711     },
71712     {
71713      "name": "regexText",
71714      "type": "String",
71715      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
71716      "memberOf": "Roo.form.TextField"
71717     },
71718     {
71719      "name": "emptyText",
71720      "type": "String",
71721      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
71722      "memberOf": "Roo.form.TextField"
71723     },
71724     {
71725      "name": "fieldLabel",
71726      "type": "String",
71727      "desc": "Label to use when rendering a form.",
71728      "memberOf": "Roo.form.Field"
71729     },
71730     {
71731      "name": "qtip",
71732      "type": "String",
71733      "desc": "Mouse over tip",
71734      "memberOf": "Roo.form.Field"
71735     },
71736     {
71737      "name": "name",
71738      "type": "String",
71739      "desc": "The field's HTML name attribute.",
71740      "memberOf": "Roo.form.Field"
71741     },
71742     {
71743      "name": "invalidClass",
71744      "type": "String",
71745      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
71746      "memberOf": "Roo.form.Field"
71747     },
71748     {
71749      "name": "invalidText",
71750      "type": "String",
71751      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
71752      "memberOf": "Roo.form.Field"
71753     },
71754     {
71755      "name": "focusClass",
71756      "type": "String",
71757      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
71758      "memberOf": "Roo.form.Field"
71759     },
71760     {
71761      "name": "validationEvent",
71762      "type": "String/Boolean",
71763      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
71764      "memberOf": "Roo.form.Field"
71765     },
71766     {
71767      "name": "validateOnBlur",
71768      "type": "Boolean",
71769      "desc": "Whether the field should validate when it loses focus (defaults to true).",
71770      "memberOf": "Roo.form.Field"
71771     },
71772     {
71773      "name": "validationDelay",
71774      "type": "Number",
71775      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
71776      "memberOf": "Roo.form.Field"
71777     },
71778     {
71779      "name": "fieldClass",
71780      "type": "String",
71781      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
71782      "memberOf": "Roo.form.Field"
71783     },
71784     {
71785      "name": "msgTarget",
71786      "type": "String",
71787      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
71788      "memberOf": "Roo.form.Field"
71789     },
71790     {
71791      "name": "msgFx",
71792      "type": "String",
71793      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
71794      "memberOf": "Roo.form.Field"
71795     },
71796     {
71797      "name": "readOnly",
71798      "type": "Boolean",
71799      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
71800      "memberOf": "Roo.form.Field"
71801     },
71802     {
71803      "name": "disabled",
71804      "type": "Boolean",
71805      "desc": "True to disable the field (defaults to false).",
71806      "memberOf": "Roo.form.Field"
71807     },
71808     {
71809      "name": "inputType",
71810      "type": "String",
71811      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
71812      "memberOf": "Roo.form.Field"
71813     },
71814     {
71815      "name": "tabIndex",
71816      "type": "Number",
71817      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
71818      "memberOf": "Roo.form.Field"
71819     },
71820     {
71821      "name": "value",
71822      "type": "Mixed",
71823      "desc": "A value to initialize this field with.",
71824      "memberOf": "Roo.form.Field"
71825     },
71826     {
71827      "name": "cls",
71828      "type": "String",
71829      "desc": "A CSS class to apply to the field's underlying element.",
71830      "memberOf": "Roo.form.Field"
71831     },
71832     {
71833      "name": "width",
71834      "type": "Number",
71835      "desc": "width (optional) size of component",
71836      "memberOf": "Roo.BoxComponent"
71837     },
71838     {
71839      "name": "height",
71840      "type": "Number",
71841      "desc": "height (optional) size of component",
71842      "memberOf": "Roo.BoxComponent"
71843     },
71844     {
71845      "name": "disableClass",
71846      "type": "String",
71847      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
71848      "memberOf": "Roo.Component"
71849     },
71850     {
71851      "name": "allowDomMove",
71852      "type": "Boolean",
71853      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
71854      "memberOf": "Roo.Component"
71855     },
71856     {
71857      "name": "hideMode",
71858      "type": "String",
71859      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
71860      "memberOf": "Roo.Component",
71861      "optvals": [
71862       "display",
71863       "visibility"
71864      ]
71865     },
71866     {
71867      "name": "actionMode",
71868      "type": "String",
71869      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
71870      "memberOf": "Roo.Component"
71871     },
71872     {
71873      "name": "listeners",
71874      "type": "Object",
71875      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
71876      "memberOf": "Roo.util.Observable"
71877     }
71878    ],
71879    "events": [
71880     {
71881      "name": "autosize",
71882      "sig": "function (_self, width)\n{\n\n}",
71883      "type": "function",
71884      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
71885     },
71886     {
71887      "name": "beforedestroy",
71888      "sig": "function (_self)\n{\n\n}",
71889      "type": "function",
71890      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
71891     },
71892     {
71893      "name": "beforehide",
71894      "sig": "function (_self)\n{\n\n}",
71895      "type": "function",
71896      "desc": "Fires before the component is hidden. Return false to stop the hide."
71897     },
71898     {
71899      "name": "beforerender",
71900      "sig": "function (_self)\n{\n\n}",
71901      "type": "function",
71902      "desc": "Fires before the component is rendered. Return false to stop the render."
71903     },
71904     {
71905      "name": "beforeshow",
71906      "sig": "function (_self)\n{\n\n}",
71907      "type": "function",
71908      "desc": "Fires before the component is shown.  Return false to stop the show."
71909     },
71910     {
71911      "name": "blur",
71912      "sig": "function (_self)\n{\n\n}",
71913      "type": "function",
71914      "desc": "Fires when this field loses input focus."
71915     },
71916     {
71917      "name": "change",
71918      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
71919      "type": "function",
71920      "desc": "Fires just before the field blurs if the field value has changed."
71921     },
71922     {
71923      "name": "destroy",
71924      "sig": "function (_self)\n{\n\n}",
71925      "type": "function",
71926      "desc": "Fires after the component is destroyed."
71927     },
71928     {
71929      "name": "disable",
71930      "sig": "function (_self)\n{\n\n}",
71931      "type": "function",
71932      "desc": "Fires after the component is disabled."
71933     },
71934     {
71935      "name": "enable",
71936      "sig": "function (_self)\n{\n\n}",
71937      "type": "function",
71938      "desc": "Fires after the component is enabled."
71939     },
71940     {
71941      "name": "focus",
71942      "sig": "function (_self)\n{\n\n}",
71943      "type": "function",
71944      "desc": "Fires when this field receives input focus."
71945     },
71946     {
71947      "name": "hide",
71948      "sig": "function (_self)\n{\n\n}",
71949      "type": "function",
71950      "desc": "Fires after the component is hidden."
71951     },
71952     {
71953      "name": "invalid",
71954      "sig": "function (_self, msg)\n{\n\n}",
71955      "type": "function",
71956      "desc": "Fires after the field has been marked as invalid."
71957     },
71958     {
71959      "name": "keyup",
71960      "sig": "function (_self, e)\n{\n\n}",
71961      "type": "function",
71962      "desc": "Fires after the key up"
71963     },
71964     {
71965      "name": "move",
71966      "sig": "function (_self, x, y)\n{\n\n}",
71967      "type": "function",
71968      "desc": "Fires after the component is moved."
71969     },
71970     {
71971      "name": "render",
71972      "sig": "function (_self)\n{\n\n}",
71973      "type": "function",
71974      "desc": "Fires after the component is rendered."
71975     },
71976     {
71977      "name": "resize",
71978      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
71979      "type": "function",
71980      "desc": "Fires after the component is resized."
71981     },
71982     {
71983      "name": "show",
71984      "sig": "function (_self)\n{\n\n}",
71985      "type": "function",
71986      "desc": "Fires after the component is shown."
71987     },
71988     {
71989      "name": "specialkey",
71990      "sig": "function (_self, e)\n{\n\n}",
71991      "type": "function",
71992      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
71993     },
71994     {
71995      "name": "valid",
71996      "sig": "function (_self)\n{\n\n}",
71997      "type": "function",
71998      "desc": "Fires after the field has been validated with no errors."
71999     }
72000    ],
72001    "methods": [
72002     {
72003      "name": "addEvents",
72004      "sig": "(Object object)",
72005      "type": "function",
72006      "desc": "Used to define events on this Observable"
72007     },
72008     {
72009      "name": "addListener",
72010      "sig": "(String eventName, Function handler, Object scope, Object options)",
72011      "type": "function",
72012      "desc": "Appends an event handler to this component"
72013     },
72014     {
72015      "name": "applyTo",
72016      "sig": "(String/HTMLElement/Element el)",
72017      "type": "function",
72018      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
72019     },
72020     {
72021      "name": "autoSize",
72022      "sig": "()",
72023      "type": "function",
72024      "desc": "Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.\nThis only takes effect if grow = true, and fires the autosize event if the height changes."
72025     },
72026     {
72027      "name": "capture",
72028      "sig": "(Observable o, Function fn, Object scope)",
72029      "type": "function",
72030      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
72031     },
72032     {
72033      "name": "clearInvalid",
72034      "sig": "()",
72035      "type": "function",
72036      "desc": "Clear any invalid styles/messages for this field"
72037     },
72038     {
72039      "name": "destroy",
72040      "sig": "()",
72041      "type": "function",
72042      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
72043     },
72044     {
72045      "name": "disable",
72046      "sig": "()",
72047      "type": "function",
72048      "desc": "Disable this component."
72049     },
72050     {
72051      "name": "enable",
72052      "sig": "()",
72053      "type": "function",
72054      "desc": "Enable this component."
72055     },
72056     {
72057      "name": "fireEvent",
72058      "sig": "(String eventName, Object... args)",
72059      "type": "function",
72060      "desc": "Fires the specified event with the passed parameters (minus the event name)."
72061     },
72062     {
72063      "name": "focus",
72064      "sig": "(Boolean selectText)",
72065      "type": "function",
72066      "desc": "Try to focus this component."
72067     },
72068     {
72069      "name": "getBox",
72070      "sig": "(Boolean local)",
72071      "type": "function",
72072      "desc": "Gets the current box measurements of the component's underlying element."
72073     },
72074     {
72075      "name": "getEl",
72076      "sig": "()",
72077      "type": "function",
72078      "desc": "Returns the underlying {@link Roo.Element}."
72079     },
72080     {
72081      "name": "getId",
72082      "sig": "()",
72083      "type": "function",
72084      "desc": "Returns the id of this component."
72085     },
72086     {
72087      "name": "getName",
72088      "sig": "()",
72089      "type": "function",
72090      "desc": "Returns the name attribute of the field if available"
72091     },
72092     {
72093      "name": "getPosition",
72094      "sig": "(Boolean local)",
72095      "type": "function",
72096      "desc": "Gets the current XY position of the component's underlying element."
72097     },
72098     {
72099      "name": "getRawValue",
72100      "sig": "()",
72101      "type": "function",
72102      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
72103     },
72104     {
72105      "name": "getSize",
72106      "sig": "()",
72107      "type": "function",
72108      "desc": "Gets the current size of the component's underlying element."
72109     },
72110     {
72111      "name": "getValue",
72112      "sig": "()",
72113      "type": "function",
72114      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
72115     },
72116     {
72117      "name": "hasChanged",
72118      "sig": "()",
72119      "type": "function",
72120      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
72121     },
72122     {
72123      "name": "hasListener",
72124      "sig": "(String eventName)",
72125      "type": "function",
72126      "desc": "Checks to see if this object has any listeners for a specified event"
72127     },
72128     {
72129      "name": "hide",
72130      "sig": "()",
72131      "type": "function",
72132      "desc": "Hide this component."
72133     },
72134     {
72135      "name": "isDirty",
72136      "sig": "()",
72137      "type": "function",
72138      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
72139     },
72140     {
72141      "name": "isValid",
72142      "sig": "(Boolean preventMark)",
72143      "type": "function",
72144      "desc": "Returns whether or not the field value is currently valid"
72145     },
72146     {
72147      "name": "isVisible",
72148      "sig": "()",
72149      "type": "function",
72150      "desc": "Returns true if this component is visible."
72151     },
72152     {
72153      "name": "markInvalid",
72154      "sig": "(String msg)",
72155      "type": "function",
72156      "desc": "Mark this field as invalid"
72157     },
72158     {
72159      "name": "on",
72160      "sig": "(String eventName, Function handler, Object scope, Object options)",
72161      "type": "function",
72162      "desc": "Appends an event handler to this element (shorthand for addListener)"
72163     },
72164     {
72165      "name": "onPosition",
72166      "sig": "(Number x, Number y)",
72167      "type": "function",
72168      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
72169     },
72170     {
72171      "name": "onResize",
72172      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
72173      "type": "function",
72174      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
72175     },
72176     {
72177      "name": "purgeListeners",
72178      "sig": "()",
72179      "type": "function",
72180      "desc": "Removes all listeners for this object"
72181     },
72182     {
72183      "name": "releaseCapture",
72184      "sig": "(Observable o)",
72185      "type": "function",
72186      "desc": "Removes <b>all</b> added captures from the Observable."
72187     },
72188     {
72189      "name": "removeListener",
72190      "sig": "(String eventName, Function handler, Object scope)",
72191      "type": "function",
72192      "desc": "Removes a listener"
72193     },
72194     {
72195      "name": "render",
72196      "sig": "(String/HTMLElement/Element container)",
72197      "type": "function",
72198      "desc": "If this is a lazy rendering component, render it to its container element."
72199     },
72200     {
72201      "name": "reset",
72202      "sig": "()",
72203      "type": "function",
72204      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
72205     },
72206     {
72207      "name": "resetHasChanged",
72208      "sig": "()",
72209      "type": "function",
72210      "desc": "stores the current value in loadedValue"
72211     },
72212     {
72213      "name": "selectText",
72214      "sig": "(Number start, Number end)",
72215      "type": "function",
72216      "desc": "Selects text in this field"
72217     },
72218     {
72219      "name": "setDisabled",
72220      "sig": "(Boolean disabled)",
72221      "type": "function",
72222      "desc": "Convenience function for setting disabled/enabled by boolean."
72223     },
72224     {
72225      "name": "setPagePosition",
72226      "sig": "(Number x, Number y)",
72227      "type": "function",
72228      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
72229     },
72230     {
72231      "name": "setPosition",
72232      "sig": "(Number left, Number top)",
72233      "type": "function",
72234      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
72235     },
72236     {
72237      "name": "setRawValue",
72238      "sig": "(Mixed value)",
72239      "type": "function",
72240      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
72241     },
72242     {
72243      "name": "setSize",
72244      "sig": "(Number/Object width, Number height)",
72245      "type": "function",
72246      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
72247     },
72248     {
72249      "name": "setValue",
72250      "sig": "(Mixed value)",
72251      "type": "function",
72252      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
72253     },
72254     {
72255      "name": "setVisible",
72256      "sig": "(Boolean visible)",
72257      "type": "function",
72258      "desc": "Convenience function to hide or show this component by boolean."
72259     },
72260     {
72261      "name": "show",
72262      "sig": "()",
72263      "type": "function",
72264      "desc": "Show this component."
72265     },
72266     {
72267      "name": "syncSize",
72268      "sig": "()",
72269      "type": "function",
72270      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
72271     },
72272     {
72273      "name": "un",
72274      "sig": "(String eventName, Function handler, Object scope)",
72275      "type": "function",
72276      "desc": "Removes a listener (shorthand for removeListener)"
72277     },
72278     {
72279      "name": "updateBox",
72280      "sig": "(Object box)",
72281      "type": "function",
72282      "desc": "Sets the current box measurements of the component's underlying element."
72283     },
72284     {
72285      "name": "validate",
72286      "sig": "()",
72287      "type": "function",
72288      "desc": "Validates the field value"
72289     },
72290     {
72291      "name": "validateValue",
72292      "sig": "(Mixed value)",
72293      "type": "function",
72294      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
72295     }
72296    ]
72297   },
72298   "Roo.form.TextField": {
72299    "props": [
72300     {
72301      "name": "grow",
72302      "type": "Boolean",
72303      "desc": "True if this field should automatically grow and shrink to its content",
72304      "memberOf": ""
72305     },
72306     {
72307      "name": "growMin",
72308      "type": "Number",
72309      "desc": "The minimum width to allow when grow = true (defaults to 30)",
72310      "memberOf": ""
72311     },
72312     {
72313      "name": "growMax",
72314      "type": "Number",
72315      "desc": "The maximum width to allow when grow = true (defaults to 800)",
72316      "memberOf": ""
72317     },
72318     {
72319      "name": "vtype",
72320      "type": "String",
72321      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
72322      "memberOf": ""
72323     },
72324     {
72325      "name": "maskRe",
72326      "type": "String",
72327      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
72328      "memberOf": ""
72329     },
72330     {
72331      "name": "disableKeyFilter",
72332      "type": "Boolean",
72333      "desc": "True to disable input keystroke filtering (defaults to false)",
72334      "memberOf": ""
72335     },
72336     {
72337      "name": "allowBlank",
72338      "type": "Boolean",
72339      "desc": "False to validate that the value length > 0 (defaults to true)",
72340      "memberOf": ""
72341     },
72342     {
72343      "name": "minLength",
72344      "type": "Number",
72345      "desc": "Minimum input field length required (defaults to 0)",
72346      "memberOf": ""
72347     },
72348     {
72349      "name": "maxLength",
72350      "type": "Number",
72351      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
72352      "memberOf": ""
72353     },
72354     {
72355      "name": "minLengthText",
72356      "type": "String",
72357      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
72358      "memberOf": ""
72359     },
72360     {
72361      "name": "maxLengthText",
72362      "type": "String",
72363      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
72364      "memberOf": ""
72365     },
72366     {
72367      "name": "selectOnFocus",
72368      "type": "Boolean",
72369      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
72370      "memberOf": ""
72371     },
72372     {
72373      "name": "blankText",
72374      "type": "String",
72375      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
72376      "memberOf": ""
72377     },
72378     {
72379      "name": "validator",
72380      "type": "Function",
72381      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
72382      "memberOf": ""
72383     },
72384     {
72385      "name": "regex",
72386      "type": "RegExp",
72387      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
72388      "memberOf": ""
72389     },
72390     {
72391      "name": "regexText",
72392      "type": "String",
72393      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
72394      "memberOf": ""
72395     },
72396     {
72397      "name": "emptyText",
72398      "type": "String",
72399      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
72400      "memberOf": ""
72401     },
72402     {
72403      "name": "fieldLabel",
72404      "type": "String",
72405      "desc": "Label to use when rendering a form.",
72406      "memberOf": "Roo.form.Field"
72407     },
72408     {
72409      "name": "qtip",
72410      "type": "String",
72411      "desc": "Mouse over tip",
72412      "memberOf": "Roo.form.Field"
72413     },
72414     {
72415      "name": "name",
72416      "type": "String",
72417      "desc": "The field's HTML name attribute.",
72418      "memberOf": "Roo.form.Field"
72419     },
72420     {
72421      "name": "invalidClass",
72422      "type": "String",
72423      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
72424      "memberOf": "Roo.form.Field"
72425     },
72426     {
72427      "name": "invalidText",
72428      "type": "String",
72429      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
72430      "memberOf": "Roo.form.Field"
72431     },
72432     {
72433      "name": "focusClass",
72434      "type": "String",
72435      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
72436      "memberOf": "Roo.form.Field"
72437     },
72438     {
72439      "name": "validationEvent",
72440      "type": "String/Boolean",
72441      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
72442      "memberOf": "Roo.form.Field"
72443     },
72444     {
72445      "name": "validateOnBlur",
72446      "type": "Boolean",
72447      "desc": "Whether the field should validate when it loses focus (defaults to true).",
72448      "memberOf": "Roo.form.Field"
72449     },
72450     {
72451      "name": "validationDelay",
72452      "type": "Number",
72453      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
72454      "memberOf": "Roo.form.Field"
72455     },
72456     {
72457      "name": "autoCreate",
72458      "type": "String/Object",
72459      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"20\", autocomplete: \"off\"})",
72460      "memberOf": "Roo.form.Field"
72461     },
72462     {
72463      "name": "fieldClass",
72464      "type": "String",
72465      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
72466      "memberOf": "Roo.form.Field"
72467     },
72468     {
72469      "name": "msgTarget",
72470      "type": "String",
72471      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
72472      "memberOf": "Roo.form.Field"
72473     },
72474     {
72475      "name": "msgFx",
72476      "type": "String",
72477      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
72478      "memberOf": "Roo.form.Field"
72479     },
72480     {
72481      "name": "readOnly",
72482      "type": "Boolean",
72483      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
72484      "memberOf": "Roo.form.Field"
72485     },
72486     {
72487      "name": "disabled",
72488      "type": "Boolean",
72489      "desc": "True to disable the field (defaults to false).",
72490      "memberOf": "Roo.form.Field"
72491     },
72492     {
72493      "name": "inputType",
72494      "type": "String",
72495      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
72496      "memberOf": "Roo.form.Field"
72497     },
72498     {
72499      "name": "tabIndex",
72500      "type": "Number",
72501      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
72502      "memberOf": "Roo.form.Field"
72503     },
72504     {
72505      "name": "value",
72506      "type": "Mixed",
72507      "desc": "A value to initialize this field with.",
72508      "memberOf": "Roo.form.Field"
72509     },
72510     {
72511      "name": "cls",
72512      "type": "String",
72513      "desc": "A CSS class to apply to the field's underlying element.",
72514      "memberOf": "Roo.form.Field"
72515     },
72516     {
72517      "name": "width",
72518      "type": "Number",
72519      "desc": "width (optional) size of component",
72520      "memberOf": "Roo.BoxComponent"
72521     },
72522     {
72523      "name": "height",
72524      "type": "Number",
72525      "desc": "height (optional) size of component",
72526      "memberOf": "Roo.BoxComponent"
72527     },
72528     {
72529      "name": "disableClass",
72530      "type": "String",
72531      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
72532      "memberOf": "Roo.Component"
72533     },
72534     {
72535      "name": "allowDomMove",
72536      "type": "Boolean",
72537      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
72538      "memberOf": "Roo.Component"
72539     },
72540     {
72541      "name": "hideMode",
72542      "type": "String",
72543      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
72544      "memberOf": "Roo.Component",
72545      "optvals": [
72546       "display",
72547       "visibility"
72548      ]
72549     },
72550     {
72551      "name": "actionMode",
72552      "type": "String",
72553      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
72554      "memberOf": "Roo.Component"
72555     },
72556     {
72557      "name": "listeners",
72558      "type": "Object",
72559      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
72560      "memberOf": "Roo.util.Observable"
72561     }
72562    ],
72563    "events": [
72564     {
72565      "name": "autosize",
72566      "sig": "function (_self, width)\n{\n\n}",
72567      "type": "function",
72568      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
72569     },
72570     {
72571      "name": "beforedestroy",
72572      "sig": "function (_self)\n{\n\n}",
72573      "type": "function",
72574      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
72575     },
72576     {
72577      "name": "beforehide",
72578      "sig": "function (_self)\n{\n\n}",
72579      "type": "function",
72580      "desc": "Fires before the component is hidden. Return false to stop the hide."
72581     },
72582     {
72583      "name": "beforerender",
72584      "sig": "function (_self)\n{\n\n}",
72585      "type": "function",
72586      "desc": "Fires before the component is rendered. Return false to stop the render."
72587     },
72588     {
72589      "name": "beforeshow",
72590      "sig": "function (_self)\n{\n\n}",
72591      "type": "function",
72592      "desc": "Fires before the component is shown.  Return false to stop the show."
72593     },
72594     {
72595      "name": "blur",
72596      "sig": "function (_self)\n{\n\n}",
72597      "type": "function",
72598      "desc": "Fires when this field loses input focus."
72599     },
72600     {
72601      "name": "change",
72602      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
72603      "type": "function",
72604      "desc": "Fires just before the field blurs if the field value has changed."
72605     },
72606     {
72607      "name": "destroy",
72608      "sig": "function (_self)\n{\n\n}",
72609      "type": "function",
72610      "desc": "Fires after the component is destroyed."
72611     },
72612     {
72613      "name": "disable",
72614      "sig": "function (_self)\n{\n\n}",
72615      "type": "function",
72616      "desc": "Fires after the component is disabled."
72617     },
72618     {
72619      "name": "enable",
72620      "sig": "function (_self)\n{\n\n}",
72621      "type": "function",
72622      "desc": "Fires after the component is enabled."
72623     },
72624     {
72625      "name": "focus",
72626      "sig": "function (_self)\n{\n\n}",
72627      "type": "function",
72628      "desc": "Fires when this field receives input focus."
72629     },
72630     {
72631      "name": "hide",
72632      "sig": "function (_self)\n{\n\n}",
72633      "type": "function",
72634      "desc": "Fires after the component is hidden."
72635     },
72636     {
72637      "name": "invalid",
72638      "sig": "function (_self, msg)\n{\n\n}",
72639      "type": "function",
72640      "desc": "Fires after the field has been marked as invalid."
72641     },
72642     {
72643      "name": "keyup",
72644      "sig": "function (_self, e)\n{\n\n}",
72645      "type": "function",
72646      "desc": "Fires after the key up"
72647     },
72648     {
72649      "name": "move",
72650      "sig": "function (_self, x, y)\n{\n\n}",
72651      "type": "function",
72652      "desc": "Fires after the component is moved."
72653     },
72654     {
72655      "name": "render",
72656      "sig": "function (_self)\n{\n\n}",
72657      "type": "function",
72658      "desc": "Fires after the component is rendered."
72659     },
72660     {
72661      "name": "resize",
72662      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
72663      "type": "function",
72664      "desc": "Fires after the component is resized."
72665     },
72666     {
72667      "name": "show",
72668      "sig": "function (_self)\n{\n\n}",
72669      "type": "function",
72670      "desc": "Fires after the component is shown."
72671     },
72672     {
72673      "name": "specialkey",
72674      "sig": "function (_self, e)\n{\n\n}",
72675      "type": "function",
72676      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
72677     },
72678     {
72679      "name": "valid",
72680      "sig": "function (_self)\n{\n\n}",
72681      "type": "function",
72682      "desc": "Fires after the field has been validated with no errors."
72683     }
72684    ],
72685    "methods": [
72686     {
72687      "name": "addEvents",
72688      "sig": "(Object object)",
72689      "type": "function",
72690      "desc": "Used to define events on this Observable"
72691     },
72692     {
72693      "name": "addListener",
72694      "sig": "(String eventName, Function handler, Object scope, Object options)",
72695      "type": "function",
72696      "desc": "Appends an event handler to this component"
72697     },
72698     {
72699      "name": "applyTo",
72700      "sig": "(String/HTMLElement/Element el)",
72701      "type": "function",
72702      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
72703     },
72704     {
72705      "name": "autoSize",
72706      "sig": "()",
72707      "type": "function",
72708      "desc": "Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.\nThis only takes effect if grow = true, and fires the autosize event."
72709     },
72710     {
72711      "name": "capture",
72712      "sig": "(Observable o, Function fn, Object scope)",
72713      "type": "function",
72714      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
72715     },
72716     {
72717      "name": "clearInvalid",
72718      "sig": "()",
72719      "type": "function",
72720      "desc": "Clear any invalid styles/messages for this field"
72721     },
72722     {
72723      "name": "destroy",
72724      "sig": "()",
72725      "type": "function",
72726      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
72727     },
72728     {
72729      "name": "disable",
72730      "sig": "()",
72731      "type": "function",
72732      "desc": "Disable this component."
72733     },
72734     {
72735      "name": "enable",
72736      "sig": "()",
72737      "type": "function",
72738      "desc": "Enable this component."
72739     },
72740     {
72741      "name": "fireEvent",
72742      "sig": "(String eventName, Object... args)",
72743      "type": "function",
72744      "desc": "Fires the specified event with the passed parameters (minus the event name)."
72745     },
72746     {
72747      "name": "focus",
72748      "sig": "(Boolean selectText)",
72749      "type": "function",
72750      "desc": "Try to focus this component."
72751     },
72752     {
72753      "name": "getBox",
72754      "sig": "(Boolean local)",
72755      "type": "function",
72756      "desc": "Gets the current box measurements of the component's underlying element."
72757     },
72758     {
72759      "name": "getEl",
72760      "sig": "()",
72761      "type": "function",
72762      "desc": "Returns the underlying {@link Roo.Element}."
72763     },
72764     {
72765      "name": "getId",
72766      "sig": "()",
72767      "type": "function",
72768      "desc": "Returns the id of this component."
72769     },
72770     {
72771      "name": "getName",
72772      "sig": "()",
72773      "type": "function",
72774      "desc": "Returns the name attribute of the field if available"
72775     },
72776     {
72777      "name": "getPosition",
72778      "sig": "(Boolean local)",
72779      "type": "function",
72780      "desc": "Gets the current XY position of the component's underlying element."
72781     },
72782     {
72783      "name": "getRawValue",
72784      "sig": "()",
72785      "type": "function",
72786      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
72787     },
72788     {
72789      "name": "getSize",
72790      "sig": "()",
72791      "type": "function",
72792      "desc": "Gets the current size of the component's underlying element."
72793     },
72794     {
72795      "name": "getValue",
72796      "sig": "()",
72797      "type": "function",
72798      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
72799     },
72800     {
72801      "name": "hasChanged",
72802      "sig": "()",
72803      "type": "function",
72804      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
72805     },
72806     {
72807      "name": "hasListener",
72808      "sig": "(String eventName)",
72809      "type": "function",
72810      "desc": "Checks to see if this object has any listeners for a specified event"
72811     },
72812     {
72813      "name": "hide",
72814      "sig": "()",
72815      "type": "function",
72816      "desc": "Hide this component."
72817     },
72818     {
72819      "name": "isDirty",
72820      "sig": "()",
72821      "type": "function",
72822      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
72823     },
72824     {
72825      "name": "isValid",
72826      "sig": "(Boolean preventMark)",
72827      "type": "function",
72828      "desc": "Returns whether or not the field value is currently valid"
72829     },
72830     {
72831      "name": "isVisible",
72832      "sig": "()",
72833      "type": "function",
72834      "desc": "Returns true if this component is visible."
72835     },
72836     {
72837      "name": "markInvalid",
72838      "sig": "(String msg)",
72839      "type": "function",
72840      "desc": "Mark this field as invalid"
72841     },
72842     {
72843      "name": "on",
72844      "sig": "(String eventName, Function handler, Object scope, Object options)",
72845      "type": "function",
72846      "desc": "Appends an event handler to this element (shorthand for addListener)"
72847     },
72848     {
72849      "name": "onPosition",
72850      "sig": "(Number x, Number y)",
72851      "type": "function",
72852      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
72853     },
72854     {
72855      "name": "onResize",
72856      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
72857      "type": "function",
72858      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
72859     },
72860     {
72861      "name": "purgeListeners",
72862      "sig": "()",
72863      "type": "function",
72864      "desc": "Removes all listeners for this object"
72865     },
72866     {
72867      "name": "releaseCapture",
72868      "sig": "(Observable o)",
72869      "type": "function",
72870      "desc": "Removes <b>all</b> added captures from the Observable."
72871     },
72872     {
72873      "name": "removeListener",
72874      "sig": "(String eventName, Function handler, Object scope)",
72875      "type": "function",
72876      "desc": "Removes a listener"
72877     },
72878     {
72879      "name": "render",
72880      "sig": "(String/HTMLElement/Element container)",
72881      "type": "function",
72882      "desc": "If this is a lazy rendering component, render it to its container element."
72883     },
72884     {
72885      "name": "reset",
72886      "sig": "()",
72887      "type": "function",
72888      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
72889     },
72890     {
72891      "name": "resetHasChanged",
72892      "sig": "()",
72893      "type": "function",
72894      "desc": "stores the current value in loadedValue"
72895     },
72896     {
72897      "name": "selectText",
72898      "sig": "(Number start, Number end)",
72899      "type": "function",
72900      "desc": "Selects text in this field"
72901     },
72902     {
72903      "name": "setDisabled",
72904      "sig": "(Boolean disabled)",
72905      "type": "function",
72906      "desc": "Convenience function for setting disabled/enabled by boolean."
72907     },
72908     {
72909      "name": "setPagePosition",
72910      "sig": "(Number x, Number y)",
72911      "type": "function",
72912      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
72913     },
72914     {
72915      "name": "setPosition",
72916      "sig": "(Number left, Number top)",
72917      "type": "function",
72918      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
72919     },
72920     {
72921      "name": "setRawValue",
72922      "sig": "(Mixed value)",
72923      "type": "function",
72924      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
72925     },
72926     {
72927      "name": "setSize",
72928      "sig": "(Number/Object width, Number height)",
72929      "type": "function",
72930      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
72931     },
72932     {
72933      "name": "setValue",
72934      "sig": "(Mixed value)",
72935      "type": "function",
72936      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
72937     },
72938     {
72939      "name": "setVisible",
72940      "sig": "(Boolean visible)",
72941      "type": "function",
72942      "desc": "Convenience function to hide or show this component by boolean."
72943     },
72944     {
72945      "name": "show",
72946      "sig": "()",
72947      "type": "function",
72948      "desc": "Show this component."
72949     },
72950     {
72951      "name": "syncSize",
72952      "sig": "()",
72953      "type": "function",
72954      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
72955     },
72956     {
72957      "name": "un",
72958      "sig": "(String eventName, Function handler, Object scope)",
72959      "type": "function",
72960      "desc": "Removes a listener (shorthand for removeListener)"
72961     },
72962     {
72963      "name": "updateBox",
72964      "sig": "(Object box)",
72965      "type": "function",
72966      "desc": "Sets the current box measurements of the component's underlying element."
72967     },
72968     {
72969      "name": "validate",
72970      "sig": "()",
72971      "type": "function",
72972      "desc": "Validates the field value"
72973     },
72974     {
72975      "name": "validateValue",
72976      "sig": "(Mixed value)",
72977      "type": "function",
72978      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
72979     }
72980    ]
72981   },
72982   "Roo.form.TriggerField": {
72983    "props": [
72984     {
72985      "name": "triggerClass",
72986      "type": "String",
72987      "desc": "An additional CSS class used to style the trigger button.  The trigger will always get the\nclass 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.",
72988      "memberOf": ""
72989     },
72990     {
72991      "name": "autoCreate",
72992      "type": "String/Object",
72993      "desc": "A DomHelper element spec, or true for a default element spec (defaults to\n{tag: \"input\", type: \"text\", size: \"16\", autocomplete: \"off\"})",
72994      "memberOf": ""
72995     },
72996     {
72997      "name": "hideTrigger",
72998      "type": "Boolean",
72999      "desc": "True to hide the trigger element and display only the base text field (defaults to false)",
73000      "memberOf": ""
73001     },
73002     {
73003      "name": "vtype",
73004      "type": "String",
73005      "desc": "A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)",
73006      "memberOf": "Roo.form.TextField"
73007     },
73008     {
73009      "name": "maskRe",
73010      "type": "String",
73011      "desc": "An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)",
73012      "memberOf": "Roo.form.TextField"
73013     },
73014     {
73015      "name": "disableKeyFilter",
73016      "type": "Boolean",
73017      "desc": "True to disable input keystroke filtering (defaults to false)",
73018      "memberOf": "Roo.form.TextField"
73019     },
73020     {
73021      "name": "allowBlank",
73022      "type": "Boolean",
73023      "desc": "False to validate that the value length > 0 (defaults to true)",
73024      "memberOf": "Roo.form.TextField"
73025     },
73026     {
73027      "name": "minLength",
73028      "type": "Number",
73029      "desc": "Minimum input field length required (defaults to 0)",
73030      "memberOf": "Roo.form.TextField"
73031     },
73032     {
73033      "name": "maxLength",
73034      "type": "Number",
73035      "desc": "Maximum input field length allowed (defaults to Number.MAX_VALUE)",
73036      "memberOf": "Roo.form.TextField"
73037     },
73038     {
73039      "name": "minLengthText",
73040      "type": "String",
73041      "desc": "Error text to display if the minimum length validation fails (defaults to \"The minimum length for this field is {minLength}\")",
73042      "memberOf": "Roo.form.TextField"
73043     },
73044     {
73045      "name": "maxLengthText",
73046      "type": "String",
73047      "desc": "Error text to display if the maximum length validation fails (defaults to \"The maximum length for this field is {maxLength}\")",
73048      "memberOf": "Roo.form.TextField"
73049     },
73050     {
73051      "name": "selectOnFocus",
73052      "type": "Boolean",
73053      "desc": "True to automatically select any existing field text when the field receives input focus (defaults to false)",
73054      "memberOf": "Roo.form.TextField"
73055     },
73056     {
73057      "name": "blankText",
73058      "type": "String",
73059      "desc": "Error text to display if the allow blank validation fails (defaults to \"This field is required\")",
73060      "memberOf": "Roo.form.TextField"
73061     },
73062     {
73063      "name": "validator",
73064      "type": "Function",
73065      "desc": "A custom validation function to be called during field validation (defaults to null).\nIf available, this function will be called only after the basic validators all return true, and will be passed the\ncurrent field value and expected to return boolean true if the value is valid or a string error message if invalid.",
73066      "memberOf": "Roo.form.TextField"
73067     },
73068     {
73069      "name": "regex",
73070      "type": "RegExp",
73071      "desc": "A JavaScript RegExp object to be tested against the field value during validation (defaults to null).\nIf available, this regex will be evaluated only after the basic validators all return true, and will be passed the\ncurrent field value.  If the test fails, the field will be marked invalid using {@link #regexText}.",
73072      "memberOf": "Roo.form.TextField"
73073     },
73074     {
73075      "name": "regexText",
73076      "type": "String",
73077      "desc": "The error text to display if {@link #regex} is used and the test fails during validation (defaults to \"\")",
73078      "memberOf": "Roo.form.TextField"
73079     },
73080     {
73081      "name": "emptyText",
73082      "type": "String",
73083      "desc": "The default text to display in an empty field - placeholder... (defaults to null).",
73084      "memberOf": "Roo.form.TextField"
73085     },
73086     {
73087      "name": "fieldLabel",
73088      "type": "String",
73089      "desc": "Label to use when rendering a form.",
73090      "memberOf": "Roo.form.Field"
73091     },
73092     {
73093      "name": "qtip",
73094      "type": "String",
73095      "desc": "Mouse over tip",
73096      "memberOf": "Roo.form.Field"
73097     },
73098     {
73099      "name": "name",
73100      "type": "String",
73101      "desc": "The field's HTML name attribute.",
73102      "memberOf": "Roo.form.Field"
73103     },
73104     {
73105      "name": "invalidClass",
73106      "type": "String",
73107      "desc": "The CSS class to use when marking a field invalid (defaults to \"x-form-invalid\")",
73108      "memberOf": "Roo.form.Field"
73109     },
73110     {
73111      "name": "invalidText",
73112      "type": "String",
73113      "desc": "The error text to use when marking a field invalid and no message is provided (defaults to \"The value in this field is invalid\")",
73114      "memberOf": "Roo.form.Field"
73115     },
73116     {
73117      "name": "focusClass",
73118      "type": "String",
73119      "desc": "The CSS class to use when the field receives focus (defaults to \"x-form-focus\")",
73120      "memberOf": "Roo.form.Field"
73121     },
73122     {
73123      "name": "validationEvent",
73124      "type": "String/Boolean",
73125      "desc": "The event that should initiate field validation. Set to false to disable\n      automatic validation (defaults to \"keyup\").",
73126      "memberOf": "Roo.form.Field"
73127     },
73128     {
73129      "name": "validateOnBlur",
73130      "type": "Boolean",
73131      "desc": "Whether the field should validate when it loses focus (defaults to true).",
73132      "memberOf": "Roo.form.Field"
73133     },
73134     {
73135      "name": "validationDelay",
73136      "type": "Number",
73137      "desc": "The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)",
73138      "memberOf": "Roo.form.Field"
73139     },
73140     {
73141      "name": "fieldClass",
73142      "type": "String",
73143      "desc": "The default CSS class for the field (defaults to \"x-form-field\")",
73144      "memberOf": "Roo.form.Field"
73145     },
73146     {
73147      "name": "msgTarget",
73148      "type": "String",
73149      "desc": "The location where error text should display.  Should be one of the following values (defaults to 'qtip'):\n<pre>\nValue         Description\n-----------   ----------------------------------------------------------------------\nqtip          Display a quick tip when the user hovers over the field\ntitle         Display a default browser title attribute popup\nunder         Add a block div beneath the field containing the error text\nside          Add an error icon to the right of the field with a popup on hover\n[element id]  Add the error text directly to the innerHTML of the specified element\n</pre>",
73150      "memberOf": "Roo.form.Field"
73151     },
73152     {
73153      "name": "msgFx",
73154      "type": "String",
73155      "desc": "<b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').",
73156      "memberOf": "Roo.form.Field"
73157     },
73158     {
73159      "name": "readOnly",
73160      "type": "Boolean",
73161      "desc": "True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.",
73162      "memberOf": "Roo.form.Field"
73163     },
73164     {
73165      "name": "disabled",
73166      "type": "Boolean",
73167      "desc": "True to disable the field (defaults to false).",
73168      "memberOf": "Roo.form.Field"
73169     },
73170     {
73171      "name": "inputType",
73172      "type": "String",
73173      "desc": "The type attribute for input fields -- e.g. radio, text, password (defaults to \"text\").",
73174      "memberOf": "Roo.form.Field"
73175     },
73176     {
73177      "name": "tabIndex",
73178      "type": "Number",
73179      "desc": "The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).",
73180      "memberOf": "Roo.form.Field"
73181     },
73182     {
73183      "name": "value",
73184      "type": "Mixed",
73185      "desc": "A value to initialize this field with.",
73186      "memberOf": "Roo.form.Field"
73187     },
73188     {
73189      "name": "cls",
73190      "type": "String",
73191      "desc": "A CSS class to apply to the field's underlying element.",
73192      "memberOf": "Roo.form.Field"
73193     },
73194     {
73195      "name": "width",
73196      "type": "Number",
73197      "desc": "width (optional) size of component",
73198      "memberOf": "Roo.BoxComponent"
73199     },
73200     {
73201      "name": "height",
73202      "type": "Number",
73203      "desc": "height (optional) size of component",
73204      "memberOf": "Roo.BoxComponent"
73205     },
73206     {
73207      "name": "disableClass",
73208      "type": "String",
73209      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
73210      "memberOf": "Roo.Component"
73211     },
73212     {
73213      "name": "allowDomMove",
73214      "type": "Boolean",
73215      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
73216      "memberOf": "Roo.Component"
73217     },
73218     {
73219      "name": "hideMode",
73220      "type": "String",
73221      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
73222      "memberOf": "Roo.Component",
73223      "optvals": [
73224       "display",
73225       "visibility"
73226      ]
73227     },
73228     {
73229      "name": "actionMode",
73230      "type": "String",
73231      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
73232      "memberOf": "Roo.Component"
73233     },
73234     {
73235      "name": "listeners",
73236      "type": "Object",
73237      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
73238      "memberOf": "Roo.util.Observable"
73239     }
73240    ],
73241    "events": [
73242     {
73243      "name": "autosize",
73244      "sig": "function (_self, width)\n{\n\n}",
73245      "type": "function",
73246      "desc": "Fires when the autosize function is triggered.  The field may or may not have actually changed size\naccording to the default logic, but this event provides a hook for the developer to apply additional\nlogic at runtime to resize the field if needed."
73247     },
73248     {
73249      "name": "beforedestroy",
73250      "sig": "function (_self)\n{\n\n}",
73251      "type": "function",
73252      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
73253     },
73254     {
73255      "name": "beforehide",
73256      "sig": "function (_self)\n{\n\n}",
73257      "type": "function",
73258      "desc": "Fires before the component is hidden. Return false to stop the hide."
73259     },
73260     {
73261      "name": "beforerender",
73262      "sig": "function (_self)\n{\n\n}",
73263      "type": "function",
73264      "desc": "Fires before the component is rendered. Return false to stop the render."
73265     },
73266     {
73267      "name": "beforeshow",
73268      "sig": "function (_self)\n{\n\n}",
73269      "type": "function",
73270      "desc": "Fires before the component is shown.  Return false to stop the show."
73271     },
73272     {
73273      "name": "blur",
73274      "sig": "function (_self)\n{\n\n}",
73275      "type": "function",
73276      "desc": "Fires when this field loses input focus."
73277     },
73278     {
73279      "name": "change",
73280      "sig": "function (_self, newValue, oldValue)\n{\n\n}",
73281      "type": "function",
73282      "desc": "Fires just before the field blurs if the field value has changed."
73283     },
73284     {
73285      "name": "destroy",
73286      "sig": "function (_self)\n{\n\n}",
73287      "type": "function",
73288      "desc": "Fires after the component is destroyed."
73289     },
73290     {
73291      "name": "disable",
73292      "sig": "function (_self)\n{\n\n}",
73293      "type": "function",
73294      "desc": "Fires after the component is disabled."
73295     },
73296     {
73297      "name": "enable",
73298      "sig": "function (_self)\n{\n\n}",
73299      "type": "function",
73300      "desc": "Fires after the component is enabled."
73301     },
73302     {
73303      "name": "focus",
73304      "sig": "function (_self)\n{\n\n}",
73305      "type": "function",
73306      "desc": "Fires when this field receives input focus."
73307     },
73308     {
73309      "name": "hide",
73310      "sig": "function (_self)\n{\n\n}",
73311      "type": "function",
73312      "desc": "Fires after the component is hidden."
73313     },
73314     {
73315      "name": "invalid",
73316      "sig": "function (_self, msg)\n{\n\n}",
73317      "type": "function",
73318      "desc": "Fires after the field has been marked as invalid."
73319     },
73320     {
73321      "name": "keyup",
73322      "sig": "function (_self, e)\n{\n\n}",
73323      "type": "function",
73324      "desc": "Fires after the key up"
73325     },
73326     {
73327      "name": "move",
73328      "sig": "function (_self, x, y)\n{\n\n}",
73329      "type": "function",
73330      "desc": "Fires after the component is moved."
73331     },
73332     {
73333      "name": "render",
73334      "sig": "function (_self)\n{\n\n}",
73335      "type": "function",
73336      "desc": "Fires after the component is rendered."
73337     },
73338     {
73339      "name": "resize",
73340      "sig": "function (_self, adjWidth, adjHeight, rawWidth, rawHeight)\n{\n\n}",
73341      "type": "function",
73342      "desc": "Fires after the component is resized."
73343     },
73344     {
73345      "name": "show",
73346      "sig": "function (_self)\n{\n\n}",
73347      "type": "function",
73348      "desc": "Fires after the component is shown."
73349     },
73350     {
73351      "name": "specialkey",
73352      "sig": "function (_self, e)\n{\n\n}",
73353      "type": "function",
73354      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
73355     },
73356     {
73357      "name": "valid",
73358      "sig": "function (_self)\n{\n\n}",
73359      "type": "function",
73360      "desc": "Fires after the field has been validated with no errors."
73361     }
73362    ],
73363    "methods": [
73364     {
73365      "name": "addEvents",
73366      "sig": "(Object object)",
73367      "type": "function",
73368      "desc": "Used to define events on this Observable"
73369     },
73370     {
73371      "name": "addListener",
73372      "sig": "(String eventName, Function handler, Object scope, Object options)",
73373      "type": "function",
73374      "desc": "Appends an event handler to this component"
73375     },
73376     {
73377      "name": "applyTo",
73378      "sig": "(String/HTMLElement/Element el)",
73379      "type": "function",
73380      "desc": "Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>"
73381     },
73382     {
73383      "name": "capture",
73384      "sig": "(Observable o, Function fn, Object scope)",
73385      "type": "function",
73386      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
73387     },
73388     {
73389      "name": "clearInvalid",
73390      "sig": "()",
73391      "type": "function",
73392      "desc": "Clear any invalid styles/messages for this field"
73393     },
73394     {
73395      "name": "destroy",
73396      "sig": "()",
73397      "type": "function",
73398      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
73399     },
73400     {
73401      "name": "disable",
73402      "sig": "()",
73403      "type": "function",
73404      "desc": "Disable this component."
73405     },
73406     {
73407      "name": "enable",
73408      "sig": "()",
73409      "type": "function",
73410      "desc": "Enable this component."
73411     },
73412     {
73413      "name": "fireEvent",
73414      "sig": "(String eventName, Object... args)",
73415      "type": "function",
73416      "desc": "Fires the specified event with the passed parameters (minus the event name)."
73417     },
73418     {
73419      "name": "focus",
73420      "sig": "(Boolean selectText)",
73421      "type": "function",
73422      "desc": "Try to focus this component."
73423     },
73424     {
73425      "name": "getBox",
73426      "sig": "(Boolean local)",
73427      "type": "function",
73428      "desc": "Gets the current box measurements of the component's underlying element."
73429     },
73430     {
73431      "name": "getEl",
73432      "sig": "()",
73433      "type": "function",
73434      "desc": "Returns the underlying {@link Roo.Element}."
73435     },
73436     {
73437      "name": "getId",
73438      "sig": "()",
73439      "type": "function",
73440      "desc": "Returns the id of this component."
73441     },
73442     {
73443      "name": "getName",
73444      "sig": "()",
73445      "type": "function",
73446      "desc": "Returns the name attribute of the field if available"
73447     },
73448     {
73449      "name": "getPosition",
73450      "sig": "(Boolean local)",
73451      "type": "function",
73452      "desc": "Gets the current XY position of the component's underlying element."
73453     },
73454     {
73455      "name": "getRawValue",
73456      "sig": "()",
73457      "type": "function",
73458      "desc": "Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}."
73459     },
73460     {
73461      "name": "getSize",
73462      "sig": "()",
73463      "type": "function",
73464      "desc": "Gets the current size of the component's underlying element."
73465     },
73466     {
73467      "name": "getValue",
73468      "sig": "()",
73469      "type": "function",
73470      "desc": "Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}."
73471     },
73472     {
73473      "name": "hasChanged",
73474      "sig": "()",
73475      "type": "function",
73476      "desc": "checks the current value against the 'loaded' value.\nNote - will return false if 'resetHasChanged' has not been called first."
73477     },
73478     {
73479      "name": "hasListener",
73480      "sig": "(String eventName)",
73481      "type": "function",
73482      "desc": "Checks to see if this object has any listeners for a specified event"
73483     },
73484     {
73485      "name": "hide",
73486      "sig": "()",
73487      "type": "function",
73488      "desc": "Hide this component."
73489     },
73490     {
73491      "name": "isDirty",
73492      "sig": "()",
73493      "type": "function",
73494      "desc": "Returns true if this field has been changed since it was originally loaded and is not disabled.\nDEPRICATED  - it never worked well - use hasChanged/resetHasChanged."
73495     },
73496     {
73497      "name": "isValid",
73498      "sig": "(Boolean preventMark)",
73499      "type": "function",
73500      "desc": "Returns whether or not the field value is currently valid"
73501     },
73502     {
73503      "name": "isVisible",
73504      "sig": "()",
73505      "type": "function",
73506      "desc": "Returns true if this component is visible."
73507     },
73508     {
73509      "name": "markInvalid",
73510      "sig": "(String msg)",
73511      "type": "function",
73512      "desc": "Mark this field as invalid"
73513     },
73514     {
73515      "name": "on",
73516      "sig": "(String eventName, Function handler, Object scope, Object options)",
73517      "type": "function",
73518      "desc": "Appends an event handler to this element (shorthand for addListener)"
73519     },
73520     {
73521      "name": "onPosition",
73522      "sig": "(Number x, Number y)",
73523      "type": "function",
73524      "desc": "Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs."
73525     },
73526     {
73527      "name": "onResize",
73528      "sig": "(Number adjWidth, Number adjHeight, Number rawWidth, Number rawHeight)",
73529      "type": "function",
73530      "desc": "Called after the component is resized, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a resize occurs."
73531     },
73532     {
73533      "name": "onTriggerClick",
73534      "sig": "(EventObject e)",
73535      "type": "function",
73536      "desc": "The function that should handle the trigger's click event.  This method does nothing by default until overridden\nby an implementing function."
73537     },
73538     {
73539      "name": "purgeListeners",
73540      "sig": "()",
73541      "type": "function",
73542      "desc": "Removes all listeners for this object"
73543     },
73544     {
73545      "name": "releaseCapture",
73546      "sig": "(Observable o)",
73547      "type": "function",
73548      "desc": "Removes <b>all</b> added captures from the Observable."
73549     },
73550     {
73551      "name": "removeListener",
73552      "sig": "(String eventName, Function handler, Object scope)",
73553      "type": "function",
73554      "desc": "Removes a listener"
73555     },
73556     {
73557      "name": "render",
73558      "sig": "(String/HTMLElement/Element container)",
73559      "type": "function",
73560      "desc": "If this is a lazy rendering component, render it to its container element."
73561     },
73562     {
73563      "name": "reset",
73564      "sig": "()",
73565      "type": "function",
73566      "desc": "Resets the current field value to the originally-loaded value and clears any validation messages."
73567     },
73568     {
73569      "name": "resetHasChanged",
73570      "sig": "()",
73571      "type": "function",
73572      "desc": "stores the current value in loadedValue"
73573     },
73574     {
73575      "name": "selectText",
73576      "sig": "(Number start, Number end)",
73577      "type": "function",
73578      "desc": "Selects text in this field"
73579     },
73580     {
73581      "name": "setDisabled",
73582      "sig": "(Boolean disabled)",
73583      "type": "function",
73584      "desc": "Convenience function for setting disabled/enabled by boolean."
73585     },
73586     {
73587      "name": "setPagePosition",
73588      "sig": "(Number x, Number y)",
73589      "type": "function",
73590      "desc": "Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.\nThis method fires the move event."
73591     },
73592     {
73593      "name": "setPosition",
73594      "sig": "(Number left, Number top)",
73595      "type": "function",
73596      "desc": "Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.\nThis method fires the move event."
73597     },
73598     {
73599      "name": "setRawValue",
73600      "sig": "(Mixed value)",
73601      "type": "function",
73602      "desc": "Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}."
73603     },
73604     {
73605      "name": "setSize",
73606      "sig": "(Number/Object width, Number height)",
73607      "type": "function",
73608      "desc": "Sets the width and height of the component.  This method fires the resize event.  This method can accept\neither width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}."
73609     },
73610     {
73611      "name": "setValue",
73612      "sig": "(Mixed value)",
73613      "type": "function",
73614      "desc": "Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}."
73615     },
73616     {
73617      "name": "setVisible",
73618      "sig": "(Boolean visible)",
73619      "type": "function",
73620      "desc": "Convenience function to hide or show this component by boolean."
73621     },
73622     {
73623      "name": "show",
73624      "sig": "()",
73625      "type": "function",
73626      "desc": "Show this component."
73627     },
73628     {
73629      "name": "syncSize",
73630      "sig": "()",
73631      "type": "function",
73632      "desc": "Force the component's size to recalculate based on the underlying element's current height and width."
73633     },
73634     {
73635      "name": "un",
73636      "sig": "(String eventName, Function handler, Object scope)",
73637      "type": "function",
73638      "desc": "Removes a listener (shorthand for removeListener)"
73639     },
73640     {
73641      "name": "updateBox",
73642      "sig": "(Object box)",
73643      "type": "function",
73644      "desc": "Sets the current box measurements of the component's underlying element."
73645     },
73646     {
73647      "name": "validate",
73648      "sig": "()",
73649      "type": "function",
73650      "desc": "Validates the field value"
73651     },
73652     {
73653      "name": "validateValue",
73654      "sig": "(Mixed value)",
73655      "type": "function",
73656      "desc": "Validates a value according to the field's validation rules and marks the field as invalid\nif the validation fails"
73657     }
73658    ]
73659   },
73660   "Roo.form.VTypes": {
73661    "props": [],
73662    "events": [],
73663    "methods": [
73664     {
73665      "name": "alpha",
73666      "sig": "(String value)",
73667      "type": "function",
73668      "desc": "The function used to validate alpha values"
73669     },
73670     {
73671      "name": "alphanum",
73672      "sig": "(String value)",
73673      "type": "function",
73674      "desc": "The function used to validate alphanumeric values"
73675     },
73676     {
73677      "name": "email",
73678      "sig": "(String value)",
73679      "type": "function",
73680      "desc": "The function used to validate email addresses"
73681     },
73682     {
73683      "name": "url",
73684      "sig": "(String value)",
73685      "type": "function",
73686      "desc": "The function used to validate URLs"
73687     }
73688    ]
73689   },
73690   "Roo.grid": {
73691    "props": [],
73692    "events": [],
73693    "methods": []
73694   },
73695   "Roo.grid.AbstractGridView": {
73696    "props": [],
73697    "events": [],
73698    "methods": []
73699   },
73700   "Roo.grid.AbstractSelectionModel": {
73701    "props": [
73702     {
73703      "name": "listeners",
73704      "type": "Object",
73705      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
73706      "memberOf": "Roo.util.Observable"
73707     }
73708    ],
73709    "events": [],
73710    "methods": [
73711     {
73712      "name": "addEvents",
73713      "sig": "(Object object)",
73714      "type": "function",
73715      "desc": "Used to define events on this Observable"
73716     },
73717     {
73718      "name": "addListener",
73719      "sig": "(String eventName, Function handler, Object scope, Object options)",
73720      "type": "function",
73721      "desc": "Appends an event handler to this component"
73722     },
73723     {
73724      "name": "capture",
73725      "sig": "(Observable o, Function fn, Object scope)",
73726      "type": "function",
73727      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
73728     },
73729     {
73730      "name": "fireEvent",
73731      "sig": "(String eventName, Object... args)",
73732      "type": "function",
73733      "desc": "Fires the specified event with the passed parameters (minus the event name)."
73734     },
73735     {
73736      "name": "hasListener",
73737      "sig": "(String eventName)",
73738      "type": "function",
73739      "desc": "Checks to see if this object has any listeners for a specified event"
73740     },
73741     {
73742      "name": "isLocked",
73743      "sig": "()",
73744      "type": "function",
73745      "desc": "Returns true if the selections are locked."
73746     },
73747     {
73748      "name": "lock",
73749      "sig": "()",
73750      "type": "function",
73751      "desc": "Locks the selections."
73752     },
73753     {
73754      "name": "on",
73755      "sig": "(String eventName, Function handler, Object scope, Object options)",
73756      "type": "function",
73757      "desc": "Appends an event handler to this element (shorthand for addListener)"
73758     },
73759     {
73760      "name": "purgeListeners",
73761      "sig": "()",
73762      "type": "function",
73763      "desc": "Removes all listeners for this object"
73764     },
73765     {
73766      "name": "releaseCapture",
73767      "sig": "(Observable o)",
73768      "type": "function",
73769      "desc": "Removes <b>all</b> added captures from the Observable."
73770     },
73771     {
73772      "name": "removeListener",
73773      "sig": "(String eventName, Function handler, Object scope)",
73774      "type": "function",
73775      "desc": "Removes a listener"
73776     },
73777     {
73778      "name": "un",
73779      "sig": "(String eventName, Function handler, Object scope)",
73780      "type": "function",
73781      "desc": "Removes a listener (shorthand for removeListener)"
73782     },
73783     {
73784      "name": "unlock",
73785      "sig": "()",
73786      "type": "function",
73787      "desc": "Unlocks the selections."
73788     }
73789    ]
73790   },
73791   "Roo.grid.Calendar": {
73792    "props": [
73793     {
73794      "name": "eventStore",
73795      "type": "Store",
73796      "desc": "The store that loads events.",
73797      "memberOf": ""
73798     }
73799    ],
73800    "events": [
73801     {
73802      "name": "bodyscroll",
73803      "sig": "function (scrollLeft, scrollTop)\n{\n\n}",
73804      "type": "function",
73805      "desc": "Fires when the body element is scrolled"
73806     },
73807     {
73808      "name": "cellclick",
73809      "sig": "function (_self, rowIndex, columnIndex, e)\n{\n\n}",
73810      "type": "function",
73811      "desc": "Fires when a cell is clicked"
73812     },
73813     {
73814      "name": "cellcontextmenu",
73815      "sig": "function (_self, rowIndex, cellIndex, e)\n{\n\n}",
73816      "type": "function",
73817      "desc": "Fires when a cell is right clicked"
73818     },
73819     {
73820      "name": "celldblclick",
73821      "sig": "function (_self, rowIndex, columnIndex, e)\n{\n\n}",
73822      "type": "function",
73823      "desc": "Fires when a cell is double clicked"
73824     },
73825     {
73826      "name": "click",
73827      "sig": "function (e)\n{\n\n}",
73828      "type": "function",
73829      "desc": "The raw click event for the entire grid."
73830     },
73831     {
73832      "name": "columnmove",
73833      "sig": "function (oldIndex, newIndex)\n{\n\n}",
73834      "type": "function",
73835      "desc": "Fires when the user moves a column"
73836     },
73837     {
73838      "name": "columnresize",
73839      "sig": "function (columnIndex, newSize)\n{\n\n}",
73840      "type": "function",
73841      "desc": "Fires when the user resizes a column"
73842     },
73843     {
73844      "name": "contextmenu",
73845      "sig": "function (e)\n{\n\n}",
73846      "type": "function",
73847      "desc": "The raw contextmenu event for the entire grid."
73848     },
73849     {
73850      "name": "dblclick",
73851      "sig": "function (e)\n{\n\n}",
73852      "type": "function",
73853      "desc": "The raw dblclick event for the entire grid."
73854     },
73855     {
73856      "name": "dragdrop",
73857      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
73858      "type": "function",
73859      "desc": "Fires when dragged row(s) are dropped on a valid DD target"
73860     },
73861     {
73862      "name": "dragenter\n Fires when the dragged row(s) first cross another DD target while being dragged",
73863      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
73864      "type": "function",
73865      "desc": ""
73866     },
73867     {
73868      "name": "dragout",
73869      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
73870      "type": "function",
73871      "desc": "Fires when the dragged row(s) leave another DD target while being dragged"
73872     },
73873     {
73874      "name": "dragover",
73875      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
73876      "type": "function",
73877      "desc": "Fires while row(s) are being dragged. \"targetId\" is the id of the Yahoo.util.DD object the selected rows are being dragged over."
73878     },
73879     {
73880      "name": "enddrag",
73881      "sig": "function (_self, dd, e)\n{\n\n}",
73882      "type": "function",
73883      "desc": "Fires when a drag operation is complete"
73884     },
73885     {
73886      "name": "eventclick",
73887      "sig": "function (_self, )\n{\n\n}",
73888      "type": "function",
73889      "desc": "Fires when the mouse click an"
73890     },
73891     {
73892      "name": "evententer",
73893      "sig": "function (_self, Event)\n{\n\n}",
73894      "type": "function",
73895      "desc": "Fires when mouse over an event"
73896     },
73897     {
73898      "name": "eventleave",
73899      "sig": "function (_self, )\n{\n\n}",
73900      "type": "function",
73901      "desc": "Fires when the mouse leaves an"
73902     },
73903     {
73904      "name": "eventrender",
73905      "sig": "function (_self, data)\n{\n\n}",
73906      "type": "function",
73907      "desc": "Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip"
73908     },
73909     {
73910      "name": "headerclick",
73911      "sig": "function (_self, columnIndex, e)\n{\n\n}",
73912      "type": "function",
73913      "desc": "Fires when a header is clicked"
73914     },
73915     {
73916      "name": "headercontextmenu",
73917      "sig": "function (_self, columnIndex, e)\n{\n\n}",
73918      "type": "function",
73919      "desc": "Fires when a header is right clicked"
73920     },
73921     {
73922      "name": "headerdblclick",
73923      "sig": "function (_self, columnIndex, e)\n{\n\n}",
73924      "type": "function",
73925      "desc": "Fires when a header cell is double clicked"
73926     },
73927     {
73928      "name": "keydown",
73929      "sig": "function (e)\n{\n\n}",
73930      "type": "function",
73931      "desc": "The raw keydown event for the entire grid."
73932     },
73933     {
73934      "name": "keypress",
73935      "sig": "function (e)\n{\n\n}",
73936      "type": "function",
73937      "desc": "The raw keypress event for the entire grid."
73938     },
73939     {
73940      "name": "monthchange",
73941      "sig": "function (_self, date)\n{\n\n}",
73942      "type": "function",
73943      "desc": "Fires when the displayed month changes"
73944     },
73945     {
73946      "name": "mousedown",
73947      "sig": "function (e)\n{\n\n}",
73948      "type": "function",
73949      "desc": "The raw mousedown event for the entire grid."
73950     },
73951     {
73952      "name": "mouseout",
73953      "sig": "function (e)\n{\n\n}",
73954      "type": "function",
73955      "desc": "The raw mouseout event for the entire grid."
73956     },
73957     {
73958      "name": "mouseover",
73959      "sig": "function (e)\n{\n\n}",
73960      "type": "function",
73961      "desc": "The raw mouseover event for the entire grid."
73962     },
73963     {
73964      "name": "mouseup",
73965      "sig": "function (e)\n{\n\n}",
73966      "type": "function",
73967      "desc": "The raw mouseup event for the entire grid."
73968     },
73969     {
73970      "name": "render",
73971      "sig": "function (grid)\n{\n\n}",
73972      "type": "function",
73973      "desc": "Fires when the grid is rendered"
73974     },
73975     {
73976      "name": "rowclass",
73977      "sig": "function (gridview, rowcfg)\n{\n\n}",
73978      "type": "function",
73979      "desc": "Fires when a row is rendered, so you can change add a style to it."
73980     },
73981     {
73982      "name": "rowclick",
73983      "sig": "function (_self, rowIndex, e)\n{\n\n}",
73984      "type": "function",
73985      "desc": "Fires when a row is clicked"
73986     },
73987     {
73988      "name": "rowcontextmenu",
73989      "sig": "function (_self, rowIndex, e)\n{\n\n}",
73990      "type": "function",
73991      "desc": "Fires when a row is right clicked"
73992     },
73993     {
73994      "name": "rowdblclick",
73995      "sig": "function (_self, rowIndex, e)\n{\n\n}",
73996      "type": "function",
73997      "desc": "Fires when a row is double clicked"
73998     },
73999     {
74000      "name": "select",
74001      "sig": "function (_self, date)\n{\n\n}",
74002      "type": "function",
74003      "desc": "Fires when a date is selected"
74004     },
74005     {
74006      "name": "startdrag",
74007      "sig": "function (_self, dd, e)\n{\n\n}",
74008      "type": "function",
74009      "desc": "Fires when row(s) start being dragged"
74010     }
74011    ],
74012    "methods": [
74013     {
74014      "name": "getSelectionModel",
74015      "sig": "()",
74016      "type": "function",
74017      "desc": "Returns the grid's SelectionModel."
74018     }
74019    ]
74020   },
74021   "Roo.grid.CellSelectionModel": {
74022    "props": [
74023     {
74024      "name": "enter_is_tab",
74025      "type": "Boolean",
74026      "desc": "Enter behaves the same as tab. (eg. goes to next cell) default: false",
74027      "memberOf": ""
74028     },
74029     {
74030      "name": "listeners",
74031      "type": "Object",
74032      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
74033      "memberOf": "Roo.util.Observable"
74034     }
74035    ],
74036    "events": [
74037     {
74038      "name": "beforeeditnext",
74039      "sig": "function (eventdata)\n{\n\n}",
74040      "type": "function",
74041      "desc": "Fires before the next editable sell is made active\nYou can use this to skip to another cell or fire the tabend\n   if you set cell to false"
74042     },
74043     {
74044      "name": "beforerowselect",
74045      "sig": "function (_self, rowIndex, colIndex)\n{\n\n}",
74046      "type": "function",
74047      "desc": "Fires before a cell is selected."
74048     },
74049     {
74050      "name": "cellselect",
74051      "sig": "function (_self, rowIndex, colIndex)\n{\n\n}",
74052      "type": "function",
74053      "desc": "Fires when a cell is selected."
74054     },
74055     {
74056      "name": "selectionchange",
74057      "sig": "function (_self, selection)\n{\n\n}",
74058      "type": "function",
74059      "desc": "Fires when the active selection changes."
74060     },
74061     {
74062      "name": "tabend",
74063      "sig": "function (_self)\n{\n\n}",
74064      "type": "function",
74065      "desc": "Fires when the tab (or enter) was pressed on the last editable cell\nYou can use this to trigger add new row."
74066     }
74067    ],
74068    "methods": [
74069     {
74070      "name": "addEvents",
74071      "sig": "(Object object)",
74072      "type": "function",
74073      "desc": "Used to define events on this Observable"
74074     },
74075     {
74076      "name": "addListener",
74077      "sig": "(String eventName, Function handler, Object scope, Object options)",
74078      "type": "function",
74079      "desc": "Appends an event handler to this component"
74080     },
74081     {
74082      "name": "capture",
74083      "sig": "(Observable o, Function fn, Object scope)",
74084      "type": "function",
74085      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
74086     },
74087     {
74088      "name": "clearSelections",
74089      "sig": "(Boolean true)",
74090      "type": "function",
74091      "desc": "Clears all selections."
74092     },
74093     {
74094      "name": "fireEvent",
74095      "sig": "(String eventName, Object... args)",
74096      "type": "function",
74097      "desc": "Fires the specified event with the passed parameters (minus the event name)."
74098     },
74099     {
74100      "name": "getSelectedCell",
74101      "sig": "()",
74102      "type": "function",
74103      "desc": "Returns the currently selected cell,."
74104     },
74105     {
74106      "name": "hasListener",
74107      "sig": "(String eventName)",
74108      "type": "function",
74109      "desc": "Checks to see if this object has any listeners for a specified event"
74110     },
74111     {
74112      "name": "hasSelection",
74113      "sig": "()",
74114      "type": "function",
74115      "desc": "Returns true if there is a selection."
74116     },
74117     {
74118      "name": "isLocked",
74119      "sig": "()",
74120      "type": "function",
74121      "desc": "Returns true if the selections are locked."
74122     },
74123     {
74124      "name": "lock",
74125      "sig": "()",
74126      "type": "function",
74127      "desc": "Locks the selections."
74128     },
74129     {
74130      "name": "on",
74131      "sig": "(String eventName, Function handler, Object scope, Object options)",
74132      "type": "function",
74133      "desc": "Appends an event handler to this element (shorthand for addListener)"
74134     },
74135     {
74136      "name": "onEditorKey",
74137      "sig": "(Number field, Number e)",
74138      "type": "function",
74139      "desc": "Selects a cell."
74140     },
74141     {
74142      "name": "purgeListeners",
74143      "sig": "()",
74144      "type": "function",
74145      "desc": "Removes all listeners for this object"
74146     },
74147     {
74148      "name": "releaseCapture",
74149      "sig": "(Observable o)",
74150      "type": "function",
74151      "desc": "Removes <b>all</b> added captures from the Observable."
74152     },
74153     {
74154      "name": "removeListener",
74155      "sig": "(String eventName, Function handler, Object scope)",
74156      "type": "function",
74157      "desc": "Removes a listener"
74158     },
74159     {
74160      "name": "select",
74161      "sig": "(Number rowIndex, Number collIndex)",
74162      "type": "function",
74163      "desc": "Selects a cell."
74164     },
74165     {
74166      "name": "un",
74167      "sig": "(String eventName, Function handler, Object scope)",
74168      "type": "function",
74169      "desc": "Removes a listener (shorthand for removeListener)"
74170     },
74171     {
74172      "name": "unlock",
74173      "sig": "()",
74174      "type": "function",
74175      "desc": "Unlocks the selections."
74176     }
74177    ]
74178   },
74179   "Roo.grid.ColumnModel": {
74180    "props": [
74181     {
74182      "name": "header",
74183      "type": "String",
74184      "desc": "The header text to display in the Grid view.",
74185      "memberOf": ""
74186     },
74187     {
74188      "name": "dataIndex",
74189      "type": "String",
74190      "desc": "(Optional) The name of the field in the grid's {@link Roo.data.Store}'s\n{@link Roo.data.Record} definition from which to draw the column's value. If not\nspecified, the column's index is used as an index into the Record's data Array.",
74191      "memberOf": ""
74192     },
74193     {
74194      "name": "width",
74195      "type": "Number",
74196      "desc": "(Optional) The initial width in pixels of the column. Using this\ninstead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.",
74197      "memberOf": ""
74198     },
74199     {
74200      "name": "sortable",
74201      "type": "Boolean",
74202      "desc": "(Optional) True if sorting is to be allowed on this column.\nDefaults to the value of the {@link #defaultSortable} property.\nWhether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.",
74203      "memberOf": ""
74204     },
74205     {
74206      "name": "locked",
74207      "type": "Boolean",
74208      "desc": "(Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.",
74209      "memberOf": ""
74210     },
74211     {
74212      "name": "fixed",
74213      "type": "Boolean",
74214      "desc": "(Optional) True if the column width cannot be changed.  Defaults to false.",
74215      "memberOf": ""
74216     },
74217     {
74218      "name": "resizable",
74219      "type": "Boolean",
74220      "desc": "(Optional) False to disable column resizing. Defaults to true.",
74221      "memberOf": ""
74222     },
74223     {
74224      "name": "hidden",
74225      "type": "Boolean",
74226      "desc": "(Optional) True to hide the column. Defaults to false.",
74227      "memberOf": ""
74228     },
74229     {
74230      "name": "renderer",
74231      "type": "Function",
74232      "desc": "(Optional) A function used to generate HTML markup for a cell\ngiven the cell's data value. See {@link #setRenderer}. If not specified, the\ndefault renderer returns the escaped data value. If an object is returned (bootstrap only)\nthen it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered",
74233      "memberOf": ""
74234     },
74235     {
74236      "name": "editor",
74237      "type": "Roo.grid.GridEditor",
74238      "desc": "(Optional) For grid editors - returns the grid editor",
74239      "memberOf": ""
74240     },
74241     {
74242      "name": "align",
74243      "type": "String",
74244      "desc": "(Optional) Set the CSS text-align property of the column.  Defaults to undefined.",
74245      "memberOf": ""
74246     },
74247     {
74248      "name": "cursor",
74249      "type": "String",
74250      "desc": "(Optional)",
74251      "memberOf": ""
74252     },
74253     {
74254      "name": "tooltip",
74255      "type": "String",
74256      "desc": "(Optional)",
74257      "memberOf": ""
74258     },
74259     {
74260      "name": "xs",
74261      "type": "Number",
74262      "desc": "(Optional)",
74263      "memberOf": ""
74264     },
74265     {
74266      "name": "sm",
74267      "type": "Number",
74268      "desc": "(Optional)",
74269      "memberOf": ""
74270     },
74271     {
74272      "name": "md",
74273      "type": "Number",
74274      "desc": "(Optional)",
74275      "memberOf": ""
74276     },
74277     {
74278      "name": "lg",
74279      "type": "Number",
74280      "desc": "(Optional)",
74281      "memberOf": ""
74282     },
74283     {
74284      "name": "listeners",
74285      "type": "Object",
74286      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
74287      "memberOf": "Roo.util.Observable"
74288     }
74289    ],
74290    "events": [
74291     {
74292      "name": "columlockchange",
74293      "sig": "function (_self, colIndex, locked)\n{\n\n}",
74294      "type": "function",
74295      "desc": "Fires when a column's locked state is changed"
74296     },
74297     {
74298      "name": "columnmoved",
74299      "sig": "function (_self, oldIndex, newIndex)\n{\n\n}",
74300      "type": "function",
74301      "desc": "Fires when a column is moved."
74302     },
74303     {
74304      "name": "headerchange",
74305      "sig": "function (_self, columnIndex, newText)\n{\n\n}",
74306      "type": "function",
74307      "desc": "Fires when the text of a header changes."
74308     },
74309     {
74310      "name": "hiddenchange",
74311      "sig": "function (_self, columnIndex, hidden)\n{\n\n}",
74312      "type": "function",
74313      "desc": "Fires when a column is hidden or \"unhidden\"."
74314     },
74315     {
74316      "name": "widthchange",
74317      "sig": "function (_self, columnIndex, newWidth)\n{\n\n}",
74318      "type": "function",
74319      "desc": "Fires when the width of a column changes."
74320     }
74321    ],
74322    "methods": [
74323     {
74324      "name": "addEvents",
74325      "sig": "(Object object)",
74326      "type": "function",
74327      "desc": "Used to define events on this Observable"
74328     },
74329     {
74330      "name": "addListener",
74331      "sig": "(String eventName, Function handler, Object scope, Object options)",
74332      "type": "function",
74333      "desc": "Appends an event handler to this component"
74334     },
74335     {
74336      "name": "capture",
74337      "sig": "(Observable o, Function fn, Object scope)",
74338      "type": "function",
74339      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
74340     },
74341     {
74342      "name": "findColumnIndex",
74343      "sig": "(String dataIndex)",
74344      "type": "function",
74345      "desc": "Returns the index for a specified column dataIndex."
74346     },
74347     {
74348      "name": "fireEvent",
74349      "sig": "(String eventName, Object... args)",
74350      "type": "function",
74351      "desc": "Fires the specified event with the passed parameters (minus the event name)."
74352     },
74353     {
74354      "name": "getCellEditor",
74355      "sig": "(Number colIndex, Number rowIndex)",
74356      "type": "function",
74357      "desc": "Returns the editor defined for the cell/column.\nreturn false or null to disable editing."
74358     },
74359     {
74360      "name": "getColumnByDataIndex",
74361      "sig": "(String dataIndex)",
74362      "type": "function",
74363      "desc": "Returns the column for a specified dataIndex."
74364     },
74365     {
74366      "name": "getColumnById",
74367      "sig": "(String id)",
74368      "type": "function",
74369      "desc": "Returns the column for a specified id."
74370     },
74371     {
74372      "name": "getColumnCount",
74373      "sig": "()",
74374      "type": "function",
74375      "desc": "Returns the number of columns."
74376     },
74377     {
74378      "name": "getColumnHeader",
74379      "sig": "(Number col)",
74380      "type": "function",
74381      "desc": "Returns the header for the specified column."
74382     },
74383     {
74384      "name": "getColumnId",
74385      "sig": "(Number index)",
74386      "type": "function",
74387      "desc": "Returns the id of the column at the specified index."
74388     },
74389     {
74390      "name": "getColumnTooltip",
74391      "sig": "(Number col)",
74392      "type": "function",
74393      "desc": "Returns the tooltip for the specified column."
74394     },
74395     {
74396      "name": "getColumnWidth",
74397      "sig": "(Number col)",
74398      "type": "function",
74399      "desc": "Returns the width for the specified column."
74400     },
74401     {
74402      "name": "getColumnsBy",
74403      "sig": "(Function fn, Object scope)",
74404      "type": "function",
74405      "desc": "Returns the column configs that return true by the passed function that is called with (columnConfig, index)"
74406     },
74407     {
74408      "name": "getDataIndex",
74409      "sig": "(Number col)",
74410      "type": "function",
74411      "desc": "Returns the dataIndex for the specified column."
74412     },
74413     {
74414      "name": "getIndexById",
74415      "sig": "(String id)",
74416      "type": "function",
74417      "desc": "Returns the index for a specified column id."
74418     },
74419     {
74420      "name": "getRenderer",
74421      "sig": "(Number col)",
74422      "type": "function",
74423      "desc": "Returns the rendering (formatting) function defined for the column."
74424     },
74425     {
74426      "name": "getTotalWidth",
74427      "sig": "(Boolean includeHidden)",
74428      "type": "function",
74429      "desc": "Returns the total width of all columns."
74430     },
74431     {
74432      "name": "hasListener",
74433      "sig": "(String eventName)",
74434      "type": "function",
74435      "desc": "Checks to see if this object has any listeners for a specified event"
74436     },
74437     {
74438      "name": "isCellEditable",
74439      "sig": "(Number colIndex, Number rowIndex)",
74440      "type": "function",
74441      "desc": "Returns true if the cell is editable."
74442     },
74443     {
74444      "name": "isFixed",
74445      "sig": "()",
74446      "type": "function",
74447      "desc": "Returns true if the column width cannot be changed"
74448     },
74449     {
74450      "name": "isHidden",
74451      "sig": "(Number colIndex)",
74452      "type": "function",
74453      "desc": "Returns true if the column is hidden."
74454     },
74455     {
74456      "name": "isResizable",
74457      "sig": "()",
74458      "type": "function",
74459      "desc": "Returns true if the column can be resized"
74460     },
74461     {
74462      "name": "isSortable",
74463      "sig": "(Number col)",
74464      "type": "function",
74465      "desc": "Returns true if the specified column is sortable."
74466     },
74467     {
74468      "name": "on",
74469      "sig": "(String eventName, Function handler, Object scope, Object options)",
74470      "type": "function",
74471      "desc": "Appends an event handler to this element (shorthand for addListener)"
74472     },
74473     {
74474      "name": "purgeListeners",
74475      "sig": "()",
74476      "type": "function",
74477      "desc": "Removes all listeners for this object"
74478     },
74479     {
74480      "name": "releaseCapture",
74481      "sig": "(Observable o)",
74482      "type": "function",
74483      "desc": "Removes <b>all</b> added captures from the Observable."
74484     },
74485     {
74486      "name": "removeListener",
74487      "sig": "(String eventName, Function handler, Object scope)",
74488      "type": "function",
74489      "desc": "Removes a listener"
74490     },
74491     {
74492      "name": "setColumnHeader",
74493      "sig": "(Number col, String header)",
74494      "type": "function",
74495      "desc": "Sets the header for a column."
74496     },
74497     {
74498      "name": "setColumnTooltip",
74499      "sig": "(Number col, String tooltip)",
74500      "type": "function",
74501      "desc": "Sets the tooltip for a column."
74502     },
74503     {
74504      "name": "setColumnWidth",
74505      "sig": "(Number col, Number width)",
74506      "type": "function",
74507      "desc": "Sets the width for a column."
74508     },
74509     {
74510      "name": "setDataIndex",
74511      "sig": "(Number col, Number dataIndex)",
74512      "type": "function",
74513      "desc": "Sets the dataIndex for a column."
74514     },
74515     {
74516      "name": "setEditable",
74517      "sig": "(Number col, Boolean editable)",
74518      "type": "function",
74519      "desc": "Sets if a column is editable."
74520     },
74521     {
74522      "name": "setEditor",
74523      "sig": "(Number col, Object editor)",
74524      "type": "function",
74525      "desc": "Sets the editor for a column."
74526     },
74527     {
74528      "name": "setHidden",
74529      "sig": "(Number colIndex, Boolean hidden)",
74530      "type": "function",
74531      "desc": "Sets if a column is hidden."
74532     },
74533     {
74534      "name": "setRenderer",
74535      "sig": "(Number col, Function fn)",
74536      "type": "function",
74537      "desc": "Sets the rendering (formatting) function for a column."
74538     },
74539     {
74540      "name": "un",
74541      "sig": "(String eventName, Function handler, Object scope)",
74542      "type": "function",
74543      "desc": "Removes a listener (shorthand for removeListener)"
74544     }
74545    ]
74546   },
74547   "Roo.grid.EditorGrid": {
74548    "props": [
74549     {
74550      "name": "clicksToEdit",
74551      "type": "Number",
74552      "desc": "The number of clicks on a cell required to display the cell's editor (defaults to 2)",
74553      "memberOf": ""
74554     },
74555     {
74556      "name": "ddGroup",
74557      "type": "String",
74558      "desc": "- drag drop group.",
74559      "memberOf": "Roo.grid.Grid"
74560     },
74561     {
74562      "name": "enableDrag",
74563      "type": "Boolean",
74564      "desc": "True to enable drag of rows. Default is false. (double check if this is needed?)",
74565      "memberOf": "Roo.grid.Grid"
74566     },
74567     {
74568      "name": "autoWidth",
74569      "type": "Boolean",
74570      "desc": "True to set the grid's width to the default total width of the grid's columns instead\nof a fixed width. Default is false.",
74571      "memberOf": "Roo.grid.Grid"
74572     },
74573     {
74574      "name": "maxHeight",
74575      "type": "Number",
74576      "desc": "Sets the maximum height of the grid - ignored if autoHeight is not on.",
74577      "memberOf": "Roo.grid.Grid"
74578     },
74579     {
74580      "name": "minColumnWidth",
74581      "type": "Number",
74582      "desc": "The minimum width a column can be resized to. Default is 25.",
74583      "memberOf": "Roo.grid.Grid"
74584     },
74585     {
74586      "name": "autoSizeColumns",
74587      "type": "Boolean",
74588      "desc": "True to automatically resize the columns to fit their content\n<b>on initial render.</b> It is more efficient to explicitly size the columns\nthrough the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.",
74589      "memberOf": "Roo.grid.Grid"
74590     },
74591     {
74592      "name": "autoSizeHeaders",
74593      "type": "Boolean",
74594      "desc": "True to measure headers with column data when auto sizing columns. Default is true.",
74595      "memberOf": "Roo.grid.Grid"
74596     },
74597     {
74598      "name": "monitorWindowResize",
74599      "type": "Boolean",
74600      "desc": "True to autoSize the grid when the window resizes. Default is true.",
74601      "memberOf": "Roo.grid.Grid"
74602     },
74603     {
74604      "name": "maxRowsToMeasure",
74605      "type": "Boolean",
74606      "desc": "If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of\nrows measured to get a columns size. Default is 0 (all rows).",
74607      "memberOf": "Roo.grid.Grid"
74608     },
74609     {
74610      "name": "trackMouseOver",
74611      "type": "Boolean",
74612      "desc": "True to highlight rows when the mouse is over. Default is true.",
74613      "memberOf": "Roo.grid.Grid"
74614     },
74615     {
74616      "name": "enableDragDrop",
74617      "type": "Boolean",
74618      "desc": "True to enable drag and drop of rows. Default is false.",
74619      "memberOf": "Roo.grid.Grid"
74620     },
74621     {
74622      "name": "enableColumnMove",
74623      "type": "Boolean",
74624      "desc": "True to enable drag and drop reorder of columns. Default is true.",
74625      "memberOf": "Roo.grid.Grid"
74626     },
74627     {
74628      "name": "enableColumnHide",
74629      "type": "Boolean",
74630      "desc": "True to enable hiding of columns with the header context menu. Default is true.",
74631      "memberOf": "Roo.grid.Grid"
74632     },
74633     {
74634      "name": "enableRowHeightSync",
74635      "type": "Boolean",
74636      "desc": "True to manually sync row heights across locked and not locked rows. Default is false.",
74637      "memberOf": "Roo.grid.Grid"
74638     },
74639     {
74640      "name": "stripeRows",
74641      "type": "Boolean",
74642      "desc": "True to stripe the rows.  Default is true.",
74643      "memberOf": "Roo.grid.Grid"
74644     },
74645     {
74646      "name": "autoHeight",
74647      "type": "Boolean",
74648      "desc": "True to fit the height of the grid container to the height of the data. Default is false.",
74649      "memberOf": "Roo.grid.Grid"
74650     },
74651     {
74652      "name": "autoExpandColumn",
74653      "type": "String",
74654      "desc": "The id (or dataIndex) of a column in this grid that should expand to fill unused space. This id can not be 0. Default is false.",
74655      "memberOf": "Roo.grid.Grid"
74656     },
74657     {
74658      "name": "autoExpandMin",
74659      "type": "Number",
74660      "desc": "The minimum width the autoExpandColumn can have (if enabled).\nDefault is 50.",
74661      "memberOf": "Roo.grid.Grid"
74662     },
74663     {
74664      "name": "autoExpandMax",
74665      "type": "Number",
74666      "desc": "The maximum width the autoExpandColumn can have (if enabled). Default is 1000.",
74667      "memberOf": "Roo.grid.Grid"
74668     },
74669     {
74670      "name": "view",
74671      "type": "Object",
74672      "desc": "The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().",
74673      "memberOf": "Roo.grid.Grid"
74674     },
74675     {
74676      "name": "loadMask",
74677      "type": "Object",
74678      "desc": "An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.",
74679      "memberOf": "Roo.grid.Grid"
74680     },
74681     {
74682      "name": "dropTarget",
74683      "type": "Roo.dd.DropTarget",
74684      "desc": "An {@link Roo.dd.DropTarget} config",
74685      "memberOf": "Roo.grid.Grid"
74686     },
74687     {
74688      "name": "listeners",
74689      "type": "Object",
74690      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
74691      "memberOf": "Roo.util.Observable"
74692     }
74693    ],
74694    "events": [
74695     {
74696      "name": "afteredit",
74697      "sig": "function (e)\n{\n\n}",
74698      "type": "function",
74699      "desc": "Fires after a cell is edited. <br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>grid - This grid</li>\n<li>record - The record being edited</li>\n<li>field - The field name being edited</li>\n<li>value - The value being set</li>\n<li>originalValue - The original value for the field, before the edit.</li>\n<li>row - The grid row index</li>\n<li>column - The grid column index</li>\n</ul>"
74700     },
74701     {
74702      "name": "beforeedit",
74703      "sig": "function (e)\n{\n\n}",
74704      "type": "function",
74705      "desc": "Fires before cell editing is triggered. The edit event object has the following properties <br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>grid - This grid</li>\n<li>record - The record being edited</li>\n<li>field - The field name being edited</li>\n<li>value - The value for the field being edited.</li>\n<li>row - The grid row index</li>\n<li>column - The grid column index</li>\n<li>cancel - Set this to true to cancel the edit or return false from your handler.</li>\n</ul>"
74706     },
74707     {
74708      "name": "bodyscroll",
74709      "sig": "function (scrollLeft, scrollTop)\n{\n\n}",
74710      "type": "function",
74711      "desc": "Fires when the body element is scrolled"
74712     },
74713     {
74714      "name": "cellclick",
74715      "sig": "function (_self, rowIndex, columnIndex, e)\n{\n\n}",
74716      "type": "function",
74717      "desc": "Fires when a cell is clicked"
74718     },
74719     {
74720      "name": "cellcontextmenu",
74721      "sig": "function (_self, rowIndex, cellIndex, e)\n{\n\n}",
74722      "type": "function",
74723      "desc": "Fires when a cell is right clicked"
74724     },
74725     {
74726      "name": "celldblclick",
74727      "sig": "function (_self, rowIndex, columnIndex, e)\n{\n\n}",
74728      "type": "function",
74729      "desc": "Fires when a cell is double clicked"
74730     },
74731     {
74732      "name": "click",
74733      "sig": "function (e)\n{\n\n}",
74734      "type": "function",
74735      "desc": "The raw click event for the entire grid."
74736     },
74737     {
74738      "name": "columnmove",
74739      "sig": "function (oldIndex, newIndex)\n{\n\n}",
74740      "type": "function",
74741      "desc": "Fires when the user moves a column"
74742     },
74743     {
74744      "name": "columnresize",
74745      "sig": "function (columnIndex, newSize)\n{\n\n}",
74746      "type": "function",
74747      "desc": "Fires when the user resizes a column"
74748     },
74749     {
74750      "name": "contextmenu",
74751      "sig": "function (e)\n{\n\n}",
74752      "type": "function",
74753      "desc": "The raw contextmenu event for the entire grid."
74754     },
74755     {
74756      "name": "dblclick",
74757      "sig": "function (e)\n{\n\n}",
74758      "type": "function",
74759      "desc": "The raw dblclick event for the entire grid."
74760     },
74761     {
74762      "name": "dragdrop",
74763      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
74764      "type": "function",
74765      "desc": "Fires when dragged row(s) are dropped on a valid DD target"
74766     },
74767     {
74768      "name": "dragenter\n Fires when the dragged row(s) first cross another DD target while being dragged",
74769      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
74770      "type": "function",
74771      "desc": ""
74772     },
74773     {
74774      "name": "dragout",
74775      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
74776      "type": "function",
74777      "desc": "Fires when the dragged row(s) leave another DD target while being dragged"
74778     },
74779     {
74780      "name": "dragover",
74781      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
74782      "type": "function",
74783      "desc": "Fires while row(s) are being dragged. \"targetId\" is the id of the Yahoo.util.DD object the selected rows are being dragged over."
74784     },
74785     {
74786      "name": "enddrag",
74787      "sig": "function (_self, dd, e)\n{\n\n}",
74788      "type": "function",
74789      "desc": "Fires when a drag operation is complete"
74790     },
74791     {
74792      "name": "headerclick",
74793      "sig": "function (_self, columnIndex, e)\n{\n\n}",
74794      "type": "function",
74795      "desc": "Fires when a header is clicked"
74796     },
74797     {
74798      "name": "headercontextmenu",
74799      "sig": "function (_self, columnIndex, e)\n{\n\n}",
74800      "type": "function",
74801      "desc": "Fires when a header is right clicked"
74802     },
74803     {
74804      "name": "headerdblclick",
74805      "sig": "function (_self, columnIndex, e)\n{\n\n}",
74806      "type": "function",
74807      "desc": "Fires when a header cell is double clicked"
74808     },
74809     {
74810      "name": "keydown",
74811      "sig": "function (e)\n{\n\n}",
74812      "type": "function",
74813      "desc": "The raw keydown event for the entire grid."
74814     },
74815     {
74816      "name": "keypress",
74817      "sig": "function (e)\n{\n\n}",
74818      "type": "function",
74819      "desc": "The raw keypress event for the entire grid."
74820     },
74821     {
74822      "name": "mousedown",
74823      "sig": "function (e)\n{\n\n}",
74824      "type": "function",
74825      "desc": "The raw mousedown event for the entire grid."
74826     },
74827     {
74828      "name": "mouseout",
74829      "sig": "function (e)\n{\n\n}",
74830      "type": "function",
74831      "desc": "The raw mouseout event for the entire grid."
74832     },
74833     {
74834      "name": "mouseover",
74835      "sig": "function (e)\n{\n\n}",
74836      "type": "function",
74837      "desc": "The raw mouseover event for the entire grid."
74838     },
74839     {
74840      "name": "mouseup",
74841      "sig": "function (e)\n{\n\n}",
74842      "type": "function",
74843      "desc": "The raw mouseup event for the entire grid."
74844     },
74845     {
74846      "name": "render",
74847      "sig": "function (grid)\n{\n\n}",
74848      "type": "function",
74849      "desc": "Fires when the grid is rendered"
74850     },
74851     {
74852      "name": "rowclass",
74853      "sig": "function (gridview, rowcfg)\n{\n\n}",
74854      "type": "function",
74855      "desc": "Fires when a row is rendered, so you can change add a style to it."
74856     },
74857     {
74858      "name": "rowclick",
74859      "sig": "function (_self, rowIndex, e)\n{\n\n}",
74860      "type": "function",
74861      "desc": "Fires when a row is clicked"
74862     },
74863     {
74864      "name": "rowcontextmenu",
74865      "sig": "function (_self, rowIndex, e)\n{\n\n}",
74866      "type": "function",
74867      "desc": "Fires when a row is right clicked"
74868     },
74869     {
74870      "name": "rowdblclick",
74871      "sig": "function (_self, rowIndex, e)\n{\n\n}",
74872      "type": "function",
74873      "desc": "Fires when a row is double clicked"
74874     },
74875     {
74876      "name": "startdrag",
74877      "sig": "function (_self, dd, e)\n{\n\n}",
74878      "type": "function",
74879      "desc": "Fires when row(s) start being dragged"
74880     },
74881     {
74882      "name": "validateedit",
74883      "sig": "function (e)\n{\n\n}",
74884      "type": "function",
74885      "desc": "Fires after a cell is edited, but before the value is set in the record. \nYou can use this to modify the value being set in the field, Return false\nto cancel the change. The edit event object has the following properties <br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>editor - This editor</li>\n<li>grid - This grid</li>\n<li>record - The record being edited</li>\n<li>field - The field name being edited</li>\n<li>value - The value being set</li>\n<li>originalValue - The original value for the field, before the edit.</li>\n<li>row - The grid row index</li>\n<li>column - The grid column index</li>\n<li>cancel - Set this to true to cancel the edit or return false from your handler.</li>\n</ul>"
74886     }
74887    ],
74888    "methods": [
74889     {
74890      "name": "addEvents",
74891      "sig": "(Object object)",
74892      "type": "function",
74893      "desc": "Used to define events on this Observable"
74894     },
74895     {
74896      "name": "addListener",
74897      "sig": "(String eventName, Function handler, Object scope, Object options)",
74898      "type": "function",
74899      "desc": "Appends an event handler to this component"
74900     },
74901     {
74902      "name": "autoSize",
74903      "sig": "()",
74904      "type": "function",
74905      "desc": "Causes the grid to manually recalculate its dimensions. Generally this is done automatically,\nbut if manual update is required this method will initiate it."
74906     },
74907     {
74908      "name": "capture",
74909      "sig": "(Observable o, Function fn, Object scope)",
74910      "type": "function",
74911      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
74912     },
74913     {
74914      "name": "destroy",
74915      "sig": "(Boolean removeEl)",
74916      "type": "function",
74917      "desc": "Destroy this grid."
74918     },
74919     {
74920      "name": "fireEvent",
74921      "sig": "(String eventName, Object... args)",
74922      "type": "function",
74923      "desc": "Fires the specified event with the passed parameters (minus the event name)."
74924     },
74925     {
74926      "name": "getColumnModel",
74927      "sig": "()",
74928      "type": "function",
74929      "desc": "Returns the grid's ColumnModel."
74930     },
74931     {
74932      "name": "getDataSource",
74933      "sig": "()",
74934      "type": "function",
74935      "desc": "Returns the grid's DataSource."
74936     },
74937     {
74938      "name": "getDragDropText",
74939      "sig": "()",
74940      "type": "function",
74941      "desc": "Called to get grid's drag proxy text, by default returns this.ddText."
74942     },
74943     {
74944      "name": "getGridEl",
74945      "sig": "()",
74946      "type": "function",
74947      "desc": "Returns the grid's underlying element."
74948     },
74949     {
74950      "name": "getSelectionModel",
74951      "sig": "()",
74952      "type": "function",
74953      "desc": "Returns the grid's SelectionModel."
74954     },
74955     {
74956      "name": "getView",
74957      "sig": "()",
74958      "type": "function",
74959      "desc": "Returns the grid's GridView object."
74960     },
74961     {
74962      "name": "hasListener",
74963      "sig": "(String eventName)",
74964      "type": "function",
74965      "desc": "Checks to see if this object has any listeners for a specified event"
74966     },
74967     {
74968      "name": "on",
74969      "sig": "(String eventName, Function handler, Object scope, Object options)",
74970      "type": "function",
74971      "desc": "Appends an event handler to this element (shorthand for addListener)"
74972     },
74973     {
74974      "name": "purgeListeners",
74975      "sig": "()",
74976      "type": "function",
74977      "desc": "Removes all listeners for this object"
74978     },
74979     {
74980      "name": "reconfigure",
74981      "sig": "(Roo.data.Store dataSource, Roo.grid.ColumnModel The)",
74982      "type": "function",
74983      "desc": "Reconfigures the grid to use a different Store and Column Model.\nThe View will be bound to the new objects and refreshed."
74984     },
74985     {
74986      "name": "releaseCapture",
74987      "sig": "(Observable o)",
74988      "type": "function",
74989      "desc": "Removes <b>all</b> added captures from the Observable."
74990     },
74991     {
74992      "name": "removeListener",
74993      "sig": "(String eventName, Function handler, Object scope)",
74994      "type": "function",
74995      "desc": "Removes a listener"
74996     },
74997     {
74998      "name": "render",
74999      "sig": "()",
75000      "type": "function",
75001      "desc": "Called once after all setup has been completed and the grid is ready to be rendered."
75002     },
75003     {
75004      "name": "startEditing",
75005      "sig": "(Number rowIndex, Number colIndex)",
75006      "type": "function",
75007      "desc": "Starts editing the specified for the specified row/column"
75008     },
75009     {
75010      "name": "stopEditing",
75011      "sig": "()",
75012      "type": "function",
75013      "desc": "Stops any active editing"
75014     },
75015     {
75016      "name": "un",
75017      "sig": "(String eventName, Function handler, Object scope)",
75018      "type": "function",
75019      "desc": "Removes a listener (shorthand for removeListener)"
75020     }
75021    ]
75022   },
75023   "Roo.grid.Grid": {
75024    "props": [
75025     {
75026      "name": "ddGroup",
75027      "type": "String",
75028      "desc": "- drag drop group.",
75029      "memberOf": ""
75030     },
75031     {
75032      "name": "enableDrag",
75033      "type": "Boolean",
75034      "desc": "True to enable drag of rows. Default is false. (double check if this is needed?)",
75035      "memberOf": ""
75036     },
75037     {
75038      "name": "autoWidth",
75039      "type": "Boolean",
75040      "desc": "True to set the grid's width to the default total width of the grid's columns instead\nof a fixed width. Default is false.",
75041      "memberOf": ""
75042     },
75043     {
75044      "name": "maxHeight",
75045      "type": "Number",
75046      "desc": "Sets the maximum height of the grid - ignored if autoHeight is not on.",
75047      "memberOf": ""
75048     },
75049     {
75050      "name": "minColumnWidth",
75051      "type": "Number",
75052      "desc": "The minimum width a column can be resized to. Default is 25.",
75053      "memberOf": ""
75054     },
75055     {
75056      "name": "autoSizeColumns",
75057      "type": "Boolean",
75058      "desc": "True to automatically resize the columns to fit their content\n<b>on initial render.</b> It is more efficient to explicitly size the columns\nthrough the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.",
75059      "memberOf": ""
75060     },
75061     {
75062      "name": "autoSizeHeaders",
75063      "type": "Boolean",
75064      "desc": "True to measure headers with column data when auto sizing columns. Default is true.",
75065      "memberOf": ""
75066     },
75067     {
75068      "name": "monitorWindowResize",
75069      "type": "Boolean",
75070      "desc": "True to autoSize the grid when the window resizes. Default is true.",
75071      "memberOf": ""
75072     },
75073     {
75074      "name": "maxRowsToMeasure",
75075      "type": "Boolean",
75076      "desc": "If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of\nrows measured to get a columns size. Default is 0 (all rows).",
75077      "memberOf": ""
75078     },
75079     {
75080      "name": "trackMouseOver",
75081      "type": "Boolean",
75082      "desc": "True to highlight rows when the mouse is over. Default is true.",
75083      "memberOf": ""
75084     },
75085     {
75086      "name": "enableDragDrop",
75087      "type": "Boolean",
75088      "desc": "True to enable drag and drop of rows. Default is false.",
75089      "memberOf": ""
75090     },
75091     {
75092      "name": "enableColumnMove",
75093      "type": "Boolean",
75094      "desc": "True to enable drag and drop reorder of columns. Default is true.",
75095      "memberOf": ""
75096     },
75097     {
75098      "name": "enableColumnHide",
75099      "type": "Boolean",
75100      "desc": "True to enable hiding of columns with the header context menu. Default is true.",
75101      "memberOf": ""
75102     },
75103     {
75104      "name": "enableRowHeightSync",
75105      "type": "Boolean",
75106      "desc": "True to manually sync row heights across locked and not locked rows. Default is false.",
75107      "memberOf": ""
75108     },
75109     {
75110      "name": "stripeRows",
75111      "type": "Boolean",
75112      "desc": "True to stripe the rows.  Default is true.",
75113      "memberOf": ""
75114     },
75115     {
75116      "name": "autoHeight",
75117      "type": "Boolean",
75118      "desc": "True to fit the height of the grid container to the height of the data. Default is false.",
75119      "memberOf": ""
75120     },
75121     {
75122      "name": "autoExpandColumn",
75123      "type": "String",
75124      "desc": "The id (or dataIndex) of a column in this grid that should expand to fill unused space. This id can not be 0. Default is false.",
75125      "memberOf": ""
75126     },
75127     {
75128      "name": "autoExpandMin",
75129      "type": "Number",
75130      "desc": "The minimum width the autoExpandColumn can have (if enabled).\nDefault is 50.",
75131      "memberOf": ""
75132     },
75133     {
75134      "name": "autoExpandMax",
75135      "type": "Number",
75136      "desc": "The maximum width the autoExpandColumn can have (if enabled). Default is 1000.",
75137      "memberOf": ""
75138     },
75139     {
75140      "name": "view",
75141      "type": "Object",
75142      "desc": "The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().",
75143      "memberOf": ""
75144     },
75145     {
75146      "name": "loadMask",
75147      "type": "Object",
75148      "desc": "An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.",
75149      "memberOf": ""
75150     },
75151     {
75152      "name": "dropTarget",
75153      "type": "Roo.dd.DropTarget",
75154      "desc": "An {@link Roo.dd.DropTarget} config",
75155      "memberOf": ""
75156     },
75157     {
75158      "name": "listeners",
75159      "type": "Object",
75160      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
75161      "memberOf": "Roo.util.Observable"
75162     }
75163    ],
75164    "events": [
75165     {
75166      "name": "bodyscroll",
75167      "sig": "function (scrollLeft, scrollTop)\n{\n\n}",
75168      "type": "function",
75169      "desc": "Fires when the body element is scrolled"
75170     },
75171     {
75172      "name": "cellclick",
75173      "sig": "function (_self, rowIndex, columnIndex, e)\n{\n\n}",
75174      "type": "function",
75175      "desc": "Fires when a cell is clicked"
75176     },
75177     {
75178      "name": "cellcontextmenu",
75179      "sig": "function (_self, rowIndex, cellIndex, e)\n{\n\n}",
75180      "type": "function",
75181      "desc": "Fires when a cell is right clicked"
75182     },
75183     {
75184      "name": "celldblclick",
75185      "sig": "function (_self, rowIndex, columnIndex, e)\n{\n\n}",
75186      "type": "function",
75187      "desc": "Fires when a cell is double clicked"
75188     },
75189     {
75190      "name": "click",
75191      "sig": "function (e)\n{\n\n}",
75192      "type": "function",
75193      "desc": "The raw click event for the entire grid."
75194     },
75195     {
75196      "name": "columnmove",
75197      "sig": "function (oldIndex, newIndex)\n{\n\n}",
75198      "type": "function",
75199      "desc": "Fires when the user moves a column"
75200     },
75201     {
75202      "name": "columnresize",
75203      "sig": "function (columnIndex, newSize)\n{\n\n}",
75204      "type": "function",
75205      "desc": "Fires when the user resizes a column"
75206     },
75207     {
75208      "name": "contextmenu",
75209      "sig": "function (e)\n{\n\n}",
75210      "type": "function",
75211      "desc": "The raw contextmenu event for the entire grid."
75212     },
75213     {
75214      "name": "dblclick",
75215      "sig": "function (e)\n{\n\n}",
75216      "type": "function",
75217      "desc": "The raw dblclick event for the entire grid."
75218     },
75219     {
75220      "name": "dragdrop",
75221      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
75222      "type": "function",
75223      "desc": "Fires when dragged row(s) are dropped on a valid DD target"
75224     },
75225     {
75226      "name": "dragenter\n Fires when the dragged row(s) first cross another DD target while being dragged",
75227      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
75228      "type": "function",
75229      "desc": ""
75230     },
75231     {
75232      "name": "dragout",
75233      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
75234      "type": "function",
75235      "desc": "Fires when the dragged row(s) leave another DD target while being dragged"
75236     },
75237     {
75238      "name": "dragover",
75239      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
75240      "type": "function",
75241      "desc": "Fires while row(s) are being dragged. \"targetId\" is the id of the Yahoo.util.DD object the selected rows are being dragged over."
75242     },
75243     {
75244      "name": "enddrag",
75245      "sig": "function (_self, dd, e)\n{\n\n}",
75246      "type": "function",
75247      "desc": "Fires when a drag operation is complete"
75248     },
75249     {
75250      "name": "headerclick",
75251      "sig": "function (_self, columnIndex, e)\n{\n\n}",
75252      "type": "function",
75253      "desc": "Fires when a header is clicked"
75254     },
75255     {
75256      "name": "headercontextmenu",
75257      "sig": "function (_self, columnIndex, e)\n{\n\n}",
75258      "type": "function",
75259      "desc": "Fires when a header is right clicked"
75260     },
75261     {
75262      "name": "headerdblclick",
75263      "sig": "function (_self, columnIndex, e)\n{\n\n}",
75264      "type": "function",
75265      "desc": "Fires when a header cell is double clicked"
75266     },
75267     {
75268      "name": "keydown",
75269      "sig": "function (e)\n{\n\n}",
75270      "type": "function",
75271      "desc": "The raw keydown event for the entire grid."
75272     },
75273     {
75274      "name": "keypress",
75275      "sig": "function (e)\n{\n\n}",
75276      "type": "function",
75277      "desc": "The raw keypress event for the entire grid."
75278     },
75279     {
75280      "name": "mousedown",
75281      "sig": "function (e)\n{\n\n}",
75282      "type": "function",
75283      "desc": "The raw mousedown event for the entire grid."
75284     },
75285     {
75286      "name": "mouseout",
75287      "sig": "function (e)\n{\n\n}",
75288      "type": "function",
75289      "desc": "The raw mouseout event for the entire grid."
75290     },
75291     {
75292      "name": "mouseover",
75293      "sig": "function (e)\n{\n\n}",
75294      "type": "function",
75295      "desc": "The raw mouseover event for the entire grid."
75296     },
75297     {
75298      "name": "mouseup",
75299      "sig": "function (e)\n{\n\n}",
75300      "type": "function",
75301      "desc": "The raw mouseup event for the entire grid."
75302     },
75303     {
75304      "name": "render",
75305      "sig": "function (grid)\n{\n\n}",
75306      "type": "function",
75307      "desc": "Fires when the grid is rendered"
75308     },
75309     {
75310      "name": "rowclass",
75311      "sig": "function (gridview, rowcfg)\n{\n\n}",
75312      "type": "function",
75313      "desc": "Fires when a row is rendered, so you can change add a style to it."
75314     },
75315     {
75316      "name": "rowclick",
75317      "sig": "function (_self, rowIndex, e)\n{\n\n}",
75318      "type": "function",
75319      "desc": "Fires when a row is clicked"
75320     },
75321     {
75322      "name": "rowcontextmenu",
75323      "sig": "function (_self, rowIndex, e)\n{\n\n}",
75324      "type": "function",
75325      "desc": "Fires when a row is right clicked"
75326     },
75327     {
75328      "name": "rowdblclick",
75329      "sig": "function (_self, rowIndex, e)\n{\n\n}",
75330      "type": "function",
75331      "desc": "Fires when a row is double clicked"
75332     },
75333     {
75334      "name": "startdrag",
75335      "sig": "function (_self, dd, e)\n{\n\n}",
75336      "type": "function",
75337      "desc": "Fires when row(s) start being dragged"
75338     }
75339    ],
75340    "methods": [
75341     {
75342      "name": "addEvents",
75343      "sig": "(Object object)",
75344      "type": "function",
75345      "desc": "Used to define events on this Observable"
75346     },
75347     {
75348      "name": "addListener",
75349      "sig": "(String eventName, Function handler, Object scope, Object options)",
75350      "type": "function",
75351      "desc": "Appends an event handler to this component"
75352     },
75353     {
75354      "name": "autoSize",
75355      "sig": "()",
75356      "type": "function",
75357      "desc": "Causes the grid to manually recalculate its dimensions. Generally this is done automatically,\nbut if manual update is required this method will initiate it."
75358     },
75359     {
75360      "name": "capture",
75361      "sig": "(Observable o, Function fn, Object scope)",
75362      "type": "function",
75363      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
75364     },
75365     {
75366      "name": "destroy",
75367      "sig": "(Boolean removeEl)",
75368      "type": "function",
75369      "desc": "Destroy this grid."
75370     },
75371     {
75372      "name": "fireEvent",
75373      "sig": "(String eventName, Object... args)",
75374      "type": "function",
75375      "desc": "Fires the specified event with the passed parameters (minus the event name)."
75376     },
75377     {
75378      "name": "getColumnModel",
75379      "sig": "()",
75380      "type": "function",
75381      "desc": "Returns the grid's ColumnModel."
75382     },
75383     {
75384      "name": "getDataSource",
75385      "sig": "()",
75386      "type": "function",
75387      "desc": "Returns the grid's DataSource."
75388     },
75389     {
75390      "name": "getDragDropText",
75391      "sig": "()",
75392      "type": "function",
75393      "desc": "Called to get grid's drag proxy text, by default returns this.ddText."
75394     },
75395     {
75396      "name": "getGridEl",
75397      "sig": "()",
75398      "type": "function",
75399      "desc": "Returns the grid's underlying element."
75400     },
75401     {
75402      "name": "getSelectionModel",
75403      "sig": "()",
75404      "type": "function",
75405      "desc": "Returns the grid's SelectionModel."
75406     },
75407     {
75408      "name": "getView",
75409      "sig": "()",
75410      "type": "function",
75411      "desc": "Returns the grid's GridView object."
75412     },
75413     {
75414      "name": "hasListener",
75415      "sig": "(String eventName)",
75416      "type": "function",
75417      "desc": "Checks to see if this object has any listeners for a specified event"
75418     },
75419     {
75420      "name": "on",
75421      "sig": "(String eventName, Function handler, Object scope, Object options)",
75422      "type": "function",
75423      "desc": "Appends an event handler to this element (shorthand for addListener)"
75424     },
75425     {
75426      "name": "purgeListeners",
75427      "sig": "()",
75428      "type": "function",
75429      "desc": "Removes all listeners for this object"
75430     },
75431     {
75432      "name": "reconfigure",
75433      "sig": "(Roo.data.Store dataSource, Roo.grid.ColumnModel The)",
75434      "type": "function",
75435      "desc": "Reconfigures the grid to use a different Store and Column Model.\nThe View will be bound to the new objects and refreshed."
75436     },
75437     {
75438      "name": "releaseCapture",
75439      "sig": "(Observable o)",
75440      "type": "function",
75441      "desc": "Removes <b>all</b> added captures from the Observable."
75442     },
75443     {
75444      "name": "removeListener",
75445      "sig": "(String eventName, Function handler, Object scope)",
75446      "type": "function",
75447      "desc": "Removes a listener"
75448     },
75449     {
75450      "name": "render",
75451      "sig": "()",
75452      "type": "function",
75453      "desc": "Called once after all setup has been completed and the grid is ready to be rendered."
75454     },
75455     {
75456      "name": "un",
75457      "sig": "(String eventName, Function handler, Object scope)",
75458      "type": "function",
75459      "desc": "Removes a listener (shorthand for removeListener)"
75460     }
75461    ]
75462   },
75463   "Roo.grid.GridEditor": {
75464    "props": [
75465     {
75466      "name": "field",
75467      "type": "Roo.form.Field",
75468      "desc": "Field to wrap (or xtyped)",
75469      "memberOf": ""
75470     },
75471     {
75472      "name": "autosize",
75473      "type": "Boolean/String",
75474      "desc": "True for the editor to automatically adopt the size of the underlying field, \"width\" to adopt the width only,\nor \"height\" to adopt the height only (defaults to false)",
75475      "memberOf": "Roo.Editor"
75476     },
75477     {
75478      "name": "revertInvalid",
75479      "type": "Boolean",
75480      "desc": "True to automatically revert the field value and cancel the edit when the user completes an edit and the field\nvalidation fails (defaults to true)",
75481      "memberOf": "Roo.Editor"
75482     },
75483     {
75484      "name": "ignoreNoChange",
75485      "type": "Boolean",
75486      "desc": "True to skip the the edit completion process (no save, no events fired) if the user completes an edit and\nthe value has not changed (defaults to false).  Applies only to string values - edits for other data types\nwill never be ignored.",
75487      "memberOf": "Roo.Editor"
75488     },
75489     {
75490      "name": "hideEl",
75491      "type": "Boolean",
75492      "desc": "False to keep the bound element visible while the editor is displayed (defaults to true)",
75493      "memberOf": "Roo.Editor"
75494     },
75495     {
75496      "name": "value",
75497      "type": "Mixed",
75498      "desc": "The data value of the underlying field (defaults to \"\")",
75499      "memberOf": "Roo.Editor"
75500     },
75501     {
75502      "name": "alignment",
75503      "type": "String",
75504      "desc": "The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to \"c-c?\").",
75505      "memberOf": "Roo.Editor"
75506     },
75507     {
75508      "name": "shadow",
75509      "type": "Boolean/String",
75510      "desc": "\"sides\" for sides/bottom only, \"frame\" for 4-way shadow, and \"drop\"\nfor bottom-right shadow (defaults to \"frame\")",
75511      "memberOf": "Roo.Editor"
75512     },
75513     {
75514      "name": "constrain",
75515      "type": "Boolean",
75516      "desc": "True to constrain the editor to the viewport",
75517      "memberOf": "Roo.Editor"
75518     },
75519     {
75520      "name": "completeOnEnter",
75521      "type": "Boolean",
75522      "desc": "True to complete the edit when the enter key is pressed (defaults to false)",
75523      "memberOf": "Roo.Editor"
75524     },
75525     {
75526      "name": "cancelOnEsc",
75527      "type": "Boolean",
75528      "desc": "True to cancel the edit when the escape key is pressed (defaults to false)",
75529      "memberOf": "Roo.Editor"
75530     },
75531     {
75532      "name": "updateEl",
75533      "type": "Boolean",
75534      "desc": "True to update the innerHTML of the bound element when the update completes (defaults to false)",
75535      "memberOf": "Roo.Editor"
75536     },
75537     {
75538      "name": "disableClass",
75539      "type": "String",
75540      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
75541      "memberOf": "Roo.Component"
75542     },
75543     {
75544      "name": "allowDomMove",
75545      "type": "Boolean",
75546      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
75547      "memberOf": "Roo.Component"
75548     },
75549     {
75550      "name": "hideMode",
75551      "type": "String",
75552      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
75553      "memberOf": "Roo.Component",
75554      "optvals": [
75555       "display",
75556       "visibility"
75557      ]
75558     },
75559     {
75560      "name": "actionMode",
75561      "type": "String",
75562      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
75563      "memberOf": "Roo.Component"
75564     },
75565     {
75566      "name": "listeners",
75567      "type": "Object",
75568      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
75569      "memberOf": "Roo.util.Observable"
75570     }
75571    ],
75572    "events": [
75573     {
75574      "name": "beforecomplete",
75575      "sig": "function (_self, value, startValue)\n{\n\n}",
75576      "type": "function",
75577      "desc": "Fires after a change has been made to the field, but before the change is reflected in the underlying\nfield.  Saving the change to the field can be canceled by returning false from the handler of this event.\nNote that if the value has not changed and ignoreNoChange = true, the editing will still end but this\nevent will not fire since no edit actually occurred."
75578     },
75579     {
75580      "name": "beforedestroy",
75581      "sig": "function (_self)\n{\n\n}",
75582      "type": "function",
75583      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
75584     },
75585     {
75586      "name": "beforehide",
75587      "sig": "function (_self)\n{\n\n}",
75588      "type": "function",
75589      "desc": "Fires before the component is hidden. Return false to stop the hide."
75590     },
75591     {
75592      "name": "beforerender",
75593      "sig": "function (_self)\n{\n\n}",
75594      "type": "function",
75595      "desc": "Fires before the component is rendered. Return false to stop the render."
75596     },
75597     {
75598      "name": "beforeshow",
75599      "sig": "function (_self)\n{\n\n}",
75600      "type": "function",
75601      "desc": "Fires before the component is shown.  Return false to stop the show."
75602     },
75603     {
75604      "name": "beforestartedit",
75605      "sig": "function (_self, boundEl, value)\n{\n\n}",
75606      "type": "function",
75607      "desc": "Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning\nfalse from the handler of this event."
75608     },
75609     {
75610      "name": "complete",
75611      "sig": "function (_self, value, startValue)\n{\n\n}",
75612      "type": "function",
75613      "desc": "Fires after editing is complete and any changed value has been written to the underlying field."
75614     },
75615     {
75616      "name": "destroy",
75617      "sig": "function (_self)\n{\n\n}",
75618      "type": "function",
75619      "desc": "Fires after the component is destroyed."
75620     },
75621     {
75622      "name": "disable",
75623      "sig": "function (_self)\n{\n\n}",
75624      "type": "function",
75625      "desc": "Fires after the component is disabled."
75626     },
75627     {
75628      "name": "enable",
75629      "sig": "function (_self)\n{\n\n}",
75630      "type": "function",
75631      "desc": "Fires after the component is enabled."
75632     },
75633     {
75634      "name": "hide",
75635      "sig": "function (_self)\n{\n\n}",
75636      "type": "function",
75637      "desc": "Fires after the component is hidden."
75638     },
75639     {
75640      "name": "render",
75641      "sig": "function (_self)\n{\n\n}",
75642      "type": "function",
75643      "desc": "Fires after the component is rendered."
75644     },
75645     {
75646      "name": "show",
75647      "sig": "function (_self)\n{\n\n}",
75648      "type": "function",
75649      "desc": "Fires after the component is shown."
75650     },
75651     {
75652      "name": "specialkey",
75653      "sig": "function (_self, e)\n{\n\n}",
75654      "type": "function",
75655      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
75656     },
75657     {
75658      "name": "startedit",
75659      "sig": "function (boundEl, value)\n{\n\n}",
75660      "type": "function",
75661      "desc": "Fires when this editor is displayed"
75662     }
75663    ],
75664    "methods": [
75665     {
75666      "name": "addEvents",
75667      "sig": "(Object object)",
75668      "type": "function",
75669      "desc": "Used to define events on this Observable"
75670     },
75671     {
75672      "name": "addListener",
75673      "sig": "(String eventName, Function handler, Object scope, Object options)",
75674      "type": "function",
75675      "desc": "Appends an event handler to this component"
75676     },
75677     {
75678      "name": "cancelEdit",
75679      "sig": "(Boolean remainVisible)",
75680      "type": "function",
75681      "desc": "Cancels the editing process and hides the editor without persisting any changes.  The field value will be\nreverted to the original starting value."
75682     },
75683     {
75684      "name": "capture",
75685      "sig": "(Observable o, Function fn, Object scope)",
75686      "type": "function",
75687      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
75688     },
75689     {
75690      "name": "completeEdit",
75691      "sig": "(Boolean remainVisible)",
75692      "type": "function",
75693      "desc": "Ends the editing process, persists the changed value to the underlying field, and hides the editor."
75694     },
75695     {
75696      "name": "destroy",
75697      "sig": "()",
75698      "type": "function",
75699      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
75700     },
75701     {
75702      "name": "disable",
75703      "sig": "()",
75704      "type": "function",
75705      "desc": "Disable this component."
75706     },
75707     {
75708      "name": "enable",
75709      "sig": "()",
75710      "type": "function",
75711      "desc": "Enable this component."
75712     },
75713     {
75714      "name": "fireEvent",
75715      "sig": "(String eventName, Object... args)",
75716      "type": "function",
75717      "desc": "Fires the specified event with the passed parameters (minus the event name)."
75718     },
75719     {
75720      "name": "focus",
75721      "sig": "(Boolean selectText)",
75722      "type": "function",
75723      "desc": "Try to focus this component."
75724     },
75725     {
75726      "name": "getEl",
75727      "sig": "()",
75728      "type": "function",
75729      "desc": "Returns the underlying {@link Roo.Element}."
75730     },
75731     {
75732      "name": "getId",
75733      "sig": "()",
75734      "type": "function",
75735      "desc": "Returns the id of this component."
75736     },
75737     {
75738      "name": "getValue",
75739      "sig": "()",
75740      "type": "function",
75741      "desc": "Gets the data value of the editor"
75742     },
75743     {
75744      "name": "hasListener",
75745      "sig": "(String eventName)",
75746      "type": "function",
75747      "desc": "Checks to see if this object has any listeners for a specified event"
75748     },
75749     {
75750      "name": "hide",
75751      "sig": "()",
75752      "type": "function",
75753      "desc": "Hide this component."
75754     },
75755     {
75756      "name": "isVisible",
75757      "sig": "()",
75758      "type": "function",
75759      "desc": "Returns true if this component is visible."
75760     },
75761     {
75762      "name": "on",
75763      "sig": "(String eventName, Function handler, Object scope, Object options)",
75764      "type": "function",
75765      "desc": "Appends an event handler to this element (shorthand for addListener)"
75766     },
75767     {
75768      "name": "purgeListeners",
75769      "sig": "()",
75770      "type": "function",
75771      "desc": "Removes all listeners for this object"
75772     },
75773     {
75774      "name": "realign",
75775      "sig": "()",
75776      "type": "function",
75777      "desc": "Realigns the editor to the bound field based on the current alignment config value."
75778     },
75779     {
75780      "name": "releaseCapture",
75781      "sig": "(Observable o)",
75782      "type": "function",
75783      "desc": "Removes <b>all</b> added captures from the Observable."
75784     },
75785     {
75786      "name": "removeListener",
75787      "sig": "(String eventName, Function handler, Object scope)",
75788      "type": "function",
75789      "desc": "Removes a listener"
75790     },
75791     {
75792      "name": "render",
75793      "sig": "(String/HTMLElement/Element container)",
75794      "type": "function",
75795      "desc": "If this is a lazy rendering component, render it to its container element."
75796     },
75797     {
75798      "name": "setDisabled",
75799      "sig": "(Boolean disabled)",
75800      "type": "function",
75801      "desc": "Convenience function for setting disabled/enabled by boolean."
75802     },
75803     {
75804      "name": "setSize",
75805      "sig": "(Number width, Number height)",
75806      "type": "function",
75807      "desc": "Sets the height and width of this editor."
75808     },
75809     {
75810      "name": "setValue",
75811      "sig": "(Mixed value)",
75812      "type": "function",
75813      "desc": "Sets the data value of the editor"
75814     },
75815     {
75816      "name": "setVisible",
75817      "sig": "(Boolean visible)",
75818      "type": "function",
75819      "desc": "Convenience function to hide or show this component by boolean."
75820     },
75821     {
75822      "name": "show",
75823      "sig": "()",
75824      "type": "function",
75825      "desc": "Show this component."
75826     },
75827     {
75828      "name": "startEdit",
75829      "sig": "(String/HTMLElement/Element el, String value)",
75830      "type": "function",
75831      "desc": "Starts the editing process and shows the editor."
75832     },
75833     {
75834      "name": "un",
75835      "sig": "(String eventName, Function handler, Object scope)",
75836      "type": "function",
75837      "desc": "Removes a listener (shorthand for removeListener)"
75838     }
75839    ]
75840   },
75841   "Roo.grid.GridView": {
75842    "props": [
75843     {
75844      "name": "listeners",
75845      "type": "Object",
75846      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
75847      "memberOf": "Roo.util.Observable"
75848     }
75849    ],
75850    "events": [],
75851    "methods": [
75852     {
75853      "name": "addEvents",
75854      "sig": "(Object object)",
75855      "type": "function",
75856      "desc": "Used to define events on this Observable"
75857     },
75858     {
75859      "name": "addListener",
75860      "sig": "(String eventName, Function handler, Object scope, Object options)",
75861      "type": "function",
75862      "desc": "Appends an event handler to this component"
75863     },
75864     {
75865      "name": "autoSizeColumn",
75866      "sig": "(Number colIndex, Boolean forceMinSize)",
75867      "type": "function",
75868      "desc": "Autofit a column to its content."
75869     },
75870     {
75871      "name": "autoSizeColumns",
75872      "sig": "()",
75873      "type": "function",
75874      "desc": "Autofits all columns to their content and then expands to fit any extra space in the grid"
75875     },
75876     {
75877      "name": "capture",
75878      "sig": "(Observable o, Function fn, Object scope)",
75879      "type": "function",
75880      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
75881     },
75882     {
75883      "name": "ensureVisible",
75884      "sig": "(Number row, Number col, Boolean hscroll)",
75885      "type": "function",
75886      "desc": "Scrolls the specified cell into view"
75887     },
75888     {
75889      "name": "fireEvent",
75890      "sig": "(String eventName, Object... args)",
75891      "type": "function",
75892      "desc": "Fires the specified event with the passed parameters (minus the event name)."
75893     },
75894     {
75895      "name": "fitColumns",
75896      "sig": "(Boolean reserveScrollSpace)",
75897      "type": "function",
75898      "desc": "Autofits all columns to the grid's width proportionate with their current size"
75899     },
75900     {
75901      "name": "focusCell",
75902      "sig": "(Number row, Number col, Boolean hscroll)",
75903      "type": "function",
75904      "desc": "Focuses the specified cell."
75905     },
75906     {
75907      "name": "focusRow",
75908      "sig": "(Number row)",
75909      "type": "function",
75910      "desc": "Focuses the specified row."
75911     },
75912     {
75913      "name": "getCell",
75914      "sig": "(Integer rowIndex, Integer colIndex)",
75915      "type": "function",
75916      "desc": "Gets the 'td' of the cell"
75917     },
75918     {
75919      "name": "getFooterPanel",
75920      "sig": "(Boolean doShow)",
75921      "type": "function",
75922      "desc": "Gets a panel in the footer of the grid that can be used for toolbars etc.\nAfter modifying the contents of this panel a call to grid.autoSize() may be\nrequired to register any changes in size."
75923     },
75924     {
75925      "name": "getHeaderPanel",
75926      "sig": "(Boolean doShow)",
75927      "type": "function",
75928      "desc": "Gets a panel in the header of the grid that can be used for toolbars etc.\nAfter modifying the contents of this panel a call to grid.autoSize() may be\nrequired to register any changes in size."
75929     },
75930     {
75931      "name": "hasListener",
75932      "sig": "(String eventName)",
75933      "type": "function",
75934      "desc": "Checks to see if this object has any listeners for a specified event"
75935     },
75936     {
75937      "name": "on",
75938      "sig": "(String eventName, Function handler, Object scope, Object options)",
75939      "type": "function",
75940      "desc": "Appends an event handler to this element (shorthand for addListener)"
75941     },
75942     {
75943      "name": "purgeListeners",
75944      "sig": "()",
75945      "type": "function",
75946      "desc": "Removes all listeners for this object"
75947     },
75948     {
75949      "name": "refresh",
75950      "sig": "(Boolean headersToo)",
75951      "type": "function",
75952      "desc": "Refreshes the grid"
75953     },
75954     {
75955      "name": "releaseCapture",
75956      "sig": "(Observable o)",
75957      "type": "function",
75958      "desc": "Removes <b>all</b> added captures from the Observable."
75959     },
75960     {
75961      "name": "removeListener",
75962      "sig": "(String eventName, Function handler, Object scope)",
75963      "type": "function",
75964      "desc": "Removes a listener"
75965     },
75966     {
75967      "name": "scrollToTop",
75968      "sig": "()",
75969      "type": "function",
75970      "desc": "Scrolls the grid to the top"
75971     },
75972     {
75973      "name": "un",
75974      "sig": "(String eventName, Function handler, Object scope)",
75975      "type": "function",
75976      "desc": "Removes a listener (shorthand for removeListener)"
75977     }
75978    ]
75979   },
75980   "Roo.grid.PropertyGrid": {
75981    "props": [
75982     {
75983      "name": "customEditors",
75984      "type": "Object",
75985      "desc": "map of colnames=> custom editors.\nthe custom editor can be one of the standard ones (date|string|number|int|boolean), or a\ngrid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),\nfalse disables editing of the field.",
75986      "memberOf": ""
75987     },
75988     {
75989      "name": "propertyNames",
75990      "type": "Object",
75991      "desc": "map of property Names to their displayed value",
75992      "memberOf": ""
75993     },
75994     {
75995      "name": "clicksToEdit",
75996      "type": "Number",
75997      "desc": "The number of clicks on a cell required to display the cell's editor (defaults to 2)",
75998      "memberOf": "Roo.grid.EditorGrid"
75999     },
76000     {
76001      "name": "ddGroup",
76002      "type": "String",
76003      "desc": "- drag drop group.",
76004      "memberOf": "Roo.grid.Grid"
76005     },
76006     {
76007      "name": "enableDrag",
76008      "type": "Boolean",
76009      "desc": "True to enable drag of rows. Default is false. (double check if this is needed?)",
76010      "memberOf": "Roo.grid.Grid"
76011     },
76012     {
76013      "name": "autoWidth",
76014      "type": "Boolean",
76015      "desc": "True to set the grid's width to the default total width of the grid's columns instead\nof a fixed width. Default is false.",
76016      "memberOf": "Roo.grid.Grid"
76017     },
76018     {
76019      "name": "maxHeight",
76020      "type": "Number",
76021      "desc": "Sets the maximum height of the grid - ignored if autoHeight is not on.",
76022      "memberOf": "Roo.grid.Grid"
76023     },
76024     {
76025      "name": "minColumnWidth",
76026      "type": "Number",
76027      "desc": "The minimum width a column can be resized to. Default is 25.",
76028      "memberOf": "Roo.grid.Grid"
76029     },
76030     {
76031      "name": "autoSizeColumns",
76032      "type": "Boolean",
76033      "desc": "True to automatically resize the columns to fit their content\n<b>on initial render.</b> It is more efficient to explicitly size the columns\nthrough the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.",
76034      "memberOf": "Roo.grid.Grid"
76035     },
76036     {
76037      "name": "autoSizeHeaders",
76038      "type": "Boolean",
76039      "desc": "True to measure headers with column data when auto sizing columns. Default is true.",
76040      "memberOf": "Roo.grid.Grid"
76041     },
76042     {
76043      "name": "monitorWindowResize",
76044      "type": "Boolean",
76045      "desc": "True to autoSize the grid when the window resizes. Default is true.",
76046      "memberOf": "Roo.grid.Grid"
76047     },
76048     {
76049      "name": "maxRowsToMeasure",
76050      "type": "Boolean",
76051      "desc": "If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of\nrows measured to get a columns size. Default is 0 (all rows).",
76052      "memberOf": "Roo.grid.Grid"
76053     },
76054     {
76055      "name": "trackMouseOver",
76056      "type": "Boolean",
76057      "desc": "True to highlight rows when the mouse is over. Default is true.",
76058      "memberOf": "Roo.grid.Grid"
76059     },
76060     {
76061      "name": "enableDragDrop",
76062      "type": "Boolean",
76063      "desc": "True to enable drag and drop of rows. Default is false.",
76064      "memberOf": "Roo.grid.Grid"
76065     },
76066     {
76067      "name": "enableColumnMove",
76068      "type": "Boolean",
76069      "desc": "True to enable drag and drop reorder of columns. Default is true.",
76070      "memberOf": "Roo.grid.Grid"
76071     },
76072     {
76073      "name": "enableColumnHide",
76074      "type": "Boolean",
76075      "desc": "True to enable hiding of columns with the header context menu. Default is true.",
76076      "memberOf": "Roo.grid.Grid"
76077     },
76078     {
76079      "name": "enableRowHeightSync",
76080      "type": "Boolean",
76081      "desc": "True to manually sync row heights across locked and not locked rows. Default is false.",
76082      "memberOf": "Roo.grid.Grid"
76083     },
76084     {
76085      "name": "stripeRows",
76086      "type": "Boolean",
76087      "desc": "True to stripe the rows.  Default is true.",
76088      "memberOf": "Roo.grid.Grid"
76089     },
76090     {
76091      "name": "autoHeight",
76092      "type": "Boolean",
76093      "desc": "True to fit the height of the grid container to the height of the data. Default is false.",
76094      "memberOf": "Roo.grid.Grid"
76095     },
76096     {
76097      "name": "autoExpandColumn",
76098      "type": "String",
76099      "desc": "The id (or dataIndex) of a column in this grid that should expand to fill unused space. This id can not be 0. Default is false.",
76100      "memberOf": "Roo.grid.Grid"
76101     },
76102     {
76103      "name": "autoExpandMin",
76104      "type": "Number",
76105      "desc": "The minimum width the autoExpandColumn can have (if enabled).\nDefault is 50.",
76106      "memberOf": "Roo.grid.Grid"
76107     },
76108     {
76109      "name": "autoExpandMax",
76110      "type": "Number",
76111      "desc": "The maximum width the autoExpandColumn can have (if enabled). Default is 1000.",
76112      "memberOf": "Roo.grid.Grid"
76113     },
76114     {
76115      "name": "view",
76116      "type": "Object",
76117      "desc": "The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().",
76118      "memberOf": "Roo.grid.Grid"
76119     },
76120     {
76121      "name": "loadMask",
76122      "type": "Object",
76123      "desc": "An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.",
76124      "memberOf": "Roo.grid.Grid"
76125     },
76126     {
76127      "name": "dropTarget",
76128      "type": "Roo.dd.DropTarget",
76129      "desc": "An {@link Roo.dd.DropTarget} config",
76130      "memberOf": "Roo.grid.Grid"
76131     },
76132     {
76133      "name": "listeners",
76134      "type": "Object",
76135      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
76136      "memberOf": "Roo.util.Observable"
76137     }
76138    ],
76139    "events": [
76140     {
76141      "name": "afteredit",
76142      "sig": "function (e)\n{\n\n}",
76143      "type": "function",
76144      "desc": "Fires after a cell is edited. <br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>grid - This grid</li>\n<li>record - The record being edited</li>\n<li>field - The field name being edited</li>\n<li>value - The value being set</li>\n<li>originalValue - The original value for the field, before the edit.</li>\n<li>row - The grid row index</li>\n<li>column - The grid column index</li>\n</ul>"
76145     },
76146     {
76147      "name": "beforeedit",
76148      "sig": "function (e)\n{\n\n}",
76149      "type": "function",
76150      "desc": "Fires before cell editing is triggered. The edit event object has the following properties <br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>grid - This grid</li>\n<li>record - The record being edited</li>\n<li>field - The field name being edited</li>\n<li>value - The value for the field being edited.</li>\n<li>row - The grid row index</li>\n<li>column - The grid column index</li>\n<li>cancel - Set this to true to cancel the edit or return false from your handler.</li>\n</ul>"
76151     },
76152     {
76153      "name": "beforepropertychange",
76154      "sig": "function (grid, id, newval, oldval)\n{\n\n}",
76155      "type": "function",
76156      "desc": "Fires before a property changes (return false to stop?)"
76157     },
76158     {
76159      "name": "bodyscroll",
76160      "sig": "function (scrollLeft, scrollTop)\n{\n\n}",
76161      "type": "function",
76162      "desc": "Fires when the body element is scrolled"
76163     },
76164     {
76165      "name": "cellclick",
76166      "sig": "function (_self, rowIndex, columnIndex, e)\n{\n\n}",
76167      "type": "function",
76168      "desc": "Fires when a cell is clicked"
76169     },
76170     {
76171      "name": "cellcontextmenu",
76172      "sig": "function (_self, rowIndex, cellIndex, e)\n{\n\n}",
76173      "type": "function",
76174      "desc": "Fires when a cell is right clicked"
76175     },
76176     {
76177      "name": "celldblclick",
76178      "sig": "function (_self, rowIndex, columnIndex, e)\n{\n\n}",
76179      "type": "function",
76180      "desc": "Fires when a cell is double clicked"
76181     },
76182     {
76183      "name": "click",
76184      "sig": "function (e)\n{\n\n}",
76185      "type": "function",
76186      "desc": "The raw click event for the entire grid."
76187     },
76188     {
76189      "name": "columnmove",
76190      "sig": "function (oldIndex, newIndex)\n{\n\n}",
76191      "type": "function",
76192      "desc": "Fires when the user moves a column"
76193     },
76194     {
76195      "name": "columnresize",
76196      "sig": "function (columnIndex, newSize)\n{\n\n}",
76197      "type": "function",
76198      "desc": "Fires when the user resizes a column"
76199     },
76200     {
76201      "name": "contextmenu",
76202      "sig": "function (e)\n{\n\n}",
76203      "type": "function",
76204      "desc": "The raw contextmenu event for the entire grid."
76205     },
76206     {
76207      "name": "dblclick",
76208      "sig": "function (e)\n{\n\n}",
76209      "type": "function",
76210      "desc": "The raw dblclick event for the entire grid."
76211     },
76212     {
76213      "name": "dragdrop",
76214      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
76215      "type": "function",
76216      "desc": "Fires when dragged row(s) are dropped on a valid DD target"
76217     },
76218     {
76219      "name": "dragenter\n Fires when the dragged row(s) first cross another DD target while being dragged",
76220      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
76221      "type": "function",
76222      "desc": ""
76223     },
76224     {
76225      "name": "dragout",
76226      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
76227      "type": "function",
76228      "desc": "Fires when the dragged row(s) leave another DD target while being dragged"
76229     },
76230     {
76231      "name": "dragover",
76232      "sig": "function (_self, dd, targetId, e)\n{\n\n}",
76233      "type": "function",
76234      "desc": "Fires while row(s) are being dragged. \"targetId\" is the id of the Yahoo.util.DD object the selected rows are being dragged over."
76235     },
76236     {
76237      "name": "enddrag",
76238      "sig": "function (_self, dd, e)\n{\n\n}",
76239      "type": "function",
76240      "desc": "Fires when a drag operation is complete"
76241     },
76242     {
76243      "name": "headerclick",
76244      "sig": "function (_self, columnIndex, e)\n{\n\n}",
76245      "type": "function",
76246      "desc": "Fires when a header is clicked"
76247     },
76248     {
76249      "name": "headercontextmenu",
76250      "sig": "function (_self, columnIndex, e)\n{\n\n}",
76251      "type": "function",
76252      "desc": "Fires when a header is right clicked"
76253     },
76254     {
76255      "name": "headerdblclick",
76256      "sig": "function (_self, columnIndex, e)\n{\n\n}",
76257      "type": "function",
76258      "desc": "Fires when a header cell is double clicked"
76259     },
76260     {
76261      "name": "keydown",
76262      "sig": "function (e)\n{\n\n}",
76263      "type": "function",
76264      "desc": "The raw keydown event for the entire grid."
76265     },
76266     {
76267      "name": "keypress",
76268      "sig": "function (e)\n{\n\n}",
76269      "type": "function",
76270      "desc": "The raw keypress event for the entire grid."
76271     },
76272     {
76273      "name": "mousedown",
76274      "sig": "function (e)\n{\n\n}",
76275      "type": "function",
76276      "desc": "The raw mousedown event for the entire grid."
76277     },
76278     {
76279      "name": "mouseout",
76280      "sig": "function (e)\n{\n\n}",
76281      "type": "function",
76282      "desc": "The raw mouseout event for the entire grid."
76283     },
76284     {
76285      "name": "mouseover",
76286      "sig": "function (e)\n{\n\n}",
76287      "type": "function",
76288      "desc": "The raw mouseover event for the entire grid."
76289     },
76290     {
76291      "name": "mouseup",
76292      "sig": "function (e)\n{\n\n}",
76293      "type": "function",
76294      "desc": "The raw mouseup event for the entire grid."
76295     },
76296     {
76297      "name": "propertychange",
76298      "sig": "function (grid, id, newval, oldval)\n{\n\n}",
76299      "type": "function",
76300      "desc": "Fires after a property changes"
76301     },
76302     {
76303      "name": "render",
76304      "sig": "function (grid)\n{\n\n}",
76305      "type": "function",
76306      "desc": "Fires when the grid is rendered"
76307     },
76308     {
76309      "name": "rowclass",
76310      "sig": "function (gridview, rowcfg)\n{\n\n}",
76311      "type": "function",
76312      "desc": "Fires when a row is rendered, so you can change add a style to it."
76313     },
76314     {
76315      "name": "rowclick",
76316      "sig": "function (_self, rowIndex, e)\n{\n\n}",
76317      "type": "function",
76318      "desc": "Fires when a row is clicked"
76319     },
76320     {
76321      "name": "rowcontextmenu",
76322      "sig": "function (_self, rowIndex, e)\n{\n\n}",
76323      "type": "function",
76324      "desc": "Fires when a row is right clicked"
76325     },
76326     {
76327      "name": "rowdblclick",
76328      "sig": "function (_self, rowIndex, e)\n{\n\n}",
76329      "type": "function",
76330      "desc": "Fires when a row is double clicked"
76331     },
76332     {
76333      "name": "startdrag",
76334      "sig": "function (_self, dd, e)\n{\n\n}",
76335      "type": "function",
76336      "desc": "Fires when row(s) start being dragged"
76337     },
76338     {
76339      "name": "validateedit",
76340      "sig": "function (e)\n{\n\n}",
76341      "type": "function",
76342      "desc": "Fires after a cell is edited, but before the value is set in the record. \nYou can use this to modify the value being set in the field, Return false\nto cancel the change. The edit event object has the following properties <br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>editor - This editor</li>\n<li>grid - This grid</li>\n<li>record - The record being edited</li>\n<li>field - The field name being edited</li>\n<li>value - The value being set</li>\n<li>originalValue - The original value for the field, before the edit.</li>\n<li>row - The grid row index</li>\n<li>column - The grid column index</li>\n<li>cancel - Set this to true to cancel the edit or return false from your handler.</li>\n</ul>"
76343     }
76344    ],
76345    "methods": [
76346     {
76347      "name": "addEvents",
76348      "sig": "(Object object)",
76349      "type": "function",
76350      "desc": "Used to define events on this Observable"
76351     },
76352     {
76353      "name": "addListener",
76354      "sig": "(String eventName, Function handler, Object scope, Object options)",
76355      "type": "function",
76356      "desc": "Appends an event handler to this component"
76357     },
76358     {
76359      "name": "autoSize",
76360      "sig": "()",
76361      "type": "function",
76362      "desc": "Causes the grid to manually recalculate its dimensions. Generally this is done automatically,\nbut if manual update is required this method will initiate it."
76363     },
76364     {
76365      "name": "capture",
76366      "sig": "(Observable o, Function fn, Object scope)",
76367      "type": "function",
76368      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
76369     },
76370     {
76371      "name": "destroy",
76372      "sig": "(Boolean removeEl)",
76373      "type": "function",
76374      "desc": "Destroy this grid."
76375     },
76376     {
76377      "name": "fireEvent",
76378      "sig": "(String eventName, Object... args)",
76379      "type": "function",
76380      "desc": "Fires the specified event with the passed parameters (minus the event name)."
76381     },
76382     {
76383      "name": "getColumnModel",
76384      "sig": "()",
76385      "type": "function",
76386      "desc": "Returns the grid's ColumnModel."
76387     },
76388     {
76389      "name": "getDataSource",
76390      "sig": "()",
76391      "type": "function",
76392      "desc": "Returns the grid's DataSource."
76393     },
76394     {
76395      "name": "getDragDropText",
76396      "sig": "()",
76397      "type": "function",
76398      "desc": "Called to get grid's drag proxy text, by default returns this.ddText."
76399     },
76400     {
76401      "name": "getGridEl",
76402      "sig": "()",
76403      "type": "function",
76404      "desc": "Returns the grid's underlying element."
76405     },
76406     {
76407      "name": "getSelectionModel",
76408      "sig": "()",
76409      "type": "function",
76410      "desc": "Returns the grid's SelectionModel."
76411     },
76412     {
76413      "name": "getSource",
76414      "sig": "()",
76415      "type": "function",
76416      "desc": "Gets all the data from the grid."
76417     },
76418     {
76419      "name": "getView",
76420      "sig": "()",
76421      "type": "function",
76422      "desc": "Returns the grid's GridView object."
76423     },
76424     {
76425      "name": "hasListener",
76426      "sig": "(String eventName)",
76427      "type": "function",
76428      "desc": "Checks to see if this object has any listeners for a specified event"
76429     },
76430     {
76431      "name": "on",
76432      "sig": "(String eventName, Function handler, Object scope, Object options)",
76433      "type": "function",
76434      "desc": "Appends an event handler to this element (shorthand for addListener)"
76435     },
76436     {
76437      "name": "purgeListeners",
76438      "sig": "()",
76439      "type": "function",
76440      "desc": "Removes all listeners for this object"
76441     },
76442     {
76443      "name": "reconfigure",
76444      "sig": "(Roo.data.Store dataSource, Roo.grid.ColumnModel The)",
76445      "type": "function",
76446      "desc": "Reconfigures the grid to use a different Store and Column Model.\nThe View will be bound to the new objects and refreshed."
76447     },
76448     {
76449      "name": "releaseCapture",
76450      "sig": "(Observable o)",
76451      "type": "function",
76452      "desc": "Removes <b>all</b> added captures from the Observable."
76453     },
76454     {
76455      "name": "removeListener",
76456      "sig": "(String eventName, Function handler, Object scope)",
76457      "type": "function",
76458      "desc": "Removes a listener"
76459     },
76460     {
76461      "name": "render",
76462      "sig": "()",
76463      "type": "function",
76464      "desc": "Called once after all setup has been completed and the grid is ready to be rendered."
76465     },
76466     {
76467      "name": "setSource",
76468      "sig": "(Object data)",
76469      "type": "function",
76470      "desc": "Sets the data for the Grid\naccepts a Key => Value object of all the elements avaiable."
76471     },
76472     {
76473      "name": "startEditing",
76474      "sig": "(Number rowIndex, Number colIndex)",
76475      "type": "function",
76476      "desc": "Starts editing the specified for the specified row/column"
76477     },
76478     {
76479      "name": "stopEditing",
76480      "sig": "()",
76481      "type": "function",
76482      "desc": "Stops any active editing"
76483     },
76484     {
76485      "name": "un",
76486      "sig": "(String eventName, Function handler, Object scope)",
76487      "type": "function",
76488      "desc": "Removes a listener (shorthand for removeListener)"
76489     }
76490    ]
76491   },
76492   "Roo.grid.RowSelectionModel": {
76493    "props": [
76494     {
76495      "name": "singleSelect",
76496      "type": "Boolean",
76497      "desc": "True to allow selection of only one row at a time (defaults to false)",
76498      "memberOf": ""
76499     },
76500     {
76501      "name": "listeners",
76502      "type": "Object",
76503      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
76504      "memberOf": "Roo.util.Observable"
76505     }
76506    ],
76507    "events": [
76508     {
76509      "name": "afterselectionchange",
76510      "sig": "function (_self)\n{\n\n}",
76511      "type": "function",
76512      "desc": "Fires after the selection changes (eg. by key press or clicking)"
76513     },
76514     {
76515      "name": "beforerowselect",
76516      "sig": "function (_self, rowIndex, keepExisting)\n{\n\n}",
76517      "type": "function",
76518      "desc": "Fires when a row is selected being selected, return false to cancel."
76519     },
76520     {
76521      "name": "rowdeselect",
76522      "sig": "function (_self, rowIndex)\n{\n\n}",
76523      "type": "function",
76524      "desc": "Fires when a row is deselected."
76525     },
76526     {
76527      "name": "rowselect",
76528      "sig": "function (_self, rowIndex, r)\n{\n\n}",
76529      "type": "function",
76530      "desc": "Fires when a row is selected."
76531     },
76532     {
76533      "name": "selectionchange",
76534      "sig": "function (_self)\n{\n\n}",
76535      "type": "function",
76536      "desc": "Fires when the selection changes"
76537     }
76538    ],
76539    "methods": [
76540     {
76541      "name": "addEvents",
76542      "sig": "(Object object)",
76543      "type": "function",
76544      "desc": "Used to define events on this Observable"
76545     },
76546     {
76547      "name": "addListener",
76548      "sig": "(String eventName, Function handler, Object scope, Object options)",
76549      "type": "function",
76550      "desc": "Appends an event handler to this component"
76551     },
76552     {
76553      "name": "capture",
76554      "sig": "(Observable o, Function fn, Object scope)",
76555      "type": "function",
76556      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
76557     },
76558     {
76559      "name": "clearSelections",
76560      "sig": "()",
76561      "type": "function",
76562      "desc": "Clears all selections."
76563     },
76564     {
76565      "name": "deselectRange",
76566      "sig": "(Number startRow, Number endRow)",
76567      "type": "function",
76568      "desc": "Deselects a range of rows. All rows in between startRow and endRow are also deselected."
76569     },
76570     {
76571      "name": "deselectRow",
76572      "sig": "(Number row)",
76573      "type": "function",
76574      "desc": "Deselects a row."
76575     },
76576     {
76577      "name": "fireEvent",
76578      "sig": "(String eventName, Object... args)",
76579      "type": "function",
76580      "desc": "Fires the specified event with the passed parameters (minus the event name)."
76581     },
76582     {
76583      "name": "getCount",
76584      "sig": "()",
76585      "type": "function",
76586      "desc": "Gets the number of selected rows."
76587     },
76588     {
76589      "name": "getSelected",
76590      "sig": "()",
76591      "type": "function",
76592      "desc": "Returns the first selected record."
76593     },
76594     {
76595      "name": "getSelections",
76596      "sig": "()",
76597      "type": "function",
76598      "desc": "Returns the selected records"
76599     },
76600     {
76601      "name": "hasListener",
76602      "sig": "(String eventName)",
76603      "type": "function",
76604      "desc": "Checks to see if this object has any listeners for a specified event"
76605     },
76606     {
76607      "name": "hasSelection",
76608      "sig": "()",
76609      "type": "function",
76610      "desc": "Returns True if there is a selection."
76611     },
76612     {
76613      "name": "isIdSelected",
76614      "sig": "(String id)",
76615      "type": "function",
76616      "desc": "Returns True if the specified record id is selected."
76617     },
76618     {
76619      "name": "isLocked",
76620      "sig": "()",
76621      "type": "function",
76622      "desc": "Returns true if the selections are locked."
76623     },
76624     {
76625      "name": "isSelected",
76626      "sig": "(Number/Record record)",
76627      "type": "function",
76628      "desc": "Returns True if the specified row is selected."
76629     },
76630     {
76631      "name": "lock",
76632      "sig": "()",
76633      "type": "function",
76634      "desc": "Locks the selections."
76635     },
76636     {
76637      "name": "on",
76638      "sig": "(String eventName, Function handler, Object scope, Object options)",
76639      "type": "function",
76640      "desc": "Appends an event handler to this element (shorthand for addListener)"
76641     },
76642     {
76643      "name": "purgeListeners",
76644      "sig": "()",
76645      "type": "function",
76646      "desc": "Removes all listeners for this object"
76647     },
76648     {
76649      "name": "releaseCapture",
76650      "sig": "(Observable o)",
76651      "type": "function",
76652      "desc": "Removes <b>all</b> added captures from the Observable."
76653     },
76654     {
76655      "name": "removeListener",
76656      "sig": "(String eventName, Function handler, Object scope)",
76657      "type": "function",
76658      "desc": "Removes a listener"
76659     },
76660     {
76661      "name": "selectAll",
76662      "sig": "()",
76663      "type": "function",
76664      "desc": "Selects all rows."
76665     },
76666     {
76667      "name": "selectFirstRow",
76668      "sig": "()",
76669      "type": "function",
76670      "desc": "Selects the first row in the grid."
76671     },
76672     {
76673      "name": "selectLastRow",
76674      "sig": "(Boolean keepExisting)",
76675      "type": "function",
76676      "desc": "Select the last row."
76677     },
76678     {
76679      "name": "selectNext",
76680      "sig": "(Boolean keepExisting)",
76681      "type": "function",
76682      "desc": "Selects the row immediately following the last selected row."
76683     },
76684     {
76685      "name": "selectPrevious",
76686      "sig": "(Boolean keepExisting)",
76687      "type": "function",
76688      "desc": "Selects the row that precedes the last selected row."
76689     },
76690     {
76691      "name": "selectRange",
76692      "sig": "(Number startRow, Number endRow, Boolean keepExisting)",
76693      "type": "function",
76694      "desc": "Selects a range of rows. All rows in between startRow and endRow are also selected."
76695     },
76696     {
76697      "name": "selectRecords",
76698      "sig": "(Array records, Boolean keepExisting)",
76699      "type": "function",
76700      "desc": "Select records."
76701     },
76702     {
76703      "name": "selectRow",
76704      "sig": "(Number row, Boolean keepExisting)",
76705      "type": "function",
76706      "desc": "Selects a row."
76707     },
76708     {
76709      "name": "selectRows",
76710      "sig": "(Array rows, Boolean keepExisting)",
76711      "type": "function",
76712      "desc": "Selects multiple rows."
76713     },
76714     {
76715      "name": "un",
76716      "sig": "(String eventName, Function handler, Object scope)",
76717      "type": "function",
76718      "desc": "Removes a listener (shorthand for removeListener)"
76719     },
76720     {
76721      "name": "unlock",
76722      "sig": "()",
76723      "type": "function",
76724      "desc": "Unlocks the selections."
76725     }
76726    ]
76727   },
76728   "Roo.lib": {
76729    "props": [],
76730    "events": [],
76731    "methods": []
76732   },
76733   "Roo.lib.Ajax": {
76734    "props": [],
76735    "events": [],
76736    "methods": [
76737     {
76738      "name": "request",
76739      "sig": "()",
76740      "type": "function",
76741      "desc": ""
76742     }
76743    ]
76744   },
76745   "Roo.lib.Dom": {
76746    "props": [],
76747    "events": [],
76748    "methods": []
76749   },
76750   "Roo.mailer": {
76751    "props": [],
76752    "events": [],
76753    "methods": []
76754   },
76755   "Roo.mailer.Block": {
76756    "props": [
76757     {
76758      "name": "cls",
76759      "type": "String",
76760      "desc": "class of the element",
76761      "memberOf": ""
76762     },
76763     {
76764      "name": "html",
76765      "type": "String",
76766      "desc": "content of header (not used for columns)",
76767      "memberOf": ""
76768     },
76769     {
76770      "name": "blocktype",
76771      "type": "String",
76772      "desc": "",
76773      "memberOf": "",
76774      "optvals": [
76775       "header",
76776       "preheader",
76777       "footer",
76778       "body",
76779       "row"
76780      ]
76781     },
76782     {
76783      "name": "style",
76784      "type": "String",
76785      "desc": "any extra css",
76786      "memberOf": "Roo.bootstrap.Component"
76787     },
76788     {
76789      "name": "xattr",
76790      "type": "Object",
76791      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
76792      "memberOf": "Roo.bootstrap.Component"
76793     },
76794     {
76795      "name": "can_build_overlaid",
76796      "type": "Boolean",
76797      "desc": "True if element can be rebuild from a HTML page",
76798      "memberOf": "Roo.bootstrap.Component"
76799     },
76800     {
76801      "name": "dataId",
76802      "type": "string",
76803      "desc": "cutomer id",
76804      "memberOf": "Roo.bootstrap.Component"
76805     },
76806     {
76807      "name": "name",
76808      "type": "string",
76809      "desc": "Specifies name attribute",
76810      "memberOf": "Roo.bootstrap.Component"
76811     },
76812     {
76813      "name": "tooltip",
76814      "type": "string",
76815      "desc": "Text for the tooltip",
76816      "memberOf": "Roo.bootstrap.Component"
76817     },
76818     {
76819      "name": "container_method",
76820      "type": "string",
76821      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
76822      "memberOf": "Roo.bootstrap.Component"
76823     },
76824     {
76825      "name": "disableClass",
76826      "type": "String",
76827      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
76828      "memberOf": "Roo.Component"
76829     },
76830     {
76831      "name": "allowDomMove",
76832      "type": "Boolean",
76833      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
76834      "memberOf": "Roo.Component"
76835     },
76836     {
76837      "name": "hideMode",
76838      "type": "String",
76839      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
76840      "memberOf": "Roo.Component",
76841      "optvals": [
76842       "display",
76843       "visibility"
76844      ]
76845     },
76846     {
76847      "name": "actionMode",
76848      "type": "String",
76849      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
76850      "memberOf": "Roo.Component"
76851     },
76852     {
76853      "name": "listeners",
76854      "type": "Object",
76855      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
76856      "memberOf": "Roo.util.Observable"
76857     }
76858    ],
76859    "events": [
76860     {
76861      "name": "beforedestroy",
76862      "sig": "function (_self)\n{\n\n}",
76863      "type": "function",
76864      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
76865     },
76866     {
76867      "name": "beforehide",
76868      "sig": "function (_self)\n{\n\n}",
76869      "type": "function",
76870      "desc": "Fires before the component is hidden. Return false to stop the hide."
76871     },
76872     {
76873      "name": "beforerender",
76874      "sig": "function (_self)\n{\n\n}",
76875      "type": "function",
76876      "desc": "Fires before the component is rendered. Return false to stop the render."
76877     },
76878     {
76879      "name": "beforeshow",
76880      "sig": "function (_self)\n{\n\n}",
76881      "type": "function",
76882      "desc": "Fires before the component is shown.  Return false to stop the show."
76883     },
76884     {
76885      "name": "childrenrendered",
76886      "sig": "function (_self)\n{\n\n}",
76887      "type": "function",
76888      "desc": "Fires when the children have been rendered.."
76889     },
76890     {
76891      "name": "destroy",
76892      "sig": "function (_self)\n{\n\n}",
76893      "type": "function",
76894      "desc": "Fires after the component is destroyed."
76895     },
76896     {
76897      "name": "disable",
76898      "sig": "function (_self)\n{\n\n}",
76899      "type": "function",
76900      "desc": "Fires after the component is disabled."
76901     },
76902     {
76903      "name": "enable",
76904      "sig": "function (_self)\n{\n\n}",
76905      "type": "function",
76906      "desc": "Fires after the component is enabled."
76907     },
76908     {
76909      "name": "hide",
76910      "sig": "function (_self)\n{\n\n}",
76911      "type": "function",
76912      "desc": "Fires after the component is hidden."
76913     },
76914     {
76915      "name": "render",
76916      "sig": "function (_self)\n{\n\n}",
76917      "type": "function",
76918      "desc": "Fires after the component is rendered."
76919     },
76920     {
76921      "name": "show",
76922      "sig": "function (_self)\n{\n\n}",
76923      "type": "function",
76924      "desc": "Fires after the component is shown."
76925     }
76926    ],
76927    "methods": [
76928     {
76929      "name": "addEvents",
76930      "sig": "(Object object)",
76931      "type": "function",
76932      "desc": "Used to define events on this Observable"
76933     },
76934     {
76935      "name": "addListener",
76936      "sig": "(String eventName, Function handler, Object scope, Object options)",
76937      "type": "function",
76938      "desc": "Appends an event handler to this component"
76939     },
76940     {
76941      "name": "capture",
76942      "sig": "(Observable o, Function fn, Object scope)",
76943      "type": "function",
76944      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
76945     },
76946     {
76947      "name": "destroy",
76948      "sig": "()",
76949      "type": "function",
76950      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
76951     },
76952     {
76953      "name": "disable",
76954      "sig": "()",
76955      "type": "function",
76956      "desc": "Disable this component."
76957     },
76958     {
76959      "name": "enable",
76960      "sig": "()",
76961      "type": "function",
76962      "desc": "Enable this component."
76963     },
76964     {
76965      "name": "fireEvent",
76966      "sig": "(String eventName, Object... args)",
76967      "type": "function",
76968      "desc": "Fires the specified event with the passed parameters (minus the event name)."
76969     },
76970     {
76971      "name": "focus",
76972      "sig": "(Boolean selectText)",
76973      "type": "function",
76974      "desc": "Try to focus this component."
76975     },
76976     {
76977      "name": "getChildContainer",
76978      "sig": "()",
76979      "type": "function",
76980      "desc": "Fetch the element to add children to"
76981     },
76982     {
76983      "name": "getEl",
76984      "sig": "()",
76985      "type": "function",
76986      "desc": "Returns the underlying {@link Roo.Element}."
76987     },
76988     {
76989      "name": "getId",
76990      "sig": "()",
76991      "type": "function",
76992      "desc": "Returns the id of this component."
76993     },
76994     {
76995      "name": "hasListener",
76996      "sig": "(String eventName)",
76997      "type": "function",
76998      "desc": "Checks to see if this object has any listeners for a specified event"
76999     },
77000     {
77001      "name": "hide",
77002      "sig": "()",
77003      "type": "function",
77004      "desc": "Hide a component - adds 'hidden' class"
77005     },
77006     {
77007      "name": "initEvents",
77008      "sig": "()",
77009      "type": "function",
77010      "desc": "Initialize Events for the element"
77011     },
77012     {
77013      "name": "isVisible",
77014      "sig": "()",
77015      "type": "function",
77016      "desc": "Returns true if this component is visible."
77017     },
77018     {
77019      "name": "on",
77020      "sig": "(String eventName, Function handler, Object scope, Object options)",
77021      "type": "function",
77022      "desc": "Appends an event handler to this element (shorthand for addListener)"
77023     },
77024     {
77025      "name": "purgeListeners",
77026      "sig": "()",
77027      "type": "function",
77028      "desc": "Removes all listeners for this object"
77029     },
77030     {
77031      "name": "releaseCapture",
77032      "sig": "(Observable o)",
77033      "type": "function",
77034      "desc": "Removes <b>all</b> added captures from the Observable."
77035     },
77036     {
77037      "name": "removeListener",
77038      "sig": "(String eventName, Function handler, Object scope)",
77039      "type": "function",
77040      "desc": "Removes a listener"
77041     },
77042     {
77043      "name": "render",
77044      "sig": "(String/HTMLElement/Element container)",
77045      "type": "function",
77046      "desc": "If this is a lazy rendering component, render it to its container element."
77047     },
77048     {
77049      "name": "setDisabled",
77050      "sig": "(Boolean disabled)",
77051      "type": "function",
77052      "desc": "Convenience function for setting disabled/enabled by boolean."
77053     },
77054     {
77055      "name": "setVisible",
77056      "sig": "(Boolean visible)",
77057      "type": "function",
77058      "desc": "Convenience function to hide or show this component by boolean."
77059     },
77060     {
77061      "name": "show",
77062      "sig": "()",
77063      "type": "function",
77064      "desc": "Show a component - removes 'hidden' class"
77065     },
77066     {
77067      "name": "tooltipEl",
77068      "sig": "()",
77069      "type": "function",
77070      "desc": "Fetch the element to display the tooltip on."
77071     },
77072     {
77073      "name": "un",
77074      "sig": "(String eventName, Function handler, Object scope)",
77075      "type": "function",
77076      "desc": "Removes a listener (shorthand for removeListener)"
77077     }
77078    ]
77079   },
77080   "Roo.mailer.Body": {
77081    "props": [
77082     {
77083      "name": "cls",
77084      "type": "String",
77085      "desc": "class of the element",
77086      "memberOf": ""
77087     },
77088     {
77089      "name": "style",
77090      "type": "String",
77091      "desc": "any extra css",
77092      "memberOf": "Roo.bootstrap.Component"
77093     },
77094     {
77095      "name": "xattr",
77096      "type": "Object",
77097      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
77098      "memberOf": "Roo.bootstrap.Component"
77099     },
77100     {
77101      "name": "can_build_overlaid",
77102      "type": "Boolean",
77103      "desc": "True if element can be rebuild from a HTML page",
77104      "memberOf": "Roo.bootstrap.Component"
77105     },
77106     {
77107      "name": "dataId",
77108      "type": "string",
77109      "desc": "cutomer id",
77110      "memberOf": "Roo.bootstrap.Component"
77111     },
77112     {
77113      "name": "name",
77114      "type": "string",
77115      "desc": "Specifies name attribute",
77116      "memberOf": "Roo.bootstrap.Component"
77117     },
77118     {
77119      "name": "tooltip",
77120      "type": "string",
77121      "desc": "Text for the tooltip",
77122      "memberOf": "Roo.bootstrap.Component"
77123     },
77124     {
77125      "name": "container_method",
77126      "type": "string",
77127      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
77128      "memberOf": "Roo.bootstrap.Component"
77129     },
77130     {
77131      "name": "disableClass",
77132      "type": "String",
77133      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
77134      "memberOf": "Roo.Component"
77135     },
77136     {
77137      "name": "allowDomMove",
77138      "type": "Boolean",
77139      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
77140      "memberOf": "Roo.Component"
77141     },
77142     {
77143      "name": "hideMode",
77144      "type": "String",
77145      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
77146      "memberOf": "Roo.Component",
77147      "optvals": [
77148       "display",
77149       "visibility"
77150      ]
77151     },
77152     {
77153      "name": "actionMode",
77154      "type": "String",
77155      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
77156      "memberOf": "Roo.Component"
77157     },
77158     {
77159      "name": "listeners",
77160      "type": "Object",
77161      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
77162      "memberOf": "Roo.util.Observable"
77163     }
77164    ],
77165    "events": [
77166     {
77167      "name": "beforedestroy",
77168      "sig": "function (_self)\n{\n\n}",
77169      "type": "function",
77170      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
77171     },
77172     {
77173      "name": "beforehide",
77174      "sig": "function (_self)\n{\n\n}",
77175      "type": "function",
77176      "desc": "Fires before the component is hidden. Return false to stop the hide."
77177     },
77178     {
77179      "name": "beforerender",
77180      "sig": "function (_self)\n{\n\n}",
77181      "type": "function",
77182      "desc": "Fires before the component is rendered. Return false to stop the render."
77183     },
77184     {
77185      "name": "beforeshow",
77186      "sig": "function (_self)\n{\n\n}",
77187      "type": "function",
77188      "desc": "Fires before the component is shown.  Return false to stop the show."
77189     },
77190     {
77191      "name": "childrenrendered",
77192      "sig": "function (_self)\n{\n\n}",
77193      "type": "function",
77194      "desc": "Fires when the children have been rendered.."
77195     },
77196     {
77197      "name": "destroy",
77198      "sig": "function (_self)\n{\n\n}",
77199      "type": "function",
77200      "desc": "Fires after the component is destroyed."
77201     },
77202     {
77203      "name": "disable",
77204      "sig": "function (_self)\n{\n\n}",
77205      "type": "function",
77206      "desc": "Fires after the component is disabled."
77207     },
77208     {
77209      "name": "enable",
77210      "sig": "function (_self)\n{\n\n}",
77211      "type": "function",
77212      "desc": "Fires after the component is enabled."
77213     },
77214     {
77215      "name": "hide",
77216      "sig": "function (_self)\n{\n\n}",
77217      "type": "function",
77218      "desc": "Fires after the component is hidden."
77219     },
77220     {
77221      "name": "render",
77222      "sig": "function (_self)\n{\n\n}",
77223      "type": "function",
77224      "desc": "Fires after the component is rendered."
77225     },
77226     {
77227      "name": "show",
77228      "sig": "function (_self)\n{\n\n}",
77229      "type": "function",
77230      "desc": "Fires after the component is shown."
77231     }
77232    ],
77233    "methods": [
77234     {
77235      "name": "addEvents",
77236      "sig": "(Object object)",
77237      "type": "function",
77238      "desc": "Used to define events on this Observable"
77239     },
77240     {
77241      "name": "addListener",
77242      "sig": "(String eventName, Function handler, Object scope, Object options)",
77243      "type": "function",
77244      "desc": "Appends an event handler to this component"
77245     },
77246     {
77247      "name": "capture",
77248      "sig": "(Observable o, Function fn, Object scope)",
77249      "type": "function",
77250      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
77251     },
77252     {
77253      "name": "destroy",
77254      "sig": "()",
77255      "type": "function",
77256      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
77257     },
77258     {
77259      "name": "disable",
77260      "sig": "()",
77261      "type": "function",
77262      "desc": "Disable this component."
77263     },
77264     {
77265      "name": "enable",
77266      "sig": "()",
77267      "type": "function",
77268      "desc": "Enable this component."
77269     },
77270     {
77271      "name": "fireEvent",
77272      "sig": "(String eventName, Object... args)",
77273      "type": "function",
77274      "desc": "Fires the specified event with the passed parameters (minus the event name)."
77275     },
77276     {
77277      "name": "focus",
77278      "sig": "(Boolean selectText)",
77279      "type": "function",
77280      "desc": "Try to focus this component."
77281     },
77282     {
77283      "name": "getChildContainer",
77284      "sig": "()",
77285      "type": "function",
77286      "desc": "Fetch the element to add children to"
77287     },
77288     {
77289      "name": "getEl",
77290      "sig": "()",
77291      "type": "function",
77292      "desc": "Returns the underlying {@link Roo.Element}."
77293     },
77294     {
77295      "name": "getId",
77296      "sig": "()",
77297      "type": "function",
77298      "desc": "Returns the id of this component."
77299     },
77300     {
77301      "name": "hasListener",
77302      "sig": "(String eventName)",
77303      "type": "function",
77304      "desc": "Checks to see if this object has any listeners for a specified event"
77305     },
77306     {
77307      "name": "hide",
77308      "sig": "()",
77309      "type": "function",
77310      "desc": "Hide a component - adds 'hidden' class"
77311     },
77312     {
77313      "name": "initEvents",
77314      "sig": "()",
77315      "type": "function",
77316      "desc": "Initialize Events for the element"
77317     },
77318     {
77319      "name": "isVisible",
77320      "sig": "()",
77321      "type": "function",
77322      "desc": "Returns true if this component is visible."
77323     },
77324     {
77325      "name": "on",
77326      "sig": "(String eventName, Function handler, Object scope, Object options)",
77327      "type": "function",
77328      "desc": "Appends an event handler to this element (shorthand for addListener)"
77329     },
77330     {
77331      "name": "purgeListeners",
77332      "sig": "()",
77333      "type": "function",
77334      "desc": "Removes all listeners for this object"
77335     },
77336     {
77337      "name": "releaseCapture",
77338      "sig": "(Observable o)",
77339      "type": "function",
77340      "desc": "Removes <b>all</b> added captures from the Observable."
77341     },
77342     {
77343      "name": "removeListener",
77344      "sig": "(String eventName, Function handler, Object scope)",
77345      "type": "function",
77346      "desc": "Removes a listener"
77347     },
77348     {
77349      "name": "render",
77350      "sig": "(String/HTMLElement/Element container)",
77351      "type": "function",
77352      "desc": "If this is a lazy rendering component, render it to its container element."
77353     },
77354     {
77355      "name": "setDisabled",
77356      "sig": "(Boolean disabled)",
77357      "type": "function",
77358      "desc": "Convenience function for setting disabled/enabled by boolean."
77359     },
77360     {
77361      "name": "setVisible",
77362      "sig": "(Boolean visible)",
77363      "type": "function",
77364      "desc": "Convenience function to hide or show this component by boolean."
77365     },
77366     {
77367      "name": "show",
77368      "sig": "()",
77369      "type": "function",
77370      "desc": "Show a component - removes 'hidden' class"
77371     },
77372     {
77373      "name": "tooltipEl",
77374      "sig": "()",
77375      "type": "function",
77376      "desc": "Fetch the element to display the tooltip on."
77377     },
77378     {
77379      "name": "un",
77380      "sig": "(String eventName, Function handler, Object scope)",
77381      "type": "function",
77382      "desc": "Removes a listener (shorthand for removeListener)"
77383     }
77384    ]
77385   },
77386   "Roo.mailer.BodyContainer": {
77387    "props": [
77388     {
77389      "name": "cls",
77390      "type": "String",
77391      "desc": "class of the element",
77392      "memberOf": ""
77393     },
77394     {
77395      "name": "style",
77396      "type": "String",
77397      "desc": "any extra css",
77398      "memberOf": "Roo.bootstrap.Component"
77399     },
77400     {
77401      "name": "xattr",
77402      "type": "Object",
77403      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
77404      "memberOf": "Roo.bootstrap.Component"
77405     },
77406     {
77407      "name": "can_build_overlaid",
77408      "type": "Boolean",
77409      "desc": "True if element can be rebuild from a HTML page",
77410      "memberOf": "Roo.bootstrap.Component"
77411     },
77412     {
77413      "name": "dataId",
77414      "type": "string",
77415      "desc": "cutomer id",
77416      "memberOf": "Roo.bootstrap.Component"
77417     },
77418     {
77419      "name": "name",
77420      "type": "string",
77421      "desc": "Specifies name attribute",
77422      "memberOf": "Roo.bootstrap.Component"
77423     },
77424     {
77425      "name": "tooltip",
77426      "type": "string",
77427      "desc": "Text for the tooltip",
77428      "memberOf": "Roo.bootstrap.Component"
77429     },
77430     {
77431      "name": "container_method",
77432      "type": "string",
77433      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
77434      "memberOf": "Roo.bootstrap.Component"
77435     },
77436     {
77437      "name": "disableClass",
77438      "type": "String",
77439      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
77440      "memberOf": "Roo.Component"
77441     },
77442     {
77443      "name": "allowDomMove",
77444      "type": "Boolean",
77445      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
77446      "memberOf": "Roo.Component"
77447     },
77448     {
77449      "name": "hideMode",
77450      "type": "String",
77451      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
77452      "memberOf": "Roo.Component",
77453      "optvals": [
77454       "display",
77455       "visibility"
77456      ]
77457     },
77458     {
77459      "name": "actionMode",
77460      "type": "String",
77461      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
77462      "memberOf": "Roo.Component"
77463     },
77464     {
77465      "name": "listeners",
77466      "type": "Object",
77467      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
77468      "memberOf": "Roo.util.Observable"
77469     }
77470    ],
77471    "events": [
77472     {
77473      "name": "beforedestroy",
77474      "sig": "function (_self)\n{\n\n}",
77475      "type": "function",
77476      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
77477     },
77478     {
77479      "name": "beforehide",
77480      "sig": "function (_self)\n{\n\n}",
77481      "type": "function",
77482      "desc": "Fires before the component is hidden. Return false to stop the hide."
77483     },
77484     {
77485      "name": "beforerender",
77486      "sig": "function (_self)\n{\n\n}",
77487      "type": "function",
77488      "desc": "Fires before the component is rendered. Return false to stop the render."
77489     },
77490     {
77491      "name": "beforeshow",
77492      "sig": "function (_self)\n{\n\n}",
77493      "type": "function",
77494      "desc": "Fires before the component is shown.  Return false to stop the show."
77495     },
77496     {
77497      "name": "childrenrendered",
77498      "sig": "function (_self)\n{\n\n}",
77499      "type": "function",
77500      "desc": "Fires when the children have been rendered.."
77501     },
77502     {
77503      "name": "destroy",
77504      "sig": "function (_self)\n{\n\n}",
77505      "type": "function",
77506      "desc": "Fires after the component is destroyed."
77507     },
77508     {
77509      "name": "disable",
77510      "sig": "function (_self)\n{\n\n}",
77511      "type": "function",
77512      "desc": "Fires after the component is disabled."
77513     },
77514     {
77515      "name": "enable",
77516      "sig": "function (_self)\n{\n\n}",
77517      "type": "function",
77518      "desc": "Fires after the component is enabled."
77519     },
77520     {
77521      "name": "hide",
77522      "sig": "function (_self)\n{\n\n}",
77523      "type": "function",
77524      "desc": "Fires after the component is hidden."
77525     },
77526     {
77527      "name": "render",
77528      "sig": "function (_self)\n{\n\n}",
77529      "type": "function",
77530      "desc": "Fires after the component is rendered."
77531     },
77532     {
77533      "name": "show",
77534      "sig": "function (_self)\n{\n\n}",
77535      "type": "function",
77536      "desc": "Fires after the component is shown."
77537     }
77538    ],
77539    "methods": [
77540     {
77541      "name": "addEvents",
77542      "sig": "(Object object)",
77543      "type": "function",
77544      "desc": "Used to define events on this Observable"
77545     },
77546     {
77547      "name": "addListener",
77548      "sig": "(String eventName, Function handler, Object scope, Object options)",
77549      "type": "function",
77550      "desc": "Appends an event handler to this component"
77551     },
77552     {
77553      "name": "capture",
77554      "sig": "(Observable o, Function fn, Object scope)",
77555      "type": "function",
77556      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
77557     },
77558     {
77559      "name": "destroy",
77560      "sig": "()",
77561      "type": "function",
77562      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
77563     },
77564     {
77565      "name": "disable",
77566      "sig": "()",
77567      "type": "function",
77568      "desc": "Disable this component."
77569     },
77570     {
77571      "name": "enable",
77572      "sig": "()",
77573      "type": "function",
77574      "desc": "Enable this component."
77575     },
77576     {
77577      "name": "fireEvent",
77578      "sig": "(String eventName, Object... args)",
77579      "type": "function",
77580      "desc": "Fires the specified event with the passed parameters (minus the event name)."
77581     },
77582     {
77583      "name": "focus",
77584      "sig": "(Boolean selectText)",
77585      "type": "function",
77586      "desc": "Try to focus this component."
77587     },
77588     {
77589      "name": "getChildContainer",
77590      "sig": "()",
77591      "type": "function",
77592      "desc": "Fetch the element to add children to"
77593     },
77594     {
77595      "name": "getEl",
77596      "sig": "()",
77597      "type": "function",
77598      "desc": "Returns the underlying {@link Roo.Element}."
77599     },
77600     {
77601      "name": "getId",
77602      "sig": "()",
77603      "type": "function",
77604      "desc": "Returns the id of this component."
77605     },
77606     {
77607      "name": "hasListener",
77608      "sig": "(String eventName)",
77609      "type": "function",
77610      "desc": "Checks to see if this object has any listeners for a specified event"
77611     },
77612     {
77613      "name": "hide",
77614      "sig": "()",
77615      "type": "function",
77616      "desc": "Hide a component - adds 'hidden' class"
77617     },
77618     {
77619      "name": "initEvents",
77620      "sig": "()",
77621      "type": "function",
77622      "desc": "Initialize Events for the element"
77623     },
77624     {
77625      "name": "isVisible",
77626      "sig": "()",
77627      "type": "function",
77628      "desc": "Returns true if this component is visible."
77629     },
77630     {
77631      "name": "on",
77632      "sig": "(String eventName, Function handler, Object scope, Object options)",
77633      "type": "function",
77634      "desc": "Appends an event handler to this element (shorthand for addListener)"
77635     },
77636     {
77637      "name": "purgeListeners",
77638      "sig": "()",
77639      "type": "function",
77640      "desc": "Removes all listeners for this object"
77641     },
77642     {
77643      "name": "releaseCapture",
77644      "sig": "(Observable o)",
77645      "type": "function",
77646      "desc": "Removes <b>all</b> added captures from the Observable."
77647     },
77648     {
77649      "name": "removeListener",
77650      "sig": "(String eventName, Function handler, Object scope)",
77651      "type": "function",
77652      "desc": "Removes a listener"
77653     },
77654     {
77655      "name": "render",
77656      "sig": "(String/HTMLElement/Element container)",
77657      "type": "function",
77658      "desc": "If this is a lazy rendering component, render it to its container element."
77659     },
77660     {
77661      "name": "setDisabled",
77662      "sig": "(Boolean disabled)",
77663      "type": "function",
77664      "desc": "Convenience function for setting disabled/enabled by boolean."
77665     },
77666     {
77667      "name": "setVisible",
77668      "sig": "(Boolean visible)",
77669      "type": "function",
77670      "desc": "Convenience function to hide or show this component by boolean."
77671     },
77672     {
77673      "name": "show",
77674      "sig": "()",
77675      "type": "function",
77676      "desc": "Show a component - removes 'hidden' class"
77677     },
77678     {
77679      "name": "tooltipEl",
77680      "sig": "()",
77681      "type": "function",
77682      "desc": "Fetch the element to display the tooltip on."
77683     },
77684     {
77685      "name": "un",
77686      "sig": "(String eventName, Function handler, Object scope)",
77687      "type": "function",
77688      "desc": "Removes a listener (shorthand for removeListener)"
77689     }
77690    ]
77691   },
77692   "Roo.mailer.Column": {
77693    "props": [
77694     {
77695      "name": "cls",
77696      "type": "String",
77697      "desc": "class of the element",
77698      "memberOf": ""
77699     },
77700     {
77701      "name": "html",
77702      "type": "String",
77703      "desc": "content of body",
77704      "memberOf": ""
77705     },
77706     {
77707      "name": "src",
77708      "type": "String",
77709      "desc": "image url",
77710      "memberOf": ""
77711     },
77712     {
77713      "name": "column",
77714      "type": "String",
77715      "desc": "",
77716      "memberOf": "",
77717      "optvals": [
77718       "left",
77719       "right"
77720      ]
77721     },
77722     {
77723      "name": "",
77724      "type": "",
77725      "desc": "{String width (100%|200|340|260)",
77726      "memberOf": ""
77727     },
77728     {
77729      "name": "style",
77730      "type": "String",
77731      "desc": "any extra css",
77732      "memberOf": "Roo.bootstrap.Component"
77733     },
77734     {
77735      "name": "xattr",
77736      "type": "Object",
77737      "desc": "extra attributes to add to 'element' (used by builder to store stuff.)",
77738      "memberOf": "Roo.bootstrap.Component"
77739     },
77740     {
77741      "name": "can_build_overlaid",
77742      "type": "Boolean",
77743      "desc": "True if element can be rebuild from a HTML page",
77744      "memberOf": "Roo.bootstrap.Component"
77745     },
77746     {
77747      "name": "dataId",
77748      "type": "string",
77749      "desc": "cutomer id",
77750      "memberOf": "Roo.bootstrap.Component"
77751     },
77752     {
77753      "name": "name",
77754      "type": "string",
77755      "desc": "Specifies name attribute",
77756      "memberOf": "Roo.bootstrap.Component"
77757     },
77758     {
77759      "name": "tooltip",
77760      "type": "string",
77761      "desc": "Text for the tooltip",
77762      "memberOf": "Roo.bootstrap.Component"
77763     },
77764     {
77765      "name": "container_method",
77766      "type": "string",
77767      "desc": "method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)",
77768      "memberOf": "Roo.bootstrap.Component"
77769     },
77770     {
77771      "name": "disableClass",
77772      "type": "String",
77773      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
77774      "memberOf": "Roo.Component"
77775     },
77776     {
77777      "name": "allowDomMove",
77778      "type": "Boolean",
77779      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
77780      "memberOf": "Roo.Component"
77781     },
77782     {
77783      "name": "hideMode",
77784      "type": "String",
77785      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
77786      "memberOf": "Roo.Component",
77787      "optvals": [
77788       "display",
77789       "visibility"
77790      ]
77791     },
77792     {
77793      "name": "actionMode",
77794      "type": "String",
77795      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
77796      "memberOf": "Roo.Component"
77797     },
77798     {
77799      "name": "listeners",
77800      "type": "Object",
77801      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
77802      "memberOf": "Roo.util.Observable"
77803     }
77804    ],
77805    "events": [
77806     {
77807      "name": "beforedestroy",
77808      "sig": "function (_self)\n{\n\n}",
77809      "type": "function",
77810      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
77811     },
77812     {
77813      "name": "beforehide",
77814      "sig": "function (_self)\n{\n\n}",
77815      "type": "function",
77816      "desc": "Fires before the component is hidden. Return false to stop the hide."
77817     },
77818     {
77819      "name": "beforerender",
77820      "sig": "function (_self)\n{\n\n}",
77821      "type": "function",
77822      "desc": "Fires before the component is rendered. Return false to stop the render."
77823     },
77824     {
77825      "name": "beforeshow",
77826      "sig": "function (_self)\n{\n\n}",
77827      "type": "function",
77828      "desc": "Fires before the component is shown.  Return false to stop the show."
77829     },
77830     {
77831      "name": "childrenrendered",
77832      "sig": "function (_self)\n{\n\n}",
77833      "type": "function",
77834      "desc": "Fires when the children have been rendered.."
77835     },
77836     {
77837      "name": "destroy",
77838      "sig": "function (_self)\n{\n\n}",
77839      "type": "function",
77840      "desc": "Fires after the component is destroyed."
77841     },
77842     {
77843      "name": "disable",
77844      "sig": "function (_self)\n{\n\n}",
77845      "type": "function",
77846      "desc": "Fires after the component is disabled."
77847     },
77848     {
77849      "name": "enable",
77850      "sig": "function (_self)\n{\n\n}",
77851      "type": "function",
77852      "desc": "Fires after the component is enabled."
77853     },
77854     {
77855      "name": "hide",
77856      "sig": "function (_self)\n{\n\n}",
77857      "type": "function",
77858      "desc": "Fires after the component is hidden."
77859     },
77860     {
77861      "name": "render",
77862      "sig": "function (_self)\n{\n\n}",
77863      "type": "function",
77864      "desc": "Fires after the component is rendered."
77865     },
77866     {
77867      "name": "show",
77868      "sig": "function (_self)\n{\n\n}",
77869      "type": "function",
77870      "desc": "Fires after the component is shown."
77871     }
77872    ],
77873    "methods": [
77874     {
77875      "name": "addEvents",
77876      "sig": "(Object object)",
77877      "type": "function",
77878      "desc": "Used to define events on this Observable"
77879     },
77880     {
77881      "name": "addListener",
77882      "sig": "(String eventName, Function handler, Object scope, Object options)",
77883      "type": "function",
77884      "desc": "Appends an event handler to this component"
77885     },
77886     {
77887      "name": "capture",
77888      "sig": "(Observable o, Function fn, Object scope)",
77889      "type": "function",
77890      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
77891     },
77892     {
77893      "name": "destroy",
77894      "sig": "()",
77895      "type": "function",
77896      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
77897     },
77898     {
77899      "name": "disable",
77900      "sig": "()",
77901      "type": "function",
77902      "desc": "Disable this component."
77903     },
77904     {
77905      "name": "enable",
77906      "sig": "()",
77907      "type": "function",
77908      "desc": "Enable this component."
77909     },
77910     {
77911      "name": "fireEvent",
77912      "sig": "(String eventName, Object... args)",
77913      "type": "function",
77914      "desc": "Fires the specified event with the passed parameters (minus the event name)."
77915     },
77916     {
77917      "name": "focus",
77918      "sig": "(Boolean selectText)",
77919      "type": "function",
77920      "desc": "Try to focus this component."
77921     },
77922     {
77923      "name": "getChildContainer",
77924      "sig": "()",
77925      "type": "function",
77926      "desc": "Fetch the element to add children to"
77927     },
77928     {
77929      "name": "getEl",
77930      "sig": "()",
77931      "type": "function",
77932      "desc": "Returns the underlying {@link Roo.Element}."
77933     },
77934     {
77935      "name": "getId",
77936      "sig": "()",
77937      "type": "function",
77938      "desc": "Returns the id of this component."
77939     },
77940     {
77941      "name": "hasListener",
77942      "sig": "(String eventName)",
77943      "type": "function",
77944      "desc": "Checks to see if this object has any listeners for a specified event"
77945     },
77946     {
77947      "name": "hide",
77948      "sig": "()",
77949      "type": "function",
77950      "desc": "Hide a component - adds 'hidden' class"
77951     },
77952     {
77953      "name": "initEvents",
77954      "sig": "()",
77955      "type": "function",
77956      "desc": "Initialize Events for the element"
77957     },
77958     {
77959      "name": "isVisible",
77960      "sig": "()",
77961      "type": "function",
77962      "desc": "Returns true if this component is visible."
77963     },
77964     {
77965      "name": "on",
77966      "sig": "(String eventName, Function handler, Object scope, Object options)",
77967      "type": "function",
77968      "desc": "Appends an event handler to this element (shorthand for addListener)"
77969     },
77970     {
77971      "name": "purgeListeners",
77972      "sig": "()",
77973      "type": "function",
77974      "desc": "Removes all listeners for this object"
77975     },
77976     {
77977      "name": "releaseCapture",
77978      "sig": "(Observable o)",
77979      "type": "function",
77980      "desc": "Removes <b>all</b> added captures from the Observable."
77981     },
77982     {
77983      "name": "removeListener",
77984      "sig": "(String eventName, Function handler, Object scope)",
77985      "type": "function",
77986      "desc": "Removes a listener"
77987     },
77988     {
77989      "name": "render",
77990      "sig": "(String/HTMLElement/Element container)",
77991      "type": "function",
77992      "desc": "If this is a lazy rendering component, render it to its container element."
77993     },
77994     {
77995      "name": "setDisabled",
77996      "sig": "(Boolean disabled)",
77997      "type": "function",
77998      "desc": "Convenience function for setting disabled/enabled by boolean."
77999     },
78000     {
78001      "name": "setVisible",
78002      "sig": "(Boolean visible)",
78003      "type": "function",
78004      "desc": "Convenience function to hide or show this component by boolean."
78005     },
78006     {
78007      "name": "show",
78008      "sig": "()",
78009      "type": "function",
78010      "desc": "Show a component - removes 'hidden' class"
78011     },
78012     {
78013      "name": "tooltipEl",
78014      "sig": "()",
78015      "type": "function",
78016      "desc": "Fetch the element to display the tooltip on."
78017     },
78018     {
78019      "name": "un",
78020      "sig": "(String eventName, Function handler, Object scope)",
78021      "type": "function",
78022      "desc": "Removes a listener (shorthand for removeListener)"
78023     }
78024    ]
78025   },
78026   "Roo.menu": {
78027    "props": [],
78028    "events": [],
78029    "methods": []
78030   },
78031   "Roo.menu.Adapter": {
78032    "props": [
78033     {
78034      "name": "handler",
78035      "type": "Function",
78036      "desc": "A function that will handle the click event of this menu item (defaults to undefined)",
78037      "memberOf": "Roo.menu.BaseItem"
78038     },
78039     {
78040      "name": "canActivate",
78041      "type": "Boolean",
78042      "desc": "True if this item can be visually activated (defaults to false)",
78043      "memberOf": "Roo.menu.BaseItem"
78044     },
78045     {
78046      "name": "hidden",
78047      "type": "Boolean",
78048      "desc": "True to prevent creation of this menu item (defaults to false)",
78049      "memberOf": "Roo.menu.BaseItem"
78050     },
78051     {
78052      "name": "activeClass",
78053      "type": "String",
78054      "desc": "The CSS class to use when the item becomes activated (defaults to \"x-menu-item-active\")",
78055      "memberOf": "Roo.menu.BaseItem"
78056     },
78057     {
78058      "name": "hideOnClick",
78059      "type": "Boolean",
78060      "desc": "True to hide the containing menu after this item is clicked (defaults to true)",
78061      "memberOf": "Roo.menu.BaseItem"
78062     },
78063     {
78064      "name": "hideDelay",
78065      "type": "Number",
78066      "desc": "Length of time in milliseconds to wait before hiding after a click (defaults to 100)",
78067      "memberOf": "Roo.menu.BaseItem"
78068     },
78069     {
78070      "name": "disableClass",
78071      "type": "String",
78072      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
78073      "memberOf": "Roo.Component"
78074     },
78075     {
78076      "name": "allowDomMove",
78077      "type": "Boolean",
78078      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
78079      "memberOf": "Roo.Component"
78080     },
78081     {
78082      "name": "hideMode",
78083      "type": "String",
78084      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
78085      "memberOf": "Roo.Component",
78086      "optvals": [
78087       "display",
78088       "visibility"
78089      ]
78090     },
78091     {
78092      "name": "actionMode",
78093      "type": "String",
78094      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
78095      "memberOf": "Roo.Component"
78096     },
78097     {
78098      "name": "listeners",
78099      "type": "Object",
78100      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
78101      "memberOf": "Roo.util.Observable"
78102     }
78103    ],
78104    "events": [
78105     {
78106      "name": "activate",
78107      "sig": "function (_self)\n{\n\n}",
78108      "type": "function",
78109      "desc": "Fires when this item is activated"
78110     },
78111     {
78112      "name": "beforedestroy",
78113      "sig": "function (_self)\n{\n\n}",
78114      "type": "function",
78115      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
78116     },
78117     {
78118      "name": "beforehide",
78119      "sig": "function (_self)\n{\n\n}",
78120      "type": "function",
78121      "desc": "Fires before the component is hidden. Return false to stop the hide."
78122     },
78123     {
78124      "name": "beforerender",
78125      "sig": "function (_self)\n{\n\n}",
78126      "type": "function",
78127      "desc": "Fires before the component is rendered. Return false to stop the render."
78128     },
78129     {
78130      "name": "beforeshow",
78131      "sig": "function (_self)\n{\n\n}",
78132      "type": "function",
78133      "desc": "Fires before the component is shown.  Return false to stop the show."
78134     },
78135     {
78136      "name": "click",
78137      "sig": "function (_self, e)\n{\n\n}",
78138      "type": "function",
78139      "desc": "Fires when this item is clicked"
78140     },
78141     {
78142      "name": "deactivate",
78143      "sig": "function (_self)\n{\n\n}",
78144      "type": "function",
78145      "desc": "Fires when this item is deactivated"
78146     },
78147     {
78148      "name": "destroy",
78149      "sig": "function (_self)\n{\n\n}",
78150      "type": "function",
78151      "desc": "Fires after the component is destroyed."
78152     },
78153     {
78154      "name": "disable",
78155      "sig": "function (_self)\n{\n\n}",
78156      "type": "function",
78157      "desc": "Fires after the component is disabled."
78158     },
78159     {
78160      "name": "enable",
78161      "sig": "function (_self)\n{\n\n}",
78162      "type": "function",
78163      "desc": "Fires after the component is enabled."
78164     },
78165     {
78166      "name": "hide",
78167      "sig": "function (_self)\n{\n\n}",
78168      "type": "function",
78169      "desc": "Fires after the component is hidden."
78170     },
78171     {
78172      "name": "render",
78173      "sig": "function (_self)\n{\n\n}",
78174      "type": "function",
78175      "desc": "Fires after the component is rendered."
78176     },
78177     {
78178      "name": "show",
78179      "sig": "function (_self)\n{\n\n}",
78180      "type": "function",
78181      "desc": "Fires after the component is shown."
78182     }
78183    ],
78184    "methods": [
78185     {
78186      "name": "addEvents",
78187      "sig": "(Object object)",
78188      "type": "function",
78189      "desc": "Used to define events on this Observable"
78190     },
78191     {
78192      "name": "addListener",
78193      "sig": "(String eventName, Function handler, Object scope, Object options)",
78194      "type": "function",
78195      "desc": "Appends an event handler to this component"
78196     },
78197     {
78198      "name": "capture",
78199      "sig": "(Observable o, Function fn, Object scope)",
78200      "type": "function",
78201      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
78202     },
78203     {
78204      "name": "destroy",
78205      "sig": "()",
78206      "type": "function",
78207      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
78208     },
78209     {
78210      "name": "disable",
78211      "sig": "()",
78212      "type": "function",
78213      "desc": "Disable this component."
78214     },
78215     {
78216      "name": "enable",
78217      "sig": "()",
78218      "type": "function",
78219      "desc": "Enable this component."
78220     },
78221     {
78222      "name": "fireEvent",
78223      "sig": "(String eventName, Object... args)",
78224      "type": "function",
78225      "desc": "Fires the specified event with the passed parameters (minus the event name)."
78226     },
78227     {
78228      "name": "focus",
78229      "sig": "(Boolean selectText)",
78230      "type": "function",
78231      "desc": "Try to focus this component."
78232     },
78233     {
78234      "name": "getEl",
78235      "sig": "()",
78236      "type": "function",
78237      "desc": "Returns the underlying {@link Roo.Element}."
78238     },
78239     {
78240      "name": "getId",
78241      "sig": "()",
78242      "type": "function",
78243      "desc": "Returns the id of this component."
78244     },
78245     {
78246      "name": "hasListener",
78247      "sig": "(String eventName)",
78248      "type": "function",
78249      "desc": "Checks to see if this object has any listeners for a specified event"
78250     },
78251     {
78252      "name": "hide",
78253      "sig": "()",
78254      "type": "function",
78255      "desc": "Hide this component."
78256     },
78257     {
78258      "name": "isVisible",
78259      "sig": "()",
78260      "type": "function",
78261      "desc": "Returns true if this component is visible."
78262     },
78263     {
78264      "name": "on",
78265      "sig": "(String eventName, Function handler, Object scope, Object options)",
78266      "type": "function",
78267      "desc": "Appends an event handler to this element (shorthand for addListener)"
78268     },
78269     {
78270      "name": "purgeListeners",
78271      "sig": "()",
78272      "type": "function",
78273      "desc": "Removes all listeners for this object"
78274     },
78275     {
78276      "name": "releaseCapture",
78277      "sig": "(Observable o)",
78278      "type": "function",
78279      "desc": "Removes <b>all</b> added captures from the Observable."
78280     },
78281     {
78282      "name": "removeListener",
78283      "sig": "(String eventName, Function handler, Object scope)",
78284      "type": "function",
78285      "desc": "Removes a listener"
78286     },
78287     {
78288      "name": "render",
78289      "sig": "(String/HTMLElement/Element container)",
78290      "type": "function",
78291      "desc": "If this is a lazy rendering component, render it to its container element."
78292     },
78293     {
78294      "name": "setDisabled",
78295      "sig": "(Boolean disabled)",
78296      "type": "function",
78297      "desc": "Convenience function for setting disabled/enabled by boolean."
78298     },
78299     {
78300      "name": "setVisible",
78301      "sig": "(Boolean visible)",
78302      "type": "function",
78303      "desc": "Convenience function to hide or show this component by boolean."
78304     },
78305     {
78306      "name": "show",
78307      "sig": "()",
78308      "type": "function",
78309      "desc": "Show this component."
78310     },
78311     {
78312      "name": "un",
78313      "sig": "(String eventName, Function handler, Object scope)",
78314      "type": "function",
78315      "desc": "Removes a listener (shorthand for removeListener)"
78316     }
78317    ]
78318   },
78319   "Roo.menu.BaseItem": {
78320    "props": [
78321     {
78322      "name": "handler",
78323      "type": "Function",
78324      "desc": "A function that will handle the click event of this menu item (defaults to undefined)",
78325      "memberOf": ""
78326     },
78327     {
78328      "name": "canActivate",
78329      "type": "Boolean",
78330      "desc": "True if this item can be visually activated (defaults to false)",
78331      "memberOf": ""
78332     },
78333     {
78334      "name": "hidden",
78335      "type": "Boolean",
78336      "desc": "True to prevent creation of this menu item (defaults to false)",
78337      "memberOf": ""
78338     },
78339     {
78340      "name": "activeClass",
78341      "type": "String",
78342      "desc": "The CSS class to use when the item becomes activated (defaults to \"x-menu-item-active\")",
78343      "memberOf": ""
78344     },
78345     {
78346      "name": "hideOnClick",
78347      "type": "Boolean",
78348      "desc": "True to hide the containing menu after this item is clicked (defaults to true)",
78349      "memberOf": ""
78350     },
78351     {
78352      "name": "hideDelay",
78353      "type": "Number",
78354      "desc": "Length of time in milliseconds to wait before hiding after a click (defaults to 100)",
78355      "memberOf": ""
78356     },
78357     {
78358      "name": "disableClass",
78359      "type": "String",
78360      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
78361      "memberOf": "Roo.Component"
78362     },
78363     {
78364      "name": "allowDomMove",
78365      "type": "Boolean",
78366      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
78367      "memberOf": "Roo.Component"
78368     },
78369     {
78370      "name": "hideMode",
78371      "type": "String",
78372      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
78373      "memberOf": "Roo.Component",
78374      "optvals": [
78375       "display",
78376       "visibility"
78377      ]
78378     },
78379     {
78380      "name": "actionMode",
78381      "type": "String",
78382      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
78383      "memberOf": "Roo.Component"
78384     },
78385     {
78386      "name": "listeners",
78387      "type": "Object",
78388      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
78389      "memberOf": "Roo.util.Observable"
78390     }
78391    ],
78392    "events": [
78393     {
78394      "name": "activate",
78395      "sig": "function (_self)\n{\n\n}",
78396      "type": "function",
78397      "desc": "Fires when this item is activated"
78398     },
78399     {
78400      "name": "beforedestroy",
78401      "sig": "function (_self)\n{\n\n}",
78402      "type": "function",
78403      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
78404     },
78405     {
78406      "name": "beforehide",
78407      "sig": "function (_self)\n{\n\n}",
78408      "type": "function",
78409      "desc": "Fires before the component is hidden. Return false to stop the hide."
78410     },
78411     {
78412      "name": "beforerender",
78413      "sig": "function (_self)\n{\n\n}",
78414      "type": "function",
78415      "desc": "Fires before the component is rendered. Return false to stop the render."
78416     },
78417     {
78418      "name": "beforeshow",
78419      "sig": "function (_self)\n{\n\n}",
78420      "type": "function",
78421      "desc": "Fires before the component is shown.  Return false to stop the show."
78422     },
78423     {
78424      "name": "click",
78425      "sig": "function (_self, e)\n{\n\n}",
78426      "type": "function",
78427      "desc": "Fires when this item is clicked"
78428     },
78429     {
78430      "name": "deactivate",
78431      "sig": "function (_self)\n{\n\n}",
78432      "type": "function",
78433      "desc": "Fires when this item is deactivated"
78434     },
78435     {
78436      "name": "destroy",
78437      "sig": "function (_self)\n{\n\n}",
78438      "type": "function",
78439      "desc": "Fires after the component is destroyed."
78440     },
78441     {
78442      "name": "disable",
78443      "sig": "function (_self)\n{\n\n}",
78444      "type": "function",
78445      "desc": "Fires after the component is disabled."
78446     },
78447     {
78448      "name": "enable",
78449      "sig": "function (_self)\n{\n\n}",
78450      "type": "function",
78451      "desc": "Fires after the component is enabled."
78452     },
78453     {
78454      "name": "hide",
78455      "sig": "function (_self)\n{\n\n}",
78456      "type": "function",
78457      "desc": "Fires after the component is hidden."
78458     },
78459     {
78460      "name": "render",
78461      "sig": "function (_self)\n{\n\n}",
78462      "type": "function",
78463      "desc": "Fires after the component is rendered."
78464     },
78465     {
78466      "name": "show",
78467      "sig": "function (_self)\n{\n\n}",
78468      "type": "function",
78469      "desc": "Fires after the component is shown."
78470     }
78471    ],
78472    "methods": [
78473     {
78474      "name": "addEvents",
78475      "sig": "(Object object)",
78476      "type": "function",
78477      "desc": "Used to define events on this Observable"
78478     },
78479     {
78480      "name": "addListener",
78481      "sig": "(String eventName, Function handler, Object scope, Object options)",
78482      "type": "function",
78483      "desc": "Appends an event handler to this component"
78484     },
78485     {
78486      "name": "capture",
78487      "sig": "(Observable o, Function fn, Object scope)",
78488      "type": "function",
78489      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
78490     },
78491     {
78492      "name": "destroy",
78493      "sig": "()",
78494      "type": "function",
78495      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
78496     },
78497     {
78498      "name": "disable",
78499      "sig": "()",
78500      "type": "function",
78501      "desc": "Disable this component."
78502     },
78503     {
78504      "name": "enable",
78505      "sig": "()",
78506      "type": "function",
78507      "desc": "Enable this component."
78508     },
78509     {
78510      "name": "fireEvent",
78511      "sig": "(String eventName, Object... args)",
78512      "type": "function",
78513      "desc": "Fires the specified event with the passed parameters (minus the event name)."
78514     },
78515     {
78516      "name": "focus",
78517      "sig": "(Boolean selectText)",
78518      "type": "function",
78519      "desc": "Try to focus this component."
78520     },
78521     {
78522      "name": "getEl",
78523      "sig": "()",
78524      "type": "function",
78525      "desc": "Returns the underlying {@link Roo.Element}."
78526     },
78527     {
78528      "name": "getId",
78529      "sig": "()",
78530      "type": "function",
78531      "desc": "Returns the id of this component."
78532     },
78533     {
78534      "name": "hasListener",
78535      "sig": "(String eventName)",
78536      "type": "function",
78537      "desc": "Checks to see if this object has any listeners for a specified event"
78538     },
78539     {
78540      "name": "hide",
78541      "sig": "()",
78542      "type": "function",
78543      "desc": "Hide this component."
78544     },
78545     {
78546      "name": "isVisible",
78547      "sig": "()",
78548      "type": "function",
78549      "desc": "Returns true if this component is visible."
78550     },
78551     {
78552      "name": "on",
78553      "sig": "(String eventName, Function handler, Object scope, Object options)",
78554      "type": "function",
78555      "desc": "Appends an event handler to this element (shorthand for addListener)"
78556     },
78557     {
78558      "name": "purgeListeners",
78559      "sig": "()",
78560      "type": "function",
78561      "desc": "Removes all listeners for this object"
78562     },
78563     {
78564      "name": "releaseCapture",
78565      "sig": "(Observable o)",
78566      "type": "function",
78567      "desc": "Removes <b>all</b> added captures from the Observable."
78568     },
78569     {
78570      "name": "removeListener",
78571      "sig": "(String eventName, Function handler, Object scope)",
78572      "type": "function",
78573      "desc": "Removes a listener"
78574     },
78575     {
78576      "name": "render",
78577      "sig": "(String/HTMLElement/Element container)",
78578      "type": "function",
78579      "desc": "If this is a lazy rendering component, render it to its container element."
78580     },
78581     {
78582      "name": "setDisabled",
78583      "sig": "(Boolean disabled)",
78584      "type": "function",
78585      "desc": "Convenience function for setting disabled/enabled by boolean."
78586     },
78587     {
78588      "name": "setVisible",
78589      "sig": "(Boolean visible)",
78590      "type": "function",
78591      "desc": "Convenience function to hide or show this component by boolean."
78592     },
78593     {
78594      "name": "show",
78595      "sig": "()",
78596      "type": "function",
78597      "desc": "Show this component."
78598     },
78599     {
78600      "name": "un",
78601      "sig": "(String eventName, Function handler, Object scope)",
78602      "type": "function",
78603      "desc": "Removes a listener (shorthand for removeListener)"
78604     }
78605    ]
78606   },
78607   "Roo.menu.CheckItem": {
78608    "props": [
78609     {
78610      "name": "group",
78611      "type": "String",
78612      "desc": "All check items with the same group name will automatically be grouped into a single-select\nradio button group (defaults to '')",
78613      "memberOf": ""
78614     },
78615     {
78616      "name": "itemCls",
78617      "type": "String",
78618      "desc": "The default CSS class to use for check items (defaults to \"x-menu-item x-menu-check-item\")",
78619      "memberOf": ""
78620     },
78621     {
78622      "name": "groupClass",
78623      "type": "String",
78624      "desc": "The default CSS class to use for radio group check items (defaults to \"x-menu-group-item\")",
78625      "memberOf": ""
78626     },
78627     {
78628      "name": "checked",
78629      "type": "Boolean",
78630      "desc": "True to initialize this checkbox as checked (defaults to false).  Note that\nif this checkbox is part of a radio group (group = true) only the last item in the group that is\ninitialized with checked = true will be rendered as checked.",
78631      "memberOf": ""
78632     },
78633     {
78634      "name": "text",
78635      "type": "String",
78636      "desc": "The text to show on the menu item.",
78637      "memberOf": "Roo.menu.Item"
78638     },
78639     {
78640      "name": "HTML",
78641      "type": "String",
78642      "desc": "to render in menu\nThe text to show on the menu item (HTML version).",
78643      "memberOf": "Roo.menu.Item"
78644     },
78645     {
78646      "name": "icon",
78647      "type": "String",
78648      "desc": "The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)",
78649      "memberOf": "Roo.menu.Item"
78650     },
78651     {
78652      "name": "canActivate",
78653      "type": "Boolean",
78654      "desc": "True if this item can be visually activated (defaults to true)",
78655      "memberOf": "Roo.menu.Item"
78656     },
78657     {
78658      "name": "showDelay",
78659      "type": "Number",
78660      "desc": "Length of time in milliseconds to wait before showing this item (defaults to 200)",
78661      "memberOf": "Roo.menu.Item"
78662     },
78663     {
78664      "name": "handler",
78665      "type": "Function",
78666      "desc": "A function that will handle the click event of this menu item (defaults to undefined)",
78667      "memberOf": "Roo.menu.BaseItem"
78668     },
78669     {
78670      "name": "hidden",
78671      "type": "Boolean",
78672      "desc": "True to prevent creation of this menu item (defaults to false)",
78673      "memberOf": "Roo.menu.BaseItem"
78674     },
78675     {
78676      "name": "activeClass",
78677      "type": "String",
78678      "desc": "The CSS class to use when the item becomes activated (defaults to \"x-menu-item-active\")",
78679      "memberOf": "Roo.menu.BaseItem"
78680     },
78681     {
78682      "name": "hideOnClick",
78683      "type": "Boolean",
78684      "desc": "True to hide the containing menu after this item is clicked (defaults to true)",
78685      "memberOf": "Roo.menu.BaseItem"
78686     },
78687     {
78688      "name": "hideDelay",
78689      "type": "Number",
78690      "desc": "Length of time in milliseconds to wait before hiding after a click (defaults to 100)",
78691      "memberOf": "Roo.menu.BaseItem"
78692     },
78693     {
78694      "name": "disableClass",
78695      "type": "String",
78696      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
78697      "memberOf": "Roo.Component"
78698     },
78699     {
78700      "name": "allowDomMove",
78701      "type": "Boolean",
78702      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
78703      "memberOf": "Roo.Component"
78704     },
78705     {
78706      "name": "hideMode",
78707      "type": "String",
78708      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
78709      "memberOf": "Roo.Component",
78710      "optvals": [
78711       "display",
78712       "visibility"
78713      ]
78714     },
78715     {
78716      "name": "actionMode",
78717      "type": "String",
78718      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
78719      "memberOf": "Roo.Component"
78720     },
78721     {
78722      "name": "listeners",
78723      "type": "Object",
78724      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
78725      "memberOf": "Roo.util.Observable"
78726     }
78727    ],
78728    "events": [
78729     {
78730      "name": "activate",
78731      "sig": "function (_self)\n{\n\n}",
78732      "type": "function",
78733      "desc": "Fires when this item is activated"
78734     },
78735     {
78736      "name": "beforecheckchange",
78737      "sig": "function (_self, checked)\n{\n\n}",
78738      "type": "function",
78739      "desc": "Fires before the checked value is set, providing an opportunity to cancel if needed"
78740     },
78741     {
78742      "name": "beforedestroy",
78743      "sig": "function (_self)\n{\n\n}",
78744      "type": "function",
78745      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
78746     },
78747     {
78748      "name": "beforehide",
78749      "sig": "function (_self)\n{\n\n}",
78750      "type": "function",
78751      "desc": "Fires before the component is hidden. Return false to stop the hide."
78752     },
78753     {
78754      "name": "beforerender",
78755      "sig": "function (_self)\n{\n\n}",
78756      "type": "function",
78757      "desc": "Fires before the component is rendered. Return false to stop the render."
78758     },
78759     {
78760      "name": "beforeshow",
78761      "sig": "function (_self)\n{\n\n}",
78762      "type": "function",
78763      "desc": "Fires before the component is shown.  Return false to stop the show."
78764     },
78765     {
78766      "name": "checkchange",
78767      "sig": "function (_self, checked)\n{\n\n}",
78768      "type": "function",
78769      "desc": "Fires after the checked value has been set"
78770     },
78771     {
78772      "name": "click",
78773      "sig": "function (_self, e)\n{\n\n}",
78774      "type": "function",
78775      "desc": "Fires when this item is clicked"
78776     },
78777     {
78778      "name": "deactivate",
78779      "sig": "function (_self)\n{\n\n}",
78780      "type": "function",
78781      "desc": "Fires when this item is deactivated"
78782     },
78783     {
78784      "name": "destroy",
78785      "sig": "function (_self)\n{\n\n}",
78786      "type": "function",
78787      "desc": "Fires after the component is destroyed."
78788     },
78789     {
78790      "name": "disable",
78791      "sig": "function (_self)\n{\n\n}",
78792      "type": "function",
78793      "desc": "Fires after the component is disabled."
78794     },
78795     {
78796      "name": "enable",
78797      "sig": "function (_self)\n{\n\n}",
78798      "type": "function",
78799      "desc": "Fires after the component is enabled."
78800     },
78801     {
78802      "name": "hide",
78803      "sig": "function (_self)\n{\n\n}",
78804      "type": "function",
78805      "desc": "Fires after the component is hidden."
78806     },
78807     {
78808      "name": "render",
78809      "sig": "function (_self)\n{\n\n}",
78810      "type": "function",
78811      "desc": "Fires after the component is rendered."
78812     },
78813     {
78814      "name": "show",
78815      "sig": "function (_self)\n{\n\n}",
78816      "type": "function",
78817      "desc": "Fires after the component is shown."
78818     }
78819    ],
78820    "methods": [
78821     {
78822      "name": "addEvents",
78823      "sig": "(Object object)",
78824      "type": "function",
78825      "desc": "Used to define events on this Observable"
78826     },
78827     {
78828      "name": "addListener",
78829      "sig": "(String eventName, Function handler, Object scope, Object options)",
78830      "type": "function",
78831      "desc": "Appends an event handler to this component"
78832     },
78833     {
78834      "name": "capture",
78835      "sig": "(Observable o, Function fn, Object scope)",
78836      "type": "function",
78837      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
78838     },
78839     {
78840      "name": "destroy",
78841      "sig": "()",
78842      "type": "function",
78843      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
78844     },
78845     {
78846      "name": "disable",
78847      "sig": "()",
78848      "type": "function",
78849      "desc": "Disable this component."
78850     },
78851     {
78852      "name": "enable",
78853      "sig": "()",
78854      "type": "function",
78855      "desc": "Enable this component."
78856     },
78857     {
78858      "name": "fireEvent",
78859      "sig": "(String eventName, Object... args)",
78860      "type": "function",
78861      "desc": "Fires the specified event with the passed parameters (minus the event name)."
78862     },
78863     {
78864      "name": "focus",
78865      "sig": "(Boolean selectText)",
78866      "type": "function",
78867      "desc": "Try to focus this component."
78868     },
78869     {
78870      "name": "getEl",
78871      "sig": "()",
78872      "type": "function",
78873      "desc": "Returns the underlying {@link Roo.Element}."
78874     },
78875     {
78876      "name": "getId",
78877      "sig": "()",
78878      "type": "function",
78879      "desc": "Returns the id of this component."
78880     },
78881     {
78882      "name": "hasListener",
78883      "sig": "(String eventName)",
78884      "type": "function",
78885      "desc": "Checks to see if this object has any listeners for a specified event"
78886     },
78887     {
78888      "name": "hide",
78889      "sig": "()",
78890      "type": "function",
78891      "desc": "Hide this component."
78892     },
78893     {
78894      "name": "isVisible",
78895      "sig": "()",
78896      "type": "function",
78897      "desc": "Returns true if this component is visible."
78898     },
78899     {
78900      "name": "on",
78901      "sig": "(String eventName, Function handler, Object scope, Object options)",
78902      "type": "function",
78903      "desc": "Appends an event handler to this element (shorthand for addListener)"
78904     },
78905     {
78906      "name": "purgeListeners",
78907      "sig": "()",
78908      "type": "function",
78909      "desc": "Removes all listeners for this object"
78910     },
78911     {
78912      "name": "releaseCapture",
78913      "sig": "(Observable o)",
78914      "type": "function",
78915      "desc": "Removes <b>all</b> added captures from the Observable."
78916     },
78917     {
78918      "name": "removeListener",
78919      "sig": "(String eventName, Function handler, Object scope)",
78920      "type": "function",
78921      "desc": "Removes a listener"
78922     },
78923     {
78924      "name": "render",
78925      "sig": "(String/HTMLElement/Element container)",
78926      "type": "function",
78927      "desc": "If this is a lazy rendering component, render it to its container element."
78928     },
78929     {
78930      "name": "setChecked",
78931      "sig": "(Boolean checked, Boolean suppressEvent)",
78932      "type": "function",
78933      "desc": "Set the checked state of this item"
78934     },
78935     {
78936      "name": "setDisabled",
78937      "sig": "(Boolean disabled)",
78938      "type": "function",
78939      "desc": "Convenience function for setting disabled/enabled by boolean."
78940     },
78941     {
78942      "name": "setText",
78943      "sig": "(String text, Boolean isHTML)",
78944      "type": "function",
78945      "desc": "Sets the text to display in this menu item"
78946     },
78947     {
78948      "name": "setVisible",
78949      "sig": "(Boolean visible)",
78950      "type": "function",
78951      "desc": "Convenience function to hide or show this component by boolean."
78952     },
78953     {
78954      "name": "show",
78955      "sig": "()",
78956      "type": "function",
78957      "desc": "Show this component."
78958     },
78959     {
78960      "name": "un",
78961      "sig": "(String eventName, Function handler, Object scope)",
78962      "type": "function",
78963      "desc": "Removes a listener (shorthand for removeListener)"
78964     }
78965    ]
78966   },
78967   "Roo.menu.ColorItem": {
78968    "props": [
78969     {
78970      "name": "handler",
78971      "type": "Function",
78972      "desc": "A function that will handle the click event of this menu item (defaults to undefined)",
78973      "memberOf": "Roo.menu.BaseItem"
78974     },
78975     {
78976      "name": "canActivate",
78977      "type": "Boolean",
78978      "desc": "True if this item can be visually activated (defaults to false)",
78979      "memberOf": "Roo.menu.BaseItem"
78980     },
78981     {
78982      "name": "hidden",
78983      "type": "Boolean",
78984      "desc": "True to prevent creation of this menu item (defaults to false)",
78985      "memberOf": "Roo.menu.BaseItem"
78986     },
78987     {
78988      "name": "activeClass",
78989      "type": "String",
78990      "desc": "The CSS class to use when the item becomes activated (defaults to \"x-menu-item-active\")",
78991      "memberOf": "Roo.menu.BaseItem"
78992     },
78993     {
78994      "name": "hideOnClick",
78995      "type": "Boolean",
78996      "desc": "True to hide the containing menu after this item is clicked (defaults to true)",
78997      "memberOf": "Roo.menu.BaseItem"
78998     },
78999     {
79000      "name": "hideDelay",
79001      "type": "Number",
79002      "desc": "Length of time in milliseconds to wait before hiding after a click (defaults to 100)",
79003      "memberOf": "Roo.menu.BaseItem"
79004     },
79005     {
79006      "name": "disableClass",
79007      "type": "String",
79008      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
79009      "memberOf": "Roo.Component"
79010     },
79011     {
79012      "name": "allowDomMove",
79013      "type": "Boolean",
79014      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
79015      "memberOf": "Roo.Component"
79016     },
79017     {
79018      "name": "hideMode",
79019      "type": "String",
79020      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
79021      "memberOf": "Roo.Component",
79022      "optvals": [
79023       "display",
79024       "visibility"
79025      ]
79026     },
79027     {
79028      "name": "actionMode",
79029      "type": "String",
79030      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
79031      "memberOf": "Roo.Component"
79032     },
79033     {
79034      "name": "listeners",
79035      "type": "Object",
79036      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
79037      "memberOf": "Roo.util.Observable"
79038     }
79039    ],
79040    "events": [
79041     {
79042      "name": "activate",
79043      "sig": "function (_self)\n{\n\n}",
79044      "type": "function",
79045      "desc": "Fires when this item is activated"
79046     },
79047     {
79048      "name": "beforedestroy",
79049      "sig": "function (_self)\n{\n\n}",
79050      "type": "function",
79051      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
79052     },
79053     {
79054      "name": "beforehide",
79055      "sig": "function (_self)\n{\n\n}",
79056      "type": "function",
79057      "desc": "Fires before the component is hidden. Return false to stop the hide."
79058     },
79059     {
79060      "name": "beforerender",
79061      "sig": "function (_self)\n{\n\n}",
79062      "type": "function",
79063      "desc": "Fires before the component is rendered. Return false to stop the render."
79064     },
79065     {
79066      "name": "beforeshow",
79067      "sig": "function (_self)\n{\n\n}",
79068      "type": "function",
79069      "desc": "Fires before the component is shown.  Return false to stop the show."
79070     },
79071     {
79072      "name": "click",
79073      "sig": "function (_self, e)\n{\n\n}",
79074      "type": "function",
79075      "desc": "Fires when this item is clicked"
79076     },
79077     {
79078      "name": "deactivate",
79079      "sig": "function (_self)\n{\n\n}",
79080      "type": "function",
79081      "desc": "Fires when this item is deactivated"
79082     },
79083     {
79084      "name": "destroy",
79085      "sig": "function (_self)\n{\n\n}",
79086      "type": "function",
79087      "desc": "Fires after the component is destroyed."
79088     },
79089     {
79090      "name": "disable",
79091      "sig": "function (_self)\n{\n\n}",
79092      "type": "function",
79093      "desc": "Fires after the component is disabled."
79094     },
79095     {
79096      "name": "enable",
79097      "sig": "function (_self)\n{\n\n}",
79098      "type": "function",
79099      "desc": "Fires after the component is enabled."
79100     },
79101     {
79102      "name": "hide",
79103      "sig": "function (_self)\n{\n\n}",
79104      "type": "function",
79105      "desc": "Fires after the component is hidden."
79106     },
79107     {
79108      "name": "render",
79109      "sig": "function (_self)\n{\n\n}",
79110      "type": "function",
79111      "desc": "Fires after the component is rendered."
79112     },
79113     {
79114      "name": "show",
79115      "sig": "function (_self)\n{\n\n}",
79116      "type": "function",
79117      "desc": "Fires after the component is shown."
79118     }
79119    ],
79120    "methods": [
79121     {
79122      "name": "addEvents",
79123      "sig": "(Object object)",
79124      "type": "function",
79125      "desc": "Used to define events on this Observable"
79126     },
79127     {
79128      "name": "addListener",
79129      "sig": "(String eventName, Function handler, Object scope, Object options)",
79130      "type": "function",
79131      "desc": "Appends an event handler to this component"
79132     },
79133     {
79134      "name": "capture",
79135      "sig": "(Observable o, Function fn, Object scope)",
79136      "type": "function",
79137      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
79138     },
79139     {
79140      "name": "destroy",
79141      "sig": "()",
79142      "type": "function",
79143      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
79144     },
79145     {
79146      "name": "disable",
79147      "sig": "()",
79148      "type": "function",
79149      "desc": "Disable this component."
79150     },
79151     {
79152      "name": "enable",
79153      "sig": "()",
79154      "type": "function",
79155      "desc": "Enable this component."
79156     },
79157     {
79158      "name": "fireEvent",
79159      "sig": "(String eventName, Object... args)",
79160      "type": "function",
79161      "desc": "Fires the specified event with the passed parameters (minus the event name)."
79162     },
79163     {
79164      "name": "focus",
79165      "sig": "(Boolean selectText)",
79166      "type": "function",
79167      "desc": "Try to focus this component."
79168     },
79169     {
79170      "name": "getEl",
79171      "sig": "()",
79172      "type": "function",
79173      "desc": "Returns the underlying {@link Roo.Element}."
79174     },
79175     {
79176      "name": "getId",
79177      "sig": "()",
79178      "type": "function",
79179      "desc": "Returns the id of this component."
79180     },
79181     {
79182      "name": "hasListener",
79183      "sig": "(String eventName)",
79184      "type": "function",
79185      "desc": "Checks to see if this object has any listeners for a specified event"
79186     },
79187     {
79188      "name": "hide",
79189      "sig": "()",
79190      "type": "function",
79191      "desc": "Hide this component."
79192     },
79193     {
79194      "name": "isVisible",
79195      "sig": "()",
79196      "type": "function",
79197      "desc": "Returns true if this component is visible."
79198     },
79199     {
79200      "name": "on",
79201      "sig": "(String eventName, Function handler, Object scope, Object options)",
79202      "type": "function",
79203      "desc": "Appends an event handler to this element (shorthand for addListener)"
79204     },
79205     {
79206      "name": "purgeListeners",
79207      "sig": "()",
79208      "type": "function",
79209      "desc": "Removes all listeners for this object"
79210     },
79211     {
79212      "name": "releaseCapture",
79213      "sig": "(Observable o)",
79214      "type": "function",
79215      "desc": "Removes <b>all</b> added captures from the Observable."
79216     },
79217     {
79218      "name": "removeListener",
79219      "sig": "(String eventName, Function handler, Object scope)",
79220      "type": "function",
79221      "desc": "Removes a listener"
79222     },
79223     {
79224      "name": "render",
79225      "sig": "(String/HTMLElement/Element container)",
79226      "type": "function",
79227      "desc": "If this is a lazy rendering component, render it to its container element."
79228     },
79229     {
79230      "name": "setDisabled",
79231      "sig": "(Boolean disabled)",
79232      "type": "function",
79233      "desc": "Convenience function for setting disabled/enabled by boolean."
79234     },
79235     {
79236      "name": "setVisible",
79237      "sig": "(Boolean visible)",
79238      "type": "function",
79239      "desc": "Convenience function to hide or show this component by boolean."
79240     },
79241     {
79242      "name": "show",
79243      "sig": "()",
79244      "type": "function",
79245      "desc": "Show this component."
79246     },
79247     {
79248      "name": "un",
79249      "sig": "(String eventName, Function handler, Object scope)",
79250      "type": "function",
79251      "desc": "Removes a listener (shorthand for removeListener)"
79252     }
79253    ]
79254   },
79255   "Roo.menu.ColorMenu": {
79256    "props": [
79257     {
79258      "name": "minWidth",
79259      "type": "Number",
79260      "desc": "The minimum width of the menu in pixels (defaults to 120)",
79261      "memberOf": "Roo.menu.Menu"
79262     },
79263     {
79264      "name": "shadow",
79265      "type": "Boolean/String",
79266      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\"\nfor bottom-right shadow (defaults to \"sides\")",
79267      "memberOf": "Roo.menu.Menu"
79268     },
79269     {
79270      "name": "subMenuAlign",
79271      "type": "String",
79272      "desc": "The {@link Roo.Element#alignTo} anchor position value to use for submenus of\nthis menu (defaults to \"tl-tr?\")",
79273      "memberOf": "Roo.menu.Menu"
79274     },
79275     {
79276      "name": "defaultAlign",
79277      "type": "String",
79278      "desc": "The default {@link Roo.Element#alignTo) anchor position value for this menu\nrelative to its element of origin (defaults to \"tl-bl?\")",
79279      "memberOf": "Roo.menu.Menu"
79280     },
79281     {
79282      "name": "allowOtherMenus",
79283      "type": "Boolean",
79284      "desc": "True to allow multiple menus to be displayed at the same time (defaults to false)",
79285      "memberOf": "Roo.menu.Menu"
79286     },
79287     {
79288      "name": "registerMenu",
79289      "type": "Boolean",
79290      "desc": "True (default) - means that clicking on screen etc. hides it.",
79291      "memberOf": "Roo.menu.Menu"
79292     },
79293     {
79294      "name": "listeners",
79295      "type": "Object",
79296      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
79297      "memberOf": "Roo.util.Observable"
79298     }
79299    ],
79300    "events": [
79301     {
79302      "name": "beforehide",
79303      "sig": "function (_self)\n{\n\n}",
79304      "type": "function",
79305      "desc": "Fires before this menu is hidden"
79306     },
79307     {
79308      "name": "beforeshow",
79309      "sig": "function (_self)\n{\n\n}",
79310      "type": "function",
79311      "desc": "Fires before this menu is displayed"
79312     },
79313     {
79314      "name": "click",
79315      "sig": "function (_self, menuItem, e)\n{\n\n}",
79316      "type": "function",
79317      "desc": "Fires when this menu is clicked (or when the enter key is pressed while it is active)"
79318     },
79319     {
79320      "name": "hide",
79321      "sig": "function (_self)\n{\n\n}",
79322      "type": "function",
79323      "desc": "Fires after this menu is hidden"
79324     },
79325     {
79326      "name": "itemclick",
79327      "sig": "function (baseItem, e)\n{\n\n}",
79328      "type": "function",
79329      "desc": "Fires when a menu item contained in this menu is clicked"
79330     },
79331     {
79332      "name": "mouseout",
79333      "sig": "function (_self, e, menuItem)\n{\n\n}",
79334      "type": "function",
79335      "desc": "Fires when the mouse exits this menu"
79336     },
79337     {
79338      "name": "mouseover",
79339      "sig": "function (_self, e, menuItem)\n{\n\n}",
79340      "type": "function",
79341      "desc": "Fires when the mouse is hovering over this menu"
79342     },
79343     {
79344      "name": "select",
79345      "sig": "function (palette, color)\n{\n\n}",
79346      "type": "function",
79347      "desc": ""
79348     },
79349     {
79350      "name": "show",
79351      "sig": "function (_self)\n{\n\n}",
79352      "type": "function",
79353      "desc": "Fires after this menu is displayed"
79354     }
79355    ],
79356    "methods": [
79357     {
79358      "name": "add",
79359      "sig": "(Mixed args)",
79360      "type": "function",
79361      "desc": "Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.\nAny of the following are valid:\n<ul>\n<li>Any menu item object based on {@link Roo.menu.Item}</li>\n<li>An HTMLElement object which will be converted to a menu item</li>\n<li>A menu item config object that will be created as a new menu item</li>\n<li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise\nit will be converted into a {@link Roo.menu.TextItem} and added</li>\n</ul>\nUsage:\n<pre><code>\n// Create the menu\nvar menu = new Roo.menu.Menu();\n\n// Create a menu item to add by reference\nvar menuItem = new Roo.menu.Item({ text: 'New Item!' });\n\n// Add a bunch of items at once using different methods.\n// Only the last item added will be returned.\nvar item = menu.add(\n    menuItem,                // add existing item by ref\n    'Dynamic Item',          // new TextItem\n    '-',                     // new separator\n    { text: 'Config Item' }  // new item by config\n);\n</code></pre>"
79362     },
79363     {
79364      "name": "addElement",
79365      "sig": "(String/HTMLElement/Roo.Element el)",
79366      "type": "function",
79367      "desc": "Adds an {@link Roo.Element} object to the menu"
79368     },
79369     {
79370      "name": "addEvents",
79371      "sig": "(Object object)",
79372      "type": "function",
79373      "desc": "Used to define events on this Observable"
79374     },
79375     {
79376      "name": "addItem",
79377      "sig": "(Roo.menu.Item item)",
79378      "type": "function",
79379      "desc": "Adds an existing object based on {@link Roo.menu.Item} to the menu"
79380     },
79381     {
79382      "name": "addListener",
79383      "sig": "(String eventName, Function handler, Object scope, Object options)",
79384      "type": "function",
79385      "desc": "Appends an event handler to this component"
79386     },
79387     {
79388      "name": "addMenuItem",
79389      "sig": "(Object config)",
79390      "type": "function",
79391      "desc": "Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu"
79392     },
79393     {
79394      "name": "addSeparator",
79395      "sig": "()",
79396      "type": "function",
79397      "desc": "Adds a separator bar to the menu"
79398     },
79399     {
79400      "name": "addText",
79401      "sig": "(String text)",
79402      "type": "function",
79403      "desc": "Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu"
79404     },
79405     {
79406      "name": "capture",
79407      "sig": "(Observable o, Function fn, Object scope)",
79408      "type": "function",
79409      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
79410     },
79411     {
79412      "name": "fireEvent",
79413      "sig": "(String eventName, Object... args)",
79414      "type": "function",
79415      "desc": "Fires the specified event with the passed parameters (minus the event name)."
79416     },
79417     {
79418      "name": "getEl",
79419      "sig": "()",
79420      "type": "function",
79421      "desc": "Returns this menu's underlying {@link Roo.Element} object"
79422     },
79423     {
79424      "name": "hasListener",
79425      "sig": "(String eventName)",
79426      "type": "function",
79427      "desc": "Checks to see if this object has any listeners for a specified event"
79428     },
79429     {
79430      "name": "hide",
79431      "sig": "(Boolean deep)",
79432      "type": "function",
79433      "desc": "Hides this menu and optionally all parent menus"
79434     },
79435     {
79436      "name": "insert",
79437      "sig": "(Number index, Roo.menu.Item item)",
79438      "type": "function",
79439      "desc": "Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index"
79440     },
79441     {
79442      "name": "isVisible",
79443      "sig": "()",
79444      "type": "function",
79445      "desc": "Read-only.  Returns true if the menu is currently displayed, else false."
79446     },
79447     {
79448      "name": "on",
79449      "sig": "(String eventName, Function handler, Object scope, Object options)",
79450      "type": "function",
79451      "desc": "Appends an event handler to this element (shorthand for addListener)"
79452     },
79453     {
79454      "name": "purgeListeners",
79455      "sig": "()",
79456      "type": "function",
79457      "desc": "Removes all listeners for this object"
79458     },
79459     {
79460      "name": "releaseCapture",
79461      "sig": "(Observable o)",
79462      "type": "function",
79463      "desc": "Removes <b>all</b> added captures from the Observable."
79464     },
79465     {
79466      "name": "remove",
79467      "sig": "(Roo.menu.Item item)",
79468      "type": "function",
79469      "desc": "Removes an {@link Roo.menu.Item} from the menu and destroys the object"
79470     },
79471     {
79472      "name": "removeAll",
79473      "sig": "()",
79474      "type": "function",
79475      "desc": "Removes and destroys all items in the menu"
79476     },
79477     {
79478      "name": "removeListener",
79479      "sig": "(String eventName, Function handler, Object scope)",
79480      "type": "function",
79481      "desc": "Removes a listener"
79482     },
79483     {
79484      "name": "show",
79485      "sig": "(String/HTMLElement/Roo.Element element, String position, Roo.menu.Menu parentMenu)",
79486      "type": "function",
79487      "desc": "Displays this menu relative to another element"
79488     },
79489     {
79490      "name": "showAt",
79491      "sig": "(Array xyPosition, Roo.menu.Menu parentMenu)",
79492      "type": "function",
79493      "desc": "Displays this menu at a specific xy position"
79494     },
79495     {
79496      "name": "un",
79497      "sig": "(String eventName, Function handler, Object scope)",
79498      "type": "function",
79499      "desc": "Removes a listener (shorthand for removeListener)"
79500     }
79501    ]
79502   },
79503   "Roo.menu.DateItem": {
79504    "props": [
79505     {
79506      "name": "handler",
79507      "type": "Function",
79508      "desc": "A function that will handle the click event of this menu item (defaults to undefined)",
79509      "memberOf": "Roo.menu.BaseItem"
79510     },
79511     {
79512      "name": "canActivate",
79513      "type": "Boolean",
79514      "desc": "True if this item can be visually activated (defaults to false)",
79515      "memberOf": "Roo.menu.BaseItem"
79516     },
79517     {
79518      "name": "hidden",
79519      "type": "Boolean",
79520      "desc": "True to prevent creation of this menu item (defaults to false)",
79521      "memberOf": "Roo.menu.BaseItem"
79522     },
79523     {
79524      "name": "activeClass",
79525      "type": "String",
79526      "desc": "The CSS class to use when the item becomes activated (defaults to \"x-menu-item-active\")",
79527      "memberOf": "Roo.menu.BaseItem"
79528     },
79529     {
79530      "name": "hideOnClick",
79531      "type": "Boolean",
79532      "desc": "True to hide the containing menu after this item is clicked (defaults to true)",
79533      "memberOf": "Roo.menu.BaseItem"
79534     },
79535     {
79536      "name": "hideDelay",
79537      "type": "Number",
79538      "desc": "Length of time in milliseconds to wait before hiding after a click (defaults to 100)",
79539      "memberOf": "Roo.menu.BaseItem"
79540     },
79541     {
79542      "name": "disableClass",
79543      "type": "String",
79544      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
79545      "memberOf": "Roo.Component"
79546     },
79547     {
79548      "name": "allowDomMove",
79549      "type": "Boolean",
79550      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
79551      "memberOf": "Roo.Component"
79552     },
79553     {
79554      "name": "hideMode",
79555      "type": "String",
79556      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
79557      "memberOf": "Roo.Component",
79558      "optvals": [
79559       "display",
79560       "visibility"
79561      ]
79562     },
79563     {
79564      "name": "actionMode",
79565      "type": "String",
79566      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
79567      "memberOf": "Roo.Component"
79568     },
79569     {
79570      "name": "listeners",
79571      "type": "Object",
79572      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
79573      "memberOf": "Roo.util.Observable"
79574     }
79575    ],
79576    "events": [
79577     {
79578      "name": "activate",
79579      "sig": "function (_self)\n{\n\n}",
79580      "type": "function",
79581      "desc": "Fires when this item is activated"
79582     },
79583     {
79584      "name": "beforedestroy",
79585      "sig": "function (_self)\n{\n\n}",
79586      "type": "function",
79587      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
79588     },
79589     {
79590      "name": "beforehide",
79591      "sig": "function (_self)\n{\n\n}",
79592      "type": "function",
79593      "desc": "Fires before the component is hidden. Return false to stop the hide."
79594     },
79595     {
79596      "name": "beforerender",
79597      "sig": "function (_self)\n{\n\n}",
79598      "type": "function",
79599      "desc": "Fires before the component is rendered. Return false to stop the render."
79600     },
79601     {
79602      "name": "beforeshow",
79603      "sig": "function (_self)\n{\n\n}",
79604      "type": "function",
79605      "desc": "Fires before the component is shown.  Return false to stop the show."
79606     },
79607     {
79608      "name": "click",
79609      "sig": "function (_self, e)\n{\n\n}",
79610      "type": "function",
79611      "desc": "Fires when this item is clicked"
79612     },
79613     {
79614      "name": "deactivate",
79615      "sig": "function (_self)\n{\n\n}",
79616      "type": "function",
79617      "desc": "Fires when this item is deactivated"
79618     },
79619     {
79620      "name": "destroy",
79621      "sig": "function (_self)\n{\n\n}",
79622      "type": "function",
79623      "desc": "Fires after the component is destroyed."
79624     },
79625     {
79626      "name": "disable",
79627      "sig": "function (_self)\n{\n\n}",
79628      "type": "function",
79629      "desc": "Fires after the component is disabled."
79630     },
79631     {
79632      "name": "enable",
79633      "sig": "function (_self)\n{\n\n}",
79634      "type": "function",
79635      "desc": "Fires after the component is enabled."
79636     },
79637     {
79638      "name": "hide",
79639      "sig": "function (_self)\n{\n\n}",
79640      "type": "function",
79641      "desc": "Fires after the component is hidden."
79642     },
79643     {
79644      "name": "render",
79645      "sig": "function (_self)\n{\n\n}",
79646      "type": "function",
79647      "desc": "Fires after the component is rendered."
79648     },
79649     {
79650      "name": "show",
79651      "sig": "function (_self)\n{\n\n}",
79652      "type": "function",
79653      "desc": "Fires after the component is shown."
79654     }
79655    ],
79656    "methods": [
79657     {
79658      "name": "addEvents",
79659      "sig": "(Object object)",
79660      "type": "function",
79661      "desc": "Used to define events on this Observable"
79662     },
79663     {
79664      "name": "addListener",
79665      "sig": "(String eventName, Function handler, Object scope, Object options)",
79666      "type": "function",
79667      "desc": "Appends an event handler to this component"
79668     },
79669     {
79670      "name": "capture",
79671      "sig": "(Observable o, Function fn, Object scope)",
79672      "type": "function",
79673      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
79674     },
79675     {
79676      "name": "destroy",
79677      "sig": "()",
79678      "type": "function",
79679      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
79680     },
79681     {
79682      "name": "disable",
79683      "sig": "()",
79684      "type": "function",
79685      "desc": "Disable this component."
79686     },
79687     {
79688      "name": "enable",
79689      "sig": "()",
79690      "type": "function",
79691      "desc": "Enable this component."
79692     },
79693     {
79694      "name": "fireEvent",
79695      "sig": "(String eventName, Object... args)",
79696      "type": "function",
79697      "desc": "Fires the specified event with the passed parameters (minus the event name)."
79698     },
79699     {
79700      "name": "focus",
79701      "sig": "(Boolean selectText)",
79702      "type": "function",
79703      "desc": "Try to focus this component."
79704     },
79705     {
79706      "name": "getEl",
79707      "sig": "()",
79708      "type": "function",
79709      "desc": "Returns the underlying {@link Roo.Element}."
79710     },
79711     {
79712      "name": "getId",
79713      "sig": "()",
79714      "type": "function",
79715      "desc": "Returns the id of this component."
79716     },
79717     {
79718      "name": "hasListener",
79719      "sig": "(String eventName)",
79720      "type": "function",
79721      "desc": "Checks to see if this object has any listeners for a specified event"
79722     },
79723     {
79724      "name": "hide",
79725      "sig": "()",
79726      "type": "function",
79727      "desc": "Hide this component."
79728     },
79729     {
79730      "name": "isVisible",
79731      "sig": "()",
79732      "type": "function",
79733      "desc": "Returns true if this component is visible."
79734     },
79735     {
79736      "name": "on",
79737      "sig": "(String eventName, Function handler, Object scope, Object options)",
79738      "type": "function",
79739      "desc": "Appends an event handler to this element (shorthand for addListener)"
79740     },
79741     {
79742      "name": "purgeListeners",
79743      "sig": "()",
79744      "type": "function",
79745      "desc": "Removes all listeners for this object"
79746     },
79747     {
79748      "name": "releaseCapture",
79749      "sig": "(Observable o)",
79750      "type": "function",
79751      "desc": "Removes <b>all</b> added captures from the Observable."
79752     },
79753     {
79754      "name": "removeListener",
79755      "sig": "(String eventName, Function handler, Object scope)",
79756      "type": "function",
79757      "desc": "Removes a listener"
79758     },
79759     {
79760      "name": "render",
79761      "sig": "(String/HTMLElement/Element container)",
79762      "type": "function",
79763      "desc": "If this is a lazy rendering component, render it to its container element."
79764     },
79765     {
79766      "name": "setDisabled",
79767      "sig": "(Boolean disabled)",
79768      "type": "function",
79769      "desc": "Convenience function for setting disabled/enabled by boolean."
79770     },
79771     {
79772      "name": "setVisible",
79773      "sig": "(Boolean visible)",
79774      "type": "function",
79775      "desc": "Convenience function to hide or show this component by boolean."
79776     },
79777     {
79778      "name": "show",
79779      "sig": "()",
79780      "type": "function",
79781      "desc": "Show this component."
79782     },
79783     {
79784      "name": "un",
79785      "sig": "(String eventName, Function handler, Object scope)",
79786      "type": "function",
79787      "desc": "Removes a listener (shorthand for removeListener)"
79788     }
79789    ]
79790   },
79791   "Roo.menu.DateMenu": {
79792    "props": [
79793     {
79794      "name": "minWidth",
79795      "type": "Number",
79796      "desc": "The minimum width of the menu in pixels (defaults to 120)",
79797      "memberOf": "Roo.menu.Menu"
79798     },
79799     {
79800      "name": "shadow",
79801      "type": "Boolean/String",
79802      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\"\nfor bottom-right shadow (defaults to \"sides\")",
79803      "memberOf": "Roo.menu.Menu"
79804     },
79805     {
79806      "name": "subMenuAlign",
79807      "type": "String",
79808      "desc": "The {@link Roo.Element#alignTo} anchor position value to use for submenus of\nthis menu (defaults to \"tl-tr?\")",
79809      "memberOf": "Roo.menu.Menu"
79810     },
79811     {
79812      "name": "defaultAlign",
79813      "type": "String",
79814      "desc": "The default {@link Roo.Element#alignTo) anchor position value for this menu\nrelative to its element of origin (defaults to \"tl-bl?\")",
79815      "memberOf": "Roo.menu.Menu"
79816     },
79817     {
79818      "name": "allowOtherMenus",
79819      "type": "Boolean",
79820      "desc": "True to allow multiple menus to be displayed at the same time (defaults to false)",
79821      "memberOf": "Roo.menu.Menu"
79822     },
79823     {
79824      "name": "registerMenu",
79825      "type": "Boolean",
79826      "desc": "True (default) - means that clicking on screen etc. hides it.",
79827      "memberOf": "Roo.menu.Menu"
79828     },
79829     {
79830      "name": "listeners",
79831      "type": "Object",
79832      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
79833      "memberOf": "Roo.util.Observable"
79834     }
79835    ],
79836    "events": [
79837     {
79838      "name": "beforehide",
79839      "sig": "function (_self)\n{\n\n}",
79840      "type": "function",
79841      "desc": "Fires before this menu is hidden"
79842     },
79843     {
79844      "name": "beforeshow",
79845      "sig": "function (_self)\n{\n\n}",
79846      "type": "function",
79847      "desc": "Fires before this menu is displayed"
79848     },
79849     {
79850      "name": "click",
79851      "sig": "function (_self, menuItem, e)\n{\n\n}",
79852      "type": "function",
79853      "desc": "Fires when this menu is clicked (or when the enter key is pressed while it is active)"
79854     },
79855     {
79856      "name": "hide",
79857      "sig": "function (_self)\n{\n\n}",
79858      "type": "function",
79859      "desc": "Fires after this menu is hidden"
79860     },
79861     {
79862      "name": "itemclick",
79863      "sig": "function (baseItem, e)\n{\n\n}",
79864      "type": "function",
79865      "desc": "Fires when a menu item contained in this menu is clicked"
79866     },
79867     {
79868      "name": "mouseout",
79869      "sig": "function (_self, e, menuItem)\n{\n\n}",
79870      "type": "function",
79871      "desc": "Fires when the mouse exits this menu"
79872     },
79873     {
79874      "name": "mouseover",
79875      "sig": "function (_self, e, menuItem)\n{\n\n}",
79876      "type": "function",
79877      "desc": "Fires when the mouse is hovering over this menu"
79878     },
79879     {
79880      "name": "select",
79881      "sig": "function (picker, date)\n{\n\n}",
79882      "type": "function",
79883      "desc": ""
79884     },
79885     {
79886      "name": "show",
79887      "sig": "function (_self)\n{\n\n}",
79888      "type": "function",
79889      "desc": "Fires after this menu is displayed"
79890     }
79891    ],
79892    "methods": [
79893     {
79894      "name": "add",
79895      "sig": "(Mixed args)",
79896      "type": "function",
79897      "desc": "Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.\nAny of the following are valid:\n<ul>\n<li>Any menu item object based on {@link Roo.menu.Item}</li>\n<li>An HTMLElement object which will be converted to a menu item</li>\n<li>A menu item config object that will be created as a new menu item</li>\n<li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise\nit will be converted into a {@link Roo.menu.TextItem} and added</li>\n</ul>\nUsage:\n<pre><code>\n// Create the menu\nvar menu = new Roo.menu.Menu();\n\n// Create a menu item to add by reference\nvar menuItem = new Roo.menu.Item({ text: 'New Item!' });\n\n// Add a bunch of items at once using different methods.\n// Only the last item added will be returned.\nvar item = menu.add(\n    menuItem,                // add existing item by ref\n    'Dynamic Item',          // new TextItem\n    '-',                     // new separator\n    { text: 'Config Item' }  // new item by config\n);\n</code></pre>"
79898     },
79899     {
79900      "name": "addElement",
79901      "sig": "(String/HTMLElement/Roo.Element el)",
79902      "type": "function",
79903      "desc": "Adds an {@link Roo.Element} object to the menu"
79904     },
79905     {
79906      "name": "addEvents",
79907      "sig": "(Object object)",
79908      "type": "function",
79909      "desc": "Used to define events on this Observable"
79910     },
79911     {
79912      "name": "addItem",
79913      "sig": "(Roo.menu.Item item)",
79914      "type": "function",
79915      "desc": "Adds an existing object based on {@link Roo.menu.Item} to the menu"
79916     },
79917     {
79918      "name": "addListener",
79919      "sig": "(String eventName, Function handler, Object scope, Object options)",
79920      "type": "function",
79921      "desc": "Appends an event handler to this component"
79922     },
79923     {
79924      "name": "addMenuItem",
79925      "sig": "(Object config)",
79926      "type": "function",
79927      "desc": "Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu"
79928     },
79929     {
79930      "name": "addSeparator",
79931      "sig": "()",
79932      "type": "function",
79933      "desc": "Adds a separator bar to the menu"
79934     },
79935     {
79936      "name": "addText",
79937      "sig": "(String text)",
79938      "type": "function",
79939      "desc": "Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu"
79940     },
79941     {
79942      "name": "capture",
79943      "sig": "(Observable o, Function fn, Object scope)",
79944      "type": "function",
79945      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
79946     },
79947     {
79948      "name": "fireEvent",
79949      "sig": "(String eventName, Object... args)",
79950      "type": "function",
79951      "desc": "Fires the specified event with the passed parameters (minus the event name)."
79952     },
79953     {
79954      "name": "getEl",
79955      "sig": "()",
79956      "type": "function",
79957      "desc": "Returns this menu's underlying {@link Roo.Element} object"
79958     },
79959     {
79960      "name": "hasListener",
79961      "sig": "(String eventName)",
79962      "type": "function",
79963      "desc": "Checks to see if this object has any listeners for a specified event"
79964     },
79965     {
79966      "name": "hide",
79967      "sig": "(Boolean deep)",
79968      "type": "function",
79969      "desc": "Hides this menu and optionally all parent menus"
79970     },
79971     {
79972      "name": "insert",
79973      "sig": "(Number index, Roo.menu.Item item)",
79974      "type": "function",
79975      "desc": "Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index"
79976     },
79977     {
79978      "name": "isVisible",
79979      "sig": "()",
79980      "type": "function",
79981      "desc": "Read-only.  Returns true if the menu is currently displayed, else false."
79982     },
79983     {
79984      "name": "on",
79985      "sig": "(String eventName, Function handler, Object scope, Object options)",
79986      "type": "function",
79987      "desc": "Appends an event handler to this element (shorthand for addListener)"
79988     },
79989     {
79990      "name": "purgeListeners",
79991      "sig": "()",
79992      "type": "function",
79993      "desc": "Removes all listeners for this object"
79994     },
79995     {
79996      "name": "releaseCapture",
79997      "sig": "(Observable o)",
79998      "type": "function",
79999      "desc": "Removes <b>all</b> added captures from the Observable."
80000     },
80001     {
80002      "name": "remove",
80003      "sig": "(Roo.menu.Item item)",
80004      "type": "function",
80005      "desc": "Removes an {@link Roo.menu.Item} from the menu and destroys the object"
80006     },
80007     {
80008      "name": "removeAll",
80009      "sig": "()",
80010      "type": "function",
80011      "desc": "Removes and destroys all items in the menu"
80012     },
80013     {
80014      "name": "removeListener",
80015      "sig": "(String eventName, Function handler, Object scope)",
80016      "type": "function",
80017      "desc": "Removes a listener"
80018     },
80019     {
80020      "name": "show",
80021      "sig": "(String/HTMLElement/Roo.Element element, String position, Roo.menu.Menu parentMenu)",
80022      "type": "function",
80023      "desc": "Displays this menu relative to another element"
80024     },
80025     {
80026      "name": "showAt",
80027      "sig": "(Array xyPosition, Roo.menu.Menu parentMenu)",
80028      "type": "function",
80029      "desc": "Displays this menu at a specific xy position"
80030     },
80031     {
80032      "name": "un",
80033      "sig": "(String eventName, Function handler, Object scope)",
80034      "type": "function",
80035      "desc": "Removes a listener (shorthand for removeListener)"
80036     }
80037    ]
80038   },
80039   "Roo.menu.Item": {
80040    "props": [
80041     {
80042      "name": "text",
80043      "type": "String",
80044      "desc": "The text to show on the menu item.",
80045      "memberOf": ""
80046     },
80047     {
80048      "name": "HTML",
80049      "type": "String",
80050      "desc": "to render in menu\nThe text to show on the menu item (HTML version).",
80051      "memberOf": ""
80052     },
80053     {
80054      "name": "icon",
80055      "type": "String",
80056      "desc": "The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)",
80057      "memberOf": ""
80058     },
80059     {
80060      "name": "itemCls",
80061      "type": "String",
80062      "desc": "The default CSS class to use for menu items (defaults to \"x-menu-item\")",
80063      "memberOf": ""
80064     },
80065     {
80066      "name": "canActivate",
80067      "type": "Boolean",
80068      "desc": "True if this item can be visually activated (defaults to true)",
80069      "memberOf": ""
80070     },
80071     {
80072      "name": "showDelay",
80073      "type": "Number",
80074      "desc": "Length of time in milliseconds to wait before showing this item (defaults to 200)",
80075      "memberOf": ""
80076     },
80077     {
80078      "name": "handler",
80079      "type": "Function",
80080      "desc": "A function that will handle the click event of this menu item (defaults to undefined)",
80081      "memberOf": "Roo.menu.BaseItem"
80082     },
80083     {
80084      "name": "hidden",
80085      "type": "Boolean",
80086      "desc": "True to prevent creation of this menu item (defaults to false)",
80087      "memberOf": "Roo.menu.BaseItem"
80088     },
80089     {
80090      "name": "activeClass",
80091      "type": "String",
80092      "desc": "The CSS class to use when the item becomes activated (defaults to \"x-menu-item-active\")",
80093      "memberOf": "Roo.menu.BaseItem"
80094     },
80095     {
80096      "name": "hideOnClick",
80097      "type": "Boolean",
80098      "desc": "True to hide the containing menu after this item is clicked (defaults to true)",
80099      "memberOf": "Roo.menu.BaseItem"
80100     },
80101     {
80102      "name": "hideDelay",
80103      "type": "Number",
80104      "desc": "Length of time in milliseconds to wait before hiding after a click (defaults to 100)",
80105      "memberOf": "Roo.menu.BaseItem"
80106     },
80107     {
80108      "name": "disableClass",
80109      "type": "String",
80110      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
80111      "memberOf": "Roo.Component"
80112     },
80113     {
80114      "name": "allowDomMove",
80115      "type": "Boolean",
80116      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
80117      "memberOf": "Roo.Component"
80118     },
80119     {
80120      "name": "hideMode",
80121      "type": "String",
80122      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
80123      "memberOf": "Roo.Component",
80124      "optvals": [
80125       "display",
80126       "visibility"
80127      ]
80128     },
80129     {
80130      "name": "actionMode",
80131      "type": "String",
80132      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
80133      "memberOf": "Roo.Component"
80134     },
80135     {
80136      "name": "listeners",
80137      "type": "Object",
80138      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
80139      "memberOf": "Roo.util.Observable"
80140     }
80141    ],
80142    "events": [
80143     {
80144      "name": "activate",
80145      "sig": "function (_self)\n{\n\n}",
80146      "type": "function",
80147      "desc": "Fires when this item is activated"
80148     },
80149     {
80150      "name": "beforedestroy",
80151      "sig": "function (_self)\n{\n\n}",
80152      "type": "function",
80153      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
80154     },
80155     {
80156      "name": "beforehide",
80157      "sig": "function (_self)\n{\n\n}",
80158      "type": "function",
80159      "desc": "Fires before the component is hidden. Return false to stop the hide."
80160     },
80161     {
80162      "name": "beforerender",
80163      "sig": "function (_self)\n{\n\n}",
80164      "type": "function",
80165      "desc": "Fires before the component is rendered. Return false to stop the render."
80166     },
80167     {
80168      "name": "beforeshow",
80169      "sig": "function (_self)\n{\n\n}",
80170      "type": "function",
80171      "desc": "Fires before the component is shown.  Return false to stop the show."
80172     },
80173     {
80174      "name": "click",
80175      "sig": "function (_self, e)\n{\n\n}",
80176      "type": "function",
80177      "desc": "Fires when this item is clicked"
80178     },
80179     {
80180      "name": "deactivate",
80181      "sig": "function (_self)\n{\n\n}",
80182      "type": "function",
80183      "desc": "Fires when this item is deactivated"
80184     },
80185     {
80186      "name": "destroy",
80187      "sig": "function (_self)\n{\n\n}",
80188      "type": "function",
80189      "desc": "Fires after the component is destroyed."
80190     },
80191     {
80192      "name": "disable",
80193      "sig": "function (_self)\n{\n\n}",
80194      "type": "function",
80195      "desc": "Fires after the component is disabled."
80196     },
80197     {
80198      "name": "enable",
80199      "sig": "function (_self)\n{\n\n}",
80200      "type": "function",
80201      "desc": "Fires after the component is enabled."
80202     },
80203     {
80204      "name": "hide",
80205      "sig": "function (_self)\n{\n\n}",
80206      "type": "function",
80207      "desc": "Fires after the component is hidden."
80208     },
80209     {
80210      "name": "render",
80211      "sig": "function (_self)\n{\n\n}",
80212      "type": "function",
80213      "desc": "Fires after the component is rendered."
80214     },
80215     {
80216      "name": "show",
80217      "sig": "function (_self)\n{\n\n}",
80218      "type": "function",
80219      "desc": "Fires after the component is shown."
80220     }
80221    ],
80222    "methods": [
80223     {
80224      "name": "addEvents",
80225      "sig": "(Object object)",
80226      "type": "function",
80227      "desc": "Used to define events on this Observable"
80228     },
80229     {
80230      "name": "addListener",
80231      "sig": "(String eventName, Function handler, Object scope, Object options)",
80232      "type": "function",
80233      "desc": "Appends an event handler to this component"
80234     },
80235     {
80236      "name": "capture",
80237      "sig": "(Observable o, Function fn, Object scope)",
80238      "type": "function",
80239      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
80240     },
80241     {
80242      "name": "destroy",
80243      "sig": "()",
80244      "type": "function",
80245      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
80246     },
80247     {
80248      "name": "disable",
80249      "sig": "()",
80250      "type": "function",
80251      "desc": "Disable this component."
80252     },
80253     {
80254      "name": "enable",
80255      "sig": "()",
80256      "type": "function",
80257      "desc": "Enable this component."
80258     },
80259     {
80260      "name": "fireEvent",
80261      "sig": "(String eventName, Object... args)",
80262      "type": "function",
80263      "desc": "Fires the specified event with the passed parameters (minus the event name)."
80264     },
80265     {
80266      "name": "focus",
80267      "sig": "(Boolean selectText)",
80268      "type": "function",
80269      "desc": "Try to focus this component."
80270     },
80271     {
80272      "name": "getEl",
80273      "sig": "()",
80274      "type": "function",
80275      "desc": "Returns the underlying {@link Roo.Element}."
80276     },
80277     {
80278      "name": "getId",
80279      "sig": "()",
80280      "type": "function",
80281      "desc": "Returns the id of this component."
80282     },
80283     {
80284      "name": "hasListener",
80285      "sig": "(String eventName)",
80286      "type": "function",
80287      "desc": "Checks to see if this object has any listeners for a specified event"
80288     },
80289     {
80290      "name": "hide",
80291      "sig": "()",
80292      "type": "function",
80293      "desc": "Hide this component."
80294     },
80295     {
80296      "name": "isVisible",
80297      "sig": "()",
80298      "type": "function",
80299      "desc": "Returns true if this component is visible."
80300     },
80301     {
80302      "name": "on",
80303      "sig": "(String eventName, Function handler, Object scope, Object options)",
80304      "type": "function",
80305      "desc": "Appends an event handler to this element (shorthand for addListener)"
80306     },
80307     {
80308      "name": "purgeListeners",
80309      "sig": "()",
80310      "type": "function",
80311      "desc": "Removes all listeners for this object"
80312     },
80313     {
80314      "name": "releaseCapture",
80315      "sig": "(Observable o)",
80316      "type": "function",
80317      "desc": "Removes <b>all</b> added captures from the Observable."
80318     },
80319     {
80320      "name": "removeListener",
80321      "sig": "(String eventName, Function handler, Object scope)",
80322      "type": "function",
80323      "desc": "Removes a listener"
80324     },
80325     {
80326      "name": "render",
80327      "sig": "(String/HTMLElement/Element container)",
80328      "type": "function",
80329      "desc": "If this is a lazy rendering component, render it to its container element."
80330     },
80331     {
80332      "name": "setDisabled",
80333      "sig": "(Boolean disabled)",
80334      "type": "function",
80335      "desc": "Convenience function for setting disabled/enabled by boolean."
80336     },
80337     {
80338      "name": "setText",
80339      "sig": "(String text, Boolean isHTML)",
80340      "type": "function",
80341      "desc": "Sets the text to display in this menu item"
80342     },
80343     {
80344      "name": "setVisible",
80345      "sig": "(Boolean visible)",
80346      "type": "function",
80347      "desc": "Convenience function to hide or show this component by boolean."
80348     },
80349     {
80350      "name": "show",
80351      "sig": "()",
80352      "type": "function",
80353      "desc": "Show this component."
80354     },
80355     {
80356      "name": "un",
80357      "sig": "(String eventName, Function handler, Object scope)",
80358      "type": "function",
80359      "desc": "Removes a listener (shorthand for removeListener)"
80360     }
80361    ]
80362   },
80363   "Roo.menu.Menu": {
80364    "props": [
80365     {
80366      "name": "minWidth",
80367      "type": "Number",
80368      "desc": "The minimum width of the menu in pixels (defaults to 120)",
80369      "memberOf": ""
80370     },
80371     {
80372      "name": "shadow",
80373      "type": "Boolean/String",
80374      "desc": "True or \"sides\" for the default effect, \"frame\" for 4-way shadow, and \"drop\"\nfor bottom-right shadow (defaults to \"sides\")",
80375      "memberOf": ""
80376     },
80377     {
80378      "name": "subMenuAlign",
80379      "type": "String",
80380      "desc": "The {@link Roo.Element#alignTo} anchor position value to use for submenus of\nthis menu (defaults to \"tl-tr?\")",
80381      "memberOf": ""
80382     },
80383     {
80384      "name": "defaultAlign",
80385      "type": "String",
80386      "desc": "The default {@link Roo.Element#alignTo) anchor position value for this menu\nrelative to its element of origin (defaults to \"tl-bl?\")",
80387      "memberOf": ""
80388     },
80389     {
80390      "name": "allowOtherMenus",
80391      "type": "Boolean",
80392      "desc": "True to allow multiple menus to be displayed at the same time (defaults to false)",
80393      "memberOf": ""
80394     },
80395     {
80396      "name": "registerMenu",
80397      "type": "Boolean",
80398      "desc": "True (default) - means that clicking on screen etc. hides it.",
80399      "memberOf": ""
80400     },
80401     {
80402      "name": "listeners",
80403      "type": "Object",
80404      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
80405      "memberOf": "Roo.util.Observable"
80406     }
80407    ],
80408    "events": [
80409     {
80410      "name": "beforehide",
80411      "sig": "function (_self)\n{\n\n}",
80412      "type": "function",
80413      "desc": "Fires before this menu is hidden"
80414     },
80415     {
80416      "name": "beforeshow",
80417      "sig": "function (_self)\n{\n\n}",
80418      "type": "function",
80419      "desc": "Fires before this menu is displayed"
80420     },
80421     {
80422      "name": "click",
80423      "sig": "function (_self, menuItem, e)\n{\n\n}",
80424      "type": "function",
80425      "desc": "Fires when this menu is clicked (or when the enter key is pressed while it is active)"
80426     },
80427     {
80428      "name": "hide",
80429      "sig": "function (_self)\n{\n\n}",
80430      "type": "function",
80431      "desc": "Fires after this menu is hidden"
80432     },
80433     {
80434      "name": "itemclick",
80435      "sig": "function (baseItem, e)\n{\n\n}",
80436      "type": "function",
80437      "desc": "Fires when a menu item contained in this menu is clicked"
80438     },
80439     {
80440      "name": "mouseout",
80441      "sig": "function (_self, e, menuItem)\n{\n\n}",
80442      "type": "function",
80443      "desc": "Fires when the mouse exits this menu"
80444     },
80445     {
80446      "name": "mouseover",
80447      "sig": "function (_self, e, menuItem)\n{\n\n}",
80448      "type": "function",
80449      "desc": "Fires when the mouse is hovering over this menu"
80450     },
80451     {
80452      "name": "show",
80453      "sig": "function (_self)\n{\n\n}",
80454      "type": "function",
80455      "desc": "Fires after this menu is displayed"
80456     }
80457    ],
80458    "methods": [
80459     {
80460      "name": "add",
80461      "sig": "(Mixed args)",
80462      "type": "function",
80463      "desc": "Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.\nAny of the following are valid:\n<ul>\n<li>Any menu item object based on {@link Roo.menu.Item}</li>\n<li>An HTMLElement object which will be converted to a menu item</li>\n<li>A menu item config object that will be created as a new menu item</li>\n<li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise\nit will be converted into a {@link Roo.menu.TextItem} and added</li>\n</ul>\nUsage:\n<pre><code>\n// Create the menu\nvar menu = new Roo.menu.Menu();\n\n// Create a menu item to add by reference\nvar menuItem = new Roo.menu.Item({ text: 'New Item!' });\n\n// Add a bunch of items at once using different methods.\n// Only the last item added will be returned.\nvar item = menu.add(\n    menuItem,                // add existing item by ref\n    'Dynamic Item',          // new TextItem\n    '-',                     // new separator\n    { text: 'Config Item' }  // new item by config\n);\n</code></pre>"
80464     },
80465     {
80466      "name": "addElement",
80467      "sig": "(String/HTMLElement/Roo.Element el)",
80468      "type": "function",
80469      "desc": "Adds an {@link Roo.Element} object to the menu"
80470     },
80471     {
80472      "name": "addEvents",
80473      "sig": "(Object object)",
80474      "type": "function",
80475      "desc": "Used to define events on this Observable"
80476     },
80477     {
80478      "name": "addItem",
80479      "sig": "(Roo.menu.Item item)",
80480      "type": "function",
80481      "desc": "Adds an existing object based on {@link Roo.menu.Item} to the menu"
80482     },
80483     {
80484      "name": "addListener",
80485      "sig": "(String eventName, Function handler, Object scope, Object options)",
80486      "type": "function",
80487      "desc": "Appends an event handler to this component"
80488     },
80489     {
80490      "name": "addMenuItem",
80491      "sig": "(Object config)",
80492      "type": "function",
80493      "desc": "Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu"
80494     },
80495     {
80496      "name": "addSeparator",
80497      "sig": "()",
80498      "type": "function",
80499      "desc": "Adds a separator bar to the menu"
80500     },
80501     {
80502      "name": "addText",
80503      "sig": "(String text)",
80504      "type": "function",
80505      "desc": "Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu"
80506     },
80507     {
80508      "name": "capture",
80509      "sig": "(Observable o, Function fn, Object scope)",
80510      "type": "function",
80511      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
80512     },
80513     {
80514      "name": "fireEvent",
80515      "sig": "(String eventName, Object... args)",
80516      "type": "function",
80517      "desc": "Fires the specified event with the passed parameters (minus the event name)."
80518     },
80519     {
80520      "name": "getEl",
80521      "sig": "()",
80522      "type": "function",
80523      "desc": "Returns this menu's underlying {@link Roo.Element} object"
80524     },
80525     {
80526      "name": "hasListener",
80527      "sig": "(String eventName)",
80528      "type": "function",
80529      "desc": "Checks to see if this object has any listeners for a specified event"
80530     },
80531     {
80532      "name": "hide",
80533      "sig": "(Boolean deep)",
80534      "type": "function",
80535      "desc": "Hides this menu and optionally all parent menus"
80536     },
80537     {
80538      "name": "insert",
80539      "sig": "(Number index, Roo.menu.Item item)",
80540      "type": "function",
80541      "desc": "Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index"
80542     },
80543     {
80544      "name": "isVisible",
80545      "sig": "()",
80546      "type": "function",
80547      "desc": "Read-only.  Returns true if the menu is currently displayed, else false."
80548     },
80549     {
80550      "name": "on",
80551      "sig": "(String eventName, Function handler, Object scope, Object options)",
80552      "type": "function",
80553      "desc": "Appends an event handler to this element (shorthand for addListener)"
80554     },
80555     {
80556      "name": "purgeListeners",
80557      "sig": "()",
80558      "type": "function",
80559      "desc": "Removes all listeners for this object"
80560     },
80561     {
80562      "name": "releaseCapture",
80563      "sig": "(Observable o)",
80564      "type": "function",
80565      "desc": "Removes <b>all</b> added captures from the Observable."
80566     },
80567     {
80568      "name": "remove",
80569      "sig": "(Roo.menu.Item item)",
80570      "type": "function",
80571      "desc": "Removes an {@link Roo.menu.Item} from the menu and destroys the object"
80572     },
80573     {
80574      "name": "removeAll",
80575      "sig": "()",
80576      "type": "function",
80577      "desc": "Removes and destroys all items in the menu"
80578     },
80579     {
80580      "name": "removeListener",
80581      "sig": "(String eventName, Function handler, Object scope)",
80582      "type": "function",
80583      "desc": "Removes a listener"
80584     },
80585     {
80586      "name": "show",
80587      "sig": "(String/HTMLElement/Roo.Element element, String position, Roo.menu.Menu parentMenu)",
80588      "type": "function",
80589      "desc": "Displays this menu relative to another element"
80590     },
80591     {
80592      "name": "showAt",
80593      "sig": "(Array xyPosition, Roo.menu.Menu parentMenu)",
80594      "type": "function",
80595      "desc": "Displays this menu at a specific xy position"
80596     },
80597     {
80598      "name": "un",
80599      "sig": "(String eventName, Function handler, Object scope)",
80600      "type": "function",
80601      "desc": "Removes a listener (shorthand for removeListener)"
80602     }
80603    ]
80604   },
80605   "Roo.menu.MenuMgr": {
80606    "props": [],
80607    "events": [],
80608    "methods": [
80609     {
80610      "name": "get",
80611      "sig": "(String/Object menu)",
80612      "type": "function",
80613      "desc": "Returns a {@link Roo.menu.Menu} object"
80614     },
80615     {
80616      "name": "hideAll",
80617      "sig": "()",
80618      "type": "function",
80619      "desc": "Hides all menus that are currently visible"
80620     }
80621    ]
80622   },
80623   "Roo.menu.Separator": {
80624    "props": [
80625     {
80626      "name": "itemCls",
80627      "type": "String",
80628      "desc": "The default CSS class to use for separators (defaults to \"x-menu-sep\")",
80629      "memberOf": ""
80630     },
80631     {
80632      "name": "hideOnClick",
80633      "type": "Boolean",
80634      "desc": "True to hide the containing menu after this item is clicked (defaults to false)",
80635      "memberOf": ""
80636     },
80637     {
80638      "name": "handler",
80639      "type": "Function",
80640      "desc": "A function that will handle the click event of this menu item (defaults to undefined)",
80641      "memberOf": "Roo.menu.BaseItem"
80642     },
80643     {
80644      "name": "canActivate",
80645      "type": "Boolean",
80646      "desc": "True if this item can be visually activated (defaults to false)",
80647      "memberOf": "Roo.menu.BaseItem"
80648     },
80649     {
80650      "name": "hidden",
80651      "type": "Boolean",
80652      "desc": "True to prevent creation of this menu item (defaults to false)",
80653      "memberOf": "Roo.menu.BaseItem"
80654     },
80655     {
80656      "name": "activeClass",
80657      "type": "String",
80658      "desc": "The CSS class to use when the item becomes activated (defaults to \"x-menu-item-active\")",
80659      "memberOf": "Roo.menu.BaseItem"
80660     },
80661     {
80662      "name": "hideDelay",
80663      "type": "Number",
80664      "desc": "Length of time in milliseconds to wait before hiding after a click (defaults to 100)",
80665      "memberOf": "Roo.menu.BaseItem"
80666     },
80667     {
80668      "name": "disableClass",
80669      "type": "String",
80670      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
80671      "memberOf": "Roo.Component"
80672     },
80673     {
80674      "name": "allowDomMove",
80675      "type": "Boolean",
80676      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
80677      "memberOf": "Roo.Component"
80678     },
80679     {
80680      "name": "hideMode",
80681      "type": "String",
80682      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
80683      "memberOf": "Roo.Component",
80684      "optvals": [
80685       "display",
80686       "visibility"
80687      ]
80688     },
80689     {
80690      "name": "actionMode",
80691      "type": "String",
80692      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
80693      "memberOf": "Roo.Component"
80694     },
80695     {
80696      "name": "listeners",
80697      "type": "Object",
80698      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
80699      "memberOf": "Roo.util.Observable"
80700     }
80701    ],
80702    "events": [
80703     {
80704      "name": "activate",
80705      "sig": "function (_self)\n{\n\n}",
80706      "type": "function",
80707      "desc": "Fires when this item is activated"
80708     },
80709     {
80710      "name": "beforedestroy",
80711      "sig": "function (_self)\n{\n\n}",
80712      "type": "function",
80713      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
80714     },
80715     {
80716      "name": "beforehide",
80717      "sig": "function (_self)\n{\n\n}",
80718      "type": "function",
80719      "desc": "Fires before the component is hidden. Return false to stop the hide."
80720     },
80721     {
80722      "name": "beforerender",
80723      "sig": "function (_self)\n{\n\n}",
80724      "type": "function",
80725      "desc": "Fires before the component is rendered. Return false to stop the render."
80726     },
80727     {
80728      "name": "beforeshow",
80729      "sig": "function (_self)\n{\n\n}",
80730      "type": "function",
80731      "desc": "Fires before the component is shown.  Return false to stop the show."
80732     },
80733     {
80734      "name": "click",
80735      "sig": "function (_self, e)\n{\n\n}",
80736      "type": "function",
80737      "desc": "Fires when this item is clicked"
80738     },
80739     {
80740      "name": "deactivate",
80741      "sig": "function (_self)\n{\n\n}",
80742      "type": "function",
80743      "desc": "Fires when this item is deactivated"
80744     },
80745     {
80746      "name": "destroy",
80747      "sig": "function (_self)\n{\n\n}",
80748      "type": "function",
80749      "desc": "Fires after the component is destroyed."
80750     },
80751     {
80752      "name": "disable",
80753      "sig": "function (_self)\n{\n\n}",
80754      "type": "function",
80755      "desc": "Fires after the component is disabled."
80756     },
80757     {
80758      "name": "enable",
80759      "sig": "function (_self)\n{\n\n}",
80760      "type": "function",
80761      "desc": "Fires after the component is enabled."
80762     },
80763     {
80764      "name": "hide",
80765      "sig": "function (_self)\n{\n\n}",
80766      "type": "function",
80767      "desc": "Fires after the component is hidden."
80768     },
80769     {
80770      "name": "render",
80771      "sig": "function (_self)\n{\n\n}",
80772      "type": "function",
80773      "desc": "Fires after the component is rendered."
80774     },
80775     {
80776      "name": "show",
80777      "sig": "function (_self)\n{\n\n}",
80778      "type": "function",
80779      "desc": "Fires after the component is shown."
80780     }
80781    ],
80782    "methods": [
80783     {
80784      "name": "addEvents",
80785      "sig": "(Object object)",
80786      "type": "function",
80787      "desc": "Used to define events on this Observable"
80788     },
80789     {
80790      "name": "addListener",
80791      "sig": "(String eventName, Function handler, Object scope, Object options)",
80792      "type": "function",
80793      "desc": "Appends an event handler to this component"
80794     },
80795     {
80796      "name": "capture",
80797      "sig": "(Observable o, Function fn, Object scope)",
80798      "type": "function",
80799      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
80800     },
80801     {
80802      "name": "destroy",
80803      "sig": "()",
80804      "type": "function",
80805      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
80806     },
80807     {
80808      "name": "disable",
80809      "sig": "()",
80810      "type": "function",
80811      "desc": "Disable this component."
80812     },
80813     {
80814      "name": "enable",
80815      "sig": "()",
80816      "type": "function",
80817      "desc": "Enable this component."
80818     },
80819     {
80820      "name": "fireEvent",
80821      "sig": "(String eventName, Object... args)",
80822      "type": "function",
80823      "desc": "Fires the specified event with the passed parameters (minus the event name)."
80824     },
80825     {
80826      "name": "focus",
80827      "sig": "(Boolean selectText)",
80828      "type": "function",
80829      "desc": "Try to focus this component."
80830     },
80831     {
80832      "name": "getEl",
80833      "sig": "()",
80834      "type": "function",
80835      "desc": "Returns the underlying {@link Roo.Element}."
80836     },
80837     {
80838      "name": "getId",
80839      "sig": "()",
80840      "type": "function",
80841      "desc": "Returns the id of this component."
80842     },
80843     {
80844      "name": "hasListener",
80845      "sig": "(String eventName)",
80846      "type": "function",
80847      "desc": "Checks to see if this object has any listeners for a specified event"
80848     },
80849     {
80850      "name": "hide",
80851      "sig": "()",
80852      "type": "function",
80853      "desc": "Hide this component."
80854     },
80855     {
80856      "name": "isVisible",
80857      "sig": "()",
80858      "type": "function",
80859      "desc": "Returns true if this component is visible."
80860     },
80861     {
80862      "name": "on",
80863      "sig": "(String eventName, Function handler, Object scope, Object options)",
80864      "type": "function",
80865      "desc": "Appends an event handler to this element (shorthand for addListener)"
80866     },
80867     {
80868      "name": "purgeListeners",
80869      "sig": "()",
80870      "type": "function",
80871      "desc": "Removes all listeners for this object"
80872     },
80873     {
80874      "name": "releaseCapture",
80875      "sig": "(Observable o)",
80876      "type": "function",
80877      "desc": "Removes <b>all</b> added captures from the Observable."
80878     },
80879     {
80880      "name": "removeListener",
80881      "sig": "(String eventName, Function handler, Object scope)",
80882      "type": "function",
80883      "desc": "Removes a listener"
80884     },
80885     {
80886      "name": "render",
80887      "sig": "(String/HTMLElement/Element container)",
80888      "type": "function",
80889      "desc": "If this is a lazy rendering component, render it to its container element."
80890     },
80891     {
80892      "name": "setDisabled",
80893      "sig": "(Boolean disabled)",
80894      "type": "function",
80895      "desc": "Convenience function for setting disabled/enabled by boolean."
80896     },
80897     {
80898      "name": "setVisible",
80899      "sig": "(Boolean visible)",
80900      "type": "function",
80901      "desc": "Convenience function to hide or show this component by boolean."
80902     },
80903     {
80904      "name": "show",
80905      "sig": "()",
80906      "type": "function",
80907      "desc": "Show this component."
80908     },
80909     {
80910      "name": "un",
80911      "sig": "(String eventName, Function handler, Object scope)",
80912      "type": "function",
80913      "desc": "Removes a listener (shorthand for removeListener)"
80914     }
80915    ]
80916   },
80917   "Roo.menu.TextItem": {
80918    "props": [
80919     {
80920      "name": "text",
80921      "type": "Boolean",
80922      "desc": "Text to show on item.",
80923      "memberOf": ""
80924     },
80925     {
80926      "name": "hideOnClick",
80927      "type": "Boolean",
80928      "desc": "True to hide the containing menu after this item is clicked (defaults to false)",
80929      "memberOf": ""
80930     },
80931     {
80932      "name": "itemCls",
80933      "type": "String",
80934      "desc": "The default CSS class to use for text items (defaults to \"x-menu-text\")",
80935      "memberOf": ""
80936     },
80937     {
80938      "name": "handler",
80939      "type": "Function",
80940      "desc": "A function that will handle the click event of this menu item (defaults to undefined)",
80941      "memberOf": "Roo.menu.BaseItem"
80942     },
80943     {
80944      "name": "canActivate",
80945      "type": "Boolean",
80946      "desc": "True if this item can be visually activated (defaults to false)",
80947      "memberOf": "Roo.menu.BaseItem"
80948     },
80949     {
80950      "name": "hidden",
80951      "type": "Boolean",
80952      "desc": "True to prevent creation of this menu item (defaults to false)",
80953      "memberOf": "Roo.menu.BaseItem"
80954     },
80955     {
80956      "name": "activeClass",
80957      "type": "String",
80958      "desc": "The CSS class to use when the item becomes activated (defaults to \"x-menu-item-active\")",
80959      "memberOf": "Roo.menu.BaseItem"
80960     },
80961     {
80962      "name": "hideDelay",
80963      "type": "Number",
80964      "desc": "Length of time in milliseconds to wait before hiding after a click (defaults to 100)",
80965      "memberOf": "Roo.menu.BaseItem"
80966     },
80967     {
80968      "name": "disableClass",
80969      "type": "String",
80970      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
80971      "memberOf": "Roo.Component"
80972     },
80973     {
80974      "name": "allowDomMove",
80975      "type": "Boolean",
80976      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
80977      "memberOf": "Roo.Component"
80978     },
80979     {
80980      "name": "hideMode",
80981      "type": "String",
80982      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
80983      "memberOf": "Roo.Component",
80984      "optvals": [
80985       "display",
80986       "visibility"
80987      ]
80988     },
80989     {
80990      "name": "actionMode",
80991      "type": "String",
80992      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
80993      "memberOf": "Roo.Component"
80994     },
80995     {
80996      "name": "listeners",
80997      "type": "Object",
80998      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
80999      "memberOf": "Roo.util.Observable"
81000     }
81001    ],
81002    "events": [
81003     {
81004      "name": "activate",
81005      "sig": "function (_self)\n{\n\n}",
81006      "type": "function",
81007      "desc": "Fires when this item is activated"
81008     },
81009     {
81010      "name": "beforedestroy",
81011      "sig": "function (_self)\n{\n\n}",
81012      "type": "function",
81013      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
81014     },
81015     {
81016      "name": "beforehide",
81017      "sig": "function (_self)\n{\n\n}",
81018      "type": "function",
81019      "desc": "Fires before the component is hidden. Return false to stop the hide."
81020     },
81021     {
81022      "name": "beforerender",
81023      "sig": "function (_self)\n{\n\n}",
81024      "type": "function",
81025      "desc": "Fires before the component is rendered. Return false to stop the render."
81026     },
81027     {
81028      "name": "beforeshow",
81029      "sig": "function (_self)\n{\n\n}",
81030      "type": "function",
81031      "desc": "Fires before the component is shown.  Return false to stop the show."
81032     },
81033     {
81034      "name": "click",
81035      "sig": "function (_self, e)\n{\n\n}",
81036      "type": "function",
81037      "desc": "Fires when this item is clicked"
81038     },
81039     {
81040      "name": "deactivate",
81041      "sig": "function (_self)\n{\n\n}",
81042      "type": "function",
81043      "desc": "Fires when this item is deactivated"
81044     },
81045     {
81046      "name": "destroy",
81047      "sig": "function (_self)\n{\n\n}",
81048      "type": "function",
81049      "desc": "Fires after the component is destroyed."
81050     },
81051     {
81052      "name": "disable",
81053      "sig": "function (_self)\n{\n\n}",
81054      "type": "function",
81055      "desc": "Fires after the component is disabled."
81056     },
81057     {
81058      "name": "enable",
81059      "sig": "function (_self)\n{\n\n}",
81060      "type": "function",
81061      "desc": "Fires after the component is enabled."
81062     },
81063     {
81064      "name": "hide",
81065      "sig": "function (_self)\n{\n\n}",
81066      "type": "function",
81067      "desc": "Fires after the component is hidden."
81068     },
81069     {
81070      "name": "render",
81071      "sig": "function (_self)\n{\n\n}",
81072      "type": "function",
81073      "desc": "Fires after the component is rendered."
81074     },
81075     {
81076      "name": "show",
81077      "sig": "function (_self)\n{\n\n}",
81078      "type": "function",
81079      "desc": "Fires after the component is shown."
81080     }
81081    ],
81082    "methods": [
81083     {
81084      "name": "addEvents",
81085      "sig": "(Object object)",
81086      "type": "function",
81087      "desc": "Used to define events on this Observable"
81088     },
81089     {
81090      "name": "addListener",
81091      "sig": "(String eventName, Function handler, Object scope, Object options)",
81092      "type": "function",
81093      "desc": "Appends an event handler to this component"
81094     },
81095     {
81096      "name": "capture",
81097      "sig": "(Observable o, Function fn, Object scope)",
81098      "type": "function",
81099      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
81100     },
81101     {
81102      "name": "destroy",
81103      "sig": "()",
81104      "type": "function",
81105      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
81106     },
81107     {
81108      "name": "disable",
81109      "sig": "()",
81110      "type": "function",
81111      "desc": "Disable this component."
81112     },
81113     {
81114      "name": "enable",
81115      "sig": "()",
81116      "type": "function",
81117      "desc": "Enable this component."
81118     },
81119     {
81120      "name": "fireEvent",
81121      "sig": "(String eventName, Object... args)",
81122      "type": "function",
81123      "desc": "Fires the specified event with the passed parameters (minus the event name)."
81124     },
81125     {
81126      "name": "focus",
81127      "sig": "(Boolean selectText)",
81128      "type": "function",
81129      "desc": "Try to focus this component."
81130     },
81131     {
81132      "name": "getEl",
81133      "sig": "()",
81134      "type": "function",
81135      "desc": "Returns the underlying {@link Roo.Element}."
81136     },
81137     {
81138      "name": "getId",
81139      "sig": "()",
81140      "type": "function",
81141      "desc": "Returns the id of this component."
81142     },
81143     {
81144      "name": "hasListener",
81145      "sig": "(String eventName)",
81146      "type": "function",
81147      "desc": "Checks to see if this object has any listeners for a specified event"
81148     },
81149     {
81150      "name": "hide",
81151      "sig": "()",
81152      "type": "function",
81153      "desc": "Hide this component."
81154     },
81155     {
81156      "name": "isVisible",
81157      "sig": "()",
81158      "type": "function",
81159      "desc": "Returns true if this component is visible."
81160     },
81161     {
81162      "name": "on",
81163      "sig": "(String eventName, Function handler, Object scope, Object options)",
81164      "type": "function",
81165      "desc": "Appends an event handler to this element (shorthand for addListener)"
81166     },
81167     {
81168      "name": "purgeListeners",
81169      "sig": "()",
81170      "type": "function",
81171      "desc": "Removes all listeners for this object"
81172     },
81173     {
81174      "name": "releaseCapture",
81175      "sig": "(Observable o)",
81176      "type": "function",
81177      "desc": "Removes <b>all</b> added captures from the Observable."
81178     },
81179     {
81180      "name": "removeListener",
81181      "sig": "(String eventName, Function handler, Object scope)",
81182      "type": "function",
81183      "desc": "Removes a listener"
81184     },
81185     {
81186      "name": "render",
81187      "sig": "(String/HTMLElement/Element container)",
81188      "type": "function",
81189      "desc": "If this is a lazy rendering component, render it to its container element."
81190     },
81191     {
81192      "name": "setDisabled",
81193      "sig": "(Boolean disabled)",
81194      "type": "function",
81195      "desc": "Convenience function for setting disabled/enabled by boolean."
81196     },
81197     {
81198      "name": "setVisible",
81199      "sig": "(Boolean visible)",
81200      "type": "function",
81201      "desc": "Convenience function to hide or show this component by boolean."
81202     },
81203     {
81204      "name": "show",
81205      "sig": "()",
81206      "type": "function",
81207      "desc": "Show this component."
81208     },
81209     {
81210      "name": "un",
81211      "sig": "(String eventName, Function handler, Object scope)",
81212      "type": "function",
81213      "desc": "Removes a listener (shorthand for removeListener)"
81214     }
81215    ]
81216   },
81217   "Roo.state": {
81218    "props": [],
81219    "events": [],
81220    "methods": []
81221   },
81222   "Roo.state.CookieProvider": {
81223    "props": [
81224     {
81225      "name": "path",
81226      "type": "String",
81227      "desc": "The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)",
81228      "memberOf": ""
81229     },
81230     {
81231      "name": "expires",
81232      "type": "Date",
81233      "desc": "The cookie expiration date (defaults to 7 days from now)",
81234      "memberOf": ""
81235     },
81236     {
81237      "name": "domain",
81238      "type": "String",
81239      "desc": "The domain to save the cookie for.  Note that you cannot specify a different domain than\nyour page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include\nall sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same\ndomain the page is running on including the 'www' like 'www.roojs.com')",
81240      "memberOf": ""
81241     },
81242     {
81243      "name": "secure",
81244      "type": "Boolean",
81245      "desc": "True if the site is using SSL (defaults to false)",
81246      "memberOf": ""
81247     }
81248    ],
81249    "events": [
81250     {
81251      "name": "statechange",
81252      "sig": "function (_self, key, value)\n{\n\n}",
81253      "type": "function",
81254      "desc": "Fires when a state change occurs."
81255     }
81256    ],
81257    "methods": [
81258     {
81259      "name": "clear",
81260      "sig": "(String name)",
81261      "type": "function",
81262      "desc": "Clears a value from the state"
81263     },
81264     {
81265      "name": "decodeValue",
81266      "sig": "(String value)",
81267      "type": "function",
81268      "desc": "Decodes a string previously encoded with {@link #encodeValue}."
81269     },
81270     {
81271      "name": "encodeValue",
81272      "sig": "(Mixed value)",
81273      "type": "function",
81274      "desc": "Encodes a value including type information.  Decode with {@link #decodeValue}."
81275     },
81276     {
81277      "name": "get",
81278      "sig": "(String name, Mixed defaultValue)",
81279      "type": "function",
81280      "desc": "Returns the current value for a key"
81281     },
81282     {
81283      "name": "set",
81284      "sig": "(String name, Mixed value)",
81285      "type": "function",
81286      "desc": "Sets the value for a key"
81287     }
81288    ]
81289   },
81290   "Roo.state.Manager": {
81291    "props": [],
81292    "events": [],
81293    "methods": [
81294     {
81295      "name": "clear",
81296      "sig": "(String name)",
81297      "type": "function",
81298      "desc": "Clears a value from the state"
81299     },
81300     {
81301      "name": "get",
81302      "sig": "(String name, Mixed defaultValue)",
81303      "type": "function",
81304      "desc": "Returns the current value for a key"
81305     },
81306     {
81307      "name": "getProvider",
81308      "sig": "()",
81309      "type": "function",
81310      "desc": "Gets the currently configured state provider"
81311     },
81312     {
81313      "name": "set",
81314      "sig": "(String name, Mixed value)",
81315      "type": "function",
81316      "desc": "Sets the value for a key"
81317     },
81318     {
81319      "name": "setProvider",
81320      "sig": "(Provider stateProvider)",
81321      "type": "function",
81322      "desc": "Configures the default state provider for your application"
81323     }
81324    ]
81325   },
81326   "Roo.state.Provider": {
81327    "props": [],
81328    "events": [
81329     {
81330      "name": "statechange",
81331      "sig": "function (_self, key, value)\n{\n\n}",
81332      "type": "function",
81333      "desc": "Fires when a state change occurs."
81334     }
81335    ],
81336    "methods": [
81337     {
81338      "name": "clear",
81339      "sig": "(String name)",
81340      "type": "function",
81341      "desc": "Clears a value from the state"
81342     },
81343     {
81344      "name": "decodeValue",
81345      "sig": "(String value)",
81346      "type": "function",
81347      "desc": "Decodes a string previously encoded with {@link #encodeValue}."
81348     },
81349     {
81350      "name": "encodeValue",
81351      "sig": "(Mixed value)",
81352      "type": "function",
81353      "desc": "Encodes a value including type information.  Decode with {@link #decodeValue}."
81354     },
81355     {
81356      "name": "get",
81357      "sig": "(String name, Mixed defaultValue)",
81358      "type": "function",
81359      "desc": "Returns the current value for a key"
81360     },
81361     {
81362      "name": "set",
81363      "sig": "(String name, Mixed value)",
81364      "type": "function",
81365      "desc": "Sets the value for a key"
81366     }
81367    ]
81368   },
81369   "Roo.tree": {
81370    "props": [],
81371    "events": [],
81372    "methods": []
81373   },
81374   "Roo.tree.AsyncTreeNode": {
81375    "props": [
81376     {
81377      "name": "loader",
81378      "type": "TreeLoader",
81379      "desc": "A TreeLoader to be used by this node (defaults to the loader defined on the tree)",
81380      "memberOf": ""
81381     },
81382     {
81383      "name": "text",
81384      "type": "String",
81385      "desc": "The text for this node",
81386      "memberOf": "Roo.tree.TreeNode"
81387     },
81388     {
81389      "name": "expanded",
81390      "type": "Boolean",
81391      "desc": "true to start the node expanded",
81392      "memberOf": "Roo.tree.TreeNode"
81393     },
81394     {
81395      "name": "allowDrag",
81396      "type": "Boolean",
81397      "desc": "false to make this node undraggable if DD is on (defaults to true)",
81398      "memberOf": "Roo.tree.TreeNode"
81399     },
81400     {
81401      "name": "allowDrop",
81402      "type": "Boolean",
81403      "desc": "false if this node cannot be drop on",
81404      "memberOf": "Roo.tree.TreeNode"
81405     },
81406     {
81407      "name": "disabled",
81408      "type": "Boolean",
81409      "desc": "true to start the node disabled",
81410      "memberOf": "Roo.tree.TreeNode"
81411     },
81412     {
81413      "name": "icon",
81414      "type": "String",
81415      "desc": "The path to an icon for the node. The preferred way to do this",
81416      "memberOf": "Roo.tree.TreeNode"
81417     },
81418     {
81419      "name": "cls",
81420      "type": "String",
81421      "desc": "A css class to be added to the node",
81422      "memberOf": "Roo.tree.TreeNode"
81423     },
81424     {
81425      "name": "iconCls",
81426      "type": "String",
81427      "desc": "A css class to be added to the nodes icon element for applying css background images",
81428      "memberOf": "Roo.tree.TreeNode"
81429     },
81430     {
81431      "name": "href",
81432      "type": "String",
81433      "desc": "URL of the link used for the node (defaults to #)",
81434      "memberOf": "Roo.tree.TreeNode"
81435     },
81436     {
81437      "name": "hrefTarget",
81438      "type": "String",
81439      "desc": "target frame for the link",
81440      "memberOf": "Roo.tree.TreeNode"
81441     },
81442     {
81443      "name": "qtip",
81444      "type": "String",
81445      "desc": "An Ext QuickTip for the node",
81446      "memberOf": "Roo.tree.TreeNode"
81447     },
81448     {
81449      "name": "qtipCfg",
81450      "type": "String",
81451      "desc": "An Ext QuickTip config for the node (used instead of qtip)",
81452      "memberOf": "Roo.tree.TreeNode"
81453     },
81454     {
81455      "name": "singleClickExpand",
81456      "type": "Boolean",
81457      "desc": "True for single click expand on this node",
81458      "memberOf": "Roo.tree.TreeNode"
81459     },
81460     {
81461      "name": "uiProvider",
81462      "type": "Function",
81463      "desc": "A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)",
81464      "memberOf": "Roo.tree.TreeNode"
81465     },
81466     {
81467      "name": "checked",
81468      "type": "Boolean",
81469      "desc": "True to render a checked checkbox for this node, false to render an unchecked checkbox\n(defaults to undefined with no checkbox rendered)",
81470      "memberOf": "Roo.tree.TreeNode"
81471     },
81472     {
81473      "name": "leaf",
81474      "type": "Boolean",
81475      "desc": "true if this node is a leaf and does not have children",
81476      "memberOf": "Roo.data.Node"
81477     },
81478     {
81479      "name": "id",
81480      "type": "String",
81481      "desc": "The id for this node. If one is not specified, one is generated.",
81482      "memberOf": "Roo.data.Node"
81483     },
81484     {
81485      "name": "listeners",
81486      "type": "Object",
81487      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
81488      "memberOf": "Roo.util.Observable"
81489     }
81490    ],
81491    "events": [
81492     {
81493      "name": "append",
81494      "sig": "function (tree, _self, node, index)\n{\n\n}",
81495      "type": "function",
81496      "desc": "Fires when a new child node is appended"
81497     },
81498     {
81499      "name": "beforeappend",
81500      "sig": "function (tree, _self, node)\n{\n\n}",
81501      "type": "function",
81502      "desc": "Fires before a new child is appended, return false to cancel the append."
81503     },
81504     {
81505      "name": "beforechildrenrendered",
81506      "sig": "function (_self)\n{\n\n}",
81507      "type": "function",
81508      "desc": "Fires right before the child nodes for this node are rendered"
81509     },
81510     {
81511      "name": "beforeclick",
81512      "sig": "function (_self, e)\n{\n\n}",
81513      "type": "function",
81514      "desc": "Fires before click processing. Return false to cancel the default action."
81515     },
81516     {
81517      "name": "beforecollapse",
81518      "sig": "function (_self, deep, anim)\n{\n\n}",
81519      "type": "function",
81520      "desc": "Fires before this node is collapsed, return false to cancel."
81521     },
81522     {
81523      "name": "beforeexpand",
81524      "sig": "function (_self, deep, anim)\n{\n\n}",
81525      "type": "function",
81526      "desc": "Fires before this node is expanded, return false to cancel."
81527     },
81528     {
81529      "name": "beforeinsert",
81530      "sig": "function (tree, _self, node, refNode)\n{\n\n}",
81531      "type": "function",
81532      "desc": "Fires before a new child is inserted, return false to cancel the insert."
81533     },
81534     {
81535      "name": "beforeload",
81536      "sig": "function (_self)\n{\n\n}",
81537      "type": "function",
81538      "desc": "Fires before this node is loaded, return false to cancel"
81539     },
81540     {
81541      "name": "beforemove",
81542      "sig": "function (tree, _self, oldParent, newParent, index)\n{\n\n}",
81543      "type": "function",
81544      "desc": "Fires before this node is moved to a new location in the tree. Return false to cancel the move."
81545     },
81546     {
81547      "name": "beforeremove",
81548      "sig": "function (tree, _self, node)\n{\n\n}",
81549      "type": "function",
81550      "desc": "Fires before a child is removed, return false to cancel the remove."
81551     },
81552     {
81553      "name": "checkchange",
81554      "sig": "function (_self, checked)\n{\n\n}",
81555      "type": "function",
81556      "desc": "Fires when a node with a checkbox's checked property changes"
81557     },
81558     {
81559      "name": "click",
81560      "sig": "function (_self, e)\n{\n\n}",
81561      "type": "function",
81562      "desc": "Fires when this node is clicked"
81563     },
81564     {
81565      "name": "collapse",
81566      "sig": "function (_self)\n{\n\n}",
81567      "type": "function",
81568      "desc": "Fires when this node is collapsed"
81569     },
81570     {
81571      "name": "contextmenu",
81572      "sig": "function (_self, e)\n{\n\n}",
81573      "type": "function",
81574      "desc": "Fires when this node is right clicked"
81575     },
81576     {
81577      "name": "dblclick",
81578      "sig": "function (_self, e)\n{\n\n}",
81579      "type": "function",
81580      "desc": "Fires when this node is double clicked"
81581     },
81582     {
81583      "name": "disabledchange",
81584      "sig": "function (_self, disabled)\n{\n\n}",
81585      "type": "function",
81586      "desc": "Fires when the disabled status of this node changes"
81587     },
81588     {
81589      "name": "expand",
81590      "sig": "function (_self)\n{\n\n}",
81591      "type": "function",
81592      "desc": "Fires when this node is expanded"
81593     },
81594     {
81595      "name": "insert",
81596      "sig": "function (tree, _self, node, refNode)\n{\n\n}",
81597      "type": "function",
81598      "desc": "Fires when a new child node is inserted."
81599     },
81600     {
81601      "name": "load",
81602      "sig": "function (_self)\n{\n\n}",
81603      "type": "function",
81604      "desc": "Fires when this node is loaded"
81605     },
81606     {
81607      "name": "move",
81608      "sig": "function (tree, _self, oldParent, newParent, index)\n{\n\n}",
81609      "type": "function",
81610      "desc": "Fires when this node is moved to a new location in the tree"
81611     },
81612     {
81613      "name": "remove",
81614      "sig": "function (tree, _self, node)\n{\n\n}",
81615      "type": "function",
81616      "desc": "Fires when a child node is removed"
81617     },
81618     {
81619      "name": "textchange",
81620      "sig": "function (_self, text, oldText)\n{\n\n}",
81621      "type": "function",
81622      "desc": "Fires when the text for this node is changed"
81623     }
81624    ],
81625    "methods": [
81626     {
81627      "name": "addEvents",
81628      "sig": "(Object object)",
81629      "type": "function",
81630      "desc": "Used to define events on this Observable"
81631     },
81632     {
81633      "name": "addListener",
81634      "sig": "(String eventName, Function handler, Object scope, Object options)",
81635      "type": "function",
81636      "desc": "Appends an event handler to this component"
81637     },
81638     {
81639      "name": "appendChild",
81640      "sig": "(Node/Array node)",
81641      "type": "function",
81642      "desc": "Insert node(s) as the last child node of this node."
81643     },
81644     {
81645      "name": "bubble",
81646      "sig": "(Function fn, Object scope, Array args)",
81647      "type": "function",
81648      "desc": "Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe bubble is stopped."
81649     },
81650     {
81651      "name": "capture",
81652      "sig": "(Observable o, Function fn, Object scope)",
81653      "type": "function",
81654      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
81655     },
81656     {
81657      "name": "cascade",
81658      "sig": "(Function fn, Object scope, Array args)",
81659      "type": "function",
81660      "desc": "Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe cascade is stopped on that branch."
81661     },
81662     {
81663      "name": "collapse",
81664      "sig": "(Boolean deep, Boolean anim)",
81665      "type": "function",
81666      "desc": "Collapse this node."
81667     },
81668     {
81669      "name": "collapseChildNodes",
81670      "sig": "(Boolean deep)",
81671      "type": "function",
81672      "desc": "Collapse all child nodes"
81673     },
81674     {
81675      "name": "contains",
81676      "sig": "(Node node)",
81677      "type": "function",
81678      "desc": "Returns true if this node is an ancestor (at any point) of the passed node."
81679     },
81680     {
81681      "name": "disable",
81682      "sig": "()",
81683      "type": "function",
81684      "desc": "Disables this node"
81685     },
81686     {
81687      "name": "eachChild",
81688      "sig": "(Function fn, Object scope, Array args)",
81689      "type": "function",
81690      "desc": "Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe iteration stops."
81691     },
81692     {
81693      "name": "enable",
81694      "sig": "()",
81695      "type": "function",
81696      "desc": "Enables this node"
81697     },
81698     {
81699      "name": "ensureVisible",
81700      "sig": "()",
81701      "type": "function",
81702      "desc": "Ensures all parent nodes are expanded"
81703     },
81704     {
81705      "name": "expand",
81706      "sig": "(Boolean deep, Boolean anim, Function callback)",
81707      "type": "function",
81708      "desc": "Expand this node."
81709     },
81710     {
81711      "name": "expandChildNodes",
81712      "sig": "(Boolean deep)",
81713      "type": "function",
81714      "desc": "Expand all child nodes"
81715     },
81716     {
81717      "name": "findChild",
81718      "sig": "(String attribute, Mixed value)",
81719      "type": "function",
81720      "desc": "Finds the first child that has the attribute with the specified value."
81721     },
81722     {
81723      "name": "findChildBy",
81724      "sig": "(Function fn, Object scope)",
81725      "type": "function",
81726      "desc": "Finds the first child by a custom function. The child matches if the function passed\nreturns true."
81727     },
81728     {
81729      "name": "fireEvent",
81730      "sig": "(String eventName, Object... args)",
81731      "type": "function",
81732      "desc": "Fires the specified event with the passed parameters (minus the event name)."
81733     },
81734     {
81735      "name": "getDepth",
81736      "sig": "()",
81737      "type": "function",
81738      "desc": "Returns depth of this node (the root node has a depth of 0)"
81739     },
81740     {
81741      "name": "getOwnerTree",
81742      "sig": "()",
81743      "type": "function",
81744      "desc": "Returns the tree this node is in."
81745     },
81746     {
81747      "name": "getPath",
81748      "sig": "(String attr)",
81749      "type": "function",
81750      "desc": "Returns the path for this node. The path can be used to expand or select this node programmatically."
81751     },
81752     {
81753      "name": "getUI",
81754      "sig": "()",
81755      "type": "function",
81756      "desc": "Returns the UI object for this node"
81757     },
81758     {
81759      "name": "hasListener",
81760      "sig": "(String eventName)",
81761      "type": "function",
81762      "desc": "Checks to see if this object has any listeners for a specified event"
81763     },
81764     {
81765      "name": "indexOf",
81766      "sig": "(Node node)",
81767      "type": "function",
81768      "desc": "Returns the index of a child node"
81769     },
81770     {
81771      "name": "insertBefore",
81772      "sig": "(Node node, Node refNode)",
81773      "type": "function",
81774      "desc": "Inserts the first node before the second node in this nodes childNodes collection."
81775     },
81776     {
81777      "name": "isAncestor",
81778      "sig": "(Node node)",
81779      "type": "function",
81780      "desc": "Returns true if the passed node is an ancestor (at any point) of this node."
81781     },
81782     {
81783      "name": "isExpanded",
81784      "sig": "()",
81785      "type": "function",
81786      "desc": "Returns true if this node is expanded"
81787     },
81788     {
81789      "name": "isFirst",
81790      "sig": "()",
81791      "type": "function",
81792      "desc": "Returns true if this node is the first child of its parent"
81793     },
81794     {
81795      "name": "isLast",
81796      "sig": "()",
81797      "type": "function",
81798      "desc": "Returns true if this node is the last child of its parent"
81799     },
81800     {
81801      "name": "isLeaf",
81802      "sig": "()",
81803      "type": "function",
81804      "desc": "Returns true if this node is a leaf"
81805     },
81806     {
81807      "name": "isLoaded",
81808      "sig": "()",
81809      "type": "function",
81810      "desc": "Returns true if this node has been loaded"
81811     },
81812     {
81813      "name": "isLoading",
81814      "sig": "()",
81815      "type": "function",
81816      "desc": "Returns true if this node is currently loading"
81817     },
81818     {
81819      "name": "isSelected",
81820      "sig": "()",
81821      "type": "function",
81822      "desc": "Returns true if this node is selected"
81823     },
81824     {
81825      "name": "item",
81826      "sig": "(Number index)",
81827      "type": "function",
81828      "desc": "Returns the child node at the specified index."
81829     },
81830     {
81831      "name": "on",
81832      "sig": "(String eventName, Function handler, Object scope, Object options)",
81833      "type": "function",
81834      "desc": "Appends an event handler to this element (shorthand for addListener)"
81835     },
81836     {
81837      "name": "purgeListeners",
81838      "sig": "()",
81839      "type": "function",
81840      "desc": "Removes all listeners for this object"
81841     },
81842     {
81843      "name": "releaseCapture",
81844      "sig": "(Observable o)",
81845      "type": "function",
81846      "desc": "Removes <b>all</b> added captures from the Observable."
81847     },
81848     {
81849      "name": "reload",
81850      "sig": "(Function callback)",
81851      "type": "function",
81852      "desc": "Trigger a reload for this node"
81853     },
81854     {
81855      "name": "removeChild",
81856      "sig": "(Node node)",
81857      "type": "function",
81858      "desc": "Removes a child node from this node."
81859     },
81860     {
81861      "name": "removeListener",
81862      "sig": "(String eventName, Function handler, Object scope)",
81863      "type": "function",
81864      "desc": "Removes a listener"
81865     },
81866     {
81867      "name": "replaceChild",
81868      "sig": "(Node newChild, Node oldChild)",
81869      "type": "function",
81870      "desc": "Replaces one child node in this node with another."
81871     },
81872     {
81873      "name": "select",
81874      "sig": "()",
81875      "type": "function",
81876      "desc": "Triggers selection of this node"
81877     },
81878     {
81879      "name": "setText",
81880      "sig": "(String text)",
81881      "type": "function",
81882      "desc": "Sets the text for this node"
81883     },
81884     {
81885      "name": "sort",
81886      "sig": "(Function fn, Object scope)",
81887      "type": "function",
81888      "desc": "Sorts this nodes children using the supplied sort function"
81889     },
81890     {
81891      "name": "toggle",
81892      "sig": "()",
81893      "type": "function",
81894      "desc": "Toggles expanded/collapsed state of the node"
81895     },
81896     {
81897      "name": "un",
81898      "sig": "(String eventName, Function handler, Object scope)",
81899      "type": "function",
81900      "desc": "Removes a listener (shorthand for removeListener)"
81901     },
81902     {
81903      "name": "unselect",
81904      "sig": "()",
81905      "type": "function",
81906      "desc": "Triggers deselection of this node"
81907     }
81908    ]
81909   },
81910   "Roo.tree.ColumnTree": {
81911    "props": [
81912     {
81913      "name": "columns",
81914      "type": "Object",
81915      "desc": "Including width, header, renderer, cls, dataIndex",
81916      "memberOf": ""
81917     },
81918     {
81919      "name": "borderWidth",
81920      "type": "int",
81921      "desc": "compined right/left border allowance",
81922      "memberOf": ""
81923     }
81924    ],
81925    "events": [
81926     {
81927      "name": "resize",
81928      "sig": "function (w, h)\n{\n\n}",
81929      "type": "function",
81930      "desc": "Fire this event on a container when it resizes"
81931     }
81932    ],
81933    "methods": []
81934   },
81935   "Roo.tree.DefaultSelectionModel": {
81936    "props": [
81937     {
81938      "name": "listeners",
81939      "type": "Object",
81940      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
81941      "memberOf": "Roo.util.Observable"
81942     }
81943    ],
81944    "events": [
81945     {
81946      "name": "beforeselect",
81947      "sig": "function (_self, node, node)\n{\n\n}",
81948      "type": "function",
81949      "desc": "Fires before the selected node changes, return false to cancel the change"
81950     },
81951     {
81952      "name": "selectionchange",
81953      "sig": "function (_self, node)\n{\n\n}",
81954      "type": "function",
81955      "desc": "Fires when the selected node changes"
81956     }
81957    ],
81958    "methods": [
81959     {
81960      "name": "addEvents",
81961      "sig": "(Object object)",
81962      "type": "function",
81963      "desc": "Used to define events on this Observable"
81964     },
81965     {
81966      "name": "addListener",
81967      "sig": "(String eventName, Function handler, Object scope, Object options)",
81968      "type": "function",
81969      "desc": "Appends an event handler to this component"
81970     },
81971     {
81972      "name": "capture",
81973      "sig": "(Observable o, Function fn, Object scope)",
81974      "type": "function",
81975      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
81976     },
81977     {
81978      "name": "clearSelections",
81979      "sig": "()",
81980      "type": "function",
81981      "desc": "Clear all selections"
81982     },
81983     {
81984      "name": "fireEvent",
81985      "sig": "(String eventName, Object... args)",
81986      "type": "function",
81987      "desc": "Fires the specified event with the passed parameters (minus the event name)."
81988     },
81989     {
81990      "name": "getSelectedNode",
81991      "sig": "()",
81992      "type": "function",
81993      "desc": "Get the selected node"
81994     },
81995     {
81996      "name": "hasListener",
81997      "sig": "(String eventName)",
81998      "type": "function",
81999      "desc": "Checks to see if this object has any listeners for a specified event"
82000     },
82001     {
82002      "name": "isSelected",
82003      "sig": "(TreeNode node)",
82004      "type": "function",
82005      "desc": "Returns true if the node is selected"
82006     },
82007     {
82008      "name": "on",
82009      "sig": "(String eventName, Function handler, Object scope, Object options)",
82010      "type": "function",
82011      "desc": "Appends an event handler to this element (shorthand for addListener)"
82012     },
82013     {
82014      "name": "purgeListeners",
82015      "sig": "()",
82016      "type": "function",
82017      "desc": "Removes all listeners for this object"
82018     },
82019     {
82020      "name": "releaseCapture",
82021      "sig": "(Observable o)",
82022      "type": "function",
82023      "desc": "Removes <b>all</b> added captures from the Observable."
82024     },
82025     {
82026      "name": "removeListener",
82027      "sig": "(String eventName, Function handler, Object scope)",
82028      "type": "function",
82029      "desc": "Removes a listener"
82030     },
82031     {
82032      "name": "select",
82033      "sig": "(TreeNode node)",
82034      "type": "function",
82035      "desc": "Select a node."
82036     },
82037     {
82038      "name": "selectNext",
82039      "sig": "()",
82040      "type": "function",
82041      "desc": "Selects the node above the selected node in the tree, intelligently walking the nodes"
82042     },
82043     {
82044      "name": "selectPrevious",
82045      "sig": "()",
82046      "type": "function",
82047      "desc": "Selects the node above the selected node in the tree, intelligently walking the nodes"
82048     },
82049     {
82050      "name": "un",
82051      "sig": "(String eventName, Function handler, Object scope)",
82052      "type": "function",
82053      "desc": "Removes a listener (shorthand for removeListener)"
82054     },
82055     {
82056      "name": "unselect",
82057      "sig": "(TreeNode node)",
82058      "type": "function",
82059      "desc": "Deselect a node."
82060     }
82061    ]
82062   },
82063   "Roo.tree.MultiSelectionModel": {
82064    "props": [
82065     {
82066      "name": "listeners",
82067      "type": "Object",
82068      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
82069      "memberOf": "Roo.util.Observable"
82070     }
82071    ],
82072    "events": [
82073     {
82074      "name": "selectionchange",
82075      "sig": "function (_self, nodes)\n{\n\n}",
82076      "type": "function",
82077      "desc": "Fires when the selected nodes change"
82078     }
82079    ],
82080    "methods": [
82081     {
82082      "name": "addEvents",
82083      "sig": "(Object object)",
82084      "type": "function",
82085      "desc": "Used to define events on this Observable"
82086     },
82087     {
82088      "name": "addListener",
82089      "sig": "(String eventName, Function handler, Object scope, Object options)",
82090      "type": "function",
82091      "desc": "Appends an event handler to this component"
82092     },
82093     {
82094      "name": "capture",
82095      "sig": "(Observable o, Function fn, Object scope)",
82096      "type": "function",
82097      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
82098     },
82099     {
82100      "name": "clearSelections",
82101      "sig": "()",
82102      "type": "function",
82103      "desc": "Clear all selections"
82104     },
82105     {
82106      "name": "fireEvent",
82107      "sig": "(String eventName, Object... args)",
82108      "type": "function",
82109      "desc": "Fires the specified event with the passed parameters (minus the event name)."
82110     },
82111     {
82112      "name": "getSelectedNodes",
82113      "sig": "()",
82114      "type": "function",
82115      "desc": "Returns an array of the selected nodes"
82116     },
82117     {
82118      "name": "hasListener",
82119      "sig": "(String eventName)",
82120      "type": "function",
82121      "desc": "Checks to see if this object has any listeners for a specified event"
82122     },
82123     {
82124      "name": "isSelected",
82125      "sig": "(TreeNode node)",
82126      "type": "function",
82127      "desc": "Returns true if the node is selected"
82128     },
82129     {
82130      "name": "on",
82131      "sig": "(String eventName, Function handler, Object scope, Object options)",
82132      "type": "function",
82133      "desc": "Appends an event handler to this element (shorthand for addListener)"
82134     },
82135     {
82136      "name": "purgeListeners",
82137      "sig": "()",
82138      "type": "function",
82139      "desc": "Removes all listeners for this object"
82140     },
82141     {
82142      "name": "releaseCapture",
82143      "sig": "(Observable o)",
82144      "type": "function",
82145      "desc": "Removes <b>all</b> added captures from the Observable."
82146     },
82147     {
82148      "name": "removeListener",
82149      "sig": "(String eventName, Function handler, Object scope)",
82150      "type": "function",
82151      "desc": "Removes a listener"
82152     },
82153     {
82154      "name": "select",
82155      "sig": "(TreeNode node, EventObject e, Boolean keepExisting)",
82156      "type": "function",
82157      "desc": "Select a node."
82158     },
82159     {
82160      "name": "un",
82161      "sig": "(String eventName, Function handler, Object scope)",
82162      "type": "function",
82163      "desc": "Removes a listener (shorthand for removeListener)"
82164     },
82165     {
82166      "name": "unselect",
82167      "sig": "(TreeNode node)",
82168      "type": "function",
82169      "desc": "Deselect a node."
82170     }
82171    ]
82172   },
82173   "Roo.tree.TreeEditor": {
82174    "props": [
82175     {
82176      "name": "tree",
82177      "type": "Roo.tree.TreePanel",
82178      "desc": "The tree to bind to.",
82179      "memberOf": ""
82180     },
82181     {
82182      "name": "field",
82183      "type": "Roo.form.TextField|Object",
82184      "desc": "The field configuration",
82185      "memberOf": ""
82186     },
82187     {
82188      "name": "alignment",
82189      "type": "String",
82190      "desc": "The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to \"l-l\").",
82191      "memberOf": ""
82192     },
82193     {
82194      "name": "hideEl",
82195      "type": "Boolean",
82196      "desc": "True to hide the bound element while the editor is displayed (defaults to false)",
82197      "memberOf": ""
82198     },
82199     {
82200      "name": "cls",
82201      "type": "String",
82202      "desc": "CSS class to apply to the editor (defaults to \"x-small-editor x-tree-editor\")",
82203      "memberOf": ""
82204     },
82205     {
82206      "name": "shim",
82207      "type": "Boolean",
82208      "desc": "True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)",
82209      "memberOf": ""
82210     },
82211     {
82212      "name": "maxWidth",
82213      "type": "Number",
82214      "desc": "The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed\nthe containing tree element's size, it will be automatically limited for you to the container width, taking\nscroll and client offsets into account prior to each edit.",
82215      "memberOf": ""
82216     },
82217     {
82218      "name": "autosize",
82219      "type": "Boolean/String",
82220      "desc": "True for the editor to automatically adopt the size of the underlying field, \"width\" to adopt the width only,\nor \"height\" to adopt the height only (defaults to false)",
82221      "memberOf": "Roo.Editor"
82222     },
82223     {
82224      "name": "revertInvalid",
82225      "type": "Boolean",
82226      "desc": "True to automatically revert the field value and cancel the edit when the user completes an edit and the field\nvalidation fails (defaults to true)",
82227      "memberOf": "Roo.Editor"
82228     },
82229     {
82230      "name": "ignoreNoChange",
82231      "type": "Boolean",
82232      "desc": "True to skip the the edit completion process (no save, no events fired) if the user completes an edit and\nthe value has not changed (defaults to false).  Applies only to string values - edits for other data types\nwill never be ignored.",
82233      "memberOf": "Roo.Editor"
82234     },
82235     {
82236      "name": "value",
82237      "type": "Mixed",
82238      "desc": "The data value of the underlying field (defaults to \"\")",
82239      "memberOf": "Roo.Editor"
82240     },
82241     {
82242      "name": "shadow",
82243      "type": "Boolean/String",
82244      "desc": "\"sides\" for sides/bottom only, \"frame\" for 4-way shadow, and \"drop\"\nfor bottom-right shadow (defaults to \"frame\")",
82245      "memberOf": "Roo.Editor"
82246     },
82247     {
82248      "name": "constrain",
82249      "type": "Boolean",
82250      "desc": "True to constrain the editor to the viewport",
82251      "memberOf": "Roo.Editor"
82252     },
82253     {
82254      "name": "completeOnEnter",
82255      "type": "Boolean",
82256      "desc": "True to complete the edit when the enter key is pressed (defaults to false)",
82257      "memberOf": "Roo.Editor"
82258     },
82259     {
82260      "name": "cancelOnEsc",
82261      "type": "Boolean",
82262      "desc": "True to cancel the edit when the escape key is pressed (defaults to false)",
82263      "memberOf": "Roo.Editor"
82264     },
82265     {
82266      "name": "updateEl",
82267      "type": "Boolean",
82268      "desc": "True to update the innerHTML of the bound element when the update completes (defaults to false)",
82269      "memberOf": "Roo.Editor"
82270     },
82271     {
82272      "name": "disableClass",
82273      "type": "String",
82274      "desc": "CSS class added to the component when it is disabled (defaults to \"x-item-disabled\").",
82275      "memberOf": "Roo.Component"
82276     },
82277     {
82278      "name": "allowDomMove",
82279      "type": "Boolean",
82280      "desc": "Whether the component can move the Dom node when rendering (defaults to true).",
82281      "memberOf": "Roo.Component"
82282     },
82283     {
82284      "name": "hideMode",
82285      "type": "String",
82286      "desc": "How this component should hidden. Supported values are\n\"visibility\" (css visibility), \"offsets\" (negative offset position) and\n\"display\" (css display) - defaults to \"display\".",
82287      "memberOf": "Roo.Component",
82288      "optvals": [
82289       "display",
82290       "visibility"
82291      ]
82292     },
82293     {
82294      "name": "actionMode",
82295      "type": "String",
82296      "desc": "which property holds the element that used for  hide() / show() / disable() / enable()\ndefault is 'el'",
82297      "memberOf": "Roo.Component"
82298     },
82299     {
82300      "name": "listeners",
82301      "type": "Object",
82302      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
82303      "memberOf": "Roo.util.Observable"
82304     }
82305    ],
82306    "events": [
82307     {
82308      "name": "beforecomplete",
82309      "sig": "function (_self, value, startValue)\n{\n\n}",
82310      "type": "function",
82311      "desc": "Fires after a change has been made to the field, but before the change is reflected in the underlying\nfield.  Saving the change to the field can be canceled by returning false from the handler of this event.\nNote that if the value has not changed and ignoreNoChange = true, the editing will still end but this\nevent will not fire since no edit actually occurred."
82312     },
82313     {
82314      "name": "beforedestroy",
82315      "sig": "function (_self)\n{\n\n}",
82316      "type": "function",
82317      "desc": "Fires before the component is destroyed. Return false to stop the destroy."
82318     },
82319     {
82320      "name": "beforehide",
82321      "sig": "function (_self)\n{\n\n}",
82322      "type": "function",
82323      "desc": "Fires before the component is hidden. Return false to stop the hide."
82324     },
82325     {
82326      "name": "beforenodeedit",
82327      "sig": "function (_self, node)\n{\n\n}",
82328      "type": "function",
82329      "desc": "Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning\nfalse from the handler of this event."
82330     },
82331     {
82332      "name": "beforerender",
82333      "sig": "function (_self)\n{\n\n}",
82334      "type": "function",
82335      "desc": "Fires before the component is rendered. Return false to stop the render."
82336     },
82337     {
82338      "name": "beforeshow",
82339      "sig": "function (_self)\n{\n\n}",
82340      "type": "function",
82341      "desc": "Fires before the component is shown.  Return false to stop the show."
82342     },
82343     {
82344      "name": "beforestartedit",
82345      "sig": "function (_self, boundEl, value)\n{\n\n}",
82346      "type": "function",
82347      "desc": "Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning\nfalse from the handler of this event."
82348     },
82349     {
82350      "name": "complete",
82351      "sig": "function (_self, value, startValue)\n{\n\n}",
82352      "type": "function",
82353      "desc": "Fires after editing is complete and any changed value has been written to the underlying field."
82354     },
82355     {
82356      "name": "destroy",
82357      "sig": "function (_self)\n{\n\n}",
82358      "type": "function",
82359      "desc": "Fires after the component is destroyed."
82360     },
82361     {
82362      "name": "disable",
82363      "sig": "function (_self)\n{\n\n}",
82364      "type": "function",
82365      "desc": "Fires after the component is disabled."
82366     },
82367     {
82368      "name": "enable",
82369      "sig": "function (_self)\n{\n\n}",
82370      "type": "function",
82371      "desc": "Fires after the component is enabled."
82372     },
82373     {
82374      "name": "hide",
82375      "sig": "function (_self)\n{\n\n}",
82376      "type": "function",
82377      "desc": "Fires after the component is hidden."
82378     },
82379     {
82380      "name": "render",
82381      "sig": "function (_self)\n{\n\n}",
82382      "type": "function",
82383      "desc": "Fires after the component is rendered."
82384     },
82385     {
82386      "name": "show",
82387      "sig": "function (_self)\n{\n\n}",
82388      "type": "function",
82389      "desc": "Fires after the component is shown."
82390     },
82391     {
82392      "name": "specialkey",
82393      "sig": "function (_self, e)\n{\n\n}",
82394      "type": "function",
82395      "desc": "Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check\n{@link Roo.EventObject#getKey} to determine which key was pressed."
82396     },
82397     {
82398      "name": "startedit",
82399      "sig": "function (boundEl, value)\n{\n\n}",
82400      "type": "function",
82401      "desc": "Fires when this editor is displayed"
82402     }
82403    ],
82404    "methods": [
82405     {
82406      "name": "addEvents",
82407      "sig": "(Object object)",
82408      "type": "function",
82409      "desc": "Used to define events on this Observable"
82410     },
82411     {
82412      "name": "addListener",
82413      "sig": "(String eventName, Function handler, Object scope, Object options)",
82414      "type": "function",
82415      "desc": "Appends an event handler to this component"
82416     },
82417     {
82418      "name": "cancelEdit",
82419      "sig": "(Boolean remainVisible)",
82420      "type": "function",
82421      "desc": "Cancels the editing process and hides the editor without persisting any changes.  The field value will be\nreverted to the original starting value."
82422     },
82423     {
82424      "name": "capture",
82425      "sig": "(Observable o, Function fn, Object scope)",
82426      "type": "function",
82427      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
82428     },
82429     {
82430      "name": "completeEdit",
82431      "sig": "(Boolean remainVisible)",
82432      "type": "function",
82433      "desc": "Ends the editing process, persists the changed value to the underlying field, and hides the editor."
82434     },
82435     {
82436      "name": "destroy",
82437      "sig": "()",
82438      "type": "function",
82439      "desc": "Destroys this component by purging any event listeners, removing the component's element from the DOM,\nremoving the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}."
82440     },
82441     {
82442      "name": "disable",
82443      "sig": "()",
82444      "type": "function",
82445      "desc": "Disable this component."
82446     },
82447     {
82448      "name": "enable",
82449      "sig": "()",
82450      "type": "function",
82451      "desc": "Enable this component."
82452     },
82453     {
82454      "name": "fireEvent",
82455      "sig": "(String eventName, Object... args)",
82456      "type": "function",
82457      "desc": "Fires the specified event with the passed parameters (minus the event name)."
82458     },
82459     {
82460      "name": "focus",
82461      "sig": "(Boolean selectText)",
82462      "type": "function",
82463      "desc": "Try to focus this component."
82464     },
82465     {
82466      "name": "getEl",
82467      "sig": "()",
82468      "type": "function",
82469      "desc": "Returns the underlying {@link Roo.Element}."
82470     },
82471     {
82472      "name": "getId",
82473      "sig": "()",
82474      "type": "function",
82475      "desc": "Returns the id of this component."
82476     },
82477     {
82478      "name": "getValue",
82479      "sig": "()",
82480      "type": "function",
82481      "desc": "Gets the data value of the editor"
82482     },
82483     {
82484      "name": "hasListener",
82485      "sig": "(String eventName)",
82486      "type": "function",
82487      "desc": "Checks to see if this object has any listeners for a specified event"
82488     },
82489     {
82490      "name": "hide",
82491      "sig": "()",
82492      "type": "function",
82493      "desc": "Hide this component."
82494     },
82495     {
82496      "name": "isVisible",
82497      "sig": "()",
82498      "type": "function",
82499      "desc": "Returns true if this component is visible."
82500     },
82501     {
82502      "name": "on",
82503      "sig": "(String eventName, Function handler, Object scope, Object options)",
82504      "type": "function",
82505      "desc": "Appends an event handler to this element (shorthand for addListener)"
82506     },
82507     {
82508      "name": "purgeListeners",
82509      "sig": "()",
82510      "type": "function",
82511      "desc": "Removes all listeners for this object"
82512     },
82513     {
82514      "name": "realign",
82515      "sig": "()",
82516      "type": "function",
82517      "desc": "Realigns the editor to the bound field based on the current alignment config value."
82518     },
82519     {
82520      "name": "releaseCapture",
82521      "sig": "(Observable o)",
82522      "type": "function",
82523      "desc": "Removes <b>all</b> added captures from the Observable."
82524     },
82525     {
82526      "name": "removeListener",
82527      "sig": "(String eventName, Function handler, Object scope)",
82528      "type": "function",
82529      "desc": "Removes a listener"
82530     },
82531     {
82532      "name": "render",
82533      "sig": "(String/HTMLElement/Element container)",
82534      "type": "function",
82535      "desc": "If this is a lazy rendering component, render it to its container element."
82536     },
82537     {
82538      "name": "setDisabled",
82539      "sig": "(Boolean disabled)",
82540      "type": "function",
82541      "desc": "Convenience function for setting disabled/enabled by boolean."
82542     },
82543     {
82544      "name": "setSize",
82545      "sig": "(Number width, Number height)",
82546      "type": "function",
82547      "desc": "Sets the height and width of this editor."
82548     },
82549     {
82550      "name": "setValue",
82551      "sig": "(Mixed value)",
82552      "type": "function",
82553      "desc": "Sets the data value of the editor"
82554     },
82555     {
82556      "name": "setVisible",
82557      "sig": "(Boolean visible)",
82558      "type": "function",
82559      "desc": "Convenience function to hide or show this component by boolean."
82560     },
82561     {
82562      "name": "show",
82563      "sig": "()",
82564      "type": "function",
82565      "desc": "Show this component."
82566     },
82567     {
82568      "name": "startEdit",
82569      "sig": "(String/HTMLElement/Element el, String value)",
82570      "type": "function",
82571      "desc": "Starts the editing process and shows the editor."
82572     },
82573     {
82574      "name": "un",
82575      "sig": "(String eventName, Function handler, Object scope)",
82576      "type": "function",
82577      "desc": "Removes a listener (shorthand for removeListener)"
82578     }
82579    ]
82580   },
82581   "Roo.tree.TreeFilter": {
82582    "props": [],
82583    "events": [],
82584    "methods": [
82585     {
82586      "name": "clear",
82587      "sig": "()",
82588      "type": "function",
82589      "desc": "Clears the current filter. Note: with the \"remove\" option\nset a filter cannot be cleared."
82590     },
82591     {
82592      "name": "filter",
82593      "sig": "(String/RegExp value, String attr, TreeNode startNode)",
82594      "type": "function",
82595      "desc": "Filter the data by a specific attribute."
82596     },
82597     {
82598      "name": "filterBy",
82599      "sig": "(Function fn, Object scope)",
82600      "type": "function",
82601      "desc": "Filter by a function. The passed function will be called with each\nnode in the tree (or from the startNode). If the function returns true, the node is kept\notherwise it is filtered. If a node is filtered, its children are also filtered."
82602     }
82603    ]
82604   },
82605   "Roo.tree.TreeLoader": {
82606    "props": [
82607     {
82608      "name": "dataUrl",
82609      "type": "String",
82610      "desc": "The URL from which to request a Json string which\nspecifies an array of node definition object representing the child nodes\nto be loaded.",
82611      "memberOf": ""
82612     },
82613     {
82614      "name": "requestMethod",
82615      "type": "String",
82616      "desc": "either GET or POST\ndefaults to POST (due to BC)\nto be loaded.",
82617      "memberOf": ""
82618     },
82619     {
82620      "name": "baseParams",
82621      "type": "Object",
82622      "desc": "(optional) An object containing properties which\nspecify HTTP parameters to be passed to each request for child nodes.",
82623      "memberOf": ""
82624     },
82625     {
82626      "name": "baseAttrs",
82627      "type": "Object",
82628      "desc": "(optional) An object containing attributes to be added to all nodes\ncreated by this loader. If the attributes sent by the server have an attribute in this object,\nthey take priority.",
82629      "memberOf": ""
82630     },
82631     {
82632      "name": "uiProviders",
82633      "type": "Object",
82634      "desc": "(optional) An object containing properties which\n\nDEPRECATED - use 'create' event handler to modify attributes - which affect creation.\nspecify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional\n<i>uiProvider</i> attribute of a returned child node is a string rather\nthan a reference to a TreeNodeUI implementation, this that string value\nis used as a property name in the uiProviders object. You can define the provider named\n'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)",
82635      "memberOf": ""
82636     },
82637     {
82638      "name": "clearOnLoad",
82639      "type": "Boolean",
82640      "desc": "(optional) Default to true. Remove previously existing\nchild nodes before loading.",
82641      "memberOf": ""
82642     },
82643     {
82644      "name": "root",
82645      "type": "String",
82646      "desc": "(optional) Default to false. Use this to read data from an object \nproperty on loading, rather than expecting an array. (eg. more compatible to a standard\nGrid query { data : [ .....] }",
82647      "memberOf": ""
82648     },
82649     {
82650      "name": "queryParam",
82651      "type": "String",
82652      "desc": "(optional) \nName of the query as it will be passed on the querystring (defaults to 'node')\neg. the request will be ?node=[id]",
82653      "memberOf": ""
82654     },
82655     {
82656      "name": "listeners",
82657      "type": "Object",
82658      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
82659      "memberOf": "Roo.util.Observable"
82660     }
82661    ],
82662    "events": [
82663     {
82664      "name": "beforeload",
82665      "sig": "function (This, node, callback)\n{\n\n}",
82666      "type": "function",
82667      "desc": "Fires before a network request is made to retrieve the Json text which specifies a node's children."
82668     },
82669     {
82670      "name": "create",
82671      "sig": "function (This, attr)\n{\n\n}",
82672      "type": "function",
82673      "desc": "Fires before a node is created, enabling you to return custom Node types"
82674     },
82675     {
82676      "name": "load",
82677      "sig": "function (This, node, response)\n{\n\n}",
82678      "type": "function",
82679      "desc": "Fires when the node has been successfuly loaded."
82680     },
82681     {
82682      "name": "loadexception",
82683      "sig": "function (This, node, response)\n{\n\n}",
82684      "type": "function",
82685      "desc": "Fires if the network request failed."
82686     }
82687    ],
82688    "methods": [
82689     {
82690      "name": "addEvents",
82691      "sig": "(Object object)",
82692      "type": "function",
82693      "desc": "Used to define events on this Observable"
82694     },
82695     {
82696      "name": "addListener",
82697      "sig": "(String eventName, Function handler, Object scope, Object options)",
82698      "type": "function",
82699      "desc": "Appends an event handler to this component"
82700     },
82701     {
82702      "name": "capture",
82703      "sig": "(Observable o, Function fn, Object scope)",
82704      "type": "function",
82705      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
82706     },
82707     {
82708      "name": "fireEvent",
82709      "sig": "(String eventName, Object... args)",
82710      "type": "function",
82711      "desc": "Fires the specified event with the passed parameters (minus the event name)."
82712     },
82713     {
82714      "name": "hasListener",
82715      "sig": "(String eventName)",
82716      "type": "function",
82717      "desc": "Checks to see if this object has any listeners for a specified event"
82718     },
82719     {
82720      "name": "load",
82721      "sig": "(Roo.tree.TreeNode node, Function callback)",
82722      "type": "function",
82723      "desc": "Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.\nThis is called automatically when a node is expanded, but may be used to reload\na node (or append new children if the {@link #clearOnLoad} option is false.)"
82724     },
82725     {
82726      "name": "on",
82727      "sig": "(String eventName, Function handler, Object scope, Object options)",
82728      "type": "function",
82729      "desc": "Appends an event handler to this element (shorthand for addListener)"
82730     },
82731     {
82732      "name": "purgeListeners",
82733      "sig": "()",
82734      "type": "function",
82735      "desc": "Removes all listeners for this object"
82736     },
82737     {
82738      "name": "releaseCapture",
82739      "sig": "(Observable o)",
82740      "type": "function",
82741      "desc": "Removes <b>all</b> added captures from the Observable."
82742     },
82743     {
82744      "name": "removeListener",
82745      "sig": "(String eventName, Function handler, Object scope)",
82746      "type": "function",
82747      "desc": "Removes a listener"
82748     },
82749     {
82750      "name": "un",
82751      "sig": "(String eventName, Function handler, Object scope)",
82752      "type": "function",
82753      "desc": "Removes a listener (shorthand for removeListener)"
82754     }
82755    ]
82756   },
82757   "Roo.tree.TreeNode": {
82758    "props": [
82759     {
82760      "name": "text",
82761      "type": "String",
82762      "desc": "The text for this node",
82763      "memberOf": ""
82764     },
82765     {
82766      "name": "expanded",
82767      "type": "Boolean",
82768      "desc": "true to start the node expanded",
82769      "memberOf": ""
82770     },
82771     {
82772      "name": "allowDrag",
82773      "type": "Boolean",
82774      "desc": "false to make this node undraggable if DD is on (defaults to true)",
82775      "memberOf": ""
82776     },
82777     {
82778      "name": "allowDrop",
82779      "type": "Boolean",
82780      "desc": "false if this node cannot be drop on",
82781      "memberOf": ""
82782     },
82783     {
82784      "name": "disabled",
82785      "type": "Boolean",
82786      "desc": "true to start the node disabled",
82787      "memberOf": ""
82788     },
82789     {
82790      "name": "icon",
82791      "type": "String",
82792      "desc": "The path to an icon for the node. The preferred way to do this",
82793      "memberOf": ""
82794     },
82795     {
82796      "name": "cls",
82797      "type": "String",
82798      "desc": "A css class to be added to the node",
82799      "memberOf": ""
82800     },
82801     {
82802      "name": "iconCls",
82803      "type": "String",
82804      "desc": "A css class to be added to the nodes icon element for applying css background images",
82805      "memberOf": ""
82806     },
82807     {
82808      "name": "href",
82809      "type": "String",
82810      "desc": "URL of the link used for the node (defaults to #)",
82811      "memberOf": ""
82812     },
82813     {
82814      "name": "hrefTarget",
82815      "type": "String",
82816      "desc": "target frame for the link",
82817      "memberOf": ""
82818     },
82819     {
82820      "name": "qtip",
82821      "type": "String",
82822      "desc": "An Ext QuickTip for the node",
82823      "memberOf": ""
82824     },
82825     {
82826      "name": "qtipCfg",
82827      "type": "String",
82828      "desc": "An Ext QuickTip config for the node (used instead of qtip)",
82829      "memberOf": ""
82830     },
82831     {
82832      "name": "singleClickExpand",
82833      "type": "Boolean",
82834      "desc": "True for single click expand on this node",
82835      "memberOf": ""
82836     },
82837     {
82838      "name": "uiProvider",
82839      "type": "Function",
82840      "desc": "A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)",
82841      "memberOf": ""
82842     },
82843     {
82844      "name": "checked",
82845      "type": "Boolean",
82846      "desc": "True to render a checked checkbox for this node, false to render an unchecked checkbox\n(defaults to undefined with no checkbox rendered)",
82847      "memberOf": ""
82848     },
82849     {
82850      "name": "leaf",
82851      "type": "Boolean",
82852      "desc": "true if this node is a leaf and does not have children",
82853      "memberOf": "Roo.data.Node"
82854     },
82855     {
82856      "name": "id",
82857      "type": "String",
82858      "desc": "The id for this node. If one is not specified, one is generated.",
82859      "memberOf": "Roo.data.Node"
82860     },
82861     {
82862      "name": "listeners",
82863      "type": "Object",
82864      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
82865      "memberOf": "Roo.util.Observable"
82866     }
82867    ],
82868    "events": [
82869     {
82870      "name": "append",
82871      "sig": "function (tree, _self, node, index)\n{\n\n}",
82872      "type": "function",
82873      "desc": "Fires when a new child node is appended"
82874     },
82875     {
82876      "name": "beforeappend",
82877      "sig": "function (tree, _self, node)\n{\n\n}",
82878      "type": "function",
82879      "desc": "Fires before a new child is appended, return false to cancel the append."
82880     },
82881     {
82882      "name": "beforechildrenrendered",
82883      "sig": "function (_self)\n{\n\n}",
82884      "type": "function",
82885      "desc": "Fires right before the child nodes for this node are rendered"
82886     },
82887     {
82888      "name": "beforeclick",
82889      "sig": "function (_self, e)\n{\n\n}",
82890      "type": "function",
82891      "desc": "Fires before click processing. Return false to cancel the default action."
82892     },
82893     {
82894      "name": "beforecollapse",
82895      "sig": "function (_self, deep, anim)\n{\n\n}",
82896      "type": "function",
82897      "desc": "Fires before this node is collapsed, return false to cancel."
82898     },
82899     {
82900      "name": "beforeexpand",
82901      "sig": "function (_self, deep, anim)\n{\n\n}",
82902      "type": "function",
82903      "desc": "Fires before this node is expanded, return false to cancel."
82904     },
82905     {
82906      "name": "beforeinsert",
82907      "sig": "function (tree, _self, node, refNode)\n{\n\n}",
82908      "type": "function",
82909      "desc": "Fires before a new child is inserted, return false to cancel the insert."
82910     },
82911     {
82912      "name": "beforemove",
82913      "sig": "function (tree, _self, oldParent, newParent, index)\n{\n\n}",
82914      "type": "function",
82915      "desc": "Fires before this node is moved to a new location in the tree. Return false to cancel the move."
82916     },
82917     {
82918      "name": "beforeremove",
82919      "sig": "function (tree, _self, node)\n{\n\n}",
82920      "type": "function",
82921      "desc": "Fires before a child is removed, return false to cancel the remove."
82922     },
82923     {
82924      "name": "checkchange",
82925      "sig": "function (_self, checked)\n{\n\n}",
82926      "type": "function",
82927      "desc": "Fires when a node with a checkbox's checked property changes"
82928     },
82929     {
82930      "name": "click",
82931      "sig": "function (_self, e)\n{\n\n}",
82932      "type": "function",
82933      "desc": "Fires when this node is clicked"
82934     },
82935     {
82936      "name": "collapse",
82937      "sig": "function (_self)\n{\n\n}",
82938      "type": "function",
82939      "desc": "Fires when this node is collapsed"
82940     },
82941     {
82942      "name": "contextmenu",
82943      "sig": "function (_self, e)\n{\n\n}",
82944      "type": "function",
82945      "desc": "Fires when this node is right clicked"
82946     },
82947     {
82948      "name": "dblclick",
82949      "sig": "function (_self, e)\n{\n\n}",
82950      "type": "function",
82951      "desc": "Fires when this node is double clicked"
82952     },
82953     {
82954      "name": "disabledchange",
82955      "sig": "function (_self, disabled)\n{\n\n}",
82956      "type": "function",
82957      "desc": "Fires when the disabled status of this node changes"
82958     },
82959     {
82960      "name": "expand",
82961      "sig": "function (_self)\n{\n\n}",
82962      "type": "function",
82963      "desc": "Fires when this node is expanded"
82964     },
82965     {
82966      "name": "insert",
82967      "sig": "function (tree, _self, node, refNode)\n{\n\n}",
82968      "type": "function",
82969      "desc": "Fires when a new child node is inserted."
82970     },
82971     {
82972      "name": "move",
82973      "sig": "function (tree, _self, oldParent, newParent, index)\n{\n\n}",
82974      "type": "function",
82975      "desc": "Fires when this node is moved to a new location in the tree"
82976     },
82977     {
82978      "name": "remove",
82979      "sig": "function (tree, _self, node)\n{\n\n}",
82980      "type": "function",
82981      "desc": "Fires when a child node is removed"
82982     },
82983     {
82984      "name": "textchange",
82985      "sig": "function (_self, text, oldText)\n{\n\n}",
82986      "type": "function",
82987      "desc": "Fires when the text for this node is changed"
82988     }
82989    ],
82990    "methods": [
82991     {
82992      "name": "addEvents",
82993      "sig": "(Object object)",
82994      "type": "function",
82995      "desc": "Used to define events on this Observable"
82996     },
82997     {
82998      "name": "addListener",
82999      "sig": "(String eventName, Function handler, Object scope, Object options)",
83000      "type": "function",
83001      "desc": "Appends an event handler to this component"
83002     },
83003     {
83004      "name": "appendChild",
83005      "sig": "(Node/Array node)",
83006      "type": "function",
83007      "desc": "Insert node(s) as the last child node of this node."
83008     },
83009     {
83010      "name": "bubble",
83011      "sig": "(Function fn, Object scope, Array args)",
83012      "type": "function",
83013      "desc": "Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe bubble is stopped."
83014     },
83015     {
83016      "name": "capture",
83017      "sig": "(Observable o, Function fn, Object scope)",
83018      "type": "function",
83019      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
83020     },
83021     {
83022      "name": "cascade",
83023      "sig": "(Function fn, Object scope, Array args)",
83024      "type": "function",
83025      "desc": "Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe cascade is stopped on that branch."
83026     },
83027     {
83028      "name": "collapse",
83029      "sig": "(Boolean deep, Boolean anim)",
83030      "type": "function",
83031      "desc": "Collapse this node."
83032     },
83033     {
83034      "name": "collapseChildNodes",
83035      "sig": "(Boolean deep)",
83036      "type": "function",
83037      "desc": "Collapse all child nodes"
83038     },
83039     {
83040      "name": "contains",
83041      "sig": "(Node node)",
83042      "type": "function",
83043      "desc": "Returns true if this node is an ancestor (at any point) of the passed node."
83044     },
83045     {
83046      "name": "disable",
83047      "sig": "()",
83048      "type": "function",
83049      "desc": "Disables this node"
83050     },
83051     {
83052      "name": "eachChild",
83053      "sig": "(Function fn, Object scope, Array args)",
83054      "type": "function",
83055      "desc": "Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe iteration stops."
83056     },
83057     {
83058      "name": "enable",
83059      "sig": "()",
83060      "type": "function",
83061      "desc": "Enables this node"
83062     },
83063     {
83064      "name": "ensureVisible",
83065      "sig": "()",
83066      "type": "function",
83067      "desc": "Ensures all parent nodes are expanded"
83068     },
83069     {
83070      "name": "expand",
83071      "sig": "(Boolean deep, Boolean anim, Function callback)",
83072      "type": "function",
83073      "desc": "Expand this node."
83074     },
83075     {
83076      "name": "expandChildNodes",
83077      "sig": "(Boolean deep)",
83078      "type": "function",
83079      "desc": "Expand all child nodes"
83080     },
83081     {
83082      "name": "findChild",
83083      "sig": "(String attribute, Mixed value)",
83084      "type": "function",
83085      "desc": "Finds the first child that has the attribute with the specified value."
83086     },
83087     {
83088      "name": "findChildBy",
83089      "sig": "(Function fn, Object scope)",
83090      "type": "function",
83091      "desc": "Finds the first child by a custom function. The child matches if the function passed\nreturns true."
83092     },
83093     {
83094      "name": "fireEvent",
83095      "sig": "(String eventName, Object... args)",
83096      "type": "function",
83097      "desc": "Fires the specified event with the passed parameters (minus the event name)."
83098     },
83099     {
83100      "name": "getDepth",
83101      "sig": "()",
83102      "type": "function",
83103      "desc": "Returns depth of this node (the root node has a depth of 0)"
83104     },
83105     {
83106      "name": "getOwnerTree",
83107      "sig": "()",
83108      "type": "function",
83109      "desc": "Returns the tree this node is in."
83110     },
83111     {
83112      "name": "getPath",
83113      "sig": "(String attr)",
83114      "type": "function",
83115      "desc": "Returns the path for this node. The path can be used to expand or select this node programmatically."
83116     },
83117     {
83118      "name": "getUI",
83119      "sig": "()",
83120      "type": "function",
83121      "desc": "Returns the UI object for this node"
83122     },
83123     {
83124      "name": "hasListener",
83125      "sig": "(String eventName)",
83126      "type": "function",
83127      "desc": "Checks to see if this object has any listeners for a specified event"
83128     },
83129     {
83130      "name": "indexOf",
83131      "sig": "(Node node)",
83132      "type": "function",
83133      "desc": "Returns the index of a child node"
83134     },
83135     {
83136      "name": "insertBefore",
83137      "sig": "(Node node, Node refNode)",
83138      "type": "function",
83139      "desc": "Inserts the first node before the second node in this nodes childNodes collection."
83140     },
83141     {
83142      "name": "isAncestor",
83143      "sig": "(Node node)",
83144      "type": "function",
83145      "desc": "Returns true if the passed node is an ancestor (at any point) of this node."
83146     },
83147     {
83148      "name": "isExpanded",
83149      "sig": "()",
83150      "type": "function",
83151      "desc": "Returns true if this node is expanded"
83152     },
83153     {
83154      "name": "isFirst",
83155      "sig": "()",
83156      "type": "function",
83157      "desc": "Returns true if this node is the first child of its parent"
83158     },
83159     {
83160      "name": "isLast",
83161      "sig": "()",
83162      "type": "function",
83163      "desc": "Returns true if this node is the last child of its parent"
83164     },
83165     {
83166      "name": "isLeaf",
83167      "sig": "()",
83168      "type": "function",
83169      "desc": "Returns true if this node is a leaf"
83170     },
83171     {
83172      "name": "isSelected",
83173      "sig": "()",
83174      "type": "function",
83175      "desc": "Returns true if this node is selected"
83176     },
83177     {
83178      "name": "item",
83179      "sig": "(Number index)",
83180      "type": "function",
83181      "desc": "Returns the child node at the specified index."
83182     },
83183     {
83184      "name": "on",
83185      "sig": "(String eventName, Function handler, Object scope, Object options)",
83186      "type": "function",
83187      "desc": "Appends an event handler to this element (shorthand for addListener)"
83188     },
83189     {
83190      "name": "purgeListeners",
83191      "sig": "()",
83192      "type": "function",
83193      "desc": "Removes all listeners for this object"
83194     },
83195     {
83196      "name": "releaseCapture",
83197      "sig": "(Observable o)",
83198      "type": "function",
83199      "desc": "Removes <b>all</b> added captures from the Observable."
83200     },
83201     {
83202      "name": "removeChild",
83203      "sig": "(Node node)",
83204      "type": "function",
83205      "desc": "Removes a child node from this node."
83206     },
83207     {
83208      "name": "removeListener",
83209      "sig": "(String eventName, Function handler, Object scope)",
83210      "type": "function",
83211      "desc": "Removes a listener"
83212     },
83213     {
83214      "name": "replaceChild",
83215      "sig": "(Node newChild, Node oldChild)",
83216      "type": "function",
83217      "desc": "Replaces one child node in this node with another."
83218     },
83219     {
83220      "name": "select",
83221      "sig": "()",
83222      "type": "function",
83223      "desc": "Triggers selection of this node"
83224     },
83225     {
83226      "name": "setText",
83227      "sig": "(String text)",
83228      "type": "function",
83229      "desc": "Sets the text for this node"
83230     },
83231     {
83232      "name": "sort",
83233      "sig": "(Function fn, Object scope)",
83234      "type": "function",
83235      "desc": "Sorts this nodes children using the supplied sort function"
83236     },
83237     {
83238      "name": "toggle",
83239      "sig": "()",
83240      "type": "function",
83241      "desc": "Toggles expanded/collapsed state of the node"
83242     },
83243     {
83244      "name": "un",
83245      "sig": "(String eventName, Function handler, Object scope)",
83246      "type": "function",
83247      "desc": "Removes a listener (shorthand for removeListener)"
83248     },
83249     {
83250      "name": "unselect",
83251      "sig": "()",
83252      "type": "function",
83253      "desc": "Triggers deselection of this node"
83254     }
83255    ]
83256   },
83257   "Roo.tree.TreeNodeUI": {
83258    "props": [],
83259    "events": [],
83260    "methods": []
83261   },
83262   "Roo.tree.TreePanel": {
83263    "props": [
83264     {
83265      "name": "rootVisible",
83266      "type": "Boolean",
83267      "desc": "false to hide the root node (defaults to true)",
83268      "memberOf": ""
83269     },
83270     {
83271      "name": "lines",
83272      "type": "Boolean",
83273      "desc": "false to disable tree lines (defaults to true)",
83274      "memberOf": ""
83275     },
83276     {
83277      "name": "enableDD",
83278      "type": "Boolean",
83279      "desc": "true to enable drag and drop",
83280      "memberOf": ""
83281     },
83282     {
83283      "name": "enableDrag",
83284      "type": "Boolean",
83285      "desc": "true to enable just drag",
83286      "memberOf": ""
83287     },
83288     {
83289      "name": "enableDrop",
83290      "type": "Boolean",
83291      "desc": "true to enable just drop",
83292      "memberOf": ""
83293     },
83294     {
83295      "name": "dragConfig",
83296      "type": "Object",
83297      "desc": "Custom config to pass to the {@link Roo.tree.TreeDragZone} instance",
83298      "memberOf": ""
83299     },
83300     {
83301      "name": "dropConfig",
83302      "type": "Object",
83303      "desc": "Custom config to pass to the {@link Roo.tree.TreeDropZone} instance",
83304      "memberOf": ""
83305     },
83306     {
83307      "name": "ddGroup",
83308      "type": "String",
83309      "desc": "The DD group this TreePanel belongs to",
83310      "memberOf": ""
83311     },
83312     {
83313      "name": "ddAppendOnly",
83314      "type": "String",
83315      "desc": "True if the tree should only allow append drops (use for trees which are sorted)",
83316      "memberOf": ""
83317     },
83318     {
83319      "name": "ddScroll",
83320      "type": "Boolean",
83321      "desc": "true to enable YUI body scrolling",
83322      "memberOf": ""
83323     },
83324     {
83325      "name": "containerScroll",
83326      "type": "Boolean",
83327      "desc": "true to register this container with ScrollManager",
83328      "memberOf": ""
83329     },
83330     {
83331      "name": "hlDrop",
83332      "type": "Boolean",
83333      "desc": "false to disable node highlight on drop (defaults to the value of Roo.enableFx)",
83334      "memberOf": ""
83335     },
83336     {
83337      "name": "hlColor",
83338      "type": "String",
83339      "desc": "The color of the node highlight (defaults to C3DAF9)",
83340      "memberOf": ""
83341     },
83342     {
83343      "name": "animate",
83344      "type": "Boolean",
83345      "desc": "true to enable animated expand/collapse (defaults to the value of Roo.enableFx)",
83346      "memberOf": ""
83347     },
83348     {
83349      "name": "singleExpand",
83350      "type": "Boolean",
83351      "desc": "true if only 1 node per branch may be expanded",
83352      "memberOf": ""
83353     },
83354     {
83355      "name": "selModel",
83356      "type": "Boolean",
83357      "desc": "A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})",
83358      "memberOf": ""
83359     },
83360     {
83361      "name": "loader",
83362      "type": "Boolean",
83363      "desc": "A TreeLoader for use with this TreePanel",
83364      "memberOf": ""
83365     },
83366     {
83367      "name": "editor",
83368      "type": "Object|Roo.tree.TreeEditor",
83369      "desc": "The TreeEditor or xtype data to display when clicked.",
83370      "memberOf": ""
83371     },
83372     {
83373      "name": "pathSeparator",
83374      "type": "String",
83375      "desc": "The token used to separate sub-paths in path strings (defaults to '/')",
83376      "memberOf": ""
83377     },
83378     {
83379      "name": "renderer",
83380      "type": "Function",
83381      "desc": "DEPRECATED - use TreeLoader:create event / Sets the rendering (formatting) function for the nodes. to return HTML markup for the tree view. The render function is called with  the following parameters:<ul><li>The {Object} The data for the node.</li></ul>",
83382      "memberOf": ""
83383     },
83384     {
83385      "name": "rendererTip",
83386      "type": "Function",
83387      "desc": "DEPRECATED - use TreeLoader:create event / Sets the rendering (formatting) function for the nodes hovertip to return HTML markup for the tree view. The render function is called with  the following parameters:<ul><li>The {Object} The data for the node.</li></ul>",
83388      "memberOf": ""
83389     },
83390     {
83391      "name": "listeners",
83392      "type": "Object",
83393      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
83394      "memberOf": "Roo.util.Observable"
83395     }
83396    ],
83397    "events": [
83398     {
83399      "name": "append",
83400      "sig": "function (tree, parent, node, index)\n{\n\n}",
83401      "type": "function",
83402      "desc": "Fires when a new child node is appended to a node in this tree."
83403     },
83404     {
83405      "name": "beforeappend",
83406      "sig": "function (tree, parent, node)\n{\n\n}",
83407      "type": "function",
83408      "desc": "Fires before a new child is appended to a node in this tree, return false to cancel the append."
83409     },
83410     {
83411      "name": "beforechildrenrendered",
83412      "sig": "function (node)\n{\n\n}",
83413      "type": "function",
83414      "desc": "Fires right before the child nodes for a node are rendered"
83415     },
83416     {
83417      "name": "beforeclick",
83418      "sig": "function (node, e)\n{\n\n}",
83419      "type": "function",
83420      "desc": "Fires before click processing on a node. Return false to cancel the default action."
83421     },
83422     {
83423      "name": "beforecollapse",
83424      "sig": "function (node, deep, anim)\n{\n\n}",
83425      "type": "function",
83426      "desc": "Fires before a node is collapsed, return false to cancel."
83427     },
83428     {
83429      "name": "beforeexpand",
83430      "sig": "function (node, deep, anim)\n{\n\n}",
83431      "type": "function",
83432      "desc": "Fires before a node is expanded, return false to cancel."
83433     },
83434     {
83435      "name": "beforeinsert",
83436      "sig": "function (tree, parent, node, refNode)\n{\n\n}",
83437      "type": "function",
83438      "desc": "Fires before a new child is inserted in a node in this tree, return false to cancel the insert."
83439     },
83440     {
83441      "name": "beforeload",
83442      "sig": "function (node)\n{\n\n}",
83443      "type": "function",
83444      "desc": "Fires before a node is loaded, return false to cancel"
83445     },
83446     {
83447      "name": "beforemove",
83448      "sig": "function (tree, node, oldParent, newParent, index)\n{\n\n}",
83449      "type": "function",
83450      "desc": "Fires before a node is moved to a new location in the tree. Return false to cancel the move."
83451     },
83452     {
83453      "name": "beforenodedrop",
83454      "sig": "function (dropEvent)\n{\n\n}",
83455      "type": "function",
83456      "desc": "Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent\npassed to handlers has the following properties:<br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>tree - The TreePanel</li>\n<li>target - The node being targeted for the drop</li>\n<li>data - The drag data from the drag source</li>\n<li>point - The point of the drop - append, above or below</li>\n<li>source - The drag source</li>\n<li>rawEvent - Raw mouse event</li>\n<li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)\nto be inserted by setting them on this object.</li>\n<li>cancel - Set this to true to cancel the drop.</li>\n</ul>"
83457     },
83458     {
83459      "name": "beforeremove",
83460      "sig": "function (tree, parent, node)\n{\n\n}",
83461      "type": "function",
83462      "desc": "Fires before a child is removed from a node in this tree, return false to cancel the remove."
83463     },
83464     {
83465      "name": "checkchange",
83466      "sig": "function (_self, checked)\n{\n\n}",
83467      "type": "function",
83468      "desc": "Fires when a node with a checkbox's checked property changes"
83469     },
83470     {
83471      "name": "click",
83472      "sig": "function (node, e)\n{\n\n}",
83473      "type": "function",
83474      "desc": "Fires when a node is clicked"
83475     },
83476     {
83477      "name": "collapse",
83478      "sig": "function (node)\n{\n\n}",
83479      "type": "function",
83480      "desc": "Fires when a node is collapsed"
83481     },
83482     {
83483      "name": "contextmenu",
83484      "sig": "function (node, e)\n{\n\n}",
83485      "type": "function",
83486      "desc": "Fires when a node is right clicked"
83487     },
83488     {
83489      "name": "dblclick",
83490      "sig": "function (node, e)\n{\n\n}",
83491      "type": "function",
83492      "desc": "Fires when a node is double clicked"
83493     },
83494     {
83495      "name": "disabledchange",
83496      "sig": "function (node, disabled)\n{\n\n}",
83497      "type": "function",
83498      "desc": "Fires when the disabled status of a node changes"
83499     },
83500     {
83501      "name": "dragdrop",
83502      "sig": "function (_self, node, dd, e)\n{\n\n}",
83503      "type": "function",
83504      "desc": "Fires when a dragged node is dropped on a valid DD target"
83505     },
83506     {
83507      "name": "enddrag",
83508      "sig": "function (_self, node, e)\n{\n\n}",
83509      "type": "function",
83510      "desc": "Fires when a drag operation is complete"
83511     },
83512     {
83513      "name": "expand",
83514      "sig": "function (node)\n{\n\n}",
83515      "type": "function",
83516      "desc": "Fires when a node is expanded"
83517     },
83518     {
83519      "name": "insert",
83520      "sig": "function (tree, parent, node, refNode)\n{\n\n}",
83521      "type": "function",
83522      "desc": "Fires when a new child node is inserted in a node in this tree."
83523     },
83524     {
83525      "name": "load",
83526      "sig": "function (node)\n{\n\n}",
83527      "type": "function",
83528      "desc": "Fires when a node is loaded"
83529     },
83530     {
83531      "name": "move",
83532      "sig": "function (tree, node, oldParent, newParent, index)\n{\n\n}",
83533      "type": "function",
83534      "desc": "Fires when a node is moved to a new location in the tree"
83535     },
83536     {
83537      "name": "nodedragover",
83538      "sig": "function (dragOverEvent)\n{\n\n}",
83539      "type": "function",
83540      "desc": "Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent\npassed to handlers has the following properties:<br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>tree - The TreePanel</li>\n<li>target - The node being targeted for the drop</li>\n<li>data - The drag data from the drag source</li>\n<li>point - The point of the drop - append, above or below</li>\n<li>source - The drag source</li>\n<li>rawEvent - Raw mouse event</li>\n<li>dropNode - Drop node(s) provided by the source.</li>\n<li>cancel - Set this to true to signal drop not allowed.</li>\n</ul>"
83541     },
83542     {
83543      "name": "nodedrop",
83544      "sig": "function (dropEvent)\n{\n\n}",
83545      "type": "function",
83546      "desc": "Fires after a DD object is dropped on a node in this tree. The dropEvent\npassed to handlers has the following properties:<br />\n<ul style=\"padding:5px;padding-left:16px;\">\n<li>tree - The TreePanel</li>\n<li>target - The node being targeted for the drop</li>\n<li>data - The drag data from the drag source</li>\n<li>point - The point of the drop - append, above or below</li>\n<li>source - The drag source</li>\n<li>rawEvent - Raw mouse event</li>\n<li>dropNode - Dropped node(s).</li>\n</ul>"
83547     },
83548     {
83549      "name": "remove",
83550      "sig": "function (tree, parent, node)\n{\n\n}",
83551      "type": "function",
83552      "desc": "Fires when a child node is removed from a node in this tree."
83553     },
83554     {
83555      "name": "startdrag",
83556      "sig": "function (_self, node, e)\n{\n\n}",
83557      "type": "function",
83558      "desc": "Fires when a node starts being dragged"
83559     },
83560     {
83561      "name": "textchange",
83562      "sig": "function (node, text, oldText)\n{\n\n}",
83563      "type": "function",
83564      "desc": "Fires when the text for a node is changed"
83565     }
83566    ],
83567    "methods": [
83568     {
83569      "name": "addEvents",
83570      "sig": "(Object object)",
83571      "type": "function",
83572      "desc": "Used to define events on this Observable"
83573     },
83574     {
83575      "name": "addListener",
83576      "sig": "(String eventName, Function handler, Object scope, Object options)",
83577      "type": "function",
83578      "desc": "Appends an event handler to this component"
83579     },
83580     {
83581      "name": "capture",
83582      "sig": "(Observable o, Function fn, Object scope)",
83583      "type": "function",
83584      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
83585     },
83586     {
83587      "name": "collapseAll",
83588      "sig": "()",
83589      "type": "function",
83590      "desc": "Collapse all nodes"
83591     },
83592     {
83593      "name": "expandAll",
83594      "sig": "()",
83595      "type": "function",
83596      "desc": "Expand all nodes"
83597     },
83598     {
83599      "name": "expandPath",
83600      "sig": "(String path, String attr, Function callback)",
83601      "type": "function",
83602      "desc": "Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}"
83603     },
83604     {
83605      "name": "fireEvent",
83606      "sig": "(String eventName, Object... args)",
83607      "type": "function",
83608      "desc": "Fires the specified event with the passed parameters (minus the event name)."
83609     },
83610     {
83611      "name": "getChecked",
83612      "sig": "(String attribute, TreeNode startNode)",
83613      "type": "function",
83614      "desc": "Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. \"id\")"
83615     },
83616     {
83617      "name": "getEl",
83618      "sig": "()",
83619      "type": "function",
83620      "desc": "Returns the container element for this TreePanel"
83621     },
83622     {
83623      "name": "getLoader",
83624      "sig": "()",
83625      "type": "function",
83626      "desc": "Returns the default TreeLoader for this TreePanel"
83627     },
83628     {
83629      "name": "getNodeById",
83630      "sig": "(String id)",
83631      "type": "function",
83632      "desc": "Gets a node in this tree by its id."
83633     },
83634     {
83635      "name": "getRootNode",
83636      "sig": "()",
83637      "type": "function",
83638      "desc": "Returns the root node for this tree."
83639     },
83640     {
83641      "name": "getSelectionModel",
83642      "sig": "()",
83643      "type": "function",
83644      "desc": "Returns the selection model used by this TreePanel"
83645     },
83646     {
83647      "name": "hasListener",
83648      "sig": "(String eventName)",
83649      "type": "function",
83650      "desc": "Checks to see if this object has any listeners for a specified event"
83651     },
83652     {
83653      "name": "on",
83654      "sig": "(String eventName, Function handler, Object scope, Object options)",
83655      "type": "function",
83656      "desc": "Appends an event handler to this element (shorthand for addListener)"
83657     },
83658     {
83659      "name": "purgeListeners",
83660      "sig": "()",
83661      "type": "function",
83662      "desc": "Removes all listeners for this object"
83663     },
83664     {
83665      "name": "releaseCapture",
83666      "sig": "(Observable o)",
83667      "type": "function",
83668      "desc": "Removes <b>all</b> added captures from the Observable."
83669     },
83670     {
83671      "name": "removeListener",
83672      "sig": "(String eventName, Function handler, Object scope)",
83673      "type": "function",
83674      "desc": "Removes a listener"
83675     },
83676     {
83677      "name": "render",
83678      "sig": "()",
83679      "type": "function",
83680      "desc": "Trigger rendering of this TreePanel"
83681     },
83682     {
83683      "name": "selectPath",
83684      "sig": "(String path, String attr, Function callback)",
83685      "type": "function",
83686      "desc": "Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}"
83687     },
83688     {
83689      "name": "setRootNode",
83690      "sig": "(Node node)",
83691      "type": "function",
83692      "desc": "Sets the root node for this tree."
83693     },
83694     {
83695      "name": "un",
83696      "sig": "(String eventName, Function handler, Object scope)",
83697      "type": "function",
83698      "desc": "Removes a listener (shorthand for removeListener)"
83699     }
83700    ]
83701   },
83702   "Roo.tree.TreeSorter": {
83703    "props": [
83704     {
83705      "name": "folderSort",
83706      "type": "Boolean",
83707      "desc": "True to sort leaf nodes under non leaf nodes",
83708      "memberOf": ""
83709     },
83710     {
83711      "name": "property",
83712      "type": "String",
83713      "desc": "The named attribute on the node to sort by (defaults to text)",
83714      "memberOf": ""
83715     },
83716     {
83717      "name": "dir",
83718      "type": "String",
83719      "desc": "The direction to sort (asc or desc) (defaults to asc)",
83720      "memberOf": ""
83721     },
83722     {
83723      "name": "leafAttr",
83724      "type": "String",
83725      "desc": "The attribute used to determine leaf nodes in folder sort (defaults to \"leaf\")",
83726      "memberOf": ""
83727     },
83728     {
83729      "name": "caseSensitive",
83730      "type": "Boolean",
83731      "desc": "true for case sensitive sort (defaults to false)",
83732      "memberOf": ""
83733     },
83734     {
83735      "name": "sortType",
83736      "type": "Function",
83737      "desc": "A custom \"casting\" function used to convert node values before sorting",
83738      "memberOf": ""
83739     }
83740    ],
83741    "events": [],
83742    "methods": []
83743   },
83744   "Roo.util": {
83745    "props": [],
83746    "events": [],
83747    "methods": []
83748   },
83749   "Roo.util.CSS": {
83750    "props": [],
83751    "events": [],
83752    "methods": [
83753     {
83754      "name": "createStyleSheet",
83755      "sig": "(String|Object cssText, String id)",
83756      "type": "function",
83757      "desc": "Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style\ntag and appended to the HEAD of the document."
83758     },
83759     {
83760      "name": "getRule",
83761      "sig": "(String/Array selector, Boolean refreshCache)",
83762      "type": "function",
83763      "desc": "Gets an an individual CSS rule by selector(s)"
83764     },
83765     {
83766      "name": "getRules",
83767      "sig": "(Boolean refreshCache)",
83768      "type": "function",
83769      "desc": "Gets all css rules for the document"
83770     },
83771     {
83772      "name": "refreshCache",
83773      "sig": "()",
83774      "type": "function",
83775      "desc": "Refresh the rule cache if you have dynamically added stylesheets"
83776     },
83777     {
83778      "name": "removeStyleSheet",
83779      "sig": "(String id)",
83780      "type": "function",
83781      "desc": "Removes a style or link tag by id"
83782     },
83783     {
83784      "name": "swapStyleSheet",
83785      "sig": "(String id, String url)",
83786      "type": "function",
83787      "desc": "Dynamically swaps an existing stylesheet reference for a new one"
83788     },
83789     {
83790      "name": "updateRule",
83791      "sig": "(String/Array selector, String property, String value)",
83792      "type": "function",
83793      "desc": "Updates a rule property"
83794     }
83795    ]
83796   },
83797   "Roo.util.ClickRepeater": {
83798    "props": [
83799     {
83800      "name": "el",
83801      "type": "String/HTMLElement/Element",
83802      "desc": "The element to act as a button.",
83803      "memberOf": ""
83804     },
83805     {
83806      "name": "delay",
83807      "type": "Number",
83808      "desc": "The initial delay before the repeating event begins firing.\nSimilar to an autorepeat key delay.",
83809      "memberOf": ""
83810     },
83811     {
83812      "name": "interval",
83813      "type": "Number",
83814      "desc": "The interval between firings of the \"click\" event. Default 10 ms.",
83815      "memberOf": ""
83816     },
83817     {
83818      "name": "pressClass",
83819      "type": "String",
83820      "desc": "A CSS class name to be applied to the element while pressed.",
83821      "memberOf": ""
83822     },
83823     {
83824      "name": "accelerate",
83825      "type": "Boolean",
83826      "desc": "True if autorepeating should start slowly and accelerate.\n          \"interval\" and \"delay\" are ignored. \"immediate\" is honored.",
83827      "memberOf": ""
83828     },
83829     {
83830      "name": "preventDefault",
83831      "type": "Boolean",
83832      "desc": "True to prevent the default click event",
83833      "memberOf": ""
83834     },
83835     {
83836      "name": "stopDefault",
83837      "type": "Boolean",
83838      "desc": "True to stop the default click event",
83839      "memberOf": ""
83840     },
83841     {
83842      "name": "listeners",
83843      "type": "Object",
83844      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
83845      "memberOf": "Roo.util.Observable"
83846     }
83847    ],
83848    "events": [
83849     {
83850      "name": "click",
83851      "sig": "function (_self)\n{\n\n}",
83852      "type": "function",
83853      "desc": "Fires on a specified interval during the time the element is pressed."
83854     },
83855     {
83856      "name": "mousedown",
83857      "sig": "function (_self)\n{\n\n}",
83858      "type": "function",
83859      "desc": "Fires when the mouse button is depressed."
83860     },
83861     {
83862      "name": "mouseup",
83863      "sig": "function (_self)\n{\n\n}",
83864      "type": "function",
83865      "desc": "Fires when the mouse key is released."
83866     }
83867    ],
83868    "methods": [
83869     {
83870      "name": "addEvents",
83871      "sig": "(Object object)",
83872      "type": "function",
83873      "desc": "Used to define events on this Observable"
83874     },
83875     {
83876      "name": "addListener",
83877      "sig": "(String eventName, Function handler, Object scope, Object options)",
83878      "type": "function",
83879      "desc": "Appends an event handler to this component"
83880     },
83881     {
83882      "name": "capture",
83883      "sig": "(Observable o, Function fn, Object scope)",
83884      "type": "function",
83885      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
83886     },
83887     {
83888      "name": "fireEvent",
83889      "sig": "(String eventName, Object... args)",
83890      "type": "function",
83891      "desc": "Fires the specified event with the passed parameters (minus the event name)."
83892     },
83893     {
83894      "name": "hasListener",
83895      "sig": "(String eventName)",
83896      "type": "function",
83897      "desc": "Checks to see if this object has any listeners for a specified event"
83898     },
83899     {
83900      "name": "on",
83901      "sig": "(String eventName, Function handler, Object scope, Object options)",
83902      "type": "function",
83903      "desc": "Appends an event handler to this element (shorthand for addListener)"
83904     },
83905     {
83906      "name": "purgeListeners",
83907      "sig": "()",
83908      "type": "function",
83909      "desc": "Removes all listeners for this object"
83910     },
83911     {
83912      "name": "releaseCapture",
83913      "sig": "(Observable o)",
83914      "type": "function",
83915      "desc": "Removes <b>all</b> added captures from the Observable."
83916     },
83917     {
83918      "name": "removeListener",
83919      "sig": "(String eventName, Function handler, Object scope)",
83920      "type": "function",
83921      "desc": "Removes a listener"
83922     },
83923     {
83924      "name": "un",
83925      "sig": "(String eventName, Function handler, Object scope)",
83926      "type": "function",
83927      "desc": "Removes a listener (shorthand for removeListener)"
83928     }
83929    ]
83930   },
83931   "Roo.util.DelayedTask": {
83932    "props": [],
83933    "events": [],
83934    "methods": []
83935   },
83936   "Roo.util.Format": {
83937    "props": [],
83938    "events": [],
83939    "methods": [
83940     {
83941      "name": "capitalize",
83942      "sig": "(String value)",
83943      "type": "function",
83944      "desc": "Converts the first character only of a string to upper case"
83945     },
83946     {
83947      "name": "date",
83948      "sig": "(Mixed value, String format)",
83949      "type": "function",
83950      "desc": "Parse a value into a formatted date using the specified format pattern."
83951     },
83952     {
83953      "name": "dateRenderer",
83954      "sig": "(String format)",
83955      "type": "function",
83956      "desc": "Returns a date rendering function that can be reused to apply a date format multiple times efficiently"
83957     },
83958     {
83959      "name": "ellipsis",
83960      "sig": "(String value, Number length)",
83961      "type": "function",
83962      "desc": "Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length"
83963     },
83964     {
83965      "name": "htmlDecode",
83966      "sig": "(String value)",
83967      "type": "function",
83968      "desc": "Convert certain characters (&, <, >, and ') from their HTML character equivalents."
83969     },
83970     {
83971      "name": "htmlEncode",
83972      "sig": "(String value)",
83973      "type": "function",
83974      "desc": "Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages."
83975     },
83976     {
83977      "name": "lowercase",
83978      "sig": "(String value)",
83979      "type": "function",
83980      "desc": "Converts a string to all lower case letters"
83981     },
83982     {
83983      "name": "number",
83984      "sig": "(Number/String value, Number decimals)",
83985      "type": "function",
83986      "desc": "Format a number\neventually this should probably emulate php's number_format"
83987     },
83988     {
83989      "name": "stripTags",
83990      "sig": "(Mixed value)",
83991      "type": "function",
83992      "desc": "Strips all HTML tags"
83993     },
83994     {
83995      "name": "substr",
83996      "sig": "(String value, Number start, Number length)",
83997      "type": "function",
83998      "desc": "Returns a substring from within an original string"
83999     },
84000     {
84001      "name": "toFixed",
84002      "sig": "(Number/String value, Number/String value)",
84003      "type": "function",
84004      "desc": "safer version of Math.toFixed..??/"
84005     },
84006     {
84007      "name": "trim",
84008      "sig": "(String value)",
84009      "type": "function",
84010      "desc": "Trims any whitespace from either side of a string"
84011     },
84012     {
84013      "name": "undef",
84014      "sig": "(Mixed value)",
84015      "type": "function",
84016      "desc": "Checks a reference and converts it to empty string if it is undefined"
84017     },
84018     {
84019      "name": "uppercase",
84020      "sig": "(String value)",
84021      "type": "function",
84022      "desc": "Converts a string to all upper case letters"
84023     },
84024     {
84025      "name": "usMoney",
84026      "sig": "(Number/String value)",
84027      "type": "function",
84028      "desc": "Format a number as US currency"
84029     }
84030    ]
84031   },
84032   "Roo.util.JSON": {
84033    "props": [],
84034    "events": [],
84035    "methods": []
84036   },
84037   "Roo.util.Math": {
84038    "props": [],
84039    "events": [],
84040    "methods": [
84041     {
84042      "name": "abs",
84043      "sig": "()",
84044      "type": "function",
84045      "desc": "abs number"
84046     },
84047     {
84048      "name": "add",
84049      "sig": "(Object|Number value)",
84050      "type": "function",
84051      "desc": "Add number"
84052     },
84053     {
84054      "name": "compare",
84055      "sig": "(Object|Number value)",
84056      "type": "function",
84057      "desc": "Compare number"
84058     },
84059     {
84060      "name": "function toString() {\n    [native code]\n}",
84061      "sig": "()",
84062      "type": "function",
84063      "desc": "value of the number"
84064     },
84065     {
84066      "name": "function valueOf() {\n    [native code]\n}",
84067      "sig": "()",
84068      "type": "function",
84069      "desc": "value of thenumber"
84070     },
84071     {
84072      "name": "intPart",
84073      "sig": "()",
84074      "type": "function",
84075      "desc": "integer part of number"
84076     },
84077     {
84078      "name": "mod",
84079      "sig": "(Object|Number value)",
84080      "type": "function",
84081      "desc": "Modulus number"
84082     },
84083     {
84084      "name": "multiply",
84085      "sig": "(Object|Number value)",
84086      "type": "function",
84087      "desc": "Mulitply number"
84088     },
84089     {
84090      "name": "negate",
84091      "sig": "()",
84092      "type": "function",
84093      "desc": "negate number"
84094     },
84095     {
84096      "name": "pow",
84097      "sig": "(Object|Number value)",
84098      "type": "function",
84099      "desc": "To Power number"
84100     },
84101     {
84102      "name": "set",
84103      "sig": "(Object|Number value)",
84104      "type": "function",
84105      "desc": "Set number"
84106     },
84107     {
84108      "name": "subtract",
84109      "sig": "(Object|Number value)",
84110      "type": "function",
84111      "desc": "Subtract number"
84112     },
84113     {
84114      "name": "toFixed",
84115      "sig": "()",
84116      "type": "function",
84117      "desc": "value of the number at a fixed precission"
84118     }
84119    ]
84120   },
84121   "Roo.util.MixedCollection": {
84122    "props": [
84123     {
84124      "name": "listeners",
84125      "type": "Object",
84126      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
84127      "memberOf": "Roo.util.Observable"
84128     }
84129    ],
84130    "events": [
84131     {
84132      "name": "add",
84133      "sig": "function (index, o, key)\n{\n\n}",
84134      "type": "function",
84135      "desc": "Fires when an item is added to the collection."
84136     },
84137     {
84138      "name": "clear",
84139      "sig": "function ()\n{\n\n}",
84140      "type": "function",
84141      "desc": "Fires when the collection is cleared."
84142     },
84143     {
84144      "name": "remove",
84145      "sig": "function (o, key)\n{\n\n}",
84146      "type": "function",
84147      "desc": "Fires when an item is removed from the collection."
84148     },
84149     {
84150      "name": "replace",
84151      "sig": "function (key, old, new)\n{\n\n}",
84152      "type": "function",
84153      "desc": "Fires when an item is replaced in the collection."
84154     }
84155    ],
84156    "methods": [
84157     {
84158      "name": "add",
84159      "sig": "(String key, Object o)",
84160      "type": "function",
84161      "desc": "Adds an item to the collection."
84162     },
84163     {
84164      "name": "addAll",
84165      "sig": "(Object/Array objs)",
84166      "type": "function",
84167      "desc": "Adds all elements of an Array or an Object to the collection."
84168     },
84169     {
84170      "name": "addEvents",
84171      "sig": "(Object object)",
84172      "type": "function",
84173      "desc": "Used to define events on this Observable"
84174     },
84175     {
84176      "name": "addListener",
84177      "sig": "(String eventName, Function handler, Object scope, Object options)",
84178      "type": "function",
84179      "desc": "Appends an event handler to this component"
84180     },
84181     {
84182      "name": "capture",
84183      "sig": "(Observable o, Function fn, Object scope)",
84184      "type": "function",
84185      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
84186     },
84187     {
84188      "name": "clear",
84189      "sig": "()",
84190      "type": "function",
84191      "desc": "Removes all items from the collection."
84192     },
84193     {
84194      "name": "clone",
84195      "sig": "()",
84196      "type": "function",
84197      "desc": "Creates a duplicate of this collection"
84198     },
84199     {
84200      "name": "contains",
84201      "sig": "(Object o)",
84202      "type": "function",
84203      "desc": "Returns true if the collection contains the passed Object as an item."
84204     },
84205     {
84206      "name": "containsKey",
84207      "sig": "(String key)",
84208      "type": "function",
84209      "desc": "Returns true if the collection contains the passed Object as a key."
84210     },
84211     {
84212      "name": "each",
84213      "sig": "(Function fn, Object scope)",
84214      "type": "function",
84215      "desc": "Executes the specified function once for every item in the collection, passing each\nitem as the first and only parameter. returning false from the function will stop the iteration."
84216     },
84217     {
84218      "name": "eachKey",
84219      "sig": "(Function fn, Object scope)",
84220      "type": "function",
84221      "desc": "Executes the specified function once for every key in the collection, passing each\nkey, and its associated item as the first two parameters."
84222     },
84223     {
84224      "name": "filter",
84225      "sig": "(String property, String/RegExp value)",
84226      "type": "function",
84227      "desc": "Filter the <i>objects</i> in this collection by a specific property. \nReturns a new collection that has been filtered."
84228     },
84229     {
84230      "name": "filterBy",
84231      "sig": "(Function fn, Object scope)",
84232      "type": "function",
84233      "desc": "Filter by a function. * Returns a new collection that has been filtered.\nThe passed function will be called with each \nobject in the collection. If the function returns true, the value is included \notherwise it is filtered."
84234     },
84235     {
84236      "name": "find",
84237      "sig": "(Function fn, Object scope)",
84238      "type": "function",
84239      "desc": "Returns the first item in the collection which elicits a true return value from the\npassed selection function."
84240     },
84241     {
84242      "name": "fireEvent",
84243      "sig": "(String eventName, Object... args)",
84244      "type": "function",
84245      "desc": "Fires the specified event with the passed parameters (minus the event name)."
84246     },
84247     {
84248      "name": "first",
84249      "sig": "()",
84250      "type": "function",
84251      "desc": "Returns the first item in the collection."
84252     },
84253     {
84254      "name": "get",
84255      "sig": "(String/Number key)",
84256      "type": "function",
84257      "desc": "Returns the item associated with the passed key or index."
84258     },
84259     {
84260      "name": "getCount",
84261      "sig": "()",
84262      "type": "function",
84263      "desc": "Returns the number of items in the collection."
84264     },
84265     {
84266      "name": "getKey",
84267      "sig": "( o)",
84268      "type": "function",
84269      "desc": "MixedCollection has a generic way to fetch keys if you implement getKey.\n<pre><code>\n// normal way\nvar mc = new Roo.util.MixedCollection();\nmc.add(someEl.dom.id, someEl);\nmc.add(otherEl.dom.id, otherEl);\n//and so on\n\n// using getKey\nvar mc = new Roo.util.MixedCollection();\nmc.getKey = function(el){\n   return el.dom.id;\n};\nmc.add(someEl);\nmc.add(otherEl);\n\n// or via the constructor\nvar mc = new Roo.util.MixedCollection(false, function(el){\n   return el.dom.id;\n});\nmc.add(someEl);\nmc.add(otherEl);\n</code></pre>"
84270     },
84271     {
84272      "name": "getRange",
84273      "sig": "(Number startIndex, Number endIndex)",
84274      "type": "function",
84275      "desc": "Returns a range of items in this collection"
84276     },
84277     {
84278      "name": "hasListener",
84279      "sig": "(String eventName)",
84280      "type": "function",
84281      "desc": "Checks to see if this object has any listeners for a specified event"
84282     },
84283     {
84284      "name": "indexOf",
84285      "sig": "(Object o)",
84286      "type": "function",
84287      "desc": "Returns index within the collection of the passed Object."
84288     },
84289     {
84290      "name": "indexOfKey",
84291      "sig": "(String key)",
84292      "type": "function",
84293      "desc": "Returns index within the collection of the passed key."
84294     },
84295     {
84296      "name": "insert",
84297      "sig": "(Number index, String key, Object o)",
84298      "type": "function",
84299      "desc": "Inserts an item at the specified index in the collection."
84300     },
84301     {
84302      "name": "item",
84303      "sig": "(String/Number key)",
84304      "type": "function",
84305      "desc": "Returns the item associated with the passed key OR index. Key has priority over index."
84306     },
84307     {
84308      "name": "itemAt",
84309      "sig": "(Number index)",
84310      "type": "function",
84311      "desc": "Returns the item at the specified index."
84312     },
84313     {
84314      "name": "key",
84315      "sig": "(String/Number key)",
84316      "type": "function",
84317      "desc": "Returns the item associated with the passed key."
84318     },
84319     {
84320      "name": "keySort",
84321      "sig": "(String direction, Function fn)",
84322      "type": "function",
84323      "desc": "Sorts this collection by keys"
84324     },
84325     {
84326      "name": "last",
84327      "sig": "()",
84328      "type": "function",
84329      "desc": "Returns the last item in the collection."
84330     },
84331     {
84332      "name": "on",
84333      "sig": "(String eventName, Function handler, Object scope, Object options)",
84334      "type": "function",
84335      "desc": "Appends an event handler to this element (shorthand for addListener)"
84336     },
84337     {
84338      "name": "purgeListeners",
84339      "sig": "()",
84340      "type": "function",
84341      "desc": "Removes all listeners for this object"
84342     },
84343     {
84344      "name": "releaseCapture",
84345      "sig": "(Observable o)",
84346      "type": "function",
84347      "desc": "Removes <b>all</b> added captures from the Observable."
84348     },
84349     {
84350      "name": "remove",
84351      "sig": "(Object o)",
84352      "type": "function",
84353      "desc": "Removed an item from the collection."
84354     },
84355     {
84356      "name": "removeAt",
84357      "sig": "(Number index)",
84358      "type": "function",
84359      "desc": "Remove an item from a specified index in the collection."
84360     },
84361     {
84362      "name": "removeKey",
84363      "sig": "(String key)",
84364      "type": "function",
84365      "desc": "Removed an item associated with the passed key fom the collection."
84366     },
84367     {
84368      "name": "removeListener",
84369      "sig": "(String eventName, Function handler, Object scope)",
84370      "type": "function",
84371      "desc": "Removes a listener"
84372     },
84373     {
84374      "name": "replace",
84375      "sig": "(String key,  o)",
84376      "type": "function",
84377      "desc": "Replaces an item in the collection."
84378     },
84379     {
84380      "name": "sort",
84381      "sig": "(String direction, Function fn)",
84382      "type": "function",
84383      "desc": "Sorts this collection with the passed comparison function"
84384     },
84385     {
84386      "name": "un",
84387      "sig": "(String eventName, Function handler, Object scope)",
84388      "type": "function",
84389      "desc": "Removes a listener (shorthand for removeListener)"
84390     }
84391    ]
84392   },
84393   "Roo.util.Observable": {
84394    "props": [
84395     {
84396      "name": "listeners",
84397      "type": "Object",
84398      "desc": "list of events and functions to call for this object, \nFor example :\n<pre><code>\n    listeners :  { \n       'click' : function(e) {\n           ..... \n        } ,\n        .... \n    } \n  </code></pre>",
84399      "memberOf": ""
84400     }
84401    ],
84402    "events": [],
84403    "methods": [
84404     {
84405      "name": "addEvents",
84406      "sig": "(Object object)",
84407      "type": "function",
84408      "desc": "Used to define events on this Observable"
84409     },
84410     {
84411      "name": "addListener",
84412      "sig": "(String eventName, Function handler, Object scope, Object options)",
84413      "type": "function",
84414      "desc": "Appends an event handler to this component"
84415     },
84416     {
84417      "name": "capture",
84418      "sig": "(Observable o, Function fn, Object scope)",
84419      "type": "function",
84420      "desc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire."
84421     },
84422     {
84423      "name": "fireEvent",
84424      "sig": "(String eventName, Object... args)",
84425      "type": "function",
84426      "desc": "Fires the specified event with the passed parameters (minus the event name)."
84427     },
84428     {
84429      "name": "hasListener",
84430      "sig": "(String eventName)",
84431      "type": "function",
84432      "desc": "Checks to see if this object has any listeners for a specified event"
84433     },
84434     {
84435      "name": "on",
84436      "sig": "(String eventName, Function handler, Object scope, Object options)",
84437      "type": "function",
84438      "desc": "Appends an event handler to this element (shorthand for addListener)"
84439     },
84440     {
84441      "name": "purgeListeners",
84442      "sig": "()",
84443      "type": "function",
84444      "desc": "Removes all listeners for this object"
84445     },
84446     {
84447      "name": "releaseCapture",
84448      "sig": "(Observable o)",
84449      "type": "function",
84450      "desc": "Removes <b>all</b> added captures from the Observable."
84451     },
84452     {
84453      "name": "removeListener",
84454      "sig": "(String eventName, Function handler, Object scope)",
84455      "type": "function",
84456      "desc": "Removes a listener"
84457     },
84458     {
84459      "name": "un",
84460      "sig": "(String eventName, Function handler, Object scope)",
84461      "type": "function",
84462      "desc": "Removes a listener (shorthand for removeListener)"
84463     }
84464    ]
84465   },
84466   "Roo.util.TextMetrics": {
84467    "props": [],
84468    "events": [],
84469    "methods": [
84470     {
84471      "name": "createInstance",
84472      "sig": "(String/HTMLElement el, Number fixedWidth)",
84473      "type": "function",
84474      "desc": "Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces\nthe overhead of multiple calls to initialize the style properties on each measurement."
84475     },
84476     {
84477      "name": "measure",
84478      "sig": "(String/HTMLElement el, String text, Number fixedWidth)",
84479      "type": "function",
84480      "desc": "Measures the size of the specified text"
84481     }
84482    ]
84483   },
84484   "Roo.util.TextMetrics.Instance": {
84485    "props": [],
84486    "events": [],
84487    "methods": []
84488   },
84489   "String": {
84490    "props": [],
84491    "events": [],
84492    "methods": [
84493     {
84494      "name": "escape",
84495      "sig": "(String string)",
84496      "type": "function",
84497      "desc": "Escapes the passed string for ' and \\"
84498     },
84499     {
84500      "name": "format",
84501      "sig": "(String string, String value1, String value2)",
84502      "type": "function",
84503      "desc": "Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each\ntoken must be unique, and must increment in the format {0}, {1}, etc.  Example usage:\n<pre><code>\nvar cls = 'my-class', text = 'Some text';\nvar s = String.format('<div class=\"{0}\">{1}</div>', cls, text);\n// s now contains the string: '<div class=\"my-class\">Some text</div>'\n</code></pre>"
84504     },
84505     {
84506      "name": "leftPad",
84507      "sig": "(String string, Number size, String char)",
84508      "type": "function",
84509      "desc": "Pads the left side of a string with a specified character.  This is especially useful\nfor normalizing number and date strings.  Example usage:\n<pre><code>\nvar s = String.leftPad('123', 5, '0');\n// s now contains the string: '00123'\n</code></pre>"
84510     },
84511     {
84512      "name": "toggle",
84513      "sig": "(String value, String other)",
84514      "type": "function",
84515      "desc": "Utility function that allows you to easily switch a string between two alternating values.  The passed value\nis compared to the current string, and if they are equal, the other value that was passed in is returned.  If\nthey are already different, the first value passed in is returned.  Note that this method returns the new value\nbut does not change the current string.\n<pre><code>\n// alternate sort directions\nsort = sort.toggle('ASC', 'DESC');\n\n// instead of conditional logic:\nsort = (sort == 'ASC' ? 'DESC' : 'ASC');\n</code></pre>"
84516     }
84517    ]
84518   },
84519   "this": {
84520    "props": [],
84521    "events": [],
84522    "methods": []
84523   }
84524  }
84525 }