Roo/ContentPanel.js
[roojs1] / Roo / ContentPanel.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11 /**
12  * @class Roo.ContentPanel
13  * @extends Roo.util.Observable
14  * A basic ContentPanel element.
15  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
16  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
17  * @cfg {Boolean/Object} autoCreate True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create
18  * @cfg {Boolean}   closable      True if the panel can be closed/removed
19  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
20  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
21  * @cfg {Toolbar}   toolbar       A toolbar for this panel
22  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
23  * @cfg {String} title          The title for this panel
24  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
25  * @cfg {String} url            Calls {@link #setUrl} with this value
26  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
27  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
28  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
29  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
30
31  * @constructor
32  * Create a new ContentPanel.
33  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
34  * @param {String/Object} config A string to set only the title or a config object
35  * @param {String} content (optional) Set the HTML content for this panel
36  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37  */
38 Roo.ContentPanel = function(el, config, content){
39     
40      
41     /*
42     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
43         config = el;
44         el = Roo.id();
45     }
46     if (config && config.parentLayout) { 
47         el = config.parentLayout.el.createChild(); 
48     }
49     */
50     if(el.autoCreate){ // xtype is available if this is called from factory
51         config = el;
52         el = Roo.id();
53     }
54     this.el = Roo.get(el);
55     if(!this.el && config && config.autoCreate){
56         if(typeof config.autoCreate == "object"){
57             if(!config.autoCreate.id){
58                 config.autoCreate.id = config.id||el;
59             }
60             this.el = Roo.DomHelper.append(document.body,
61                         config.autoCreate, true);
62         }else{
63             this.el = Roo.DomHelper.append(document.body,
64                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
65         }
66     }
67     this.closable = false;
68     this.loaded = false;
69     this.active = false;
70     if(typeof config == "string"){
71         this.title = config;
72     }else{
73         Roo.apply(this, config);
74     }
75     
76     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
77         this.wrapEl = this.el.wrap();
78         this.toolbar.container = this.el.insertSibling(false, 'before');
79         this.toolbar = new Roo.Toolbar(this.toolbar);
80     }
81     
82     // xtype created footer. - not sure if will work as we normally have to render first..
83     if (this.footer && !this.footer.el && this.footer.xtype) {
84         if (!this.wrapEl) {
85             this.wrapEl = this.el.wrap();
86         }
87     
88         this.footer.container = this.wrapEl.createChild();
89          
90         this.footer = Roo.factory(this.footer, Roo);
91         
92     }
93     
94     if(this.resizeEl){
95         this.resizeEl = Roo.get(this.resizeEl, true);
96     }else{
97         this.resizeEl = this.el;
98     }
99     // handle view.xtype
100     
101  
102     
103     
104     this.addEvents({
105         /**
106          * @event activate
107          * Fires when this panel is activated. 
108          * @param {Roo.ContentPanel} this
109          */
110         "activate" : true,
111         /**
112          * @event deactivate
113          * Fires when this panel is activated. 
114          * @param {Roo.ContentPanel} this
115          */
116         "deactivate" : true,
117
118         /**
119          * @event resize
120          * Fires when this panel is resized if fitToFrame is true.
121          * @param {Roo.ContentPanel} this
122          * @param {Number} width The width after any component adjustments
123          * @param {Number} height The height after any component adjustments
124          */
125         "resize" : true,
126         
127          /**
128          * @event render
129          * Fires when this tab is created
130          * @param {Roo.ContentPanel} this
131          */
132         "render" : true
133         
134         
135         
136     });
137     Roo.log(this.view);
138     if (this.view && typeof(this.view.xtype) != 'undefined') {
139         this.view.el = this.el.appendChild(document.createElement("div"));
140         this.view = Roo.factory(this.view); 
141         this.view.render && this.on('render', 
142                 function() { 
143                         this.view.render(false, '',this); 
144                 }, this); // render blank..
145     }
146     
147     
148     
149     if(this.autoScroll){
150         this.resizeEl.setStyle("overflow", "auto");
151     } else {
152         // fix randome scrolling
153         this.el.on('scroll', function() {
154             Roo.log('fix random scolling');
155             this.scrollTo('top',0); 
156         });
157     }
158     content = content || this.content;
159     if(content){
160         this.setContent(content);
161     }
162     if(config && config.url){
163         this.setUrl(this.url, this.params, this.loadOnce);
164     }
165     
166     
167     
168     Roo.ContentPanel.superclass.constructor.call(this);
169     
170     this.fireEvent('render', this);
171 };
172
173 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
174     tabTip:'',
175     setRegion : function(region){
176         this.region = region;
177         if(region){
178            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
179         }else{
180            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
181         } 
182     },
183     
184     /**
185      * Returns the toolbar for this Panel if one was configured. 
186      * @return {Roo.Toolbar} 
187      */
188     getToolbar : function(){
189         return this.toolbar;
190     },
191     
192     setActiveState : function(active){
193         this.active = active;
194         if(!active){
195             this.fireEvent("deactivate", this);
196         }else{
197             this.fireEvent("activate", this);
198         }
199     },
200     /**
201      * Updates this panel's element
202      * @param {String} content The new content
203      * @param {Boolean} loadScripts (optional) true to look for and process scripts
204     */
205     setContent : function(content, loadScripts){
206         this.el.update(content, loadScripts);
207     },
208
209     ignoreResize : function(w, h){
210         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
211             return true;
212         }else{
213             this.lastSize = {width: w, height: h};
214             return false;
215         }
216     },
217     /**
218      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
219      * @return {Roo.UpdateManager} The UpdateManager
220      */
221     getUpdateManager : function(){
222         return this.el.getUpdateManager();
223     },
224      /**
225      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
226      * @param {Object/String/Function} url The url for this request or a function to call to get the url or a config object containing any of the following options:
227 <pre><code>
228 panel.load({
229     url: "your-url.php",
230     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
231     callback: yourFunction,
232     scope: yourObject, //(optional scope)
233     discardUrl: false,
234     nocache: false,
235     text: "Loading...",
236     timeout: 30,
237     scripts: false
238 });
239 </code></pre>
240      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
241      * are 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.
242      * @param {String/Object} params (optional) The parameters to pass as either a URL encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
243      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
244      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used URL. If true, it will not store the URL.
245      * @return {Roo.ContentPanel} this
246      */
247     load : function(){
248         var um = this.el.getUpdateManager();
249         um.update.apply(um, arguments);
250         return this;
251     },
252
253
254     /**
255      * 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.
256      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
257      * @param {String/Object} params (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)
258      * @param {Boolean} loadOnce (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)
259      * @return {Roo.UpdateManager} The UpdateManager
260      */
261     setUrl : function(url, params, loadOnce){
262         if(this.refreshDelegate){
263             this.removeListener("activate", this.refreshDelegate);
264         }
265         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
266         this.on("activate", this.refreshDelegate);
267         return this.el.getUpdateManager();
268     },
269     
270     _handleRefresh : function(url, params, loadOnce){
271         if(!loadOnce || !this.loaded){
272             var updater = this.el.getUpdateManager();
273             updater.update(url, params, this._setLoaded.createDelegate(this));
274         }
275     },
276     
277     _setLoaded : function(){
278         this.loaded = true;
279     }, 
280     
281     /**
282      * Returns this panel's id
283      * @return {String} 
284      */
285     getId : function(){
286         return this.el.id;
287     },
288     
289     /** 
290      * Returns this panel's element - used by regiosn to add.
291      * @return {Roo.Element} 
292      */
293     getEl : function(){
294         return this.wrapEl || this.el;
295     },
296     
297     adjustForComponents : function(width, height)
298     {
299         //Roo.log('adjustForComponents ');
300         if(this.resizeEl != this.el){
301             width -= this.el.getFrameWidth('lr');
302             height -= this.el.getFrameWidth('tb');
303         }
304         if(this.toolbar){
305             var te = this.toolbar.getEl();
306             height -= te.getHeight();
307             te.setWidth(width);
308         }
309         if(this.footer){
310             var te = this.footer.getEl();
311             Roo.log("footer:" + te.getHeight());
312             
313             height -= te.getHeight();
314             te.setWidth(width);
315         }
316         
317         
318         if(this.adjustments){
319             width += this.adjustments[0];
320             height += this.adjustments[1];
321         }
322         return {"width": width, "height": height};
323     },
324     
325     setSize : function(width, height){
326         if(this.fitToFrame && !this.ignoreResize(width, height)){
327             if(this.fitContainer && this.resizeEl != this.el){
328                 this.el.setSize(width, height);
329             }
330             var size = this.adjustForComponents(width, height);
331             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
332             this.fireEvent('resize', this, size.width, size.height);
333         }
334     },
335     
336     /**
337      * Returns this panel's title
338      * @return {String} 
339      */
340     getTitle : function(){
341         return this.title;
342     },
343     
344     /**
345      * Set this panel's title
346      * @param {String} title
347      */
348     setTitle : function(title){
349         this.title = title;
350         if(this.region){
351             this.region.updatePanelTitle(this, title);
352         }
353     },
354     
355     /**
356      * Returns true is this panel was configured to be closable
357      * @return {Boolean} 
358      */
359     isClosable : function(){
360         return this.closable;
361     },
362     
363     beforeSlide : function(){
364         this.el.clip();
365         this.resizeEl.clip();
366     },
367     
368     afterSlide : function(){
369         this.el.unclip();
370         this.resizeEl.unclip();
371     },
372     
373     /**
374      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
375      *   Will fail silently if the {@link #setUrl} method has not been called.
376      *   This does not activate the panel, just updates its content.
377      */
378     refresh : function(){
379         if(this.refreshDelegate){
380            this.loaded = false;
381            this.refreshDelegate();
382         }
383     },
384     
385     /**
386      * Destroys this panel
387      */
388     destroy : function(){
389         this.el.removeAllListeners();
390         var tempEl = document.createElement("span");
391         tempEl.appendChild(this.el.dom);
392         tempEl.innerHTML = "";
393         this.el.remove();
394         this.el = null;
395     },
396     
397     /**
398      * form - if the content panel contains a form - this is a reference to it.
399      * @type {Roo.form.Form}
400      */
401     form : false,
402     /**
403      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
404      *    This contains a reference to it.
405      * @type {Roo.View}
406      */
407     view : false,
408     
409       /**
410      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
411      * <pre><code>
412
413 layout.addxtype({
414        xtype : 'Form',
415        items: [ .... ]
416    }
417 );
418
419 </code></pre>
420      * @param {Object} cfg Xtype definition of item to add.
421      */
422     
423     addxtype : function(cfg) {
424         // add form..
425         if (cfg.xtype.match(/^Form$/)) {
426             
427             var el;
428             //if (this.footer) {
429             //    el = this.footer.container.insertSibling(false, 'before');
430             //} else {
431                 el = this.el.createChild();
432             //}
433
434             this.form = new  Roo.form.Form(cfg);
435             
436             
437             if ( this.form.allItems.length) this.form.render(el.dom);
438             return this.form;
439         }
440         // should only have one of theses..
441         if ([/* 'View',*/ 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
442             // views..
443             cfg.el = this.el.appendChild(document.createElement("div"));
444             // factory?
445             
446             var ret = new Roo.factory(cfg);
447             ret.render && this.on('render', 
448                 
449                 function() { 
450                         Roo.log('call render?');
451                         ret.render(false, '',this); 
452                 }, this); // render blank..
453             
454             //ret.render && ret.render(false, ''); // render blank..
455             this.view = ret;
456             return ret;
457         }
458         return false;
459     }
460 });
461
462 /**
463  * @class Roo.GridPanel
464  * @extends Roo.ContentPanel
465  * @constructor
466  * Create a new GridPanel.
467  * @param {Roo.grid.Grid} grid The grid for this panel
468  * @param {String/Object} config A string to set only the panel's title, or a config object
469  */
470 Roo.GridPanel = function(grid, config){
471     
472   
473     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
474         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
475         
476     this.wrapper.dom.appendChild(grid.getGridEl().dom);
477     
478     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
479     
480     if(this.toolbar){
481         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
482     }
483     // xtype created footer. - not sure if will work as we normally have to render first..
484     if (this.footer && !this.footer.el && this.footer.xtype) {
485         
486         this.footer.container = this.grid.getView().getFooterPanel(true);
487         this.footer.dataSource = this.grid.dataSource;
488         this.footer = Roo.factory(this.footer, Roo);
489         
490     }
491     
492     grid.monitorWindowResize = false; // turn off autosizing
493     grid.autoHeight = false;
494     grid.autoWidth = false;
495     this.grid = grid;
496     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
497 };
498
499 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
500     getId : function(){
501         return this.grid.id;
502     },
503     
504     /**
505      * Returns the grid for this panel
506      * @return {Roo.grid.Grid} 
507      */
508     getGrid : function(){
509         return this.grid;    
510     },
511     
512     setSize : function(width, height){
513         if(!this.ignoreResize(width, height)){
514             var grid = this.grid;
515             var size = this.adjustForComponents(width, height);
516             grid.getGridEl().setSize(size.width, size.height);
517             grid.autoSize();
518         }
519     },
520     
521     beforeSlide : function(){
522         this.grid.getView().scroller.clip();
523     },
524     
525     afterSlide : function(){
526         this.grid.getView().scroller.unclip();
527     },
528     
529     destroy : function(){
530         this.grid.destroy();
531         delete this.grid;
532         Roo.GridPanel.superclass.destroy.call(this); 
533     }
534 });
535
536
537 /**
538  * @class Roo.NestedLayoutPanel
539  * @extends Roo.ContentPanel
540  * @constructor
541  * Create a new NestedLayoutPanel.
542  * 
543  * 
544  * @param {Roo.BorderLayout} layout The layout for this panel
545  * @param {String/Object} config A string to set only the title or a config object
546  */
547 Roo.NestedLayoutPanel = function(layout, config)
548 {
549     // construct with only one argument..
550     /* FIXME - implement nicer consturctors
551     if (layout.layout) {
552         config = layout;
553         layout = config.layout;
554         delete config.layout;
555     }
556     if (layout.xtype && !layout.getEl) {
557         // then layout needs constructing..
558         layout = Roo.factory(layout, Roo);
559     }
560     */
561     
562     
563     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
564     
565     layout.monitorWindowResize = false; // turn off autosizing
566     this.layout = layout;
567     this.layout.getEl().addClass("x-layout-nested-layout");
568     
569     
570     
571     
572 };
573
574 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
575
576     setSize : function(width, height){
577         if(!this.ignoreResize(width, height)){
578             var size = this.adjustForComponents(width, height);
579             var el = this.layout.getEl();
580             el.setSize(size.width, size.height);
581             var touch = el.dom.offsetWidth;
582             this.layout.layout();
583             // ie requires a double layout on the first pass
584             if(Roo.isIE && !this.initialized){
585                 this.initialized = true;
586                 this.layout.layout();
587             }
588         }
589     },
590     
591     // activate all subpanels if not currently active..
592     
593     setActiveState : function(active){
594         this.active = active;
595         if(!active){
596             this.fireEvent("deactivate", this);
597             return;
598         }
599         
600         this.fireEvent("activate", this);
601         // not sure if this should happen before or after..
602         if (!this.layout) {
603             return; // should not happen..
604         }
605         var reg = false;
606         for (var r in this.layout.regions) {
607             reg = this.layout.getRegion(r);
608             if (reg.getActivePanel()) {
609                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
610                 reg.setActivePanel(reg.getActivePanel());
611                 continue;
612             }
613             if (!reg.panels.length) {
614                 continue;
615             }
616             reg.showPanel(reg.getPanel(0));
617         }
618         
619         
620         
621         
622     },
623     
624     /**
625      * Returns the nested BorderLayout for this panel
626      * @return {Roo.BorderLayout} 
627      */
628     getLayout : function(){
629         return this.layout;
630     },
631     
632      /**
633      * Adds a xtype elements to the layout of the nested panel
634      * <pre><code>
635
636 panel.addxtype({
637        xtype : 'ContentPanel',
638        region: 'west',
639        items: [ .... ]
640    }
641 );
642
643 panel.addxtype({
644         xtype : 'NestedLayoutPanel',
645         region: 'west',
646         layout: {
647            center: { },
648            west: { }   
649         },
650         items : [ ... list of content panels or nested layout panels.. ]
651    }
652 );
653 </code></pre>
654      * @param {Object} cfg Xtype definition of item to add.
655      */
656     addxtype : function(cfg) {
657         return this.layout.addxtype(cfg);
658     
659     }
660 });
661
662 Roo.ScrollPanel = function(el, config, content){
663     config = config || {};
664     config.fitToFrame = true;
665     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
666     
667     this.el.dom.style.overflow = "hidden";
668     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
669     this.el.removeClass("x-layout-inactive-content");
670     this.el.on("mousewheel", this.onWheel, this);
671
672     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
673     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
674     up.unselectable(); down.unselectable();
675     up.on("click", this.scrollUp, this);
676     down.on("click", this.scrollDown, this);
677     up.addClassOnOver("x-scroller-btn-over");
678     down.addClassOnOver("x-scroller-btn-over");
679     up.addClassOnClick("x-scroller-btn-click");
680     down.addClassOnClick("x-scroller-btn-click");
681     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
682
683     this.resizeEl = this.el;
684     this.el = wrap; this.up = up; this.down = down;
685 };
686
687 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
688     increment : 100,
689     wheelIncrement : 5,
690     scrollUp : function(){
691         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
692     },
693
694     scrollDown : function(){
695         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
696     },
697
698     afterScroll : function(){
699         var el = this.resizeEl;
700         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
701         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
702         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
703     },
704
705     setSize : function(){
706         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
707         this.afterScroll();
708     },
709
710     onWheel : function(e){
711         var d = e.getWheelDelta();
712         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
713         this.afterScroll();
714         e.stopEvent();
715     },
716
717     setContent : function(content, loadScripts){
718         this.resizeEl.update(content, loadScripts);
719     }
720
721 });
722
723
724
725
726
727
728
729
730
731 /**
732  * @class Roo.TreePanel
733  * @extends Roo.ContentPanel
734  * @constructor
735  * Create a new TreePanel. - defaults to fit/scoll contents.
736  * @param {String/Object} config A string to set only the panel's title, or a config object
737  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
738  */
739 Roo.TreePanel = function(config){
740     var el = config.el;
741     var tree = config.tree;
742     delete config.tree; 
743     delete config.el; // hopefull!
744     
745     // wrapper for IE7 strict & safari scroll issue
746     
747     var treeEl = el.createChild();
748     config.resizeEl = treeEl;
749     
750     
751     
752     Roo.TreePanel.superclass.constructor.call(this, el, config);
753  
754  
755     this.tree = new Roo.tree.TreePanel(treeEl , tree);
756     //console.log(tree);
757     this.on('activate', function()
758     {
759         if (this.tree.rendered) {
760             return;
761         }
762         //console.log('render tree');
763         this.tree.render();
764     });
765     // this should not be needed.. - it's actually the 'el' that resizes?
766     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
767     
768     //this.on('resize',  function (cp, w, h) {
769     //        this.tree.innerCt.setWidth(w);
770     //        this.tree.innerCt.setHeight(h);
771     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
772     //});
773
774         
775     
776 };
777
778 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
779     fitToFrame : true,
780     autoScroll : true
781 });
782
783
784
785
786
787
788
789
790
791
792