Partial Fix #5654 - roojspacker - get it working as a doc tool...
[roojs1] / docs2 / symbols / Roo.GridPanel.json
1 {
2   "name" : "Roo.GridPanel",
3   "augments" : [
4     "Roo.ContentPanel",
5     "Roo.util.Observable"
6   ],
7   "desc" : "Create a new GridPanel.",
8   "isSingleton" : false,
9   "isStatic" : true,
10   "isBuiltin" : false,
11   "config" : [
12     {
13       "name" : "loadOnce",
14       "type" : "Boolean",
15       "desc" : "When used with {@link #url}, calls {@link #setUrl} with this value",
16       "memberOf" : "Roo.ContentPanel",
17       "values" : [
18       ]
19     },
20     {
21       "name" : "listeners",
22       "type" : "Object",
23       "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>",
24       "memberOf" : "Roo.util.Observable",
25       "values" : [
26       ]
27     },
28     {
29       "name" : "autoScroll",
30       "type" : "Boolean",
31       "desc" : "True to scroll overflow in this panel (use with {@link #fitToFrame})",
32       "memberOf" : "Roo.ContentPanel",
33       "values" : [
34       ]
35     },
36     {
37       "name" : "fitToFrame",
38       "type" : "Boolean",
39       "desc" : "True for this panel to adjust its size to fit when the region resizes  (defaults to false)",
40       "memberOf" : "Roo.ContentPanel",
41       "values" : [
42       ]
43     },
44     {
45       "name" : "background",
46       "type" : "Boolean",
47       "desc" : "True if the panel should not be activated when it is added (defaults to false)",
48       "memberOf" : "Roo.ContentPanel",
49       "values" : [
50       ]
51     },
52     {
53       "name" : "toolbar",
54       "type" : "Toolbar",
55       "desc" : "A toolbar for this panel",
56       "memberOf" : "Roo.ContentPanel",
57       "values" : [
58       ]
59     },
60     {
61       "name" : "region",
62       "type" : "String",
63       "desc" : "which region to put this panel on (when used with xtype constructors)",
64       "memberOf" : "Roo.ContentPanel",
65       "values" : [
66         "(center",
67         "north",
68         "south",
69         "east",
70         "west)"
71       ]
72     },
73     {
74       "name" : "content",
75       "type" : "String",
76       "desc" : "Raw content to fill content panel with (uses setContent on construction.)",
77       "memberOf" : "Roo.ContentPanel",
78       "values" : [
79       ]
80     },
81     {
82       "name" : "title",
83       "type" : "String",
84       "desc" : "The title for this panel",
85       "memberOf" : "Roo.ContentPanel",
86       "values" : [
87       ]
88     },
89     {
90       "name" : "autoCreate",
91       "type" : "Boolean/Object",
92       "desc" : "True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create",
93       "memberOf" : "Roo.ContentPanel",
94       "values" : [
95       ]
96     },
97     {
98       "name" : "fitContainer",
99       "type" : "Boolean",
100       "desc" : "When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)",
101       "memberOf" : "Roo.ContentPanel",
102       "values" : [
103       ]
104     },
105     {
106       "name" : "closable",
107       "type" : "Boolean",
108       "desc" : "True if the panel can be closed/removed",
109       "memberOf" : "Roo.ContentPanel",
110       "values" : [
111       ]
112     },
113     {
114       "name" : "params",
115       "type" : "String/Object",
116       "desc" : "When used with {@link #url}, calls {@link #setUrl} with this value",
117       "memberOf" : "Roo.ContentPanel",
118       "values" : [
119       ]
120     },
121     {
122       "name" : "adjustments",
123       "type" : "Array",
124       "desc" : "Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])",
125       "memberOf" : "Roo.ContentPanel",
126       "values" : [
127       ]
128     },
129     {
130       "name" : "url",
131       "type" : "String",
132       "desc" : "Calls {@link #setUrl} with this value",
133       "memberOf" : "Roo.ContentPanel",
134       "values" : [
135       ]
136     },
137     {
138       "name" : "resizeEl",
139       "type" : "String/HTMLElement/Element",
140       "desc" : "An element to resize if {@link #fitToFrame} is true (instead of this panel's element)",
141       "memberOf" : "Roo.ContentPanel",
142       "values" : [
143       ]
144     }
145   ],
146   "methods" : [
147     {
148       "name" : "getGrid",
149       "desc" : "Returns the grid for this panel",
150       "isStatic" : false,
151       "isConstructor" : false,
152       "isPrivate" : false,
153       "memberOf" : "Roo.GridPanel",
154       "example" : "",
155       "deprecated" : "",
156       "since" : "",
157       "see" : "",
158       "params" : [
159       ],
160       "returns" : [
161         {
162           "name" : "",
163           "type" : "Roo.grid.Grid",
164           "desc" : ""
165         }
166       ]
167     },
168     {
169       "name" : "load",
170       "desc" : "Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.",
171       "isStatic" : false,
172       "isConstructor" : false,
173       "isPrivate" : false,
174       "memberOf" : "Roo.ContentPanel",
175       "example" : "",
176       "deprecated" : "",
177       "since" : "",
178       "see" : "",
179       "params" : [
180         {
181           "name" : "url",
182           "type" : "Object/String/Function",
183           "desc" : "The url for this request or a function to call to get the url or a config object containing any of the following options:\n<pre><code>\npanel.load({\n    url: \"your-url.php\",\n    params: {param1: \"foo\", param2: \"bar\"}, // or a URL encoded string\n    callback: yourFunction,\n    scope: yourObject, //(optional scope)\n    discardUrl: false,\n    nocache: false,\n    text: \"Loading...\",\n    timeout: 30,\n    scripts: false\n});\n</code></pre>\nThe only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>\nare shorthand for <i>disableCaching</i>, <i>indicatorText</i> and <i>loadScripts</i> and are used to set their associated property on this panel UpdateManager instance.",
184           "isOptional" : false
185         },
186         {
187           "name" : "params",
188           "type" : "String/Object",
189           "desc" : "(optional) The parameters to pass as either a URL encoded string \"param1=1&amp;param2=2\" or an object {param1: 1, param2: 2}",
190           "isOptional" : false
191         },
192         {
193           "name" : "callback",
194           "type" : "Function",
195           "desc" : "(optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)",
196           "isOptional" : false
197         },
198         {
199           "name" : "discardUrl",
200           "type" : "Boolean",
201           "desc" : "(optional) By default when you execute an update the defaultUrl is changed to the last used URL. If true, it will not store the URL.",
202           "isOptional" : false
203         }
204       ],
205       "returns" : [
206         {
207           "name" : "",
208           "type" : "Roo.ContentPanel",
209           "desc" : "this"
210         }
211       ]
212     },
213     {
214       "name" : "getUpdateManager",
215       "desc" : "Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.",
216       "isStatic" : false,
217       "isConstructor" : false,
218       "isPrivate" : false,
219       "memberOf" : "Roo.ContentPanel",
220       "example" : "",
221       "deprecated" : "",
222       "since" : "",
223       "see" : "",
224       "params" : [
225       ],
226       "returns" : [
227         {
228           "name" : "",
229           "type" : "Roo.UpdateManager",
230           "desc" : "The UpdateManager"
231         }
232       ]
233     },
234     {
235       "name" : "isClosable",
236       "desc" : "Returns true is this panel was configured to be closable",
237       "isStatic" : false,
238       "isConstructor" : false,
239       "isPrivate" : false,
240       "memberOf" : "Roo.ContentPanel",
241       "example" : "",
242       "deprecated" : "",
243       "since" : "",
244       "see" : "",
245       "params" : [
246       ],
247       "returns" : [
248         {
249           "name" : "",
250           "type" : "Boolean",
251           "desc" : ""
252         }
253       ]
254     },
255     {
256       "name" : "destroy",
257       "desc" : "Destroys this panel",
258       "isStatic" : false,
259       "isConstructor" : false,
260       "isPrivate" : false,
261       "memberOf" : "Roo.ContentPanel",
262       "example" : "",
263       "deprecated" : "",
264       "since" : "",
265       "see" : "",
266       "params" : [
267       ],
268       "returns" : [
269       ]
270     },
271     {
272       "name" : "getEl",
273       "desc" : "Returns this panel's element - used by regiosn to add.",
274       "isStatic" : false,
275       "isConstructor" : false,
276       "isPrivate" : false,
277       "memberOf" : "Roo.ContentPanel",
278       "example" : "",
279       "deprecated" : "",
280       "since" : "",
281       "see" : "",
282       "params" : [
283       ],
284       "returns" : [
285         {
286           "name" : "",
287           "type" : "Roo.Element",
288           "desc" : ""
289         }
290       ]
291     },
292     {
293       "name" : "setContent",
294       "desc" : "Updates this panel's element",
295       "isStatic" : false,
296       "isConstructor" : false,
297       "isPrivate" : false,
298       "memberOf" : "Roo.ContentPanel",
299       "example" : "",
300       "deprecated" : "",
301       "since" : "",
302       "see" : "",
303       "params" : [
304         {
305           "name" : "content",
306           "type" : "String",
307           "desc" : "The new content",
308           "isOptional" : false
309         },
310         {
311           "name" : "loadScripts",
312           "type" : "Boolean",
313           "desc" : "(optional) true to look for and process scripts",
314           "isOptional" : false
315         }
316       ],
317       "returns" : [
318       ]
319     },
320     {
321       "name" : "getId",
322       "desc" : "Returns this panel's id",
323       "isStatic" : false,
324       "isConstructor" : false,
325       "isPrivate" : false,
326       "memberOf" : "Roo.ContentPanel",
327       "example" : "",
328       "deprecated" : "",
329       "since" : "",
330       "see" : "",
331       "params" : [
332       ],
333       "returns" : [
334         {
335           "name" : "",
336           "type" : "String",
337           "desc" : ""
338         }
339       ]
340     },
341     {
342       "name" : "addxtype",
343       "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>",
344       "isStatic" : false,
345       "isConstructor" : false,
346       "isPrivate" : false,
347       "memberOf" : "Roo.ContentPanel",
348       "example" : "",
349       "deprecated" : "",
350       "since" : "",
351       "see" : "",
352       "params" : [
353         {
354           "name" : "cfg",
355           "type" : "Object",
356           "desc" : "Xtype definition of item to add.",
357           "isOptional" : false
358         }
359       ],
360       "returns" : [
361       ]
362     },
363     {
364       "name" : "refresh",
365       "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.",
366       "isStatic" : false,
367       "isConstructor" : false,
368       "isPrivate" : false,
369       "memberOf" : "Roo.ContentPanel",
370       "example" : "",
371       "deprecated" : "",
372       "since" : "",
373       "see" : "",
374       "params" : [
375       ],
376       "returns" : [
377       ]
378     },
379     {
380       "name" : "getTitle",
381       "desc" : "Returns this panel's title",
382       "isStatic" : false,
383       "isConstructor" : false,
384       "isPrivate" : false,
385       "memberOf" : "Roo.ContentPanel",
386       "example" : "",
387       "deprecated" : "",
388       "since" : "",
389       "see" : "",
390       "params" : [
391       ],
392       "returns" : [
393         {
394           "name" : "",
395           "type" : "String",
396           "desc" : ""
397         }
398       ]
399     },
400     {
401       "name" : "setTitle",
402       "desc" : "Set this panel's title",
403       "isStatic" : false,
404       "isConstructor" : false,
405       "isPrivate" : false,
406       "memberOf" : "Roo.ContentPanel",
407       "example" : "",
408       "deprecated" : "",
409       "since" : "",
410       "see" : "",
411       "params" : [
412         {
413           "name" : "title",
414           "type" : "String",
415           "desc" : "",
416           "isOptional" : false
417         }
418       ],
419       "returns" : [
420       ]
421     },
422     {
423       "name" : "getToolbar",
424       "desc" : "Returns the toolbar for this Panel if one was configured.",
425       "isStatic" : false,
426       "isConstructor" : false,
427       "isPrivate" : false,
428       "memberOf" : "Roo.ContentPanel",
429       "example" : "",
430       "deprecated" : "",
431       "since" : "",
432       "see" : "",
433       "params" : [
434       ],
435       "returns" : [
436         {
437           "name" : "",
438           "type" : "Roo.Toolbar",
439           "desc" : ""
440         }
441       ]
442     },
443     {
444       "name" : "setUrl",
445       "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.",
446       "isStatic" : false,
447       "isConstructor" : false,
448       "isPrivate" : false,
449       "memberOf" : "Roo.ContentPanel",
450       "example" : "",
451       "deprecated" : "",
452       "since" : "",
453       "see" : "",
454       "params" : [
455         {
456           "name" : "url",
457           "type" : "String/Function",
458           "desc" : "The URL to load the content from or a function to call to get the URL",
459           "isOptional" : false
460         },
461         {
462           "name" : "params",
463           "type" : "String/Object",
464           "desc" : "(optional) The string params for the update call or an object of the params. See {@link Roo.UpdateManager#update} for more details. (Defaults to null)",
465           "isOptional" : false
466         },
467         {
468           "name" : "loadOnce",
469           "type" : "Boolean",
470           "desc" : "(optional) Whether to only load the content once. If this is false it makes the Ajax call every time this panel is activated. (Defaults to false)",
471           "isOptional" : false
472         }
473       ],
474       "returns" : [
475         {
476           "name" : "",
477           "type" : "Roo.UpdateManager",
478           "desc" : "The UpdateManager"
479         }
480       ]
481     },
482     {
483       "name" : "purgeListeners",
484       "desc" : "Removes all listeners for this object",
485       "isStatic" : false,
486       "isConstructor" : false,
487       "isPrivate" : false,
488       "memberOf" : "Roo.util.Observable",
489       "example" : "",
490       "deprecated" : "",
491       "since" : "",
492       "see" : "",
493       "params" : [
494       ],
495       "returns" : [
496       ]
497     },
498     {
499       "name" : "on",
500       "desc" : "Appends an event handler to this element (shorthand for addListener)",
501       "isStatic" : false,
502       "isConstructor" : false,
503       "isPrivate" : false,
504       "memberOf" : "Roo.util.Observable",
505       "example" : "",
506       "deprecated" : "",
507       "since" : "",
508       "see" : "",
509       "params" : [
510         {
511           "name" : "eventName",
512           "type" : "String",
513           "desc" : "The type of event to listen for",
514           "isOptional" : false
515         },
516         {
517           "name" : "handler",
518           "type" : "Function",
519           "desc" : "The method the event invokes",
520           "isOptional" : false
521         },
522         {
523           "name" : "scope",
524           "type" : "Object",
525           "desc" : "(optional) The scope in which to execute the handler\nfunction. The handler function's \"this\" context.",
526           "isOptional" : false
527         },
528         {
529           "name" : "options",
530           "type" : "Object",
531           "desc" : "(optional)",
532           "isOptional" : false
533         }
534       ],
535       "returns" : [
536       ]
537     },
538     {
539       "name" : "un",
540       "desc" : "Removes a listener (shorthand for removeListener)",
541       "isStatic" : false,
542       "isConstructor" : false,
543       "isPrivate" : false,
544       "memberOf" : "Roo.util.Observable",
545       "example" : "",
546       "deprecated" : "",
547       "since" : "",
548       "see" : "",
549       "params" : [
550         {
551           "name" : "eventName",
552           "type" : "String",
553           "desc" : "The type of event to listen for",
554           "isOptional" : false
555         },
556         {
557           "name" : "handler",
558           "type" : "Function",
559           "desc" : "The handler to remove",
560           "isOptional" : false
561         },
562         {
563           "name" : "scope",
564           "type" : "Object",
565           "desc" : "(optional) The scope (this object) for the handler",
566           "isOptional" : false
567         }
568       ],
569       "returns" : [
570       ]
571     },
572     {
573       "name" : "addEvents",
574       "desc" : "Used to define events on this Observable",
575       "isStatic" : false,
576       "isConstructor" : false,
577       "isPrivate" : false,
578       "memberOf" : "Roo.util.Observable",
579       "example" : "",
580       "deprecated" : "",
581       "since" : "",
582       "see" : "",
583       "params" : [
584         {
585           "name" : "object",
586           "type" : "Object",
587           "desc" : "The object with the events defined",
588           "isOptional" : false
589         }
590       ],
591       "returns" : [
592       ]
593     },
594     {
595       "name" : "releaseCapture",
596       "desc" : "Removes <b>all</b> added captures from the Observable.",
597       "isStatic" : true,
598       "isConstructor" : false,
599       "isPrivate" : false,
600       "memberOf" : "Roo.util.Observable",
601       "example" : "",
602       "deprecated" : "",
603       "since" : "",
604       "see" : "",
605       "params" : [
606         {
607           "name" : "o",
608           "type" : "Observable",
609           "desc" : "The Observable to release",
610           "isOptional" : false
611         }
612       ],
613       "returns" : [
614       ]
615     },
616     {
617       "name" : "removeListener",
618       "desc" : "Removes a listener",
619       "isStatic" : false,
620       "isConstructor" : false,
621       "isPrivate" : false,
622       "memberOf" : "Roo.util.Observable",
623       "example" : "",
624       "deprecated" : "",
625       "since" : "",
626       "see" : "",
627       "params" : [
628         {
629           "name" : "eventName",
630           "type" : "String",
631           "desc" : "The type of event to listen for",
632           "isOptional" : false
633         },
634         {
635           "name" : "handler",
636           "type" : "Function",
637           "desc" : "The handler to remove",
638           "isOptional" : false
639         },
640         {
641           "name" : "scope",
642           "type" : "Object",
643           "desc" : "(optional) The scope (this object) for the handler",
644           "isOptional" : false
645         }
646       ],
647       "returns" : [
648       ]
649     },
650     {
651       "name" : "fireEvent",
652       "desc" : "Fires the specified event with the passed parameters (minus the event name).",
653       "isStatic" : false,
654       "isConstructor" : false,
655       "isPrivate" : false,
656       "memberOf" : "Roo.util.Observable",
657       "example" : "",
658       "deprecated" : "",
659       "since" : "",
660       "see" : "",
661       "params" : [
662         {
663           "name" : "eventName",
664           "type" : "String",
665           "desc" : "",
666           "isOptional" : false
667         },
668         {
669           "name" : "args",
670           "type" : "Object...",
671           "desc" : "Variable number of parameters are passed to handlers",
672           "isOptional" : false
673         }
674       ],
675       "returns" : [
676         {
677           "name" : "",
678           "type" : "Boolean",
679           "desc" : "returns false if any of the handlers return false otherwise it returns true"
680         }
681       ]
682     },
683     {
684       "name" : "hasListener",
685       "desc" : "Checks to see if this object has any listeners for a specified event",
686       "isStatic" : false,
687       "isConstructor" : false,
688       "isPrivate" : false,
689       "memberOf" : "Roo.util.Observable",
690       "example" : "",
691       "deprecated" : "",
692       "since" : "",
693       "see" : "",
694       "params" : [
695         {
696           "name" : "eventName",
697           "type" : "String",
698           "desc" : "The name of the event to check for",
699           "isOptional" : false
700         }
701       ],
702       "returns" : [
703         {
704           "name" : "",
705           "type" : "Boolean",
706           "desc" : "True if the event is being listened for, else false"
707         }
708       ]
709     },
710     {
711       "name" : "capture",
712       "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.",
713       "isStatic" : true,
714       "isConstructor" : false,
715       "isPrivate" : false,
716       "memberOf" : "Roo.util.Observable",
717       "example" : "",
718       "deprecated" : "",
719       "since" : "",
720       "see" : "",
721       "params" : [
722         {
723           "name" : "o",
724           "type" : "Observable",
725           "desc" : "The Observable to capture",
726           "isOptional" : false
727         },
728         {
729           "name" : "fn",
730           "type" : "Function",
731           "desc" : "The function to call",
732           "isOptional" : false
733         },
734         {
735           "name" : "scope",
736           "type" : "Object",
737           "desc" : "(optional) The scope (this object) for the fn",
738           "isOptional" : false
739         }
740       ],
741       "returns" : [
742       ]
743     },
744     {
745       "name" : "addListener",
746       "desc" : "Appends an event handler to this component",
747       "isStatic" : false,
748       "isConstructor" : false,
749       "isPrivate" : false,
750       "memberOf" : "Roo.util.Observable",
751       "example" : "",
752       "deprecated" : "",
753       "since" : "",
754       "see" : "",
755       "params" : [
756         {
757           "name" : "eventName",
758           "type" : "String",
759           "desc" : "The type of event to listen for",
760           "isOptional" : false
761         },
762         {
763           "name" : "handler",
764           "type" : "Function",
765           "desc" : "The method the event invokes",
766           "isOptional" : false
767         },
768         {
769           "name" : "scope",
770           "type" : "Object",
771           "desc" : "(optional) The scope in which to execute the handler\nfunction. The handler function's \"this\" context.",
772           "isOptional" : false
773         },
774         {
775           "name" : "options",
776           "type" : "Object",
777           "desc" : "(optional) An object containing handler configuration\nproperties. This may contain any of the following properties:<ul>\n<li>scope {Object} The scope in which to execute the handler function. The handler function's \"this\" context.</li>\n<li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>\n<li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>\n<li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed\nby the specified number of milliseconds. If the event fires again within that time, the original\nhandler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>\n</ul><br>\n<p>\n<b>Combining Options</b><br>\nUsing the options argument, it is possible to combine different types of listeners:<br>\n<br>\nA normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)\n\t\t<pre><code>\n\t\tel.on('click', this.onClick, this, {\n \t\t\tsingle: true,\n    \t\tdelay: 100,\n    \t\tforumId: 4\n\t\t});\n\t\t</code></pre>\n<p>\n<b>Attaching multiple handlers in 1 call</b><br>\nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple handlers.\n<pre><code>\n\t\tel.on({\n\t\t\t'click': {\n        \t\tfn: this.onClick,\n        \t\tscope: this,\n        \t\tdelay: 100\n    \t\t}, \n    \t\t'mouseover': {\n        \t\tfn: this.onMouseOver,\n        \t\tscope: this\n    \t\t},\n    \t\t'mouseout': {\n        \t\tfn: this.onMouseOut,\n        \t\tscope: this\n    \t\t}\n\t\t});\n\t\t</code></pre>\n<p>\nOr a shorthand syntax which passes the same scope object to all handlers:\n     \t<pre><code>\n\t\tel.on({\n\t\t\t'click': this.onClick,\n    \t\t'mouseover': this.onMouseOver,\n    \t\t'mouseout': this.onMouseOut,\n    \t\tscope: this\n\t\t});\n\t\t</code></pre>",
778           "isOptional" : false
779         }
780       ],
781       "returns" : [
782       ]
783     }
784   ],
785   "events" : [
786     {
787       "name" : "deactivate",
788       "desc" : "Fires when this panel is activated.",
789       "memberOf" : "Roo.ContentPanel",
790       "example" : "",
791       "deprecated" : "",
792       "since" : "",
793       "see" : "",
794       "params" : [
795         {
796           "name" : "this",
797           "type" : "Roo.ContentPanel",
798           "desc" : "",
799           "isOptional" : false
800         }
801       ],
802       "returns" : [
803       ]
804     },
805     {
806       "name" : "resize",
807       "desc" : "Fires when this panel is resized if fitToFrame is true.",
808       "memberOf" : "Roo.ContentPanel",
809       "example" : "",
810       "deprecated" : "",
811       "since" : "",
812       "see" : "",
813       "params" : [
814         {
815           "name" : "this",
816           "type" : "Roo.ContentPanel",
817           "desc" : "",
818           "isOptional" : false
819         },
820         {
821           "name" : "width",
822           "type" : "Number",
823           "desc" : "The width after any component adjustments",
824           "isOptional" : false
825         },
826         {
827           "name" : "height",
828           "type" : "Number",
829           "desc" : "The height after any component adjustments",
830           "isOptional" : false
831         }
832       ],
833       "returns" : [
834       ]
835     },
836     {
837       "name" : "render",
838       "desc" : "Fires when this tab is created",
839       "memberOf" : "Roo.ContentPanel",
840       "example" : "",
841       "deprecated" : "",
842       "since" : "",
843       "see" : "",
844       "params" : [
845         {
846           "name" : "this",
847           "type" : "Roo.ContentPanel",
848           "desc" : "",
849           "isOptional" : false
850         }
851       ],
852       "returns" : [
853       ]
854     },
855     {
856       "name" : "activate",
857       "desc" : "Fires when this panel is activated.",
858       "memberOf" : "Roo.ContentPanel",
859       "example" : "",
860       "deprecated" : "",
861       "since" : "",
862       "see" : "",
863       "params" : [
864         {
865           "name" : "this",
866           "type" : "Roo.ContentPanel",
867           "desc" : "",
868           "isOptional" : false
869         }
870       ],
871       "returns" : [
872       ]
873     }
874   ]
875 }