860a8aea9e8bf9eb2d61c2a4117b314eca4f41e6
[roojs1] / docs / symbols / Roo.Resizable.json
1 {
2   "name" : "Roo.Resizable",
3   "augments" : [
4     "Roo.util.Observable"
5   ],
6   "childClasses" : {  },
7   "tree_children" : [],
8   "tree_parent" : [],
9   "desc" : "<p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element\nand positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap\nthe textarea in a div and set \"resizeChild\" to true (or to the id of the element), <b>or</b> set wrap:true in your config and\nthe element will be wrapped for you automatically.</p>\n<p>Here is the list of valid resize handles:</p>\n<pre>\nValue   Description\n------  -------------------\n 'n'     north\n 's'     south\n 'e'     east\n 'w'     west\n 'nw'    northwest\n 'sw'    southwest\n 'se'    southeast\n 'ne'    northeast\n 'hd'    horizontal drag\n 'all'   all\n</pre>\n<p>Here's an example showing the creation of a typical Resizable:</p>\n<pre><code>\nvar resizer = new Roo.Resizable(\"element-id\", {\n    handles: 'all',\n    minWidth: 200,\n    minHeight: 100,\n    maxWidth: 500,\n    maxHeight: 400,\n    pinned: true\n});\nresizer.on(\"resize\", myHandler);\n</code></pre>\n<p>To hide a particular handle, set its display to none in CSS, or through script:<br>\nresizer.east.setDisplayed(false);</p>",
10   "isSingleton" : false,
11   "isStatic" : false,
12   "isBuiltin" : false,
13   "isAbstract" : false,
14   "isBuilderTop" : false,
15   "memberOf" : "Resizable",
16   "example" : "",
17   "deprecated" : "",
18   "since" : "",
19   "see" : "",
20   "params" : [
21     {
22       "name" : "el",
23       "type" : "String/HTMLElement/Roo.Element",
24       "desc" : "The id or element to resize",
25       "isOptional" : false
26     },
27     {
28       "name" : "config",
29       "type" : "Object",
30       "desc" : "configuration options",
31       "isOptional" : false
32     }
33   ],
34   "returns" : [],
35   "throws" : "",
36   "requires" : "",
37   "config" : [
38     {
39       "name" : "easing",
40       "type" : "String",
41       "desc" : "Animation easing if animate = true (defaults to 'easingOutStrong')",
42       "memberOf" : "Roo.Resizable"
43     },
44     {
45       "name" : "listeners",
46       "type" : "Object",
47       "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>",
48       "memberOf" : "Roo.util.Observable"
49     },
50     {
51       "name" : "maxWidth",
52       "type" : "Number",
53       "desc" : "The maximum width for the element (defaults to 10000)",
54       "memberOf" : "Roo.Resizable"
55     },
56     {
57       "name" : "minWidth",
58       "type" : "Number",
59       "desc" : "The minimum width for the element (defaults to 5)",
60       "memberOf" : "Roo.Resizable"
61     },
62     {
63       "name" : "dynamic",
64       "type" : "Boolean",
65       "desc" : "True to resize the element while dragging instead of using a proxy (defaults to false)",
66       "memberOf" : "Roo.Resizable"
67     },
68     {
69       "name" : "pinned",
70       "type" : "Boolean",
71       "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)",
72       "memberOf" : "Roo.Resizable"
73     },
74     {
75       "name" : "enabled",
76       "type" : "Boolean",
77       "desc" : "False to disable resizing (defaults to true)",
78       "memberOf" : "Roo.Resizable"
79     },
80     {
81       "name" : "handles",
82       "type" : "String",
83       "desc" : "String consisting of the resize handles to display (defaults to undefined)",
84       "memberOf" : "Roo.Resizable"
85     },
86     {
87       "name" : "preserveRatio",
88       "type" : "Boolean",
89       "desc" : "True to preserve the original ratio between height and width during resize (defaults to false)",
90       "memberOf" : "Roo.Resizable"
91     },
92     {
93       "name" : "minHeight",
94       "type" : "Number",
95       "desc" : "The minimum height for the element (defaults to 5)",
96       "memberOf" : "Roo.Resizable"
97     },
98     {
99       "name" : "maxHeight",
100       "type" : "Number",
101       "desc" : "The maximum height for the element (defaults to 10000)",
102       "memberOf" : "Roo.Resizable"
103     },
104     {
105       "name" : "widthIncrement",
106       "type" : "Number",
107       "desc" : "The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)",
108       "memberOf" : "Roo.Resizable"
109     },
110     {
111       "name" : "resizeChild",
112       "type" : "Boolean/String/Element",
113       "desc" : "True to resize the first child, or id/element to resize (defaults to false)",
114       "memberOf" : "Roo.Resizable"
115     },
116     {
117       "name" : "width",
118       "type" : "Number",
119       "desc" : "The width of the element in pixels (defaults to null)",
120       "memberOf" : "Roo.Resizable"
121     },
122     {
123       "name" : "transparent",
124       "type" : "Boolean",
125       "desc" : "True for transparent handles. This is only applied at config time. (defaults to false)",
126       "memberOf" : "Roo.Resizable"
127     },
128     {
129       "name" : "minX",
130       "type" : "Number",
131       "desc" : "The minimum allowed page X for the element (only used for west resizing, defaults to 0)",
132       "memberOf" : "Roo.Resizable"
133     },
134     {
135       "name" : "constrainTo",
136       "type" : "String/HTMLElement/Element",
137       "desc" : "Constrain the resize to a particular element",
138       "memberOf" : "Roo.Resizable"
139     },
140     {
141       "name" : "disableTrackOver",
142       "type" : "Boolean",
143       "desc" : "True to disable mouse tracking. This is only applied at config time. (defaults to false)",
144       "memberOf" : "Roo.Resizable"
145     },
146     {
147       "name" : "minY",
148       "type" : "Number",
149       "desc" : "The minimum allowed page Y for the element (only used for north resizing, defaults to 0)",
150       "memberOf" : "Roo.Resizable"
151     },
152     {
153       "name" : "adjustments",
154       "type" : "Array/String",
155       "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])",
156       "memberOf" : "Roo.Resizable"
157     },
158     {
159       "name" : "wrap",
160       "type" : "Boolean",
161       "desc" : "True to wrap an element with a div if needed (required for textareas and images, defaults to false)",
162       "memberOf" : "Roo.Resizable"
163     },
164     {
165       "name" : "height",
166       "type" : "Number",
167       "desc" : "The height of the element in pixels (defaults to null)",
168       "memberOf" : "Roo.Resizable"
169     },
170     {
171       "name" : "duration",
172       "type" : "Number",
173       "desc" : "Animation duration if animate = true (defaults to .35)",
174       "memberOf" : "Roo.Resizable"
175     },
176     {
177       "name" : "animate",
178       "type" : "Boolean",
179       "desc" : "True to animate the resize (not compatible with dynamic sizing, defaults to false)",
180       "memberOf" : "Roo.Resizable"
181     },
182     {
183       "name" : "multiDirectional",
184       "type" : "Boolean",
185       "desc" : "<b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated\nin favor of the handles config option (defaults to false)",
186       "memberOf" : "Roo.Resizable"
187     },
188     {
189       "name" : "heightIncrement",
190       "type" : "Number",
191       "desc" : "The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)",
192       "memberOf" : "Roo.Resizable"
193     },
194     {
195       "name" : "draggable",
196       "type" : "Boolean",
197       "desc" : "Convenience to initialize drag drop (defaults to false)",
198       "memberOf" : "Roo.Resizable"
199     },
200     {
201       "name" : "resizeRegion",
202       "type" : "Roo.lib.Region",
203       "desc" : "Constrain the resize to a particular region",
204       "memberOf" : "Roo.Resizable"
205     }
206   ],
207   "methods" : [
208     {
209       "name" : "getEl",
210       "type" : "function",
211       "desc" : "Returns the element this component is bound to.",
212       "sig" : "()\n{\n\n}",
213       "static" : false,
214       "memberOf" : "",
215       "isStatic" : false,
216       "isConstructor" : false,
217       "isPrivate" : false,
218       "example" : "",
219       "deprecated" : "",
220       "since" : "",
221       "see" : "",
222       "exceptions" : "",
223       "requires" : "",
224       "params" : [],
225       "returns" : [
226         {
227           "name" : "",
228           "type" : "Roo.Element",
229           "desc" : ""
230         }
231       ]
232     },
233     {
234       "name" : "getResizeChild",
235       "type" : "function",
236       "desc" : "Returns the resizeChild element (or null).",
237       "sig" : "()\n{\n\n}",
238       "static" : false,
239       "memberOf" : "",
240       "isStatic" : false,
241       "isConstructor" : false,
242       "isPrivate" : false,
243       "example" : "",
244       "deprecated" : "",
245       "since" : "",
246       "see" : "",
247       "exceptions" : "",
248       "requires" : "",
249       "params" : [],
250       "returns" : [
251         {
252           "name" : "",
253           "type" : "Roo.Element",
254           "desc" : ""
255         }
256       ]
257     },
258     {
259       "name" : "destroy",
260       "type" : "function",
261       "desc" : "Destroys this resizable. If the element was wrapped and\nremoveEl is not true then the element remains.",
262       "sig" : "(removeEl)",
263       "static" : false,
264       "memberOf" : "",
265       "isStatic" : false,
266       "isConstructor" : false,
267       "isPrivate" : false,
268       "example" : "",
269       "deprecated" : "",
270       "since" : "",
271       "see" : "",
272       "exceptions" : "",
273       "requires" : "",
274       "params" : [
275         {
276           "name" : "removeEl",
277           "type" : "Boolean",
278           "desc" : "(optional) true to remove the element from the DOM",
279           "isOptional" : false
280         }
281       ],
282       "returns" : []
283     },
284     {
285       "name" : "resizeTo",
286       "type" : "function",
287       "desc" : "Perform a manual resize",
288       "sig" : "(width, height)",
289       "static" : false,
290       "memberOf" : "",
291       "isStatic" : false,
292       "isConstructor" : false,
293       "isPrivate" : false,
294       "example" : "",
295       "deprecated" : "",
296       "since" : "",
297       "see" : "",
298       "exceptions" : "",
299       "requires" : "",
300       "params" : [
301         {
302           "name" : "width",
303           "type" : "Number",
304           "desc" : "",
305           "isOptional" : false
306         },
307         {
308           "name" : "height",
309           "type" : "Number",
310           "desc" : "",
311           "isOptional" : false
312         }
313       ],
314       "returns" : []
315     },
316     {
317       "name" : "purgeListeners",
318       "type" : "function",
319       "desc" : "Removes all listeners for this object",
320       "sig" : "()\n{\n\n}",
321       "static" : false,
322       "memberOf" : "Roo.util.Observable",
323       "isStatic" : false,
324       "isConstructor" : false,
325       "isPrivate" : false,
326       "example" : "",
327       "deprecated" : "",
328       "since" : "",
329       "see" : "",
330       "exceptions" : "",
331       "requires" : "",
332       "params" : [],
333       "returns" : []
334     },
335     {
336       "name" : "on",
337       "type" : "function",
338       "desc" : "Appends an event handler to this element (shorthand for addListener)",
339       "sig" : "(eventName, handler, scope, options)",
340       "static" : false,
341       "memberOf" : "Roo.util.Observable",
342       "isStatic" : false,
343       "isConstructor" : false,
344       "isPrivate" : false,
345       "example" : "",
346       "deprecated" : "",
347       "since" : "",
348       "see" : "",
349       "exceptions" : "",
350       "requires" : "",
351       "params" : [
352         {
353           "name" : "eventName",
354           "type" : "String",
355           "desc" : "The type of event to listen for",
356           "isOptional" : false
357         },
358         {
359           "name" : "handler",
360           "type" : "Function",
361           "desc" : "The method the event invokes",
362           "isOptional" : false
363         },
364         {
365           "name" : "scope",
366           "type" : "Object",
367           "desc" : "(optional) The scope in which to execute the handler\nfunction. The handler function's \"this\" context.",
368           "isOptional" : false
369         },
370         {
371           "name" : "options",
372           "type" : "Object",
373           "desc" : "(optional)",
374           "isOptional" : false
375         }
376       ],
377       "returns" : []
378     },
379     {
380       "name" : "un",
381       "type" : "function",
382       "desc" : "Removes a listener (shorthand for removeListener)",
383       "sig" : "(eventName, handler, scope)",
384       "static" : false,
385       "memberOf" : "Roo.util.Observable",
386       "isStatic" : false,
387       "isConstructor" : false,
388       "isPrivate" : false,
389       "example" : "",
390       "deprecated" : "",
391       "since" : "",
392       "see" : "",
393       "exceptions" : "",
394       "requires" : "",
395       "params" : [
396         {
397           "name" : "eventName",
398           "type" : "String",
399           "desc" : "The type of event to listen for",
400           "isOptional" : false
401         },
402         {
403           "name" : "handler",
404           "type" : "Function",
405           "desc" : "The handler to remove",
406           "isOptional" : false
407         },
408         {
409           "name" : "scope",
410           "type" : "Object",
411           "desc" : "(optional) The scope (this object) for the handler",
412           "isOptional" : false
413         }
414       ],
415       "returns" : []
416     },
417     {
418       "name" : "addEvents",
419       "type" : "function",
420       "desc" : "Used to define events on this Observable",
421       "sig" : "(object)",
422       "static" : false,
423       "memberOf" : "Roo.util.Observable",
424       "isStatic" : false,
425       "isConstructor" : false,
426       "isPrivate" : false,
427       "example" : "",
428       "deprecated" : "",
429       "since" : "",
430       "see" : "",
431       "exceptions" : "",
432       "requires" : "",
433       "params" : [
434         {
435           "name" : "object",
436           "type" : "Object",
437           "desc" : "The object with the events defined",
438           "isOptional" : false
439         }
440       ],
441       "returns" : []
442     },
443     {
444       "name" : "releaseCapture",
445       "type" : "function",
446       "desc" : "Removes <b>all</b> added captures from the Observable.",
447       "sig" : "(o)",
448       "static" : true,
449       "memberOf" : "Roo.util.Observable",
450       "isStatic" : true,
451       "isConstructor" : false,
452       "isPrivate" : false,
453       "example" : "",
454       "deprecated" : "",
455       "since" : "",
456       "see" : "",
457       "exceptions" : "",
458       "requires" : "",
459       "params" : [
460         {
461           "name" : "o",
462           "type" : "Observable",
463           "desc" : "The Observable to release",
464           "isOptional" : false
465         }
466       ],
467       "returns" : []
468     },
469     {
470       "name" : "removeListener",
471       "type" : "function",
472       "desc" : "Removes a listener",
473       "sig" : "(eventName, handler, scope)",
474       "static" : false,
475       "memberOf" : "Roo.util.Observable",
476       "isStatic" : false,
477       "isConstructor" : false,
478       "isPrivate" : false,
479       "example" : "",
480       "deprecated" : "",
481       "since" : "",
482       "see" : "",
483       "exceptions" : "",
484       "requires" : "",
485       "params" : [
486         {
487           "name" : "eventName",
488           "type" : "String",
489           "desc" : "The type of event to listen for",
490           "isOptional" : false
491         },
492         {
493           "name" : "handler",
494           "type" : "Function",
495           "desc" : "The handler to remove",
496           "isOptional" : false
497         },
498         {
499           "name" : "scope",
500           "type" : "Object",
501           "desc" : "(optional) The scope (this object) for the handler",
502           "isOptional" : false
503         }
504       ],
505       "returns" : []
506     },
507     {
508       "name" : "fireEvent",
509       "type" : "function",
510       "desc" : "Fires the specified event with the passed parameters (minus the event name).",
511       "sig" : "(eventName, args)",
512       "static" : false,
513       "memberOf" : "Roo.util.Observable",
514       "isStatic" : false,
515       "isConstructor" : false,
516       "isPrivate" : false,
517       "example" : "",
518       "deprecated" : "",
519       "since" : "",
520       "see" : "",
521       "exceptions" : "",
522       "requires" : "",
523       "params" : [
524         {
525           "name" : "eventName",
526           "type" : "String",
527           "desc" : "",
528           "isOptional" : false
529         },
530         {
531           "name" : "args",
532           "type" : "Object...",
533           "desc" : "Variable number of parameters are passed to handlers",
534           "isOptional" : false
535         }
536       ],
537       "returns" : [
538         {
539           "name" : "",
540           "type" : "Boolean",
541           "desc" : "returns false if any of the handlers return false otherwise it returns true"
542         }
543       ]
544     },
545     {
546       "name" : "hasListener",
547       "type" : "function",
548       "desc" : "Checks to see if this object has any listeners for a specified event",
549       "sig" : "(eventName)",
550       "static" : false,
551       "memberOf" : "Roo.util.Observable",
552       "isStatic" : false,
553       "isConstructor" : false,
554       "isPrivate" : false,
555       "example" : "",
556       "deprecated" : "",
557       "since" : "",
558       "see" : "",
559       "exceptions" : "",
560       "requires" : "",
561       "params" : [
562         {
563           "name" : "eventName",
564           "type" : "String",
565           "desc" : "The name of the event to check for",
566           "isOptional" : false
567         }
568       ],
569       "returns" : [
570         {
571           "name" : "",
572           "type" : "Boolean",
573           "desc" : "True if the event is being listened for, else false"
574         }
575       ]
576     },
577     {
578       "name" : "capture",
579       "type" : "function",
580       "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.",
581       "sig" : "(o, fn, scope)",
582       "static" : true,
583       "memberOf" : "Roo.util.Observable",
584       "isStatic" : true,
585       "isConstructor" : false,
586       "isPrivate" : false,
587       "example" : "",
588       "deprecated" : "",
589       "since" : "",
590       "see" : "",
591       "exceptions" : "",
592       "requires" : "",
593       "params" : [
594         {
595           "name" : "o",
596           "type" : "Observable",
597           "desc" : "The Observable to capture",
598           "isOptional" : false
599         },
600         {
601           "name" : "fn",
602           "type" : "Function",
603           "desc" : "The function to call",
604           "isOptional" : false
605         },
606         {
607           "name" : "scope",
608           "type" : "Object",
609           "desc" : "(optional) The scope (this object) for the fn",
610           "isOptional" : false
611         }
612       ],
613       "returns" : []
614     },
615     {
616       "name" : "addListener",
617       "type" : "function",
618       "desc" : "Appends an event handler to this component",
619       "sig" : "(eventName, handler, scope, options)",
620       "static" : false,
621       "memberOf" : "Roo.util.Observable",
622       "isStatic" : false,
623       "isConstructor" : false,
624       "isPrivate" : false,
625       "example" : "",
626       "deprecated" : "",
627       "since" : "",
628       "see" : "",
629       "exceptions" : "",
630       "requires" : "",
631       "params" : [
632         {
633           "name" : "eventName",
634           "type" : "String",
635           "desc" : "The type of event to listen for",
636           "isOptional" : false
637         },
638         {
639           "name" : "handler",
640           "type" : "Function",
641           "desc" : "The method the event invokes",
642           "isOptional" : false
643         },
644         {
645           "name" : "scope",
646           "type" : "Object",
647           "desc" : "(optional) The scope in which to execute the handler\nfunction. The handler function's \"this\" context.",
648           "isOptional" : false
649         },
650         {
651           "name" : "options",
652           "type" : "Object",
653           "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>",
654           "isOptional" : false
655         }
656       ],
657       "returns" : []
658     }
659   ],
660   "events" : [
661     {
662       "name" : "resize",
663       "type" : "function",
664       "desc" : "Fired after a resize.",
665       "sig" : "function (_self, width, height, e)\n{\n\n}",
666       "memberOf" : "",
667       "example" : "",
668       "deprecated" : "",
669       "since" : "",
670       "see" : "",
671       "params" : [
672         {
673           "name" : "this",
674           "type" : "Roo.Resizable",
675           "desc" : "",
676           "isOptional" : false
677         },
678         {
679           "name" : "width",
680           "type" : "Number",
681           "desc" : "The new width",
682           "isOptional" : false
683         },
684         {
685           "name" : "height",
686           "type" : "Number",
687           "desc" : "The new height",
688           "isOptional" : false
689         },
690         {
691           "name" : "e",
692           "type" : "Roo.EventObject",
693           "desc" : "The mouseup event",
694           "isOptional" : false
695         }
696       ],
697       "returns" : []
698     },
699     {
700       "name" : "resizing",
701       "type" : "function",
702       "desc" : "Fired a resizing.",
703       "sig" : "function (_self, x, y, w, h, e)\n{\n\n}",
704       "memberOf" : "",
705       "example" : "",
706       "deprecated" : "",
707       "since" : "",
708       "see" : "",
709       "params" : [
710         {
711           "name" : "this",
712           "type" : "Roo.Resizable",
713           "desc" : "",
714           "isOptional" : false
715         },
716         {
717           "name" : "x",
718           "type" : "Number",
719           "desc" : "The new x position",
720           "isOptional" : false
721         },
722         {
723           "name" : "y",
724           "type" : "Number",
725           "desc" : "The new y position",
726           "isOptional" : false
727         },
728         {
729           "name" : "w",
730           "type" : "Number",
731           "desc" : "The new w width",
732           "isOptional" : false
733         },
734         {
735           "name" : "h",
736           "type" : "Number",
737           "desc" : "The new h hight",
738           "isOptional" : false
739         },
740         {
741           "name" : "e",
742           "type" : "Roo.EventObject",
743           "desc" : "The mouseup event",
744           "isOptional" : false
745         }
746       ],
747       "returns" : []
748     },
749     {
750       "name" : "beforeresize",
751       "type" : "function",
752       "desc" : "Fired before resize is allowed. Set enabled to false to cancel resize.",
753       "sig" : "function (_self, e)\n{\n\n}",
754       "memberOf" : "",
755       "example" : "",
756       "deprecated" : "",
757       "since" : "",
758       "see" : "",
759       "params" : [
760         {
761           "name" : "this",
762           "type" : "Roo.Resizable",
763           "desc" : "",
764           "isOptional" : false
765         },
766         {
767           "name" : "e",
768           "type" : "Roo.EventObject",
769           "desc" : "The mousedown event",
770           "isOptional" : false
771         }
772       ],
773       "returns" : []
774     }
775   ]
776 }